No Kings protests on Saturday, March 28.
Let’s make it a rally to remember.
Let’s encourage our friends and family to attend.
Let’s keep it peaceful and pleasant.
Let’s energize people to vote for Democrats.
Let’s stay safe and make some good trouble.
Lots of resources at https://www.nokings.org/
#UsPol #NoKings
1/n
Holy fuck.
> #Pizlix - Memory safe #Linux from scratch
https://fil-c.org/pizlix
Compiles the whole userland with Fil-C. Can't wait for this to trickle down to security critical distros like #TAILS .
Don't read the rest of the site if you are prone to falling down #compiler implementation related rabbit holes. 
edit: Turns out the author has some yikes views.
https://xcancel.com/filpizlo/status/1971729138542371312?s=46&t=xEl8MN2MK5LDZ0-nyPEPyg
in 1873, a relatively minor professional artist named Viktor Hartmann died suddenly in his 30s. As part of his memorial, an exhibition of his paintings was held, including his winning design proposal for a new "Great Gate of Kiev" which was never actually built.
Most of those paintings have since been lost, and no-one knows what they looked like. And yet you do know: you've heard them.
The memorial exhibition was attended by Viktor's grieving friend, Modest Mussorgsky. Modest walked slowly through the exhibition, which included drawings that Viktor had given to him personally, and went home and sat down at his piano. He composed one of the world's most famous pieces of music.
"Pictures at an Exhibition" is paintings we can't see and a gate that was never built, made known to us by a grieving musician.
complete recording: https://www.youtube.com/watch?v=XwJMpQiqCm4
full context for the grieving orchid: https://xkcd.com/1259/
Make sure people know: DONALD TRUMP says airports will stay fucked until Democrats agree to vote for the Women's Disenfranchisement ("save") Act.
Tell everybody who complains about airports, everyone who complaints about gas prices, anyone who complains about anything: Donald Trump HIMSELF will not let it get fixed UNTIL 21 MILLION WOMEN are disenfranchised.
And that they need to strap in and hold steady, because we cannot let that happen.
#uspol #uspolitics #politics #fascism #FuckTrump #FuckRepublicans #FuckTheGOP #FuckAllOfThem
Hey #California, the third-place-polling #Republican governor candidate Sheriff Chad Bianco has just seized 650,000 ballots from Riverside County, under the pretense of a “fact-finding mission” to see if some kind of crime has been committed during the Prop 50 vote—the one that asserts that California can use an older district map for the 2028 map. He did this despite AG Rob Bonta and Secretary of State Shirley Weber’s assertion that his actions were “outside the law”, and despite the fact that Prop 50 passed by a whopping 64%, and that this investigation will do nothing to change its outcome.
Bianco apparently got a judge to sign off on a search warrant, but the article doesn’t say who it was that signed it.
Bianco is a hard-right Trumper, and a frequent proponent of the kinds of voter-fraud conspiracies that drive the far right. He’s showing that he will use the Sheriff’s office to sow chaos in California to help Trump.
He must be defeated at the polls.
https://www.sfchronicle.com/california/article/chad-bianco-ballots-22090730.php
RE: https://oldbytes.space/@thevowel/116253257354562286
I'll be giving a talk at VCF PNW!
"UNIX V4: History and Recovery"
RE: https://flipboard.com/@bbcnews/top-stories-hc55lmo2z/-/a-jIJitWAxQhuv9V9UK1GRkA%3Aa%3A3199692-%2F0
Our allies felt that they needed to plan for this. Our Allies. Trump needs to be impeached. It’s the only way to start working on rehabilitating our country and, then, the decades-long process of rehabilitating our country’s imagine in the world. 80+ years of goodwill destroyed in 14 months.
Hello Mastodon!
Since this is my first post, I thought I'd share some incredibly niche C++ trivia / pedantry:
For an enum whose enumerators all have the value 0, C++ asks us to imagine a hypothetical integer type with minimal width that can represent 0 (https://eel.is/c++draft/dcl.enum#8.sentence-2). This means we must consider the case where the width is 0. For an unsigned integer type, this gives a range of representable values of [0, 0], and that's the type we pick. But before we can determine that that's minimal, we must also consider a signed integer type with a width of 0, for which we get a range of representable values of [-½, -½]! (https://eel.is/c++draft/basic.fundamental#1.sentence-5) Conveniently that range does not include 0, so we discover that we must use an unsigned integer type to determine the range of values of the enumeration. (We also rule out an unsigned integer type of negative width as that would have a range of values 0 to -½ (inclusive) or smaller, which I think we can reasonably conclude is an empty range despite the parenthetical.)
In any case: if you ever wondered whether a zero-bit signed integer type in C++ can represent only the value 0 or only the value -1, now you know: no, it can represent only the value -½. Truly a marvelous compromise.
Follow me for more brilliant insights like this one :)
Here is another slow expression to demonstrate the disjunction pruning optimization I talked about earlier.
Suppose you declare a variable of implicitly unwrapped optional type:
var x: Int! = ...
The value of x is stored like an ordinary optional "Int?", but a reference to x from inside an expression is presented as a disjunction---the type of the reference is either "Int", or "Int?". If both lead to a solution, we favor the "Int?" choice; otherwise, we get the "Int" choice, and the compiler then lowers the reference to a runtime check.
Now, consider this expression:
let result = x + x + x + x + x + x
It takes the Swift 6.3 compiler a third of a second to type check this expression, and now its instant with recent main snapshots. What changed?