Viewing profile — ReleaseCandidat
ReleaseCandidat
HN member- Joined
- Sat, Sep 04, 2021, 8:16 AM UTC
- HN karma
- 1,948
- Public activity
- 921 items
- HN profile
- View on Hacker News ↗
About ReleaseCandidat
No profile information was provided.
Recent public activity
-
comment
Comment #41738560
> with vms for the rest. It's called OpenVMS since quite some decades now.
-
comment
Comment #41737828
Yes, as in "check the number of parsed fields for each line" and don't forget about empty fields. Throw an error and stop the program if the number of columns isn't consistent. Whi…
-
comment
Comment #41695734
> For me an IDE "knows" about other files I have open and their relationship with the one I'm editing (usually a "project") and it _i_ntegrates external tools/programs. With that d…
-
comment
Comment #41695346
It's not an extension. First-class modal editing via Vim bindings, including features like text objects and marks. See the "Vim-friendly" button at https://zed.dev/ , "Incredibly p…
-
comment
Comment #41695270
I guess that's https://github.com/xaberus/vscode-remote-oss
-
comment
Comment #41695230
To be honest, Theia (the last beta I tried some months ago) is everything people always complain about Electron apps: slow as molasses - way worse than e.g. Atom (or Pulse) (which …
-
comment
Comment #41695209
I'm sorry, but what _is_ the difference between an editor and an IDE for _you_? Btw. I'm not saying that having an integrated debugger is a sufficient condition for an editor to be…
-
comment
Comment #41695150
> I'd be curious what similar caveats may apply to that editor? Exactly the same as to VS Code, anything that is special about it is "closed" (as a service) https://zed.dev/blog/ze…
-
comment
Comment #41694425
Everybody can do that themselves, if the original maintainers don't want to (which is a security problem ;): If you are not the author, we suggest you first reach out to the author…
-
comment
Comment #41694395
There are generators for the compilation databases that work with Makefiles and other build systems, like Bear: https://github.com/rizsotto/Bear
-
comment
Comment #41694379
I thought the server part of VS Code (to be exact a proprietary Node addon) is the problem? https://github.com/VSCodium/vscodium/issues/1229#issuecommen... Stupid me, the solution …
-
comment
Comment #41694253
"Remote SSH" and "Dev Containers". https://code.visualstudio.com/docs/remote/ssh https://code.visualstudio.com/docs/devcontainers/containers
-
comment
Comment #41694248
Yes, their C++ LSP isn't really good and I've heard C# isn't good either - but that's because they want to sell Visual Studio too. But especially "Remote SSH" and "Dev Containers" …
-
comment
Comment #41694214
> Zed exists, it's new but it's already a very good IDE. An IDE needs at least a working Debugger (or, to be more precise, a graphical interface to debugger(s)). And Zed has exactl…
-
comment
Comment #41694164
The author forgot about two very important "closed" plugins: "Remote SSH" and "Dev Containers".
-
comment
Comment #41689298
> strncpy strncpy had been touted the "safe strcpy alternative" for years.
-
comment
Comment #41689268
It wasn't meant as an argument against not loading the interpreter, but an explanation why it is "normal" - but if course insecure - behavior for ldd to execute the configured inte…
-
comment
Comment #41689199
Don't know, but on Solaris it's the samé, see section "Security" https://docs.oracle.com/cd/E88353_01/html/E37839/ldd-1.html
-
comment
Comment #41689142
It's not same, as ldd does print transitive dependencies too. libtree is comparable to ldd
-
comment
Comment #41688986
Dynamic dlopen calls do not appear in the ELF at all, these are "normal" function calls.
-
comment
Comment #41688888
It's not about calling the app itself - that doesn't happen with ldd. ldd does not know about dlopened libraries.
-
comment
Comment #41688869
Each Elf executable can have its own "interpreter" (loader, which as default is `ld-linux. so`), so without calling the configured interpreter ldd can't know about the dependencies…
-
comment
Comment #41685310
But they don't actually work, because there are many ambiguities. Is is an arrow, in a all are wrong, same as in a >=> or a >>= or...
-
comment
Comment #41658059
I guess that's because it is a VS Code fork.
-
comment
Comment #41655071
> Yeah, but are those bugs security bugs? If the software is unusable, it doesn't matter if it has security bugs too. Or, to rephrase, the safest software is software nobody uses.