Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
eacnamn
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
eacnamn
1y ago
I for one really enjoy the historical anecdotes you get in the "NOTES", "PORTABILITY" or even "BUGS" sections. But I do realise that my context is mostly recreational, work doesn't really require glueing P
2.
▲
by
eacnamn
1y ago
What's the state of things regarding statement expressions? Are there any intentions of adding them? I think I've read Meneide make an offhand comment about that.
3.
▲
by
eacnamn
2y ago
The one in progress from Trump et al.?
4.
▲
by
eacnamn
2y ago
Does your Wikipedia mirror include media? Text-only wiki seems a bit bleak to me, but including all media would devour so much storage, I just haven't been able to justify using that much of my limited storage space
5.
▲
by
eacnamn
2y ago
Programming is moreso based on recursive problem solving. (Most) language does have some recursive structures, but these become quite difficult to think about after just a few levels, and really aren't what you'd normally consider
6.
▲
by
eacnamn
2y ago
I always wonder, with how convoluted these prompts/answers become, how much accuracy is sacrificed to uphold these silly constraints. An unlobotomised model would surely perform better when asked the same question without all the unnec
7.
▲
by
eacnamn
2y ago
>That's absolutely not the C/C++ philosophy while it is not explicitly written out like this anymore, the standard charter used to say > Trust the programmer. > Don't prevent the programmer from doing what needs to b
8.
▲
by
eacnamn
2y ago
You've lost me here a little, sorry. If you have little to no dynamic allocations, meaning all of your memory will be automatic stack memory, then memory management wouldn't be much of an issue to begin with. But the most common p
9.
▲
by
eacnamn
2y ago
((x == 1)) && printf 'it'"'"'s 1\n' although I'm not sure how useful this actually is, but it is a nice-to-know
10.
▲
by
eacnamn
2y ago
Do you know whether that capacity is regularly reinvestigated? Because if not you could get the certification, wait a couple of years, and then dismantle all infrastructure while still reaping the, if ephemeral, benefits.
11.
▲
by
eacnamn
2y ago
all malloc is defined to do is to return a pointer to storage of appropriate size and alignment, which can easily be done in pure standard C by defining a static array and chopping it up as needed. that's not a brilliant way of doing t