Chapter 7: Fuck Capitalism Jam 2026



 This zine is my submission for the Fuck Capitalism Jam 2026 . The JS Zine Reader version is available here . 
 Click to open
Recent content on Jackie's Blog



 This zine is my submission for the Fuck Capitalism Jam 2026 . The JS Zine Reader version is available here . 
 Click to open
Deltarune fans are asking, what’s the deal with this character called ERAM ? 
 
			 Art by @unusualartistic.bsky.social 
		 


 




 Click to open
Read on AO3 
 Archivist 
 “You wanted to see me boss?”, Tim said, entering Jon’s office. 
 “I need the statement of David Ramao”, Jon said. 
 “Who?” 
 “David Ramao, husband of Andre Ramao”, Jon insisted. 
 “Oh, The homophobic vase?”, Tim said. 
 Jon’s sharp exhale is carried on the stuffy air of his…
Minimum required reading: The Magnus Archives Episode 38: Lost and Found Audio Transcript 
 Read on AO3 
 Nihilio, The Pale, The Endless Snowstorm, The Nothing 
 The following is a fanfiction of the Magnus Archives, while both this and it’s source are clearly fictional, the reader is advised to say “This Is Not Real” out loud before reading any further. 
 This…
During the Palisades and Eaton fires, any Angeleno who turned on the news would be given something else to worry about: crime. We were bombarded with a 24/7 propaganda campaign about roving criminal gangs looting houses in the evacuation zone, a narrative that totally justifies the LAPD’s ballooning budget as the fire department’s dwindling budget is cut yet again.



 Click to open



 Click to open

 Update 2025-10-18 : the in-line footnotes were not working on mobile so I have added a footnotes section at the bottom 
 
 
 spoilers ahead 


 
 Open IRC Log 
 
 




 
 
 <violetFate> hi!
 




 
 
 <Scott> oh thank God
 




 
 
 <Scott> I thought I was the only nerd who thought to hop on IRC before going to school
 




 
 
 <Scott> but of course it's also you :p
 




…



 Click to open

 Update 2026-02-02: See my latest privacy guide 
 
 Terminology 
 What is a threat model 
 For any given piece of information the threat model is who or what you are protecting it from . For example for your social security number, the threat model is identity thieves, it is not however the government, who already know it. Threat modeling is important because trying to use…

 For when you don’t already have a kubernetes cluster 
 
 Level 1: Just Back It Up 
 
 
 Install syncthing for your distro and add another device 
 
 This tutorial won’t go into that, see the official syncthing tutorial here 
 
 
 
 Move the weechat folders to ~/Sync (the default syncthing directory) and symlink them back 
 
…
Robin inspects her ID 
 
 It appears she has already received an SSH key, this can be used to access the school’s internet relay chat server. 
 
 Open laptop and launch IRC 


 A young woman stands in her room, it just so happens that today is her first day of high school. Despite not having stepped foot in it yet, she has already received her student ID in the mail. 
 
 Pick up ID 




 Click to open



 Click to open

 Update 2026-02-02: See my latest privacy guide 
 
 What and Why 
 This guide explains how to make a burner phone with a threat model . There are many reasons to use one such as: 
 
 keeping your main phone setup convenient instead of having to lock it down 
 not having to worry about apps on your main phone leaking information 
 
 Hardware and OS 
 
…
Pi Alert 
 
 

 Pi Alert continually scans your network and can alert you for new devices joining and devices going offline. This information is made available in a web interface and it’s light enough to run on the Pi Zero. 
 Unfortunately Pi Alert has no authentication whatsoever, presumably because it is only intended to be used on the same network, but we can fix that!…
I operate on a mental calendar loosely based on CGP Grey’s Theme System . It centers around two seasons. 
 
 Flux (in the winter) - a time of introspection and looking within 
 Rux (in the summer) - a time of growth and new beginnings 
 
 It’s not tied to any specific month and sort of just goes by vibes. It’s been 80+ degrees where I live and I hung out with…
or, why Cloudflare is hosting a mirror of everything on libgen 
 If you’ve been on libgen recently you’ve probably seen this: 
 
 huh!?? cloudflare is hosting libgen pdfs? 
 What is IPFS 
 IPFS , or, interplanetary filesystem is a project that was started in 2015, it’s essentially torrent except:

 Update 2026-02-02: See my latest privacy guide 
 
 categories 
 
 casual: convenient option for casual usage 
 secret: for a more intense threat model, for example, if you are a blogger in Florida 
 avoid: something recommended by other privacy guides that I would avoid 
 
 web browser 
 
 casual: firefox 
 secret: tor 
 avoid: brave 
…
Neocities 
 
 neocities is free hosting in the style of the original geocities 
 a lot of very interesting looking sites, many made with html by hand 
 plus, a lot of them are inspired by serial experiments lain 
 
 Yesterweb Links 
 
 tagline: Remember when the internet felt exciting and mysterious? 
 Update: Yesterweb’s webring has been discontinued…
(this is satire) 
 inspired by bottom 
 dudo is a secure passwordless
privilege escalation utility to replace sudo 
 Features 
 
 No vulnerabilities 
 Obscurity 
 No bloat 
 AI-powered execution 
 AI-powered command caching 
 
 No Bloat 
 dudo is only 33 lines of code, sudo is like, a lot more, this is
 scientifically proven to make…

 This is basically the config from
 home.file 
 
 Setup 
 
 Install
 home-manager 
 Create a directory called ~/backups to store the symlinks to
backups 
 
 (the actual data will be stored in /nix/store) 
 Backing up a file 
 
 Add this to your ~/.config/nixpkgs/home.nix : 
 
 home.file = {
 example = { 
 source =…
This post is my take on GNU Doesn't Care About Your Agency -
Xe 
 
 Update from 2023-04-11 see also: The Free Software Foundation is dying - Drew Devault’s blog 
 
 The Free Software Foundation, who developed the GNU system, is
surprisingly critical of most GNU/Linux
distributions , even
Debian which is fully
free .
This is because Debian does not meet…
Let's look at a for loop in Javascript 
 for ( i = 0 ; i < 3 ; i ++ ){
 console . log ( i );
 }
 > 0 
 > 1 
 > 2 
 Now let's write that same loop in python 
 for i in range( 0 , 3 , 1 ):
 print(i)
 > 0 
 > 1 
 > 2 
 The range command is flexible 
 for i in range( 4 , - 4 , - 2 ):
 print(i)
 > 4 
 > 2 
 > 0 
 > - 2 
 If…

 Firejail - Linux namespaces sandbox program 
 
 Installing 
 $ apt install firejail
 NixOS 
 programs.firejail.enable = true ; 
 Profiles 
 $ firejail firefox # Run firefox with the default profile 
 
 $ firejail --noprofile firefox # Run firefox without a profile 
 
 $ firejail --profile = firefox.profile firefox
 # Run firefox with profile…
jackie (at) technologists (dot) cloud
This quote made me cry so bad I just had to share it somewhere, so here it is, from Whipping Girl by Julia Serano 
 
 
 I replied that it is almost always [trans womens’] eyes. When I look into them, I see both endless strength and inconsolable sadness. I see someone who has overcome humiliation and abuses that would flatten the average person. I see a woman who was made to feel…

 Freshwater by Akwaeke Emezi 

 


 
 “Understand this if you understand nothing: it is a powerful thing to be seen.”
 
 

 
 
 
 
 KILL SIX BILLION DEMONS 

 


 
 Reach Heaven Through Violence