Viewing profile — gnuvince
gnuvince
HN member- Joined
- Thu, Mar 11, 2010, 10:11 PM UTC
- HN karma
- 2,803
- Public activity
- 620 items
- HN profile
- View on Hacker News ↗
About gnuvince
No profile information was provided.
Recent public activity
-
comment
Comment #48528600
Basically, folks nowadays think that this article[1] was aspirational rather than a cautionary tale. [1] https://thedailywtf.com/articles/Classic-WTF-No-Quack
-
comment
Comment #47725242
> Separately; Sam's belief that "AI has to be democratized; power cannot be too concentrated." rings incredibly hollow. OpenAI has abandoned its open source roots. It is concentrat…
-
comment
Comment #41476239
> Just look at the code. How could it be simpler? Cannot tell if this is a joke.
-
comment
Comment #41433437
I like the more robotic "Objects: 1" or "Objects: 2", since it avoids the pluralization problems entirely (e.g., in French 0 is singular, but in English it's plural; some words hav…
-
comment
Comment #41389954
I went to Blackbox because its UI elements were smaller (title bars are more narrow, no 64x64 dock icons) which gave me more real estate on my 1024x768 monitor. I then migrated to …
-
comment
Comment #41384956
Back in 1998-1999, I was interested in installing and using Linux in large part because I thought that the screenshots of Window Maker that I saw online were so damn pretty. When I…
-
comment
Comment #41337744
I get a progress bar when I run `cargo clean` because it's so large.
-
comment
Comment #41313234
I need to find a pithy way to express "we use a garbage collector to avoid doing manual memory management because that'd require too much effort; but since the GC causes performanc…
-
comment
Comment #40788091
Is there a reason to prefer `while read; ...;done` over find's -exec or piping into xargs?
-
comment
Comment #40545174
Probably because some terminals interpret Ctrl+S as a "pause the terminal" command and if you don't know about it, it looks like your editor has frozen.
-
comment
Comment #40420537
I absolutely loved AntennaPod back when I had an Android phone -- I actually never really "attended" to it though: I installed it, it worked, never gave me any issue. Now that I ow…
-
comment
Comment #39873727
> I'm mostly not following what is under a DDoS attack. Is it their web page mostly consisting of marketing material with static pages? Yes.
-
comment
Comment #39607750
Your mention of a "universal API" reminded me of the paper "Some Were Meant for C" [1] in which the author argues that one of the most important feature of C is its "communicative …
-
comment
Comment #39494107
Isn't that our entire industry though?
-
comment
Comment #38500005
- I use Emacs every day as my primary (and only) programming text editor. - Having nearly 20 years of experience using Emacs, it's just a totally natural fit for me. - I program pr…
-
comment
Comment #38491846
Sorry, yes I did.
-
comment
Comment #38485579
I've been calling the thinking of the parent "trickle-down devonomics": that by making the code better for the user, the benefits will trickle down to the users. Obviously, as the …
-
comment
Comment #38288559
> The side effect: some people remarked that the code looked like C Did you understand this comment to be positive or negative?
-
comment
Comment #38288491
Somewhere, somewhen, we, as software developers, started thinking that other programmers would rather extend code rather than modify it. This has led us to write code that tries to…
-
comment
Comment #38157132
I like this video because there's a lot of a good actionable advice before he gets into SIMD code.
-
comment
Comment #37360497
*Sokoban
-
comment
Comment #37100982
Select the line, then type C-u M-| jq -c sort
-
comment
Comment #36935668
Eglot is the built-in LSP client. You need an external server. If you do C or C++, clangd is likely what you want. Install it (apt install clangd) and enable eglot for C or C++ fil…
-
comment
Comment #36661307
There are many new languages that describe themselves as taking C, adding some good stuff (slices, defer), removing some of the bad stuff (textual includes) and adding some of thei…
-
comment
Comment #36653820
What's the difference between PHP giving "2" as the result of 1 + "1" and Python giving "999" as the result of "9" * 3?