Hacker News new | past | comments | ask | show | jobs | submit | cbrpnk's comments login

Any alternatives?

Council on Foreign Relations is pretty good. Also longer-form documentaries on YouTube from DW, Al Jazeera, CNA Insider, Bloomberg Originals.

OP didn't say it was "unreasonable", but "unreasonably effective".


I don't think I've ever thought of explicitly calling main(). Made me chuckle.


I think it is UB

Edit: actually looks like it is UB in C++ but not C


Why would calling main be UB!? How is crt0 supposed to work?


crt0 generally isn't C and isn't subject to C's rules


malloc() can't be implemented in C either because it's defined as doing things (creating new memory objects) there are no lower level mechanisms in C to do.


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 that, but achievable without leaving standard C


AFAIK that can break because of the strict aliasing rules (although it might work in practice). Even if char can alias anything, the reverse is not true and you can't legally store other types in a static array of char type. You should be able to use anonymous memory though, so for example if you get your storeag via mmap or some other allocator it should be fine.


There isn't anything called mmap in the C standard. That's what I mean by it not being possible to implement in standard C. It is possible in some implementations of C.


> The malloc function allocates space for an object whose size is specified by size and whose value is indeterminate.

> The lifetime of an allocated object extends from the allocation until the deallocation. Each such allocation shall yield a pointer to an object disjoint from any other object.

A static array is "an object" already. A pointer to the middle of it is not a new object.


As the other person pointed out, anything that happens before main is strictly not covered by the C standard.

Even things like “printf” can’t be implemented purely in standard C. Even making a syscall is outside of the scope of the C standard.


Can you imagine if that is how LLMs become self aware? By going through multiple cycles of interacting with the world, having these interactions reported in the media, then having their new training corpus include those articles.


Perhaps stories are how humans make themselves self aware?


"There’s few things in this world I love more than taking an opaque binary and gradually uncovering the organization that was present all along. Dissecting the underlying and general structure of a binary is as gratifying as anything I can imagine."

Yes!


Haven't logged into my hn account in ages. But I did to say this: Awesome.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: