@deadalnix

11 Followers
66 Following
38 Posts

Creator of $BCH , now working on $XEC: https://e.cash

Benevolent dictator of @Bitcoin_ABC
. Vi/Vim

@b0rk it looks like you have some work in progress :)

@b0rk I cannot strongly enough advise you to add the following alias to your .gitcongfig and play with it to get ideas:

[alias]
sl = log --graph --branches HEAD --format=format:'%h %an %C(auto,green)%D%C(auto,reset)%n %s%n'

@sebsauvage Et du coup, tu migres vers ou?
When the IK works perfectly… #gamedev
It’s a complete failure of infosec-meets-user-psychology that “this TLS certificate is issued for your bank and the server is sneaky hackerman dot com” and “this otherwise valid certificate expired a day ago” have the EXACT SAME USER EXPERIENCE.

@b0rk @gdinwiddie say you want a signed 31 bit integer and a bool packed into 32 bits.
int x; // the packed 32bits.
x & 0x01; // the bool.
x >> 1; // the int.

More generally, you want that to optimize, for instance, division by powers of two.

@b0rk @gdinwiddie say you write the following bound check:
if (x < length - 1) { ... }

If you are using usigned, and if legth is zero, then the bound check is busted. This is a common error, and is very likely to pass code review.