True, but it was also expected that the VVD would get decimated these elections, which did not happen. So it could very well embolden them. I guess we'll see, but either way I still firmly believe negotiations will be extremely difficult. Our last three(!) formations were over half a year long.
29.10.2025 20:43 β π 4 π 0 π¬ 1 π 0
VVD-leader Yesilgoz has however said she did not want to form a government with GL-PvdA. I also have a hard time seeing D66 together with JA21, so I feel like we're going to have a very difficult formation, as is tradition at this point.
29.10.2025 20:35 β π 7 π 0 π¬ 1 π 0
08.02.2025 17:26 β π 43 π 10 π¬ 1 π 0
At least I'm pretty sure Clippy didn't cost extra?
24.01.2025 18:40 β π 0 π 0 π¬ 0 π 0
how haskell-specific is this problem? it feels like something most type systems would struggle with, since you need to have the forall somewhere.
24.01.2025 18:36 β π 0 π 0 π¬ 2 π 0
The output of `perf report` zoomed into a function. The profile shows that a single use of `vpcompressd` (or actually the instruction after it) has consumed over 50% of the program's total runtime.
When you're trying to do some AVX programming using ISPC but you're on a Zen4 machine.. Even doing this serialized is faster lmfao
11.01.2025 23:25 β π 0 π 0 π¬ 0 π 0
Make your own text editor π₯Έ
also, I personally quite like Kate, but I think it's best if you use KDE, and there is no plugin ecosystem to speak of, nor do I think making one is easy (pretty sure it needs to be done in C++...)
11.01.2025 22:57 β π 1 π 0 π¬ 0 π 0
Another common mistake I see with LLMs is sticking to prose inputs and outputs for the model
Most users are actually pretty allergic to both typing out and reading large blocks of text. It's often better to structure inputs and outputs to be something other than sentences/paragraphs
09.01.2025 20:22 β π 9 π 1 π¬ 2 π 0
character who is running down on the thoughts of making a programming language
10.01.2025 11:11 β π 81 π 18 π¬ 1 π 4
(pulling up the ladder behind me) This is an opportunity for you to succeed through hard work and determination
03.12.2024 16:26 β π 3040 π 359 π¬ 26 π 5
Joke about environmentally friendly cryptography.
"Sustainable Cryptography Initiative
Reduce: use less different keys
Reuse: key pairs are still usable after the expiration date
Recycle: publish your private key so less key mining is needed"
27.11.2024 08:17 β π 49 π 21 π¬ 2 π 2
I just started doing #adventofcode in #Haskell, but I've already done that for like the last three years, so maybe it's time for something else?
Does anyone here have any fun suggestions?
01.12.2024 06:13 β π 2 π 0 π¬ 0 π 0
QUICK REMINDER NEWSKIES:
Pronouns are SUPER easy to add
Just pop over here, sub, and then go to posts to select yours so they pop up as a profile label and you have more room in your bio!!
bsky.app/profile/pron...
18.11.2024 04:15 β π 52 π 39 π¬ 6 π 0
ghci> data TreeL a = LeafL | NodeL a (TreeL a) (TreeL a) deriving (Show, Eq, Functor, Foldable)
ghci> data TreeM a = LeafM | NodeM (TreeM a) a (TreeM a) deriving (Show, Eq, Functor, Foldable)
ghci> foldr (:) [] $ NodeL 2 (NodeL 1 LeafL LeafL) (NodeL 3 LeafL LeafL)
[2,1,3]
ghci> foldr (:) [] $ NodeM (NodeM LeafM 1 LeafM) 2 (NodeM LeafM 3 LeafM)
[1,2,3]
Seems like it does, it probably defines foldMap and then goes left-through-right:
28.11.2024 14:14 β π 2 π 0 π¬ 1 π 0
Hi, so I've spent the past almost-decade studying research uses of public social media data, like e.g. ML researchers using content from Twitter, Reddit, and Mastodon.
Anyway, buckle up this is about to be a VERY long thread with lots of thoughts and links to papers. π§΅
27.11.2024 15:33 β π 966 π 453 π¬ 59 π 125
I knew you could derive Functor, but I didn't know it also worked for Foldable. True π€― moment for me, tbh.
I wonder though, will Foldable behave differently if Node is defined as `Node (Tree a) a (Tree a)`?
28.11.2024 09:58 β π 2 π 0 π¬ 2 π 0
Unicode is annoying because it's hard to type. And Haskell typically is pretty rich in symbols (I mean, what the hell is <*>?) so it makes sense to me that they don't use a keyword like fn.
Rust's |x| would work, I guess, but has the same problems. Just -> would make the syntax more complex IMO.
28.11.2024 09:54 β π 1 π 0 π¬ 1 π 0
Firefox does not share my posts publicly or anything like that. The fact here is that people are mad about the JSON file being distributed publicly on HF. The file hosting does not federate with Bsky so I don't think it's covered, but just saying "JSON file" is a reductio ad absurdum.
28.11.2024 08:23 β π 0 π 0 π¬ 1 π 0
The dataset does not include the post author name in a human readable way. As such, searching your or someone else's username is completely pointless.
28.11.2024 07:52 β π 2 π 0 π¬ 1 π 0
Alpindale uploaded the file to Huggingface, a SERVICE to share AI content. Doing that provides a SERVICE to AI developers.
28.11.2024 07:48 β π 0 π 0 π¬ 1 π 0
So I guess the strictness analyzer succeeds here? That's pretty neat!
Still not sure how I feel about relying on a compiler optimization to get good asymptotic memory usage though, especially since it may also require inlining? Guess I'll be trying a few things today!
26.11.2024 08:21 β π 4 π 0 π¬ 0 π 0
I'm also curious to see if the i3 lineup will get a cluster of E-cores, especially now that hyperthreading is gone. Making a 4c4t CPU seems kind of not-the-move even for a budget chip, since all i3's since 10th gen have been 4c8t. 4p+4e 8t would be fine and probably a really nice MT uplift too.
25.11.2024 19:00 β π 0 π 0 π¬ 0 π 0
I overall quite like laziness, but IMO oversized thunks are a significant problem.
For example, folds require explicit strictness to implement a basic reduction like sum without requiring linear (stack) space.
That said, I've never tried if the strictness analyzer helps in their case. Does it?
25.11.2024 18:56 β π 2 π 0 π¬ 1 π 0
What's wrong with how Tumblr does it? The really long chains, or is it something else?
25.11.2024 05:06 β π 1 π 0 π¬ 1 π 0
23.11.2024 00:46 β π 1 π 0 π¬ 0 π 0
Yep, and I can't imagine a $3000 PC having older parts either.
20.11.2024 10:21 β π 0 π 0 π¬ 0 π 0
Lunar Lake is 200V specifically (not 200H or 200U or 200 or 200K).
As for the 13th/14th gen issues, those seemed to be hardware degradation causing actual errors (such as BSODs), not things becoming laggy. The lag is probably just a software/driver issue and not harmful for the HW.
20.11.2024 05:39 β π 0 π 0 π¬ 1 π 0
Can't you remove the faulty stick and just use the system with less RAM? It would cause a performance hit but IMO better that than an unreliable system.
19.11.2024 20:38 β π 1 π 0 π¬ 0 π 0
Does Turing not have RTX HDR support? According to PCGamer it should work on any RTX card.
19.11.2024 20:35 β π 0 π 0 π¬ 0 π 0
Kaartenkleier, βprominenteβ Twitteraar, ontkenner van Etten-Leur en voor al uw potsierlijke flauwekul van de provinciale onbenul.
Kaartje bestellen? π http://Kaartenhuis.shop
π₯ππ
dan maken we maar zin.
https://linktr.ee/debroervanroos
Hello everyone! I'm Adrian Black, a retro computer YouTuber who fixes stuff from Portland, Oregon.
Main: youtube.com/@adriansdigitalbasement
Second: youtube.com/@adriansdigitalbasement2
Extras: youtube.com/@adriansdigitalbasementextras
I am a researcher-maker-hacker focusing on Computer Graphics with a #retro, #fpga gaming twist. I am also very much into #3dprinting and #electronics.
These days I enjoy making #graphics hardware on fpga, using a language I developed, #Silice
British, But In Las Vegas and NYC
ezitron.76 Sig
Newsletter - wheresyoured.at
https://linktr.ee/betteroffline - podcast w/ iheartradio
Chosen by god, perfected by science
CEO at EZPR.com - Award-Winning Tech PR
animal, vegetable, and mineral. product designer/engineer-er (prev @lickability.com)
Marginalia of a latent genius.
Prev founder @ acq YC start-up. CS @ MIT. Kickboxer. Theater Kid.
Social science and other distractions. Old posts get deleted pretty quick.
https://kieranhealy.org /
https://theordinalsociety.com
Senior Gameplay Programmer and former gamedev professor.
he/him
Blog: https://larstofus.com/
DMs are open.
The fossil fuel industry is at war with your future. When will you start fighting back?
https://sharnoff.io/photos
Eggbug forever.
programmer, mathematician, 21yo girl. https://iczelia.net/.
I research programming languages and turn Category Theory into code
Follow me to receive notifications via DM whenever you're added to a starter pack, block list, feed or when someone blocks your account.
Follow @unsub.blocks.listifications.app to opt out of direct block notifications.
Confess your sins anonymously - will the internet absolve you?
Buy show tickets 2025/6: sites.google.com/view/fesshole
Add confession b3ta.com/addfess
Buy book amazon.co.uk/s?k=very+best+of+fesshole&tag=b3ta-21
Run @robmanuelyeah.bsky.social
absolutely will not shut up about programming languages. apparently also now the calendar guy
(he/him)
22 | jus a bi ott on the net | urbanism, trains, planes, sports n stuff | fursuit by @aussiestudios.bsky.social