Paged Out! #6 is out!
https://pagedout.institute/
Totally free, 80 pages, best issue so far!
'nuff said, enjoy!
(please boot to help spread out the news!)
We're live on Twitch and TikTok! Tune in as we stream—first, we'll be repairing a pulse-tone telephone adapter, and then we'll continue building our Apple I replica.
📺 Twitch: https://www.twitch.tv/racunalniskimuzej
📱 TikTok: https://www.tiktok.com/@racunalniskimuzej
Wow, __builtin_dump_struct is an amazing clang feature, how did I never hear about this before?
$ cat test.c
#include <stdio.h>
struct nested {
int n;
};
struct foo {
int member_a;
unsigned long member_b;
char *str;
void *ptr;
struct nested nested;
};
int main(void) {
struct foo f = {
.member_a = 123,
.member_b = 0x4141414141414141,
.str = "foobar",
.ptr = &f,
.nested = {.n = 42}
};
__builtin_dump_struct(&f, printf);
}
$ clang -o test test.c && ./test
struct foo {
int member_a = 123
unsigned long member_b = 4702111234474983745
char * str = "foobar"
void * ptr = 0x7fff1df41b78
struct nested nested = {
int n = 42
}
}
The original version of this feature was introduced back in 2018 (though it was reimplemented since in 2022).
I really cannot stress enough how much of an unexpected marketing gift the term "vibe coding" has been for us.
Upcoming Windows 11 builds won't have the ability to to install without internet connectivity and a Microsoft Account.
https://blogs.windows.com/windows-insider/2025/03/28/announcing-windows-11-insider-preview-build-26200-5516-dev-channel/
@wdormann I really think whoever decided that this is a good idea should be shipped to Eastern Europe and force them to live in a rural part where internet access is not given.
HUGE NEWS In the UK, Tanya O'Carroll has won her fight to force Facebook to let her opt out of its creepy surveillance-based targeted advertising. Campaigners are now gearing up to enable us this right not to be surveilled in this way, undermining the business model. https://www.thetimes.com/uk/technology-uk/article/facebook-personal-data-opt-out-swg26rm5z
🏳️🌈🖖🏽
If you don’t think this administration is so incompetent or callous as not to do this, you haven’t been paying attention.
My father-in-law is a COBOL programmer on social security and he's basically ready to join ISIS at this point