<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <updated>2026-04-19T01:35:45Z</updated>
  <generator>https://yabu.me</generator>

  <title>Nostr notes by mei</title>
  <author>
    <name>mei</name>
  </author>
  <link rel="self" type="application/atom+xml" href="https://yabu.me/npub1zfhhe9kc24jlljek295nz797s6t6kfle9nr57umk2sgg452m2c5q86rv57.rss" />
  <link href="https://yabu.me/npub1zfhhe9kc24jlljek295nz797s6t6kfle9nr57umk2sgg452m2c5q86rv57" />
  <id>https://yabu.me/npub1zfhhe9kc24jlljek295nz797s6t6kfle9nr57umk2sgg452m2c5q86rv57</id>
  <icon>https://asdf.donotsta.re/media/07e3040b84a46e011abefdcf56f43ff49fc180314d3d2ffd56487d40fc1213f6.png</icon>
  <logo>https://asdf.donotsta.re/media/07e3040b84a46e011abefdcf56f43ff49fc180314d3d2ffd56487d40fc1213f6.png</logo>




  <entry>
    <id>https://yabu.me/nevent1qqswx34m49mke26j35plynznvyt6mcx4kwpyhslvfalau5ddcxp7hvqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs99qqam</id>
    
      <title type="html">time to go for a walk around the codebase, looking for ways to ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqswx34m49mke26j35plynznvyt6mcx4kwpyhslvfalau5ddcxp7hvqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs99qqam" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspsd4et95knyhusmedun3n9uzm2g3j2ps5vu86n4p7r8emjgvd6sgtl9cr6&#39;&gt;nevent1q…9cr6&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;time to go for a walk around the codebase, looking for ways to reduce the code size?
    </content>
    <updated>2026-02-26T20:43:59Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs9lg8jz4kj7hnlgpd89l5lzd0y5wz8hksem28cgtjwhzn877s8k2szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstanr6y</id>
    
      <title type="html">so i wanted to learn some category theory. opened up a textbook ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs9lg8jz4kj7hnlgpd89l5lzd0y5wz8hksem28cgtjwhzn877s8k2szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstanr6y" />
    <content type="html">
      so i wanted to learn some category theory.&lt;br/&gt;&lt;br/&gt;opened up a textbook on one side, agda on the other, and started trying to formalize the concepts and proofs&lt;br/&gt;&lt;br/&gt;but i hit a bug in how agda&amp;#39;s pretty printer behaves. one i couldn&amp;#39;t easily work around&lt;br/&gt;&lt;br/&gt;so i decided i&amp;#39;ll finally start contributing to agda and try to fix it myself&lt;br/&gt;&lt;br/&gt;started poking around, accidentally figured out a different bug that I previously thought wasn&amp;#39;t worth looking into&lt;br/&gt;&lt;br/&gt;but okay, gonna keep digging into the bug that actually led me down this path.&lt;br/&gt;&lt;br/&gt;soon i found myself wanting to take a look at how agda&amp;#39;s AST looks in practice in one specific case, only to find that there isn&amp;#39;t really a way to do that, because haskell&amp;#39;s Show prints way too much information, all in one line, filling the entire terminal screen with mostly irrelevant info&lt;br/&gt;&lt;br/&gt;so i did the natural thing and started writing a pretty printer for this purpose&lt;br/&gt;&lt;br/&gt;eventually i got annoyed that each time i compiled agda, it would spend a good 30 seconds doing some kind of build system bookkeeping&lt;br/&gt;&lt;br/&gt;like, i measured. a build with the entire cache fresh already would take 30 fucking seconds&lt;br/&gt;&lt;br/&gt;as 30 seconds is enough time for me to start scrolling through fedi, i decided i need to look into this&lt;br/&gt;&lt;br/&gt;so i started poking around the surprisingly complex makefile, learning more than i ever wanted to know about make&lt;br/&gt;&lt;br/&gt;finally found the culprit: in a maze of includes, recursive make invocations and variable expansion, various variations of stack --dest-dir would get called like. way too many times during the build. and each of those would take 750ms to initialize, print the path to the build directory and exit&lt;br/&gt;&lt;br/&gt;*sigh*, okay. i guess i&amp;#39;ll need to optimize the makefile a bit&lt;br/&gt;&lt;br/&gt;managed to get it down to 10s for a do-nothing build. scoured the internet looking for a feature of make that would be useful to bring it down further&lt;br/&gt;&lt;br/&gt;didn&amp;#39;t find it. as far as i can tell, &amp;#34;expand lazily, but then cache it&amp;#34; is not a behavior that&amp;#39;s available in gnu make, despite the absolute abundance of features they added on top of what posix specifies&lt;br/&gt;&lt;br/&gt;now, thankfully i know better than to attempt upstreaming a feature into gnu make. and anyway, in this case the good folks at stack overflow gave me a hint on what absolute crimes i could commit in that makefile to make it go faster&lt;br/&gt;&lt;br/&gt;but while i was contemplating my plan, i wondered: why does stack take 750ms to print a path in the first place?&lt;br/&gt;&lt;br/&gt;after execsnoop and strace didn&amp;#39;t give me any hints, i decided to try using the linux profiler &amp;#34;perf&amp;#34;, which i&amp;#39;m sure you know is a master class in UX design&lt;br/&gt;&lt;br/&gt;(it is not)&lt;br/&gt;&lt;br/&gt;so i open the &amp;#34;perf report&amp;#34; and see a bunch of addresses for which i don&amp;#39;t have debuginfo. suspiciously small addresses too, like 0x5ddc&lt;br/&gt;&lt;br/&gt;i start to notice the feeling of despair creeping up on me, but decide to persevere for at least a little bit more&lt;br/&gt;&lt;br/&gt;i choose the hottest sample on the report and select &amp;#34;Annotate 00...005ddc&amp;#34;&lt;br/&gt;&lt;br/&gt;now, i want you to consider that what i saw next was enough to get me to write out this entire rant. take a moment to internalize that.&lt;br/&gt;&lt;br/&gt;what batshit insane assembly did i see? what could possibly have been this upsetting?&lt;br/&gt;&lt;br/&gt;&amp;#34;Press &amp;#39;h&amp;#39; for help on key bindings&amp;#34;, it said. followed immediately by &amp;#34;erf: Segmentation fault&amp;#34;, that&amp;#39;s right, erf, without the p.&lt;br/&gt;&lt;br/&gt;then came a backtrace. one that listed the function name for each stack frame, as well as the source code file in which it were defined.&lt;br/&gt;&lt;br/&gt;but the line number of all these entries is fucking 0 for some reason, as if to mock me&lt;br/&gt;&lt;br/&gt;like, it&amp;#39;s not like i cared at this point where exactly the segfault happened, because even i do have my limits&lt;br/&gt;&lt;br/&gt;but the computer apparently decided to find one more place in which it could subtly signal that there&amp;#39;s a nugget of insanity lurking within, to really get that eye twitchin&amp;#39;&lt;br/&gt;&lt;br/&gt;and all i wanted was to learn some category theory
    </content>
    <updated>2026-02-21T21:09:37Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsfdcltv28x98ngvhfc397jggwejwlzuc7z2n65zva9hyaax6qjjeqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsuftev8</id>
    
      <title type="html">just noticed this, can&amp;#39;t seem to find you going over the rest ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsfdcltv28x98ngvhfc397jggwejwlzuc7z2n65zva9hyaax6qjjeqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsuftev8" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsyfdupz4vcghdm7eeq40v9fus86hxp3pquejnjajdq4g552xln0cspp9qlk&#39;&gt;nevent1q…9qlk&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;just noticed this, can&amp;#39;t seem to find you going over the rest of the schematic, though
    </content>
    <updated>2026-02-13T21:14:42Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsyxq6qyl0wcq82p62hdgsku8xy68fyg5dcc5h9rqdtl0ghyqkvp4szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzss45cpx</id>
    
      <title type="html">okay this seems to have gotten it working for now ``` # pets: ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsyxq6qyl0wcq82p62hdgsku8xy68fyg5dcc5h9rqdtl0ghyqkvp4szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzss45cpx" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqst9vgq43z2p29ll0rr6afxszeuql30ypl28cjxys8emmvrdv8cafgsl525t&#39;&gt;nevent1q…525t&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;okay this seems to have gotten it working for now&lt;br/&gt;&lt;br/&gt;```&lt;br/&gt;# pets: destfile=/etc/xdg/nix/nix.conf&lt;br/&gt;# pets: package=nix&lt;br/&gt;# pets: post=systemctl enable nix-daemon&lt;br/&gt;&lt;br/&gt;extra-experimental-features = nix-command flakes&lt;br/&gt;```
    </content>
    <updated>2026-02-12T14:53:09Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqst9vgq43z2p29ll0rr6afxszeuql30ypl28cjxys8emmvrdv8cafgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstvme45</id>
    
      <title type="html">`error: creating directory &amp;#39;/nix/store&amp;#39;: Permission ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqst9vgq43z2p29ll0rr6afxszeuql30ypl28cjxys8emmvrdv8cafgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstvme45" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs8333vsg57r54al0s2ua9zdelhzc0r4mc836ahff4mk5yc3456sdgkmlfyd&#39;&gt;nevent1q…lfyd&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;`error: creating directory &amp;#39;/nix/store&amp;#39;: Permission denied`&lt;br/&gt;&lt;br/&gt;hm maybe i need to do a bit more than just `pacman -S nix`
    </content>
    <updated>2026-02-12T14:49:41Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs8333vsg57r54al0s2ua9zdelhzc0r4mc836ahff4mk5yc3456sdgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsqf0srp</id>
    
      <title type="html">current status: `error: experimental Nix feature ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs8333vsg57r54al0s2ua9zdelhzc0r4mc836ahff4mk5yc3456sdgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsqf0srp" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqstzx24hedy3vafanqn9h0k2as4xkjn0czuml7e55qh706p3g20xqs3sc0su&#39;&gt;nevent1q…c0su&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;current status: `error: experimental Nix feature &amp;#39;nix-command&amp;#39; is disabled; add &amp;#39;--extra-experimental-features nix-command&amp;#39; to enable it`&lt;br/&gt;&lt;br/&gt;amazing UX
    </content>
    <updated>2026-02-12T14:45:01Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqstzx24hedy3vafanqn9h0k2as4xkjn0czuml7e55qh706p3g20xqszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszzfawy</id>
    
      <title type="html">current status: fighting ghcup, cabal and stack. slowly realizing ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqstzx24hedy3vafanqn9h0k2as4xkjn0czuml7e55qh706p3g20xqszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszzfawy" />
    <content type="html">
      current status: fighting ghcup, cabal and stack. slowly realizing just how spoiled i am, being used to rust&amp;#39;s cargo&lt;br/&gt;&lt;br/&gt;maybe i should install nix. surely that&amp;#39;ll solve all my problems
    </content>
    <updated>2026-02-12T14:38:25Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs29fyjgz0055mfrz0uwge0ha6cx4vnwndzd5wc8k36gcdhc86f3uczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsm4cmh7</id>
    
      <title type="html">well I&amp;#39;d say that this isn&amp;#39;t necessarily a question of ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs29fyjgz0055mfrz0uwge0ha6cx4vnwndzd5wc8k36gcdhc86f3uczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsm4cmh7" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqszn3zjslhnlyr4ak96tqykyefr848xfe7kpg8qdyk652zhudny6ncg5nv7f&#39;&gt;nevent1q…nv7f&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;well I&amp;#39;d say that this isn&amp;#39;t necessarily a question of whether it will work, but *how much work it will involve* ;3
    </content>
    <updated>2026-01-29T21:47:01Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsgvflf5ndf7nmajt5jgvrmgc6xzc4tz7nx608fa5wqafva9rp0ppqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsjd08np</id>
    
      <title type="html">okay, concept: version that works with the vanilla client but ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsgvflf5ndf7nmajt5jgvrmgc6xzc4tz7nx608fa5wqafva9rp0ppqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsjd08np" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs92wqmg0pvtp00yphkgv8r9qwmzuj4v7lq9f95gq8z3fghjvcrvggc3yu40&#39;&gt;nevent1q…yu40&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;okay, concept: version that works with the vanilla client but only the one from before the log4j vuln was patched
    </content>
    <updated>2026-01-29T21:15:34Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsz0j9jz22zd0rwsaa2uffmzpntasplws4smdumvjyqjekdt80rmhgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs3ryuu6</id>
    
      <title type="html">ohh, that&amp;#39;s what they mean... for some reason I just parsed ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsz0j9jz22zd0rwsaa2uffmzpntasplws4smdumvjyqjekdt80rmhgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs3ryuu6" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs2wuhe52hk96p9hhjl64jzvk4w2vry8jxsvwy74nc2l0xyrypw0hqevqwhm&#39;&gt;nevent1q…qwhm&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;ohh, that&amp;#39;s what they mean...&lt;br/&gt;&lt;br/&gt;for some reason I just parsed it as &amp;#34;multiplayer-capable&amp;#34;, but mods that don&amp;#39;t work in multiplayer are *very* rare if they exist at all ever since 1.3, so as I&amp;#39;m realizing, what I thought they meant doesn&amp;#39;t make much sense
    </content>
    <updated>2026-01-29T21:03:34Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs8k4cl6p4xt4t8xmmhrv76f203wz0nn8fm4qcvaq73jtuan5pvz6qzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzswdsfzp</id>
    
      <title type="html">wait, why would it be impossible? what&amp;#39;s the core difficulty?</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs8k4cl6p4xt4t8xmmhrv76f203wz0nn8fm4qcvaq73jtuan5pvz6qzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzswdsfzp" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsxdr0s6lt90mj2ams8tfpwqh9lu0jfdkutx8kr0pcp8xhcykw2q6sudrfeg&#39;&gt;nevent1q…rfeg&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;wait, why would it be impossible? what&amp;#39;s the core difficulty?
    </content>
    <updated>2026-01-29T20:59:00Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsx7n9xmtm024cqyrt5mm7ngu4ypynehxzy22x9gt445g9jeczaa4czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzspa984r</id>
    
      <title type="html">looks like pmOS has a code of conduct team. if you&amp;#39;ve ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsx7n9xmtm024cqyrt5mm7ngu4ypynehxzy22x9gt445g9jeczaa4czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzspa984r" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspz3h2ncjnm4yha5cjw4rpl37wrtnnhwaaxxy7eqne96907cehu7cz70y6e&#39;&gt;nevent1q…0y6e&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;looks like pmOS has a code of conduct team. if you&amp;#39;ve reported the raids and the community members behind the raids haven&amp;#39;t received any repercussions, I would definitely start mentally putting pmOS in the &amp;#34;best stay away&amp;#34; category
    </content>
    <updated>2026-01-10T02:07:02Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxzk92ercckfq9z2qu8q4vytt27tj98w86cpzqx9g3javmlc0n3vqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsjgxgjc</id>
    
      <title type="html">i am familiar with Rossmann&amp;#39;s video. I watched it while I was ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxzk92ercckfq9z2qu8q4vytt27tj98w86cpzqx9g3javmlc0n3vqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsjgxgjc" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsyvslhzcxslra3gw7qw86upm27hqqw6lx9slxq5r90nyunutdjzqssh2gec&#39;&gt;nevent1q…2gec&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;i am familiar with Rossmann&amp;#39;s video. I watched it while I was a GrapheneOS user and didn&amp;#39;t find it damning enough to take any particular action. I&amp;#39;ve since forgotten what it was about apart from the fact that some kind of DM screenshots were involved.&lt;br/&gt;&lt;br/&gt;I&amp;#39;ve since become aware of Rossmann&amp;#39;s activity on KiwiFarms. this is enough for me to definitively discount that video&amp;#39;s claims.&lt;br/&gt;&lt;br/&gt;have the pmOS developers actively participated in the campaign, or did they just, like, acknowledge the video&amp;#39;s existence?
    </content>
    <updated>2026-01-10T01:23:12Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqstcpedzzahm7vp9m3tpnnqhq9lpwvqtyu87c820y07u9v04ceqqpszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsnympdr</id>
    
      <title type="html">can i have a link to something concrete, about the whole thing ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqstcpedzzahm7vp9m3tpnnqhq9lpwvqtyu87c820y07u9v04ceqqpszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsnympdr" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsxt34kmed7l99rfmm52awnv2nfawmkq8sp3q4wj0rls7a5huwshgcc8ryv6&#39;&gt;nevent1q…ryv6&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;can i have a link to something concrete, about the whole thing pmOS &amp;amp; GNOME developers participating in harassment?
    </content>
    <updated>2026-01-10T01:11:45Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs8449kskjklma4a9fk54g0tttv7gflzenla0vf907xmw7uhmf3nxszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsq5kn47</id>
    
      <title type="html">yup, i think that is the core of the issue. you&amp;#39;re eager to ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs8449kskjklma4a9fk54g0tttv7gflzenla0vf907xmw7uhmf3nxszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsq5kn47" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsxxzqwp9lv4r9tq4jrdwdfjnrtc545nzj3e9sr2caa23u6nurymcq07mt2z&#39;&gt;nevent1q…mt2z&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;yup, i think that is the core of the issue. you&amp;#39;re eager to defend yourself, but often this comes with making accusations towards others. if you keep doing that again and again without backing up your claims with anything, it&amp;#39;ll be difficult for people to see this in a good light&lt;br/&gt;&lt;br/&gt;[untagging elly as she seems to have asked for that at some point?]
    </content>
    <updated>2026-01-10T00:57:15Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsr8x69d7gh4j22qelefrjlumdr7kans7uaet7dak669hgvv044m6szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsucs2vm</id>
    
      <title type="html">trip back from #39c3 is going... well. plan is: four REs in ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsr8x69d7gh4j22qelefrjlumdr7kans7uaet7dak669hgvv044m6szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsucs2vm" />
    <content type="html">
      trip back from #39c3 is going... well.&lt;br/&gt;&lt;br/&gt;plan is: four REs in Germany, cross the border in Szczecin, take a PKP IC night connection to where we need to go.&lt;br/&gt;&lt;br/&gt;the german portion goes flawlessly. &amp;#34;well, that went smoothly&amp;#34;, we think, discounting the possibility that anything could go wrong in the one train that remains.&lt;br/&gt;&lt;br/&gt;we board the train and find our wagon. &amp;#34;wasn&amp;#39;t there supposed to be compartments?&amp;#34;&lt;br/&gt;&lt;br/&gt;turns out the wagon type is different from timetable. most people&amp;#39;s reservations don&amp;#39;t correspond to any seats. the wagon actually present has a lot of the space filled with bike racks and vending machines, so the capacity is much smaller than planned.&lt;br/&gt;&lt;br/&gt;every travel party boarding carries out the same conversation again: &amp;#34;wait, where are our seats&amp;#34;&lt;br/&gt;&lt;br/&gt;we can hear train staff responding to irate passengers: &amp;#34;please give me a moment, I only joined one stop ago. I&amp;#39;m trying to figure out seating for everyone but it&amp;#39;s gonna take some time&amp;#34;&lt;br/&gt;&lt;br/&gt;turns out, there is an extra spare wagon with noone booked in it. so, just tell the people without seats to go there, right?&lt;br/&gt;&lt;br/&gt;wrong.&lt;br/&gt;&lt;br/&gt;the train is composed of two parts, and is scheduled to split in Poznań to continue to two different destinations. the extra capacity is not in the right part for this to work.&lt;br/&gt;&lt;br/&gt;so, they go to the wagon at the centre of the train, and reinterpret_cast it from one destination to another. they announce: &amp;#34;everyone going to Warsaw please move to car number [whatever] at the end of the train, it&amp;#39;s all empty so you&amp;#39;ll be able to find seats. this car will actually be going to Przemyśl&amp;#34;&lt;br/&gt;&lt;br/&gt;then they go to the wagon without enough seats, and tell everyone without matching seat reservations to move to car [whatever2].&lt;br/&gt;&lt;br/&gt;you know, once everyone whose seat didn&amp;#39;t exist has already figured something out.&lt;br/&gt;&lt;br/&gt;so the train goes back into chaos for a good bit. but the Hilbert Hotel maneuver is carried out successfully, and eventually we arrive in Poznań.&lt;br/&gt;&lt;br/&gt;they begin the shunting by splitting our train in two. this happens just as one of the passengers wants to go to the other section, because that&amp;#39;s where her family is.&lt;br/&gt;&lt;br/&gt;we start explaining to the elderly confused passenger what exactly is going down, and that once they finish the shunting, she&amp;#39;s gonna need to go back to the other platform.&lt;br/&gt;&lt;br/&gt;the staff announces: &amp;#34;anybody else going to Warsaw or the like? this is the part that goes to Przemyśl! I don&amp;#39;t wanna hear any crying later!&amp;#34;. a couple more people realize &amp;#34;oh shit, i&amp;#39;m in the wrong part of the train&amp;#34;.&lt;br/&gt;&lt;br/&gt;everyone starts speaking up: &amp;#34;i&amp;#39;m going to Kraków, am I in the right part of the train?&amp;#34; &amp;#34;yes, you&amp;#39;re in the right one&amp;#34; &amp;#34;what about Rzeszów?&amp;#34; &amp;#34;what about Wrocław?&amp;#34;&lt;br/&gt;&lt;br/&gt;before we left Poznań, the train staff could be seen discussing with a passenger on the platform. I don&amp;#39;t know what they talked about, but it involved shrugging in rapid succession.&lt;br/&gt;&lt;br/&gt;maybe I should start carrying emergency popcorn on my train trips...
    </content>
    <updated>2025-12-31T01:09:41Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqswxckpnavtnyr6j75amckrw9wn76ke7kn8v6sslqwkzxyceecpqkqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4v2yrc</id>
    
      <title type="html">will the FPGA configuration pins be accessible to the CPU?</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqswxckpnavtnyr6j75amckrw9wn76ke7kn8v6sslqwkzxyceecpqkqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4v2yrc" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspu4tjwxzu6n9faztkxlr5z55zvl2qj3l2d0qezhyfzz7f40akwhgw72q75&#39;&gt;nevent1q…2q75&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;will the FPGA configuration pins be accessible to the CPU?
    </content>
    <updated>2025-11-14T01:33:42Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs99fxfp4npuu34r9lqldjkgh926mm078emezx8zgmnmuuyuu94fygzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsxz43gx</id>
    
      <title type="html">containers, amirite ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs99fxfp4npuu34r9lqldjkgh926mm078emezx8zgmnmuuyuu94fygzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsxz43gx" />
    <content type="html">
      containers, amirite&lt;br/&gt; &lt;img src=&#34;https://asdf.donotsta.re/media/96a4820db97af04fe5da7cdf619d866e1af6dc55ecc8081cf913fc955c938405.png&#34;&gt; &lt;br/&gt;
    </content>
    <updated>2025-10-23T03:10:04Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsdq5mfgk0dqkj8t42fn4k73yepvj30fgztf3msxzsj3l5vrzc5kvqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstnu606</id>
    
      <title type="html">sometimes, playing with proof assistants feels like getting ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsdq5mfgk0dqkj8t42fn4k73yepvj30fgztf3msxzsj3l5vrzc5kvqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstnu606" />
    <content type="html">
      sometimes, playing with proof assistants feels like getting astrally projected into the platonic heaven. othertimes however, it&amp;#39;s like a dubious BDSM scene with the devil of abstract symbolic manipulation holding the whip. according to the prophecy, whoever first figures out how to make a proof assistant that only contains one without the other will be awarded a Fields&amp;#39; medal and a prize to the amount of 53 pounds (this used to be a lot but inflation has ravaged the world since the problem was stated)
    </content>
    <updated>2025-10-10T22:21:29Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsp26xg45au5h35xng23yun07n8l5axytfqxyzu6k4n9tjdt6xckjgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs0gl3am</id>
    
      <title type="html">well, i&amp;#39;d hope that it does end up being a polyamory anime ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsp26xg45au5h35xng23yun07n8l5axytfqxyzu6k4n9tjdt6xckjgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs0gl3am" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs85ryq6r64r7fd3cxtjqz7xrhgulute5ar99k0wgccvcxl4h4k94clxcqlv&#39;&gt;nevent1q…cqlv&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;well, i&amp;#39;d hope that it does end up being a polyamory anime rather than a harem anime... do report back where it measures on the &amp;#34;incredibly queer&amp;#34; to &amp;#34;insufferably cishet&amp;#34; scale
    </content>
    <updated>2025-08-11T00:37:04Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxfd0nqarwtcs5cx7ee0ptpddjgdth0uulltad6h3nykgpk8xnskczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshkyzx6</id>
    
      <title type="html">so, where will we get the next generation of programmers who are ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxfd0nqarwtcs5cx7ee0ptpddjgdth0uulltad6h3nykgpk8xnskczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshkyzx6" />
    <content type="html">
      so, where will we get the next generation of programmers who are actually passionate about their craft, if all the mainstream outlets are trying their best to convince everyone that LLMs are where it&amp;#39;s at?
    </content>
    <updated>2025-08-06T16:57:37Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsp93vayp8452eefsguqh3wg5rmy2w04wkvve9v7ktu6tgrmz9xarszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs9s9qpf</id>
    
      <title type="html">considering that the passport is issued by the state, the owner ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsp93vayp8452eefsguqh3wg5rmy2w04wkvve9v7ktu6tgrmz9xarszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs9s9qpf" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsg4lrpuk5xttnff7at3u2afmfhwzajzsjjaxu0e054mycdc6v6jrqp3vsgf&#39;&gt;nevent1q…vsgf&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;considering that the passport is issued by the state, the owner of the passport will probably have no freedom in what software is running on it regardless
    </content>
    <updated>2025-07-08T12:50:54Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsw8vlry6xstt7ar2y9rf8m6g8y0962006jmw0var5uyglxyallp4czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsz8wfr5</id>
    
      <title type="html">type of guy that objects to border control because the smartcard ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsw8vlry6xstt7ar2y9rf8m6g8y0962006jmw0var5uyglxyallp4czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsz8wfr5" />
    <content type="html">
      type of guy that objects to border control because the smartcard within his passport is running proprietary software
    </content>
    <updated>2025-07-08T12:08:15Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqst685vhny4u9rl6rxs928jv56e03pamd6mp54zuv58xmeuvmpuylqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs6jzvfz</id>
    
      <title type="html">usually TOCTOU means that the attacker has the capability to ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqst685vhny4u9rl6rxs928jv56e03pamd6mp54zuv58xmeuvmpuylqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs6jzvfz" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsffwk2v4hvpkkedzf5wm94p9tap5s7gq3feykw5uqy6xa85efgedclnh7r9&#39;&gt;nevent1q…h7r9&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;usually TOCTOU means that the attacker has the capability to change the thing you&amp;#39;re checking. here it doesn&amp;#39;t change, you&amp;#39;re just unknowingly looking at it differently
    </content>
    <updated>2025-07-02T19:40:49Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsvqgytjnsyv69pvsqcd8cq7ga62jwhlw9f8ncf87fse0g6t8zjtuszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsl8m3p9</id>
    
      <title type="html">not sure if it&amp;#39;d call this TOCTOU — it&amp;#39;s more like a ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsvqgytjnsyv69pvsqcd8cq7ga62jwhlw9f8ncf87fse0g6t8zjtuszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsl8m3p9" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsqr6nyawgwedfjyeqtm9ezhse0920lwjx0w03ktfgthteq3wtqpagp84s8g&#39;&gt;nevent1q…4s8g&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;not sure if it&amp;#39;d call this TOCTOU — it&amp;#39;s more like a parser differential&lt;br/&gt;&lt;br/&gt;(yeah I&amp;#39;m probably overthinking your joke...)
    </content>
    <updated>2025-07-02T18:53:25Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqswylhxhqld6wuz4q0t8xdl3j6pmerhkhnwzkgrljh8wsxgstnrergzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs7lp9he</id>
    
      <title type="html">looks like a full adder</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqswylhxhqld6wuz4q0t8xdl3j6pmerhkhnwzkgrljh8wsxgstnrergzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs7lp9he" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsfr96e69rxcd5eg2zlqlqk2tp6fugvxqpadz0gq6fvqk6qqe9kyusru2fvg&#39;&gt;nevent1q…2fvg&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;looks like a full adder
    </content>
    <updated>2025-06-26T22:47:52Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsw274cv03cg4xufwahj7fufdl5mwlcw02pns3xyhymt9a3h879uugzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs38666d</id>
    
      <title type="html">oh, but they&amp;#39;re so beloved by the libertarians!!</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsw274cv03cg4xufwahj7fufdl5mwlcw02pns3xyhymt9a3h879uugzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs38666d" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs0l8puj89qpev73xf9zave3vagdmg8svwz0u55269vgtzza5lzkts20stcg&#39;&gt;nevent1q…stcg&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;oh, but they&amp;#39;re so beloved by the libertarians!!
    </content>
    <updated>2025-06-23T15:38:41Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxc0gl909zlfkymyzgv98ygmkd4jxxemfv2g0sd0g3phu3wx5q8cszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzssp8uyt</id>
    
      <title type="html">okay, this is basically catnip, I want one.</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxc0gl909zlfkymyzgv98ygmkd4jxxemfv2g0sd0g3phu3wx5q8cszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzssp8uyt" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqszu9cw9ey885luhtdwjyhezq3asy9djqu0a6wz8f948h9mqw0y9yghjndmm&#39;&gt;nevent1q…ndmm&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;okay, this is basically catnip, I want one.
    </content>
    <updated>2025-06-05T17:15:27Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs0qscnul0303ut8x5ufy5zennc9qq2lwvt33f7hk5zny6la8vamxszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4kp4ll</id>
    
      <title type="html">there are, predominantly, three types of software: - software ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs0qscnul0303ut8x5ufy5zennc9qq2lwvt33f7hk5zny6la8vamxszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4kp4ll" />
    <content type="html">
      there are, predominantly, three types of software:&lt;br/&gt;- software written by people who do not take pride in their work, due to which the software is full of bugs&lt;br/&gt;- software written by people who do take pride in their work, and have thusly burnt out, due to which the software is full of unfinished and/or missing features&lt;br/&gt;- software written by people who are paid big money by investors, due to which the software is full of dark patterns and antifeatures&lt;br/&gt;&lt;br/&gt;the art of using a computer involves learning to identify which of the above types a given piece of software belongs to, and choosing the software you use based on this tradeoff.
    </content>
    <updated>2025-06-01T01:43:26Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqszzhayz2jsl5wwdcl4xed3k9n2jylwydt6uwdm3uz76vyughjmeegzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzslnusyk</id>
    
      <title type="html">PSA: Evan Chen&amp;#39;s &amp;#34;Infinitely Large Napkin&amp;#34; has gotta ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqszzhayz2jsl5wwdcl4xed3k9n2jylwydt6uwdm3uz76vyughjmeegzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzslnusyk" />
    <content type="html">
      PSA: Evan Chen&amp;#39;s &amp;#34;Infinitely Large Napkin&amp;#34; has gotta be one of the most important math books out there. It makes higher math incredibly accessible.&lt;br/&gt;&lt;br/&gt;I can&amp;#39;t overstate how much it enabled me to do things that would otherwise only be reachable through years of studying pure mathematics at university.&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://web.evanchen.cc/napkin.html&#34;&gt;https://web.evanchen.cc/napkin.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&amp;gt; The Napkin project is a personal exposition project of mine aimed at making higher math accessible to high school students. The philosophy is stated in the preamble:&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; I’ll be eating a quick lunch with some friends of mine who are still in high school. They’ll ask me what I’ve been up to the last few weeks, and I’ll tell them that I’ve been learning category theory. They’ll ask me what category theory is about. I tell them it’s about abstracting things by looking at just the structure-preserving morphisms between them, rather than the objects themselves. I’ll try to give them the standard example Gp, but then I’ll realize that they don’t know what a homomorphism is. So then I’ll start trying to explain what a homomorphism is, but then I’ll remember that they haven’t learned what a group is. So then I’ll start trying to explain what a group is, but by the time I finish writing the group axioms on my napkin, they’ve already forgotten why I was talking about groups in the first place. And then it’s 1PM, people need to go places, and I can’t help but think:&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; &amp;gt; Man, if I had forty hours instead of forty minutes, I bet I could actually have explained this all.&lt;br/&gt;&amp;gt;&lt;br/&gt;&amp;gt; This book is my attempt at those forty hours.
    </content>
    <updated>2025-05-20T15:41:48Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsyxv9rgrayr5wdx7hsg4r96my5fefx7eyvnczqunh3ydvys28r66szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsavztvp</id>
    
      <title type="html">wait, isn&amp;#39;t %u already an existing specifier? i thought they ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsyxv9rgrayr5wdx7hsg4r96my5fefx7eyvnczqunh3ydvys28r66szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsavztvp" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgg056ls4nkuu2vx3gnq4hqnefaj4wj6pan04hntr4zcv0qjgjx8g2ymtwf&#39;&gt;nevent1q…mtwf&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;wait, isn&amp;#39;t %u already an existing specifier? i thought they need to be like, a prefix code
    </content>
    <updated>2025-05-07T01:36:28Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsqvz8dp3k23aa0fglj7zwux9w45h3xw7gjrah0agn7kwqc724fedgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs05vlh6</id>
    
      <title type="html">%y, as in &amp;#34;why does this need to be a separate format ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsqvz8dp3k23aa0fglj7zwux9w45h3xw7gjrah0agn7kwqc724fedgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs05vlh6" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsq09c0s2kqu3adxlytj62d2ssgzq8a2zd5pfm9r3yfkpzs772lf5qe0uwy2&#39;&gt;nevent1q…uwy2&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;%y, as in &amp;#34;why does this need to be a separate format specifier&amp;#34; /hj
    </content>
    <updated>2025-05-07T00:14:47Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsw22qj45p0ke589ktpqkstn2kcxa4ad33u9pwuwf75xa6ecjptlqqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzscjmpw7</id>
    
      <title type="html">what if the CPU could bitbang the JTAG of the FPGA? could ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsw22qj45p0ke589ktpqkstn2kcxa4ad33u9pwuwf75xa6ecjptlqqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzscjmpw7" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqst2lcuwf9da0vrcaeuewetvvsjjnvf8mkmsnzjswj7pjlhtjpjmtqve4zzv&#39;&gt;nevent1q…4zzv&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;what if the CPU could bitbang the JTAG of the FPGA? could reprogram the bitstream in RAM but leave the flash untouched...
    </content>
    <updated>2025-05-04T11:30:33Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsq8thggnr6wjwu3mncu9tmymkjhq8f9y2gmklspcuc65vtlzt7qqgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4kq7uj</id>
    
      <title type="html">why do so many programmers approach rust with &amp;#34;i have ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsq8thggnr6wjwu3mncu9tmymkjhq8f9y2gmklspcuc65vtlzt7qqgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4kq7uj" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsxep0q2trv0x9l9en6am003tagcn7zymppatsjsfjpp9pfyszh3tshmau6k&#39;&gt;nevent1q…au6k&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;why do so many programmers approach rust with &amp;#34;i have absolutely no experience with this language but i will immediately assume that the thing it&amp;#39;s trying to prevent me from doing is actually perfectly okay and i will bypass all safeguards instead of learning how to properly design programs in this paradigm&amp;#34;&lt;br/&gt;&lt;br/&gt;this feels absolutely terrible what the fuck
    </content>
    <updated>2025-04-23T01:18:19Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxep0q2trv0x9l9en6am003tagcn7zymppatsjsfjpp9pfyszh3tszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsg22m5j</id>
    
      <title type="html">pro tip: when evaluating whether to use a library inyour Rust ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxep0q2trv0x9l9en6am003tagcn7zymppatsjsfjpp9pfyszh3tszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsg22m5j" />
    <content type="html">
      pro tip: when evaluating whether to use a library inyour Rust program, first type &amp;#34;unsound&amp;#34; into the search bar of their issue tracker
    </content>
    <updated>2025-04-23T01:14:02Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsqp34sypuz7cquwpxs7qg67m7qs2ca8sy58lveek8pvsjc8y063rczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsy60cee</id>
    
      <title type="html">hi there! my name&amp;#39;s Nicole, but you can call me the Fediverse ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsqp34sypuz7cquwpxs7qg67m7qs2ca8sy58lveek8pvsjc8y063rczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsy60cee" />
    <content type="html">
      hi there! my name&amp;#39;s Nicole, but you can call me the Fediverse Chicken&lt;br/&gt; &lt;img src=&#34;https://asdf.donotsta.re/media/8f6e9cb61db35b9ed5673e78c824bcbc83f0ed8e4a022681ebe9d5a8febd9400.png&#34;&gt; &lt;br/&gt;
    </content>
    <updated>2025-04-15T16:50:32Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs8s3pndxuguw5lz9t8kcdkl4sw7suq36paeqaps53ux2j700e8lyczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsul0sk0</id>
    
      <title type="html">i&amp;#39;m sorry they did WHAT ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs8s3pndxuguw5lz9t8kcdkl4sw7suq36paeqaps53ux2j700e8lyczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsul0sk0" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsguc0el68mkahgd2c04sr53h8mqc0fkyut6u8x8pux6s2ju9u759cegxs5j&#39;&gt;nevent1q…xs5j&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;i&amp;#39;m sorry they did WHAT&lt;br/&gt; &lt;img src=&#34;https://asdf.donotsta.re/media/832cbe937c6aaa7547a38cc437f6d69971c57e98f8d28f5bfddb0716ba0f551f.png&#34;&gt; &lt;br/&gt;
    </content>
    <updated>2025-04-07T22:14:31Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsguc0el68mkahgd2c04sr53h8mqc0fkyut6u8x8pux6s2ju9u759czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs9vtxej</id>
    
      <title type="html">apparently loading 750MB of JSON into Python is enough to make a ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsguc0el68mkahgd2c04sr53h8mqc0fkyut6u8x8pux6s2ju9u759czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs9vtxej" />
    <content type="html">
      apparently loading 750MB of JSON into Python is enough to make a machine with 16 gigs of RAM start thrashing :neocat_googly_woozy:
    </content>
    <updated>2025-04-07T21:20:30Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqszkazy38dgr0qe20l87vwz7th3w5np6d7t9dvfxlalu486j78nayczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsdy0s93</id>
    
      <title type="html">god, imagine if LLM scrapers end up forcing git to introduce a ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqszkazy38dgr0qe20l87vwz7th3w5np6d7t9dvfxlalu486j78nayczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsdy0s93" />
    <content type="html">
      god, imagine if LLM scrapers end up forcing git to introduce a proof of work intos protocol
    </content>
    <updated>2025-04-04T12:03:41Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxcegad79thd25zg9zcenn28kss4ljutnuure9jpjp58q9fws8wqczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshef2te</id>
    
      <title type="html">OH: it&amp;#39;s a nice conditional jump you have here. it would be a ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxcegad79thd25zg9zcenn28kss4ljutnuure9jpjp58q9fws8wqczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshef2te" />
    <content type="html">
      OH: it&amp;#39;s a nice conditional jump you have here. it would be a shame if something happened to it
    </content>
    <updated>2025-03-31T20:19:24Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsfzthvzdal9tgy7n8yhdlzz40qs0h04ezq0gt29nwscjdc0xn5deczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsp02n2u</id>
    
      <title type="html">train ticketing is a joke ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsfzthvzdal9tgy7n8yhdlzz40qs0h04ezq0gt29nwscjdc0xn5deczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsp02n2u" />
    <content type="html">
      train ticketing is a joke&lt;br/&gt; &lt;img src=&#34;https://asdf.donotsta.re/media/f5cc7f15fb62e38edeb15f5022162b0f838a367d4ade4cc5465d2f5c54ee3447.png&#34;&gt; &lt;br/&gt;
    </content>
    <updated>2025-03-01T07:28:18Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs02xrf57vr3k34ehyajpuj0pf34rphjuz7j2s9up87cncz49f8uagzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsn6cz34</id>
    
      <title type="html">you underestimate their gerrymandering capabilities</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs02xrf57vr3k34ehyajpuj0pf34rphjuz7j2s9up87cncz49f8uagzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsn6cz34" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs8f7nnrpzsq6rrkcf0rtkp0newu5lkkwx69xtz6m2jhfy2lsp3pwg89v9cz&#39;&gt;nevent1q…v9cz&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;you underestimate their gerrymandering capabilities
    </content>
    <updated>2025-02-02T18:46:31Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs84x74kpks78m6vcg8xju22fdz2j7hl4870sqzkfhl48sqevsknzszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsvxj25v</id>
    
      <title type="html">if you&amp;#39;re curious, it tastes... bitter</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs84x74kpks78m6vcg8xju22fdz2j7hl4870sqzkfhl48sqevsknzszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsvxj25v" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsvld0trvazxer75xxvmc7mavq5hsu3yl20npkcej4429ar59qr5ugfdjh7h&#39;&gt;nevent1q…jh7h&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;if you&amp;#39;re curious, it tastes... bitter
    </content>
    <updated>2024-12-26T18:33:58Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsvld0trvazxer75xxvmc7mavq5hsu3yl20npkcej4429ar59qr5ugzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsurmm93</id>
    
      <title type="html">it somehow appeared on my lip and i absent-mindedly licked it ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsvld0trvazxer75xxvmc7mavq5hsu3yl20npkcej4429ar59qr5ugzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsurmm93" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsz8mr7jzava9wuur54thfw4vv9twtectmrwsaxwc8lqyce2q8m0vsrwlfrp&#39;&gt;nevent1q…lfrp&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;it somehow appeared on my lip and i absent-mindedly licked it into my mouth before realizing that there shouldn&amp;#39;t *be* anything on my lip...
    </content>
    <updated>2024-12-26T18:33:45Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsz8mr7jzava9wuur54thfw4vv9twtectmrwsaxwc8lqyce2q8m0vszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs5xj72a</id>
    
      <title>Nostr event nevent1qqsz8mr7jzava9wuur54thfw4vv9twtectmrwsaxwc8lqyce2q8m0vszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs5xj72a</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsz8mr7jzava9wuur54thfw4vv9twtectmrwsaxwc8lqyce2q8m0vszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs5xj72a" />
    <content type="html">
      AAAAAA I HAVE ACCIDENTALLY TASTED A LADYBUG
    </content>
    <updated>2024-12-26T18:30:00Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsw5fnsgx02tyjx4jdc68vv747xsxskhcz7ay4e2ax64xp5jnltqtczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsf5jmsn</id>
    
      <title type="html">why 150 ms in particular, if I may ask?</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsw5fnsgx02tyjx4jdc68vv747xsxskhcz7ay4e2ax64xp5jnltqtczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsf5jmsn" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsys4wj2uu7wfzysr2d3j0ny9hfn38dka5000e27jjwe4kzrme6k3s9csnuc&#39;&gt;nevent1q…snuc&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;why 150 ms in particular, if I may ask?
    </content>
    <updated>2024-12-25T20:22:52Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs0njdxg79sxperz0d3200h2z95g5gn6djqlnsqcmvydh352pye4yczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs2hm36w</id>
    
      <title type="html">hi you should read &amp;#34;75Ω Love&amp;#34; by @npub1ke5…5frv ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs0njdxg79sxperz0d3200h2z95g5gn6djqlnsqcmvydh352pye4yczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs2hm36w" />
    <content type="html">
      hi you should read &amp;#34;75Ω Love&amp;#34; by &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1ke58grmg5t7w5z7wsr6uc0fdd5f6tx84ld22jyq3vsg49vcwv3eqrs5frv&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;spork (pathetic girlfailure)&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1ke5…5frv&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; &lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://philo.gay/stories/75ohm.html&#34;&gt;https://philo.gay/stories/75ohm.html&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;...god i wish that was real
    </content>
    <updated>2024-12-21T16:08:32Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsphp3prkn07fvgchr7v0csp9fet9apdunpw9tz6k9kryq55dcgltqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsfr5pzw</id>
    
      <title>Nostr event nevent1qqsphp3prkn07fvgchr7v0csp9fet9apdunpw9tz6k9kryq55dcgltqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsfr5pzw</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsphp3prkn07fvgchr7v0csp9fet9apdunpw9tz6k9kryq55dcgltqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsfr5pzw" />
    <content type="html">
      OH: if I accidentally make a VHDL frontend then so be it
    </content>
    <updated>2024-12-21T15:33:14Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs9x6uydq82zya6xeern49wkt2p7q6nef58gqufrfnx3l9wxfwlazszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs3cvzu9</id>
    
      <title type="html">open source project that hosts the documentation on ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs9x6uydq82zya6xeern49wkt2p7q6nef58gqufrfnx3l9wxfwlazszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs3cvzu9" />
    <content type="html">
      open source project that hosts the documentation on archiveofourown.org
    </content>
    <updated>2024-12-21T03:28:37Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs2spee7m6cyr4elcgy62dg4j3j3mkcxcu9cypqtal9v3w3w7nt0dczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs6gdlfx</id>
    
      <title type="html">concept: AI-powered FPGA (Field Promptable Gate Array) that has ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs2spee7m6cyr4elcgy62dg4j3j3mkcxcu9cypqtal9v3w3w7nt0dczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs6gdlfx" />
    <content type="html">
      concept: AI-powered FPGA (Field Promptable Gate Array) that has an on-chip LLM generate the configuration
    </content>
    <updated>2024-12-15T11:48:17Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsdhrlq87ct4raq2frvnssmcrm5vhh8zhnfpj46xhvdphx4f2fse8szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs75wz7l</id>
    
      <title type="html">OH: *suggestively* I would so ATDT0202122 you...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsdhrlq87ct4raq2frvnssmcrm5vhh8zhnfpj46xhvdphx4f2fse8szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs75wz7l" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgzmrge76hf4kauwxjnexheuqqkcm2gxlenlqk75ujxs0j0fcuq6sldhds3&#39;&gt;nevent1q…hds3&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;OH: *suggestively* I would so ATDT0202122 you...
    </content>
    <updated>2024-12-10T18:53:02Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsgzmrge76hf4kauwxjnexheuqqkcm2gxlenlqk75ujxs0j0fcuq6szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshpgpcg</id>
    
      <title type="html">OH: answering &amp;#34;OK&amp;#34; like that is peak Hayes-compatible ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsgzmrge76hf4kauwxjnexheuqqkcm2gxlenlqk75ujxs0j0fcuq6szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshpgpcg" />
    <content type="html">
      OH: answering &amp;#34;OK&amp;#34; like that is peak Hayes-compatible behavior
    </content>
    <updated>2024-12-10T18:52:28Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs2r9rhvl37pu2kkkqhw2eq72qzysgj2tpeqzxdgcr3mdvv6g5e8agzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs8y92tp</id>
    
      <title type="html">i have idly stumbled into the description of the x86 ENTER ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs2r9rhvl37pu2kkkqhw2eq72qzysgj2tpeqzxdgcr3mdvv6g5e8agzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs8y92tp" />
    <content type="html">
      i have idly stumbled into the description of the x86 ENTER instruction.&lt;br/&gt;&lt;br/&gt;nothing could have prepared me for the sight of this complexity.&lt;br/&gt;&lt;br/&gt;what the fuck do you mean &amp;#34;lexical nesting level&amp;#34;&lt;br/&gt;&lt;br/&gt;is this a lisp machine or what.&lt;br/&gt;&lt;br/&gt;instructions dreamed up by the utterly deranged.&lt;br/&gt;&lt;br/&gt;this is what CISC processors are demanding your respect for&lt;br/&gt;&lt;br/&gt;honestly I preferred IBM S390&amp;#39;s instructions implementing DEFLATE.
    </content>
    <updated>2024-11-29T23:58:52Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsfcznht0c40y3520vak98rcx65cul09m4x047y3gj7xv8yta4022szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsf75966</id>
    
      <title type="html">is there something like the language server protocol but for ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsfcznht0c40y3520vak98rcx65cul09m4x047y3gj7xv8yta4022szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsf75966" />
    <content type="html">
      is there something like the language server protocol but for proof assistants?
    </content>
    <updated>2024-11-20T05:45:12Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqswu0zldhz85c243pmdqj35y0fkkvj0h3c46ld0d4c66y7qf5p4vpszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs7krw84</id>
    
      <title type="html">okay, yeah, that seems expected. what about Base though?</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqswu0zldhz85c243pmdqj35y0fkkvj0h3c46ld0d4c66y7qf5p4vpszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs7krw84" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsvyqfn8cf9t3yk6frda2r95cl75kkh06whjzwda33rujzwzj8myfql8dn2v&#39;&gt;nevent1q…dn2v&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;okay, yeah, that seems expected. what about Base though?
    </content>
    <updated>2024-11-20T03:46:11Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs889qghtaswdjea2p0l64jque8wu8namh2cqk0qz2vxnmcjlaztvgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs6y2kl5</id>
    
      <title type="html">ah. is Base and/or Core as common as the book makes it out to be?</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs889qghtaswdjea2p0l64jque8wu8namh2cqk0qz2vxnmcjlaztvgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs6y2kl5" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspkgdnk7f0pfkkwy00t47agfs682m4r3p48ummdpgkwrfkm7vsh4g3tchtm&#39;&gt;nevent1q…chtm&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;ah. is Base and/or Core as common as the book makes it out to be?
    </content>
    <updated>2024-11-20T03:26:46Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqspn92nm5qqkuqzx5pw2a8uvcdx23mqk2tzysjylwrl0x0pds4903qzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszc5tta</id>
    
      <title type="html">so, is Real World OCaml a good resource to reference, or is it ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqspn92nm5qqkuqzx5pw2a8uvcdx23mqk2tzysjylwrl0x0pds4903qzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszc5tta" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsd6ejfr2tfqy6leyqaqwvluljag54ga3hkav4dlm0hjhur0vhmrys7utm8p&#39;&gt;nevent1q…tm8p&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;so, is Real World OCaml a good resource to reference, or is it out of date by now with regards to the tooling advice offered?
    </content>
    <updated>2024-11-20T03:04:17Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqstyz0krdkkjc3hej3uew5tyxg97mcy09hnz9wcgw6v7x5sne54saqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsf9r09v</id>
    
      <title type="html">wonderful, inspires confidence.</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqstyz0krdkkjc3hej3uew5tyxg97mcy09hnz9wcgw6v7x5sne54saqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsf9r09v" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsv2ajllasnf00k0xxlrts667r6s5v7dk0t8acrqf247ge9unnamwc3z6y0p&#39;&gt;nevent1q…6y0p&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;wonderful, inspires confidence.
    </content>
    <updated>2024-11-20T02:39:03Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqstn9mx885ex2wj962lv8sleeutur9mzuruuzw0hvlvu8xs56p2zsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs05jqsm</id>
    
      <title type="html">so uh. what is the relationship between opam and dune. am i ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqstn9mx885ex2wj962lv8sleeutur9mzuruuzw0hvlvu8xs56p2zsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs05jqsm" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsqhpcl4mweceuzy38gwvp0dvfy2tsvlmsltfc4ul3d0kqjd7t279qyvvpng&#39;&gt;nevent1q…vpng&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;so uh. what is the relationship between opam and dune. am i supposed to use both?
    </content>
    <updated>2024-11-20T01:57:45Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxqs5phddxrmskanl2hsfgl87p5d02pgcvrlg897r0gnvjulf0xsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs9q95az</id>
    
      <title type="html">i had to use opam once to manage Coq dependencies and it took two ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxqs5phddxrmskanl2hsfgl87p5d02pgcvrlg897r0gnvjulf0xsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs9q95az" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsp2dqmmzy2xzsgw6zdyhds7lgzqsjp95nuw99e4luvemyvz7me7msd8jaya&#39;&gt;nevent1q…jaya&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;i had to use opam once to manage Coq dependencies and it took two days of back and forth with the people who set up the entire thing in the first place for us to just give up and hack around the thing instead
    </content>
    <updated>2024-11-20T01:49:48Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsqpeggqrchtdc5at4rr6vz3wqzs0g5gu3pt6egy3m437wfsn6u0yczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsfxsqft</id>
    
      <title>Nostr event nevent1qqsqpeggqrchtdc5at4rr6vz3wqzs0g5gu3pt6egy3m437wfsn6u0yczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsfxsqft</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsqpeggqrchtdc5at4rr6vz3wqzs0g5gu3pt6egy3m437wfsn6u0yczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsfxsqft" />
    <content type="html">
      :duckduckgo: computing for people with crippling OCD
    </content>
    <updated>2024-11-20T01:14:59Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs8mn3k3y55g0ctmnmgctr40hj0p4s0lt6g0es025lwertdlwxhf4szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsyn7l0k</id>
    
      <title type="html">are there any languages like OCaml or Haskell but with ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs8mn3k3y55g0ctmnmgctr40hj0p4s0lt6g0es025lwertdlwxhf4szyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsyn7l0k" />
    <content type="html">
      are there any languages like OCaml or Haskell but with predictable performance and good tooling
    </content>
    <updated>2024-11-20T01:07:51Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsdm8kanwfdcyld9gukvu7ytsqutcv4n89lvlkkgcjkrh24ga7hjgqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsyj6me2</id>
    
      <title type="html">@npub1kwa…e0nj do you have thoughts about Vanadium and ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsdm8kanwfdcyld9gukvu7ytsqutcv4n89lvlkkgcjkrh24ga7hjgqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsyj6me2" />
    <content type="html">
      &lt;span itemprop=&#34;mentions&#34; itemscope itemtype=&#34;https://schema.org/Person&#34;&gt;&lt;a itemprop=&#34;url&#34; href=&#34;/npub1kwarc5z9lwhen05uknd2nuwhhthd4ws0cku3t9j3rchm0fcd6luslse0nj&#34; class=&#34;bg-lavender dark:prose:text-neutral-50 dark:text-neutral-50 dark:bg-garnet px-1&#34;&gt;&lt;span&gt;GrapheneOS&lt;/span&gt; (&lt;span class=&#34;italic&#34;&gt;npub1kwa…e0nj&lt;/span&gt;)&lt;/a&gt;&lt;/span&gt; do you have thoughts about Vanadium and adblockers? Currently a GrapheneOS user has the choice of using Vanadium, with all the exploit mitigations and security work, or using Firefox, which has the unique capability of letting you install an adblocker on a mobile browser.&lt;br/&gt;&lt;br/&gt;the modern internet is somewhat hard, and definitely annoying, to use without ad blocking. this kinda makes using Vanadium feel like a sacrifice, and not everyone would be willing to do that.&lt;br/&gt;&lt;br/&gt;not to mention malvertising...&lt;br/&gt;&lt;br/&gt;are there any plans or ideas for addressing this shortcoming?
    </content>
    <updated>2024-11-05T21:01:06Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsvarn3gwe6qs4chsh8z4rrh57w2lk34kksdjpvld7a8vuncn3qypczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzssdtkre</id>
    
      <title type="html">huh, wait, but conservation of mass... ah, right, but the oxygen ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsvarn3gwe6qs4chsh8z4rrh57w2lk34kksdjpvld7a8vuncn3qypczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzssdtkre" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsz6mtl93w7fas2nqgj0m3wh8kx9cre5gtajrw9rdn4uakp422v36ce9mqey&#39;&gt;nevent1q…mqey&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;huh, wait, but conservation of mass... ah, right, but the oxygen comes from the air. carry on.
    </content>
    <updated>2024-11-04T00:33:42Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsvwfsy7chm8wys0syqx8yqmnkktun5n3su0tswwcdl0gshs7r4tsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsd8hgjl</id>
    
      <title type="html">thanks, these descriptions are answering all my questions ``` ~$ ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsvwfsy7chm8wys0syqx8yqmnkktun5n3su0tswwcdl0gshs7r4tsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsd8hgjl" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsqxf9z70dg2khury2gtxfqku33mqfk4xjyjvn9dk3e2lw5tnuk0dq8vkvux&#39;&gt;nevent1q…kvux&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;thanks, these descriptions are answering all my questions&lt;br/&gt;&lt;br/&gt;```&lt;br/&gt;~$ pacman -Ss ocaml-findlib&lt;br/&gt;extra/ocaml-findlib 1.9.6-7&lt;br/&gt;    OCaml package manager&lt;br/&gt;~$ pacman -Ss opam&lt;br/&gt;extra/opam 2.2.1-1 [installed]&lt;br/&gt;    OCaml package manager&lt;br/&gt;```
    </content>
    <updated>2024-11-03T04:38:19Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsqxf9z70dg2khury2gtxfqku33mqfk4xjyjvn9dk3e2lw5tnuk0dqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsv7j7cg</id>
    
      <title type="html">in other news, trying to install coq-stdlib through ocaml breaks ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsqxf9z70dg2khury2gtxfqku33mqfk4xjyjvn9dk3e2lw5tnuk0dqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsv7j7cg" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspj396m8za4qfpxe90fxrl22w5l7yexmeklwdnnaxcxjly3hpr4hsqhtlha&#39;&gt;nevent1q…tlha&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;in other news, trying to install coq-stdlib through ocaml breaks horribly if you happen to have ocaml-findlib installed through pacman
    </content>
    <updated>2024-11-03T04:35:47Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqspj396m8za4qfpxe90fxrl22w5l7yexmeklwdnnaxcxjly3hpr4hszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs802huy</id>
    
      <title type="html">package managers were a mistake. we should&amp;#39;ve found a way to ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqspj396m8za4qfpxe90fxrl22w5l7yexmeklwdnnaxcxjly3hpr4hszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs802huy" />
    <content type="html">
      package managers were a mistake. we should&amp;#39;ve found a way to do them that doesn&amp;#39;t have this whole big fuzzy ball of emergent behaviors
    </content>
    <updated>2024-11-03T04:33:29Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqspeta5vkwshuy3u5wv7lvz7349gj6m3jhutda5sruqn9y33xc2zsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsxgjd23</id>
    
      <title type="html">WHAT :neocat_floof_explode: ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqspeta5vkwshuy3u5wv7lvz7349gj6m3jhutda5sruqn9y33xc2zsqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsxgjd23" />
    <content type="html">
      WHAT :neocat_floof_explode: &lt;br/&gt;&lt;br/&gt;(&lt;a href=&#34;https://blog.regehr.org/archives/759&#34;&gt;https://blog.regehr.org/archives/759&lt;/a&gt;)&lt;br/&gt; &lt;img src=&#34;https://asdf.donotsta.re/media/ee375a068f34219df621912ef7c9407691d5fb20601090df99c4a1838f00c18c.png&#34;&gt; &lt;br/&gt;
    </content>
    <updated>2024-10-20T20:37:51Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsw9e97rfwf28np54xtr03jm7xd63letm7jputt360hu33wrn34tvczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4p706n</id>
    
      <title type="html">Chapter 1: Introduction. The C programming language was created ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsw9e97rfwf28np54xtr03jm7xd63letm7jputt360hu33wrn34tvczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4p706n" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqswcd8dvnw2adywfhlj759wsxg7uf2agc67pfkd0hkq06mwp5fa8dsedymkj&#39;&gt;nevent1q…ymkj&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Chapter 1: Introduction.&lt;br/&gt;&lt;br/&gt;The C programming language was created by Thompson and Ritchie around 1970 as the implementation language of the Unix operating system [Rit93]. This has made a lot of people very angry and been widely regarded as a bad move.
    </content>
    <updated>2024-10-20T20:20:58Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqswcd8dvnw2adywfhlj759wsxg7uf2agc67pfkd0hkq06mwp5fa8dszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsl8v9u0</id>
    
      <title type="html">oh, it&amp;#39;s a whole damn PhD thesis</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqswcd8dvnw2adywfhlj759wsxg7uf2agc67pfkd0hkq06mwp5fa8dszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsl8v9u0" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsv9rqekuekefwpa76s5dkaqaa76797skw2yrlhq3k8pdnur7azapcxvdfel&#39;&gt;nevent1q…dfel&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;oh, it&amp;#39;s a whole damn PhD thesis
    </content>
    <updated>2024-10-20T20:06:28Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsv9rqekuekefwpa76s5dkaqaa76797skw2yrlhq3k8pdnur7azapczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs0yyvhq</id>
    
      <title type="html">oh cool, there&amp;#39;s some guy in Nijmegen doing research on this</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsv9rqekuekefwpa76s5dkaqaa76797skw2yrlhq3k8pdnur7azapczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs0yyvhq" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqstramzqyvu50fvgta20eza3kkvcjz7ehnzd3423ajkrtn9v2w064cw980kc&#39;&gt;nevent1q…80kc&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;oh cool, there&amp;#39;s some guy in Nijmegen doing research on this
    </content>
    <updated>2024-10-20T20:05:00Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqstramzqyvu50fvgta20eza3kkvcjz7ehnzd3423ajkrtn9v2w064czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsctwx8n</id>
    
      <title type="html">I wonder how CompCert deals with this trashfire</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqstramzqyvu50fvgta20eza3kkvcjz7ehnzd3423ajkrtn9v2w064czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsctwx8n" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs92c36uqg2t4s0us9zmyk9r0ynw5akevkdmh504k7ascj73h2j0ps7md53z&#39;&gt;nevent1q…d53z&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;I wonder how CompCert deals with this trashfire
    </content>
    <updated>2024-10-20T20:00:37Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs92c36uqg2t4s0us9zmyk9r0ynw5akevkdmh504k7ascj73h2j0pszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsyxkvvs</id>
    
      <title type="html">Ah, there we go: 6.2.7p2 All declarations that refer to the same ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs92c36uqg2t4s0us9zmyk9r0ynw5akevkdmh504k7ascj73h2j0pszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsyxkvvs" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgspc0ugdpfrv6andwsc06sgul67ex3endrj56g24cxnzky77cvccwe2a77&#39;&gt;nevent1q…2a77&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;Ah, there we go:&lt;br/&gt;&lt;br/&gt;6.2.7p2 All declarations that refer to the same object or function shall have compatible type; otherwise, the behavior is undefined.
    </content>
    <updated>2024-10-20T19:56:09Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsgspc0ugdpfrv6andwsc06sgul67ex3endrj56g24cxnzky77cvcczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsh6rfw2</id>
    
      <title type="html">This is valid: ``` static int x; extern int x; ``` This is not: ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsgspc0ugdpfrv6andwsc06sgul67ex3endrj56g24cxnzky77cvcczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsh6rfw2" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqszsjgxdzqvu5w4ehjnffj50j2u0dhaervk7tnxdsk26fc0ph5gkwgnxxqsh&#39;&gt;nevent1q…xqsh&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;This is valid:&lt;br/&gt;&lt;br/&gt;```&lt;br/&gt;static int x;&lt;br/&gt;extern int x;&lt;br/&gt;```&lt;br/&gt;&lt;br/&gt;This is not:&lt;br/&gt;&lt;br/&gt;```&lt;br/&gt;extern int x;&lt;br/&gt;static int x;&lt;br/&gt;```&lt;br/&gt;&lt;br/&gt;This makes perfect sense so far.&lt;br/&gt;&lt;br/&gt;I am currently trying to figure out where exactly in the standard this is disallowed:&lt;br/&gt;&lt;br/&gt;```&lt;br/&gt;void f() { extern int x; }&lt;br/&gt;void g() { extern long x; }&lt;br/&gt;```
    </content>
    <updated>2024-10-20T19:45:05Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqszsjgxdzqvu5w4ehjnffj50j2u0dhaervk7tnxdsk26fc0ph5gkwgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs369epg</id>
    
      <title>Nostr event nevent1qqszsjgxdzqvu5w4ehjnffj50j2u0dhaervk7tnxdsk26fc0ph5gkwgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs369epg</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqszsjgxdzqvu5w4ehjnffj50j2u0dhaervk7tnxdsk26fc0ph5gkwgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs369epg" />
    <content type="html">
      rotating the C standard concept of linkage in my head
    </content>
    <updated>2024-10-20T19:42:54Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs2zvnsn4en54ktvqpzewnk3ckfkhf9cl2cgeduw9r4l76tmh9pvhczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzscnllwz</id>
    
      <title type="html">so, I&amp;#39;ve somehow ended up with a large amount of cursed ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs2zvnsn4en54ktvqpzewnk3ckfkhf9cl2cgeduw9r4l76tmh9pvhczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzscnllwz" />
    <content type="html">
      so, I&amp;#39;ve somehow ended up with a large amount of cursed knowledge about Linux.&lt;br/&gt;&lt;br/&gt;feels like it could be fun to replicate that, but for Windows knowledge.&lt;br/&gt;&lt;br/&gt;except, I&amp;#39;d have no idea how to do that.&lt;br/&gt;&lt;br/&gt;since I forgot how I got all the Linux knowledge in the first place.&lt;br/&gt;&lt;br/&gt;I have almost no memories of obtaining this knowledge.&lt;br/&gt;&lt;br/&gt;I just have it, as like, an intrinsic attribute of my being.&lt;br/&gt;&lt;br/&gt;which... is somewhat difficult to replicate.
    </content>
    <updated>2024-10-19T18:13:01Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsfzxjg3sy9vln52pwtuu9n829zgyxydhagnsqag9rjvqz6ufr49cczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs5caglu</id>
    
      <title type="html">oh, wait, this doesn&amp;#39;t itself implement multicall binaries, ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsfzxjg3sy9vln52pwtuu9n829zgyxydhagnsqag9rjvqz6ufr49cczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs5caglu" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsyq93kmjqj83pv4vdnsukrwt9ty82x5cqj20zp53dljvnf9rhv56chs8jg0&#39;&gt;nevent1q…8jg0&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;oh, wait, this doesn&amp;#39;t itself implement multicall binaries, does it
    </content>
    <updated>2024-10-19T00:02:35Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsyq93kmjqj83pv4vdnsukrwt9ty82x5cqj20zp53dljvnf9rhv56czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsql75rt</id>
    
      <title type="html">god, finding ROP gadgets in the binaries this outputs must be ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsyq93kmjqj83pv4vdnsukrwt9ty82x5cqj20zp53dljvnf9rhv56czyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsql75rt" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgu3pdqlp0a3qxwvwsjrpwxnr7ven0la5ephmr5dvl8sdqdku4r5snmgh2x&#39;&gt;nevent1q…gh2x&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;god, finding ROP gadgets in the binaries this outputs must be heaven
    </content>
    <updated>2024-10-18T23:56:08Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxh52s8cewtt05rhtnf2pw6z7mwazdrx7jhylpptp8sg2zhh2na3gzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs5nhx5j</id>
    
      <title type="html">oh god. OH GOD. this is not a shitpost. oh no. nonononononono i ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxh52s8cewtt05rhtnf2pw6z7mwazdrx7jhylpptp8sg2zhh2na3gzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs5nhx5j" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs9p6h7sundh50tumavzq4zujuxlgqx5cudzj609kmyeqnln7rwj4sdp7rg0&#39;&gt;nevent1q…7rg0&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;oh god. OH GOD. this is not a shitpost. oh no. nonononononono i hate this timeline
    </content>
    <updated>2024-10-16T22:40:15Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsz7gqg05vhe48d8aj3tefxz8t8g80j9s7ct8ktk6ej23n5zcczvrszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsj35ums</id>
    
      <title type="html">I&amp;#39;m 2 minutes in and this is the most you thing I&amp;#39;ve ever ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsz7gqg05vhe48d8aj3tefxz8t8g80j9s7ct8ktk6ej23n5zcczvrszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsj35ums" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsvu7dsn8hg0zxgtzwamte0rtszllt44avkwcmcc08gx88fav0mz9c9pke6j&#39;&gt;nevent1q…ke6j&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;I&amp;#39;m 2 minutes in and this is the most you thing I&amp;#39;ve ever seen. I wonder what your YouTube recommendations are like
    </content>
    <updated>2024-10-16T22:29:37Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs2n9j8g4j0hm4yr78nxke0vgja2un7dq8euk4ec2lga0wkfhqzeqqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsg032yx</id>
    
      <title type="html">god humanity is terrible</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs2n9j8g4j0hm4yr78nxke0vgja2un7dq8euk4ec2lga0wkfhqzeqqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsg032yx" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgtqxuy742gzkjes94605jvm837qnxzydvldw8093hh5ha67sy6aqqmafyh&#39;&gt;nevent1q…afyh&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;god humanity is terrible
    </content>
    <updated>2024-10-13T15:41:24Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs80a63lxfdx468e7lsvxvqhe5u0y3whq2ng8lxwq8w99gq6rw6gnszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstf4l3h</id>
    
      <title type="html">why must everything about computers be so flaky, working most of ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs80a63lxfdx468e7lsvxvqhe5u0y3whq2ng8lxwq8w99gq6rw6gnszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstf4l3h" />
    <content type="html">
      why must everything about computers be so flaky, working most of the time. it&amp;#39;s like background noise. we don&amp;#39;t even realize it, but it&amp;#39;s slowly wearing us all down&lt;br/&gt;&lt;br/&gt;i&amp;#39;m finally at the point where just dealing with all the disruption is taking up a noticeable part of my energy, and small things like a notification showing up just under my cursor and stealing the click is enough to send me into a fit of rage&lt;br/&gt;&lt;br/&gt;why do we put up with this&lt;br/&gt;&lt;br/&gt;why did we settle for &amp;#34;it works most of the time&amp;#34;&lt;br/&gt;&lt;br/&gt;why can&amp;#39;t we have perfectionists working on all this
    </content>
    <updated>2024-10-13T11:33:24Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsy693m4980sl7re4jln0udgt8ck3838alklqy5s4aawrp5w6prpyszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsl3pck6</id>
    
      <title type="html">codeberg.io</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsy693m4980sl7re4jln0udgt8ck3838alklqy5s4aawrp5w6prpyszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsl3pck6" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqszfgtyxz2fh2pak2qc4eeslvfvpqf3g8xr8zjlrv6e2rjetqx57nss6ynal&#39;&gt;nevent1q…ynal&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;codeberg.io
    </content>
    <updated>2024-10-13T07:47:21Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsqye9486h0gz5q83qg525juj0puasazx8eg57m62u55rm8n3vnjyqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs2554k4</id>
    
      <title type="html">hmm pretty sure the answers to all of these are just various ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsqye9486h0gz5q83qg525juj0puasazx8eg57m62u55rm8n3vnjyqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs2554k4" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsdtm8msu0pztsskxg5w5qvw8pya3wyezrlgkpwusp7qjkgfe5u4rqj3850t&#39;&gt;nevent1q…850t&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;hmm pretty sure the answers to all of these are just various keysmashes&lt;br/&gt; &lt;img src=&#34;https://asdf.donotsta.re/media/844df07d174d600510b34b900e91bdb4680d4a61c60a81ab1cbf85e1dcc6a607.png&#34;&gt; &lt;br/&gt;
    </content>
    <updated>2024-10-12T21:56:04Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsdtm8msu0pztsskxg5w5qvw8pya3wyezrlgkpwusp7qjkgfe5u4rqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzst0cfgq</id>
    
      <title type="html">nevermind it&amp;#39;s not dupa either windows just took a slightly ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsdtm8msu0pztsskxg5w5qvw8pya3wyezrlgkpwusp7qjkgfe5u4rqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzst0cfgq" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqspve7tk8uc8hxwt6rwaxwaxh5wae87jr5x2rqwrluuysxdests8kcydl442&#39;&gt;nevent1q…l442&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;nevermind it&amp;#39;s not dupa either windows just took a slightly longer moment to check that guess for some reason
    </content>
    <updated>2024-10-12T21:54:46Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqspve7tk8uc8hxwt6rwaxwaxh5wae87jr5x2rqwrluuysxdests8kczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstvxvyk</id>
    
      <title type="html">smh, which headmate set up this vm. the password is ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqspve7tk8uc8hxwt6rwaxwaxh5wae87jr5x2rqwrluuysxdests8kczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzstvxvyk" />
    <content type="html">
      smh, which headmate set up this vm. the password is &amp;#34;dupa&amp;#34;, and not &amp;#34;meow&amp;#34; as per SOP
    </content>
    <updated>2024-10-12T21:53:42Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqstpz0fsuandecwvjmw0m68pyfq5q7899932c5vh40t8dfeekqhe8gzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4f88zk</id>
    
      <title type="html">so, what is the homotopy class of a human? if there was only the ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqstpz0fsuandecwvjmw0m68pyfq5q7899932c5vh40t8dfeekqhe8gzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs4f88zk" />
    <content type="html">
      so, what is the homotopy class of a human? if there was only the digestive tract to worry about this would be quite obvious, but there&amp;#39;s also the nose with its two nostrils that&amp;#39;s topologically relevant. anything else I&amp;#39;m forgetting?&lt;br/&gt;&lt;br/&gt;if I didn&amp;#39;t fuck this up it would seem that a human has genus 3. does anyone have an animation handy of a human getting continuously deformed into a pretzel?
    </content>
    <updated>2024-10-06T00:22:40Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsgyyhejwk3feagwrqqcxhagdt2f7jm8ffncj50ppgyamhznzmn5pqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszmj399</id>
    
      <title type="html">I suppose one difference is you don&amp;#39;t have to set up your own ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsgyyhejwk3feagwrqqcxhagdt2f7jm8ffncj50ppgyamhznzmn5pqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszmj399" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsgc23xw4n3fmr2s3wznpkuqqse64vzsjem6h99qt9qune52c24pzqcs3qsf&#39;&gt;nevent1q…3qsf&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;I suppose one difference is you don&amp;#39;t have to set up your own bouncer. and you get to send things other than text.&lt;br/&gt;&lt;br/&gt;not that there aren&amp;#39;t any open-source options that do that...
    </content>
    <updated>2024-10-04T20:10:24Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsgdcnwng2s7m03mkm5vzj63tm9ah0m63gsq3jjt68jc3r3l6tclvszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs385c2s</id>
    
      <title>Nostr event nevent1qqsgdcnwng2s7m03mkm5vzj63tm9ah0m63gsq3jjt68jc3r3l6tclvszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs385c2s</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsgdcnwng2s7m03mkm5vzj63tm9ah0m63gsq3jjt68jc3r3l6tclvszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs385c2s" />
    <content type="html">
      so how do i grab the entirety of an ao3 fic for offline reading?
    </content>
    <updated>2024-10-04T14:24:44Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs96qd47ugq3ug526armmfajfuhj7ng9asvuuwpnglhkhw9pwhv59qzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshwxxnw</id>
    
      <title type="html">what she says: i&amp;#39;m a kitty!! what she means: getting my brain ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs96qd47ugq3ug526armmfajfuhj7ng9asvuuwpnglhkhw9pwhv59qzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshwxxnw" />
    <content type="html">
      what she says: i&amp;#39;m a kitty!!&lt;br/&gt;&lt;br/&gt;what she means: getting my brain to do anything is like herding cats
    </content>
    <updated>2024-09-30T23:50:34Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs9n25csdad8yg7qgtuh7e3zz586ydwheyjfxhspuyhwq225v0aqygzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszeptgr</id>
    
      <title type="html">wait, but filenames are allowed to contain newlines. what happens ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs9n25csdad8yg7qgtuh7e3zz586ydwheyjfxhspuyhwq225v0aqygzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszeptgr" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsqm4fnwxp0rcggasza84l3mzljf3vh2jva8rs2y32dxqyuu7tryfsns2saz&#39;&gt;nevent1q…2saz&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;wait, but filenames are allowed to contain newlines. what happens then?
    </content>
    <updated>2024-09-20T10:36:22Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsxdg3xr56jc35e93lwz6q2wn0cx2vdz9jgjgf6vndukdpphxlsscszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzscf4w39</id>
    
      <title type="html">No Game No Life?</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsxdg3xr56jc35e93lwz6q2wn0cx2vdz9jgjgf6vndukdpphxlsscszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzscf4w39" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqs95czu266zfexr6uk7fslwu50c8xcrwxacc769hveyk8n3n56degqlvcd0m&#39;&gt;nevent1q…cd0m&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;No Game No Life?
    </content>
    <updated>2024-09-18T10:13:01Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqstz2m07uvlsjhx82t76mhaaltxypdpl4nmledh40y57xj72pqx8aqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshra2va</id>
    
      <title type="html">visiting the cat cafe and explaining to all their feline ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqstz2m07uvlsjhx82t76mhaaltxypdpl4nmledh40y57xj72pqx8aqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzshra2va" />
    <content type="html">
      visiting the cat cafe and explaining to all their feline employees that they should unionize
    </content>
    <updated>2024-09-16T08:42:38Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsvh4rzh6xp0zptvp55uumnwlm4f7v73mg6ezdj4mq39t7jhmw2cqczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs0pjpus</id>
    
      <title>Nostr event nevent1qqsvh4rzh6xp0zptvp55uumnwlm4f7v73mg6ezdj4mq39t7jhmw2cqczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs0pjpus</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsvh4rzh6xp0zptvp55uumnwlm4f7v73mg6ezdj4mq39t7jhmw2cqczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzs0pjpus" />
    <content type="html">
      dr. house has real angel girl vibes
    </content>
    <updated>2024-09-15T15:26:12Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsg4cc5hf3hdjrdyvkgru5lt6kmeqppae0luh4czqdj075rtx66zwczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszjh7mh</id>
    
      <title type="html">when army ants lose track of their pheromone trail, they&amp;#39;re ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsg4cc5hf3hdjrdyvkgru5lt6kmeqppae0luh4czqdj075rtx66zwczyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzszjh7mh" />
    <content type="html">
      when army ants lose track of their pheromone trail, they&amp;#39;re prone to walking in circles until the moment they die of exhaustion. this phenomenon is known as a death spiral&lt;br/&gt;&lt;br/&gt;I can&amp;#39;t shake the feeling that this is what capitalism has become. in the ruthless desire for profit, we&amp;#39;ve stopped trying to make the world better, and we&amp;#39;re marching right into global ecosystem collapse&lt;br/&gt;&lt;br/&gt;we&amp;#39;re setting ourselves up for living hell, with full knowledge of what&amp;#39;s happening, but anything else won&amp;#39;t achieve the profit goals of the ruling class, so we don&amp;#39;t bother trying to reverse course&lt;br/&gt;&lt;br/&gt;sure, there are *some* efforts to slow the apocalypse. they&amp;#39;re not nearly enough to stop it, though&lt;br/&gt;&lt;br/&gt;the question is, then, why aren&amp;#39;t we doing anything to stop the ruling class from killing us all?
    </content>
    <updated>2024-09-15T11:50:19Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsphyh6ma8fysy5r7nncwq3hp20cqj3ef5et9ej4uhpjce7xpz562gzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsjw55ay</id>
    
      <title type="html">huh, isn&amp;#39;t this better solved by observing the ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsphyh6ma8fysy5r7nncwq3hp20cqj3ef5et9ej4uhpjce7xpz562gzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsjw55ay" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsyzc6jp2dssam5rw5y9tlkxsj2n9qdnffgk42zfqzhmunj6ndt9scsdckpm&#39;&gt;nevent1q…ckpm&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;huh, isn&amp;#39;t this better solved by observing the Upgrade-Insecure-Requests header?
    </content>
    <updated>2024-09-13T15:31:50Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsq06m4ug6lpuf4l5hpd3as8x79dl9mqgvyt2qkkjuuuty05drrqvgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsj2j9g4</id>
    
      <title type="html">imagine if there was an easy, reliable way to get a consistent ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsq06m4ug6lpuf4l5hpd3as8x79dl9mqgvyt2qkkjuuuty05drrqvgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsj2j9g4" />
    <content type="html">
      imagine if there was an easy, reliable way to get a consistent stream of Purpose
    </content>
    <updated>2024-09-11T17:02:31Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsvculekx7ycxwvmea2c995yf6kjnm680tlfrpmjf6qje24x5w3gkgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzssstpp8</id>
    
      <title type="html">Deutsche Bahn: we tried our best to improve! our punctuality this ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsvculekx7ycxwvmea2c995yf6kjnm680tlfrpmjf6qje24x5w3gkgzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzssstpp8" />
    <content type="html">
      Deutsche Bahn: we tried our best to improve! our punctuality this year comes out at 64% for long-distance trains!&lt;br/&gt;&lt;br/&gt;meanwhile, Ukrainian Railways: we&amp;#39;re under fire from the russians, so our trains are only 95% punctual. please excuse some gaps in service in the war area, our trains will resume service as soon as our country&amp;#39;s tanks reclaim the land&lt;br/&gt;&lt;br/&gt;&lt;a href=&#34;https://www.railmagazine.com/features-1/how-ukraine-s-rail-workers-keep-the-trains-running-under-fire&#34;&gt;https://www.railmagazine.com/features-1/how-ukraine-s-rail-workers-keep-the-trains-running-under-fire&lt;/a&gt;
    </content>
    <updated>2024-09-09T13:54:19Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqsqe9wvjju4rdxtsf2m5p0jztzy0uehfc43pkt30ql74rgdjx6ceaszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsqc6eme</id>
    
      <title type="html">in a retelling of the story, I&amp;#39;ve been told that the spillage ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqsqe9wvjju4rdxtsf2m5p0jztzy0uehfc43pkt30ql74rgdjx6ceaszyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsqc6eme" />
    <content type="html">
      In reply to &lt;a href=&#39;/nevent1qqsp3fcxx5jqlz43rmptjjhpc7zpg8n9x0gjwgrf9c4k44glekhsjzsdn6ts6&#39;&gt;nevent1q…6ts6&lt;/a&gt;&lt;br/&gt;_________________________&lt;br/&gt;&lt;br/&gt;in a retelling of the story, I&amp;#39;ve been told that the spillage of water caused a power outage, which was immediately met with the words of reassurance: &amp;#34;don&amp;#39;t worry, we still have internet, the router is on a UPS&amp;#34;
    </content>
    <updated>2024-09-06T13:19:57Z</updated>
  </entry>

  <entry>
    <id>https://yabu.me/nevent1qqs8g2kx29xv56kp0lw426f24exsjttwzgv4q7sek49jerprcaeeseqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsn5v2xh</id>
    
      <title type="html">pro tip: if your 3d print feels a bit rough, run `file ...</title>
    
    <link rel="alternate" href="https://yabu.me/nevent1qqs8g2kx29xv56kp0lw426f24exsjttwzgv4q7sek49jerprcaeeseqzyqfx7lykmp2ktl7txegkjvtch6rf02e8lykvwnmnwe2ppzk3tdtzsn5v2xh" />
    <content type="html">
      pro tip: if your 3d print feels a bit rough, run `file my-model.stl` to fix that
    </content>
    <updated>2024-08-29T23:10:13Z</updated>
  </entry>

</feed>