<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Dumb Ideas Done Dirt Cheap</title>
  <link href="http://whatthefuck.computer/dumb-ideas"/>
  <link rel="self" href="http://whatthefuck.computer/dumb-ideas.xml"/>
  <updated>2024-04-26T15:52:00Z</updated>
  <author>
    <name>ryan rix &lt;garden@whatthefuck.computer&gt;</name>
  </author>
  <id>http://whatthefuck.computer/dumb-ideas</id>
    <entry>
    <title>a water kettle lid with a metal CPU cooler built in to it to cool water for [[id:sencha_tea][Sencha Tea]] and a more streamlined [[id:20220711T233244.883336][Sencha-do]]</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20240426T155204.824474"/>
    <id>urn:uid:20240426T155204.824474</id>
    <published>2024-04-26T15:52:00Z</published>
    <updated>2024-04-26T15:52:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20240426T155204.824474&quot;&gt;a water kettle lid with a metal CPU cooler built in to it to cool water for &lt;a href=&quot;//rix.si/tea/sencha&quot;&gt;Sencha Tea&lt;/a&gt; and a more streamlined &lt;a href=&quot;//rix.si/cha-no-yu#20220711T233244.883336&quot;&gt;Sencha-do&lt;/a&gt;&lt;/h1&gt;&lt;p&gt;i dont want to solder a thing together anywhere near my water, id want to 3d model and have shapeways make it.
&lt;/p&gt;&lt;p&gt;would be cool if the fins could fold flat for travel, or allow for dual-use as a regular tea kettle lid... it would definitely need to be a print-in-place, though...
&lt;/p&gt;&lt;p&gt;-&amp;gt; &lt;a href=&quot;/404?node=20240426T134516.114242&quot; class=&quot;unpublished&quot;&gt;Toward a Modern Sencha-do Practice&lt;/a&gt;
&lt;/p&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>there should be a fork of debian similar to devuan, but systemd-maximalist.</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20230614T215246.200171"/>
    <id>urn:uid:20230614T215246.200171</id>
    <published>2023-06-14T21:52:00Z</published>
    <updated>2023-06-14T21:52:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20230614T215246.200171&quot;&gt;there should be a fork of debian similar to devuan, but systemd-maximalist.&lt;/h1&gt;&lt;p&gt;systemd-boot
&lt;/p&gt;&lt;p&gt;patch software to use sd-notify when they are ready to serve dependencies so that After= always works
&lt;/p&gt;&lt;p&gt;socket activation so your system has very few processes running when idle and has zero-downtime service upgrades
&lt;/p&gt;&lt;p&gt;default to encrypted home-directories with systemd-homed
&lt;/p&gt;&lt;p&gt;can I make systemd system services punch holes in my firewall?
&lt;/p&gt;&lt;p&gt;how much of a system could be configured only from .service files 
&lt;/p&gt;&lt;p&gt;the whole nine
&lt;/p&gt;&lt;p&gt;the systemd-virus tight coupling stuff that people are always afraid of kind of doesn&amp;#39;t exist because free software developers are pretty conservative when it comes to adopting these features. by and large the red-hat funded psyop has not been terribly successful except when it comes to displacing udev and syslog as linux defaults, the former hardly any one notices &amp;amp; the latter one of its most controversial core features.
&lt;/p&gt;&lt;p&gt;So the random linux system has this sort of hodge-podge of components makes a system which requires more brainpower to reason about, and maybe it&amp;#39;s worse than if you got to go &amp;quot;all in&amp;quot; on systemd mindset rather than being entirely anti to escape the increased cognitive load. i posit that maybe it&amp;#39;s not &amp;quot;systemd&amp;quot; being complex but a &amp;quot;poorly defined user interface between systemd and the other core OS components&amp;quot;
&lt;/p&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>Python package that monkey-patches a JQ parser in to Dict and List objects</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20230417T130643.121377"/>
    <id>urn:uid:20230417T130643.121377</id>
    <published>2023-04-17T13:07:00Z</published>
    <updated>2023-04-17T13:07:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20230417T130643.121377&quot;&gt;Python package that monkey-patches a JQ parser in to Dict and List objects&lt;/h1&gt;&lt;figure class=&quot;src-block&quot; data-language=&quot;python&quot;&gt;&lt;figcaption class=&quot;src-block-meta&quot;&gt;&lt;span class=&quot;src-lang&quot;&gt;python&lt;/span&gt;&lt;/figcaption&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot;&gt;dict(
  things=[dict(a=1, b=2, c=rand.randint(1, 10)) for thing in things]
).q(&amp;quot;.things[]|select(.c&amp;gt;5).a&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;&lt;p&gt;sickos.jpg &lt;a href=&quot;//github.com/clarete/forbiddenfruit&quot;&gt;forbiddenfruit&lt;/a&gt; makes this like 15 lines of code:
&lt;/p&gt;&lt;figure class=&quot;src-block&quot; data-language=&quot;python&quot;&gt;&lt;figcaption class=&quot;src-block-meta&quot;&gt;&lt;span class=&quot;src-lang&quot;&gt;python&lt;/span&gt;&lt;/figcaption&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot;&gt;from forbiddenfruit import curse
import json
import subprocess


def invoke_jq(self, query: str):
    with subprocess.Popen([&amp;quot;jq&amp;quot;, &amp;quot;-c&amp;quot;, &amp;quot;--unbuffered&amp;quot;, query],
                          encoding=&amp;quot;utf8&amp;quot;,
                          stdin=subprocess.PIPE,
                          stderr=subprocess.PIPE,
                          stdout=subprocess.PIPE) as proc:
        s = json.dumps(self)
        stdout, stderr = proc.communicate(input=s, timeout=1)
        assert proc.returncode == 0
        return json.loads(stdout)


curse(dict, &amp;quot;q&amp;quot;, invoke_jq)

import random

things = range(1, 50)

d = dict(
    things=[dict(a=1, b=2, c=random.randint(1, 10)) for thing in things]
)
print(d.q(&amp;quot;[.things[]|select(.c&amp;gt;5)|[.a, .c]]&amp;quot;))&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;&lt;pre&gt;&lt;code&gt;[[1, 10], [1, 6], [1, 6], [1, 10], [1, 10], [1, 10], [1, 9], [1, 6], [1, 8], [1, 7], [1, 6], [1, 6], [1, 8], [1, 7], [1, 6], [1, 7], [1, 8], [1, 7], [1, 7], [1, 6], [1, 10], [1, 7], [1, 7], [1, 10], [1, 7], [1, 6]]&lt;/code&gt;&lt;/pre&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>this game [[https://www.youtube.com/watch?v=cleZf-HODaA][Death Roads: Tournament]] has me thinking about &quot;roguelite deckbuilder&quot; style take on stage [[id:bae9ba49-720d-4544-aae9-aed782056d65][Rally Racing]]</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20230406T231710.508310"/>
    <id>urn:uid:20230406T231710.508310</id>
    <published>2023-04-06T23:17:00Z</published>
    <updated>2023-04-06T23:17:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20230406T231710.508310&quot;&gt;this game &lt;a href=&quot;//www.youtube.com/watch?v=cleZf-HODaA&quot;&gt;Death Roads: Tournament&lt;/a&gt; has me thinking about &amp;quot;roguelite deckbuilder&amp;quot; style take on stage &lt;a href=&quot;//whatthefuck.computer/topic/things#bae9ba49-720d-4544-aae9-aed782056d65&quot;&gt;Rally Racing&lt;/a&gt;&lt;/h1&gt;&lt;p&gt;like uhm you&amp;#39;re trying to maximize your focus, momentum, and speed through each stage, and tires and car health. break it up in to 15-30 encounters where you&amp;#39;re taking corners as they are read to you where you are trying to balance your resources against a deck of limited actions. it could be hot-hatch stage rallying or it could be Rally Raid ala Dakar, each would be different.
&lt;/p&gt;&lt;p&gt;action types: car handling, pedal work, co-driver interaction, cutting corners, way-finding,
action cards could have multiple types, or be combined? pedal work + turn-in for the initial d drift?
&lt;/p&gt;&lt;p&gt;you&amp;#39;re being told what is coming two or three encounters ahead of you, like your codriver is telling you in two turns you will have a right handed hairpin, so you need to make sure you keep or draw cards which will let you bring down your speed with the smallest possible momentum spend.
&lt;/p&gt;&lt;p&gt;in each section of the stage you&amp;#39;d have the chance to draw negative effects like gravel, or surprise frost, spectator on stage, etc and depending on the running order you could be facing more negative effects than if you were further down the starting order. going first means you have to clear the layer of dust and dirt off the road for the cars behind you to go quicker and deal with sort of status effects like that as a way to rubberband the leader. kind of cheeky
&lt;/p&gt;&lt;p&gt;in between each special stage you have the ability to make certain tunes to your car which will change you deck layout; in service park you could have an extended deck restructuring session and maybe some silly interlude stuff between the other drivers, like there could/would be a seasonal meta-progression where you&amp;#39;re interacting with other drivers or teams in your paddock or choosing to ignore the social/networking aspect of the championship to focus on improving your car, but if you end up in a ditch the car behind you may not stop to help you put out the fire in the engine bay. game over, or not if you&amp;#39;re palling around the service park more.
&lt;/p&gt;&lt;p&gt;is this a thing? is this a game or is it a weird art project? i bet i could make a text-only prototype of this. the final version could either be a mix of onboard footage still art and static camera shots of a model car traveling through the procedurally generated corner as its own scene? you&amp;#39;d be able to commission a bunch of really cool art scenes of like kenya and finland and monaco to drop car models on to. like, if you do it carefully you could use actual stages are inspiration
&lt;/p&gt;&lt;p&gt;there&amp;#39;s modes of this where you are playing in a car which has low speed stats but you have a lot more focus and momentum to work with like the classic Mini Cooper, group a monsters where you constantly feel like you&amp;#39;re out of focus and driving on the edge (of the tree-line), and the WRC cars today that are all amped out everything turned to 11.
&lt;/p&gt;&lt;p&gt;could also be &lt;a href=&quot;//whatthefuck.computer/dumb-ideas#20220808T165910.231920&quot;&gt;Rally Strand Game&lt;/a&gt;?
&lt;/p&gt;&lt;p&gt;This idea got baked in to a prototype as &lt;a href=&quot;//whatthefuck.computer/dumb-ideas/group-b&quot;&gt;Group B Pace Notes&lt;/a&gt; and i&amp;#39;ll probably write a web version soon..
&lt;/p&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>[[id:a_youtube_geoblocker_breaker][A Youtube Geoblocker Breaker]]</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20220727T184617.091918"/>
    <id>urn:uid:20220727T184617.091918</id>
    <published>2022-07-27T18:47:00Z</published>
    <updated>2022-07-27T18:47:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20220727T184617.091918&quot;&gt;&lt;a href=&quot;//whatthefuck.computer/dumb-ideas/geoblocker-breaker&quot;&gt;A Youtube Geoblocker Breaker&lt;/a&gt;&lt;/h1&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>[[id:20210921T150711.001619][IMAP Smart Scoring]]</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20220727T184655.669781"/>
    <id>urn:uid:20220727T184655.669781</id>
    <published>2022-07-27T18:47:00Z</published>
    <updated>2022-07-27T18:47:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20220727T184655.669781&quot;&gt;&lt;a href=&quot;//whatthefuck.computer/dumb-ideas/imap-smart-scoring&quot;&gt;IMAP Smart Scoring&lt;/a&gt;&lt;/h1&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>From the Journal</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20220727T184800.238073"/>
    <id>urn:uid:20220727T184800.238073</id>
    <published>2022-07-27T18:47:00Z</published>
    <updated>2022-07-27T18:47:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20220727T184800.238073&quot;&gt;From the Journal&lt;/h1&gt;&lt;h2 id=&quot;calvin-and-hobbes-tokipona-translations&quot;&gt;Calvin and Hobbes &lt;a href=&quot;//rix.si/tokipona&quot;&gt;Tokipona&lt;/a&gt; translations&lt;/h2&gt;&lt;h2 id=&quot;quot-game-plumbing-and-game-porcelein-quot-a-game-built-with-the-unix-philosophy-as-a-bunch-of-tiny-subcommands&quot;&gt;&amp;quot;Game plumbing and game porcelein&amp;quot;, a game built with the unix philosophy as a bunch of tiny subcommands&lt;/h2&gt;&lt;h2 id=&quot;deadly-premonitions-driving-monologues-laid-over-forza-horizona-night-rain-street-scene-race&quot;&gt;Deadly Premonitions driving monologues laid over Forza Horizona night rain street scene race&lt;/h2&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>Pulled from Matrix room:</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20220727T184802.405166"/>
    <id>urn:uid:20220727T184802.405166</id>
    <published>2022-07-27T18:47:00Z</published>
    <updated>2022-07-27T18:47:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20220727T184802.405166&quot;&gt;Pulled from Matrix room:&lt;/h1&gt;&lt;p&gt;The dumb shit &lt;a href=&quot;/404?node=f4d0be16-1f68-4598-a02c-0327759e034c&quot; class=&quot;unpublished&quot;&gt;Tor&lt;/a&gt; and I come up with. Some of these are actually really good ideas. some of them are just nonsense
&lt;/p&gt;&lt;h2 id=&quot;3d-printable-credit-card-wallet-that-fits-an-arduboy-pcb-in-it-so-that-you-can-have-a-little-video-games-in-your-wallet&quot;&gt;3D printable credit card wallet that fits an Arduboy PCB in it, so that you can have a little &lt;a href=&quot;//rix.si/gameing&quot;&gt;Video Games&lt;/a&gt; in your wallet&lt;/h2&gt;&lt;h2 id=&quot;dkc-minecart-game&quot;&gt;&lt;a href=&quot;//whatthefuck.computer/dkc-minecart-game&quot;&gt;DKC Minecart game&lt;/a&gt;&lt;/h2&gt;&lt;h2 id=&quot;judge-dredd-but-they-39-re-firefighters&quot;&gt;Judge Dredd but they&amp;#39;re Firefighters&lt;/h2&gt;&lt;h2 id=&quot;20220608T235203.520398&quot;&gt;tracery generating s-expressions to feed in to a clojurescript macro. generate cljs-bach code to procedurally generate synthesized audio&lt;/h2&gt;&lt;h2 id=&quot;this-pico8-but-his-eyes-are-bloodshot-like-he-39-s-high&quot;&gt;this pico8 but his eyes are bloodshot like he&amp;#39;s &lt;a href=&quot;/404?node=1047f453-ae57-4fd8-9dee-fdb039b98029&quot; class=&quot;unpublished&quot;&gt;High&lt;/a&gt;&lt;/h2&gt;&lt;figure class=&quot;src-block&quot; data-language=&quot;lua&quot;&gt;&lt;figcaption class=&quot;src-block-meta&quot;&gt;&lt;span class=&quot;src-lang&quot;&gt;lua&lt;/span&gt;&lt;/figcaption&gt;&lt;pre&gt;&lt;code class=&quot;language-lua&quot;&gt;c=circfill::_::cls()
camera(0,cos(t()/4)*2)
for i=0,1,.05 do
r=1-i*i
c(64,48+70*i,r*40,13)
end
for j=0,1 do
for i=-4,4 do
c(44+j*40+i*3,58,(5-abs(i))*(sin(t()/2)*.45+.45),5+abs(i/2))
c(64,68+i*2,(4+i)/1.5,2)
end
line(54+j,98+j,74-j,98+j,2-j)
end
flip()goto _&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;&lt;h2 id=&quot;fast5-the-video-game-isometric-bank-vault-heist-puzzle-game&quot;&gt;fast5 the video game, isometric bank vault heist puzzle game&lt;/h2&gt;&lt;h2 id=&quot;illuminated-vectors-on-black-a-la-wrecking-crew-orchestra-el-squad-as-video-games-aesthetic&quot;&gt;illuminated vectors on black, a la wrecking crew orchestra el squad as &lt;a href=&quot;//rix.si/gameing&quot;&gt;Video Games&lt;/a&gt; aesthetic&lt;/h2&gt;&lt;h2 id=&quot;multiplayer-simearth-video-games&quot;&gt;Multiplayer SimEarth &lt;a href=&quot;//rix.si/gameing&quot;&gt;Video Games&lt;/a&gt;&lt;/h2&gt;&lt;h2 id=&quot;procedurally-generated-cities-in-this-style&quot;&gt;procedurally generated cities in &lt;a href=&quot;//www.brothers-brick.com/2018/11/30/the-interlace-an-organised-disarray-of-an-architectural-design/&quot;&gt;this style&lt;/a&gt;.&lt;/h2&gt;&lt;h2 id=&quot;president-47-hitman&quot;&gt;President 47 HITMAN&lt;/h2&gt;&lt;h2 id=&quot;steamboat-dr-wily&quot;&gt;Steamboat Dr. Wily&lt;/h2&gt;&lt;h2 id=&quot;werewolf-game-built-around-blameless-postmortem&quot;&gt;Werewolf game built around blameless postmortem&lt;/h2&gt;&lt;h2 id=&quot;server-which-automates-the-creation-of-wireguard-and-syncthing-device-configurations-which-expose-the-devices-over-wg-private-network&quot;&gt;server which automates the creation of WireGuard and Syncthing device configurations which expose the devices over WG private network&lt;/h2&gt;&lt;h2 id=&quot;easy-screenshare-editor-collaboration-over-tunnel-emacs-plugin-which-wormholes-buffer-changes-to-collaborator-over-wg&quot;&gt;Easy screenshare + editor collaboration over tunnel, emacs plugin which wormholes buffer changes to collaborator over wg&lt;/h2&gt;&lt;h2 id=&quot;thisbasementjaxxdoesnotexist-com&quot;&gt;thisbasementjaxxdoesnotexist.com&lt;/h2&gt;&lt;p&gt;torwegia: https://www.youtube.com/watch?v=5rAOyh7YmEc + https://www.thispersondoesnotexist.com/
torwegia: thisbasementjaxxdoesnotexist.com
&lt;/p&gt;&lt;h2 id=&quot;elements-of-the-past-and-future-coming-together-to-make-something-worse-than-both-from-the-might-boosh-s3e1-gif-golang&quot;&gt;elements of the past and future coming together to make something worse than both from the might boosh S3E1 gif + golang&lt;/h2&gt;&lt;h2 id=&quot;movie-poster-of-transformers-overlaid-with-oops-all-explosions-captain-crunch-box&quot;&gt;Movie poster of Transformers, overlaid with Oops! All Explosions! captain crunch box&lt;/h2&gt;&lt;h2 id=&quot;barroth-blaster-taco-bell-monster-hunter-collab&quot;&gt;Barroth Blaster Taco Bell/Monster Hunter Collab&lt;/h2&gt;&lt;h2 id=&quot;youtube-channel-which-weekly-chooses-a-doomsday-argument-from-history-and-attempts-to-provide-the-context-needed-for-people-to-understand-why-anyone-would-believe-it&quot;&gt;YouTube channel which weekly chooses a doomsday argument from history and attempts to provide the context needed for people to understand why anyone would believe it&lt;/h2&gt;&lt;h2 id=&quot;geoguessr-but-for-the-habitat-of-a-given-animal-sub-species&quot;&gt;Geoguessr but for the habitat of a given animal sub species&lt;/h2&gt;&lt;p&gt;L. r. superiorensis (Peterson &amp;amp; Downing) – western Great Lakes area, including upper Michigan, Wisconsin, southern Ontario, and most of Minnesota
&lt;/p&gt;&lt;h2 id=&quot;a-custom-ps4-controller-that-is-an-ergonomic-armored-core-grip&quot;&gt;A custom PS4 controller that is an ergonomic armored core grip&lt;/h2&gt;&lt;h2 id=&quot;portable-speaker-that-has-a-raspberry-pi-running-an-mpd-server-and-acts-as-a-hotspot&quot;&gt;Portable speaker that has a raspberry pi running an mpd server and acts as a hotspot&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Auto mount a usb drive with the mpd.conf and library in it
&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Add in mopidy support and a webui to connect it to other lans
&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Knowing when to swap between host and lan mode with a button
&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Physical media controls maybe an oled display running ncmpcpp
&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2 id=&quot;gallant-charles-leclerc&quot;&gt;Gallant Charles Leclerc&lt;/h2&gt;&lt;h2 id=&quot;hot-box-truck&quot;&gt;Hot-Box Truck&lt;/h2&gt;&lt;h2 id=&quot;tetris-keyboard-console-a-portable-with-an-lcd-and-low-latency-wireless-lan-play-p2p-tournament-support&quot;&gt;Tetris keyboard console, a portable with an lcd and low latency wireless lan play, p2p tournament support&lt;/h2&gt;&lt;h2 id=&quot;base-building-game-that-takes-places-on-in-a-shared-world-dwarf-fortress-but-you-can-build-your-bases-up-to-take-over-abandoned-or-failed-bases-of-others-battling-etc&quot;&gt;Base Building game that takes places on in a shared world. Dwarf Fortress but you can build your bases up to take over abandoned or failed bases of others, battling, etc.&lt;/h2&gt;&lt;h2 id=&quot;above-but-a-fast-paced-roguelike-ght-you-face-the-ghost-of-a-dead-player-and-whatever-killed-them-for-all-their-loot&quot;&gt;Above, but a fast paced roguelike/ght, you face the ghost of a dead player and whatever killed them for all their loot&lt;/h2&gt;&lt;h2 id=&quot;racing-family-dynasty-simulator-build-your-own-dream-f1-team-from-one-rookie-immigrant-to-the-son-who-starts-foreign-go-kart-school-at-13&quot;&gt;Racing Family Dynasty Simulator. Build your own dream F1 team from one rookie immigrant to the son who starts foreign go kart school at 13&lt;/h2&gt;&lt;p&gt;It could also have some sort of Lifestyle Simulator thing too, building up these elaborate racer trope characters, the charicatures of the Schumacher and Andretti and the Petty
&lt;/p&gt;&lt;p&gt;Building alliances with other racing families through intermarriage and business partnerships like a crusader kings or a 4x
&lt;/p&gt;&lt;h2 id=&quot;nginx-lua-script-that-will-return-a-tarball-of-a-directory-gplv3&quot;&gt;nginx lua script that will return a tarball of a directory, /gplv3&lt;/h2&gt;&lt;h2 id=&quot;a-fail2ban-plugin-which-will-ban-ip-addresses-that-access-a-page-which-has-gone-viral-or-is-a-honeypot&quot;&gt;a fail2ban plugin which will ban IP addresses that access a page which has gone viral or is a honeypot&lt;/h2&gt;&lt;p&gt;like oh someone posted me on hackernews overnight, good bye internet until i can react
&lt;/p&gt;&lt;h2 id=&quot;infosuicide-bomb-yikes-woo-sweat-emoji&quot;&gt;infosuicide bomb, yikes woo sweat emoji&lt;/h2&gt;&lt;p&gt;a piece of software designed to facilitate a complete removal of all information from a set of systems and network services, a way to attempt to disappear from the network
&lt;/p&gt;&lt;h2 id=&quot;two-mice-two-mouse-cursors-as-an-interface-paradigm&quot;&gt;two mice, two mouse cursors, as an interface paradigm&lt;/h2&gt;&lt;h2 id=&quot;operation-yashima-logistics-game-rerouting-all-of-the-power-in-japan-to-fire-a-big-gun&quot;&gt;Operation Yashima logistics game, rerouting all of the power in japan to fire a big gun&lt;/h2&gt;&lt;h2 id=&quot;wario-ware-for-grinding-fighting-game-situations-block-ten-overheads-single-player-adjust-the-physics-and-input-for-various-games-cheekily-get-around-copyright&quot;&gt;Wario Ware for grinding fighting game situations, block ten overheads. Single player, adjust the physics and input for various games, cheekily get around copyright &lt;/h2&gt;&lt;h2 id=&quot;god-trying-to-make-a-bong-so-big-he-couldn-39-t-clear-it-a-short-scifi-story&quot;&gt;God trying to make a bong so big he couldn&amp;#39;t clear it, a short scifi story&lt;/h2&gt;&lt;p&gt;Asimov futurism jumps, geoengineering a planet to support cannabis growth, lighting the planet up and clearing it 
&lt;/p&gt;&lt;h2 id=&quot;knuck-tat-idea-786-empa-thy&quot;&gt;Knuck tat idea &lt;span class=&quot;hashtag&quot;&gt;#786&lt;/span&gt;: EMPA THY!&lt;/h2&gt;&lt;h2 id=&quot;surrealist-text-editor&quot;&gt;Surrealist Text Editor&lt;/h2&gt;&lt;h2 id=&quot;a-tool-for-emacs-which-accepts-a-qml-like-s-expression-and-launches-a-qml-in-a-pyqt5-app-which-can-have-signals-that-execute-elisp-by-calling-to-emacsclient-to-create-simple-guis-around-emacs&quot;&gt;A &lt;a href=&quot;//whatthefuck.computer/topic/things#a7420bb9-395f-4afa-92fb-8eaa0b8a4cd8&quot;&gt;Tool&lt;/a&gt; for &lt;a href=&quot;//cce.whatthefuck.computer/emacs&quot;&gt;Emacs&lt;/a&gt; which accepts a QML-LIKE s -expression and launches a QML in a PyQt5 app, which can have signals that execute elisp by calling to emacsclient, to create simple GUIs around emacs&lt;/h2&gt;&lt;h2 id=&quot;skate-mod-but-you-play-as-a-dog&quot;&gt;Skate mod but you play as a dog&lt;/h2&gt;&lt;h2 id=&quot;skit-where-you-are-a-twitch-tv-streamer-who-is-doing-a-world-record-pace-run-but-your-mum-is-forcing-you-to-go-to-bed-early-splice-runs-or-something-to-make-a-legitimate-looking-run-but-you-never-record-a-finish-time-so-no-one-can-verify-it&quot;&gt;Skit where you are a twitch tv streamer who is doing a World Record pace run but your mum is forcing you to go to bed early. Splice runs or something to make a legitimate looking run, but you never record a finish time so no one can verify it&lt;/h2&gt;&lt;/article&gt;</content>
  </entry>
    <entry>
    <title>=services.xserver.desktopManager.surf-display = { defaultWwwUri = &quot;https://pornhub.com&quot;; enable=true; };=</title>
    <link href="http://whatthefuck.computer/dumb-ideas#20220727T185044.720154"/>
    <id>urn:uid:20220727T185044.720154</id>
    <published>2021-04-09T21:00:00Z</published>
    <updated>2021-04-09T21:00:00Z</updated>
    <content type="html">&lt;article&gt;&lt;h1 id=&quot;20220727T185044.720154&quot;&gt;&lt;code&gt;services.xserver.desktopManager.surf-display &lt;/code&gt; { defaultWwwUri = &amp;quot;https://pornhub.com&amp;quot;; enable=true; };=&lt;/h1&gt;&lt;/article&gt;</content>
  </entry>
  </feed>