Ico Doornekamp
Ico Doornekamp
Or from Lua: ``` #define lua_pcall(L,n,r,f) lua_pcallk(L, (n), (r), (f), 0, NULL) ```
Hehe, Araq does not believe in NULL it seems: ``` # define NIM_NIL ((void*)0) /* C's NULL is fucked up in some C compilers, so the generated code does not...
- I could indeed (should maybe) fix the return values of some of the functions which return true instead of 0. This will result in an API change though, and...
Sock I/O is deterministic, as long as you have full control over a stable test environment. Travis is a bit of a special case because of the virtualisation, so I...
So, what do you think; shall I fix the socket functions to return proper POSIX return values instead of true/false (the way they should have been from the beginning), and...
I'd have to look into the details, but my guess is that this stuff is hard to test as a standalone unit. To be able to test IPv6 the host...
On POSIX systems this might work for you: ``` (os/setenv "TZ" "America/New_York") (os/date (os/time) true) ```
I'd like to hijack this issue to start a more generic discussuon about the event queue and the (lack of) separation of functionality. Recently I did some experiments to get...
> So as per usual, the reason this seems harder than it needs to be is windows portability. I suspected that much; I must admit I am blissfully unaware of...
I think this one goes well with https://github.com/zevv/duc/issues/307 Basically, they are both about the representation of numbers. The humanize() function needs some other enum or flagsmask describing the required representation...