I love following the work of @marcan42, @LinaAsahi, @alyssarzg and the rest of the @AsahiLinux team.
Watching the streams (though I don't understand half of it) is very inspiring.
Can't wait for external monitor support so I can use my M1 Air at the office. Keep up the gr8 work!
I'm sad to see so many joining the mob to bully Richard Stallman. This blog post pretty much sums up my feelings on the matter: https://t.co/PGaMrqhuQW
@fsf@fedora@OpenSourceOrg@mozilla
Discovered the XOR swap algorithm and I find it kinda magical... #programminglife#FridayFun
void xor_swap(int* a, int* b)
{
*a ^= (*b ^= (*a ^= *b));
}