1
0
src/homepage/homepage

10344 lines
474 KiB
Plaintext
Raw Normal View History

2023-02-05 18:02:19 -07:00
#!/bin/sh
2023-07-06 07:50:30 -06:00
#llllmmmm11234567892123456789312345678941234567895123456789612345678971234567890
2023-02-20 08:46:03 -07:00
set -ex
2023-07-19 21:27:46 -06:00
<"$0" python3 -c '
2023-07-16 08:20:48 -06:00
import os, sys
2023-07-19 21:27:46 -06:00
class File:
attributes = [ # last in order wins in conflict, list must have both
"literally", "figuratively",
"append", "replace",
"verbatim", "stub"
]
content = ""
def __init__(self, **kwargs):
if "attributes" in kwargs:
self.attributes += kwargs["attributes"]
del(kwargs["attributes"])
for key in kwargs:
if key == "attributes": self.attributes+=kwargs["key"]
else: setattr(self, key, kwargs[key])
files = {"./cleanup.sh": File(attributes=["verbatim"], content="#!/bin/sh\n")}
for part in sys.stdin.read().split("\n\n\n").reverse():
name = part.split("\n")[0]
substitutions = dict()
if "\t" in "." + name:
attributes = name.split("\t")[1].split(",")
name = name.split("\t")[0]
else: attributes = default_attributes
if len(name) > 1 and name[1] != "/": continue
for s in part[len(name)+1:].split("\n\n")[0].split("\n"):
s = s.split("\t")
if len(s) == 2: substitutions[s[0]] = s[1]
content = part[len(substitutions)+2:]
if attributes.index("append") > attributes.index("replace"):
if not(name in files):
sys.stderr.write(sys.argv[0] + ": " + name + ": "
+ "appending to nothing\n")
else:
content = files[name].content + content
files += {name: File(attributes = attributes, content = content,
substitutions = substitutions)}
for name in files:
if name == "./cleanup.sh": continue
attributes = files[name].attributes
directory = "/".join(name.split("/")[:-1])
if attributes.index("stub") > attributes.index("verbatim"):
prefix = ""
suffix = ""
for d in directory.split("/"):
if d + "/Prefix" in files.keys():
prefix = files[d + "/Prefix"].content
if d + "/Suffix" in files.keys():
suffix = files[d + "/Suffix"].content
files[name].content = prefix + files[name].content + suffix
if attributes.index("figuratively") > attributes.index("literally"):
content = files[name].content
for s in files[name].substitutions:
instances = []
i = 0
while True:
instance = content.find(s, i)
if instance == -1: break
intances += [instance]
i = instance + len(s)
if len(instances) == 0: continue
for i in intances.reverse():
content = (content[:i] + substitutions[s]
+ content[i+len(s):])
files[name].content = content
if not(os.path.isdir(directory)):
os.makedirs(directory)
files["./cleanup.sh"].content += "rm -r -- " + directory + "\n"
else if directory == ".":
files["./cleanup.sh"].content += "rm -- " + name + "\n"
with open(name, "w") as fd:
fd.write(f)
if len(files["./cleanup.sh"].content.split("\n")) > 2:
with open("./cleanup.sh", "w") as fd:
fd.write(files["./cleanup.sh"].content)
'
2023-07-15 21:44:35 -06:00
test -f homepage.local \
&& exec ./homepage.local \
|| exit 0
2023-07-15 21:07:11 -06:00
2023-07-16 08:20:48 -06:00
/LICENSE verbatim
2023-07-15 21:07:11 -06:00
Other than noted exceptions, this is free and unencumbered data
released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this data, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this data dedicate any and all copyright interest in the data to the
public domain. We make this dedication for the benefit of the public at
large and to the detriment of our heirs and successors. We intend this
dedication to be an overt act of relinquishment in perpetuity of all
present and future rights to this data under copyright law.
THE DATA IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATA OR THE USE OR
OTHER DEALINGS IN THE DATA.
For more information, please refer to <http://unlicense.org/>
2023-07-15 21:44:35 -06:00
/homepage.html
2023-07-19 21:27:46 -06:00
$!TITLE &quot;homepage&quot; documentation
$!DESCRIPTION one file, one website
2023-07-15 21:44:35 -06:00
<H1>&quot;homepage&quot; documentation</H1>
<H2>the forest</H2>
<P>
homepage is a single-file static site generator written in UNIX sh(1) shell
script, the goal being to contain a website with heirarchical page
organization within a single file that can be run to extract it out to the
filesystem, almost like a self-extracting UNIX tape archive that documents its
own layout in a UTF-8 script closer to English.
</P>
<H2>trees</H2>
<H3>files</H3>
<P>
To add a file to your homepage, append three newlines ('\n', or the
Enter/Return key on your keyboard) to the end of the homepage file, followed
by the path of the file to add. A homepage file path starts with a slash ('/')
and is followed by the path to the file relative to the prefix directory (the
directory containing homepage). A file path that starts with a hash ('#') is
discarded. For all non-slash- non-hash- prefixed file paths, the behavior of
homepage is undefined.
</P>
2023-07-16 08:20:48 -06:00
<H4>file attributes</H4>
<P>
On the same line as the file path, if, after the path, a tab ('\t') is
present, the substring following the first tab in the line and spanning to
and excluding the next tab or newline describes the attributes of the file as
it is exported to the file system. These file attributes are delimited by
commas (',') and there's no limit to the amount of attributes a file can
have, though in the event of conflicting attributes the later attribute
"wins" the conflict.
</P>
<P>
In the absence of file attributes, the file will be exported to the
filesystem, the appropriate Prefix and Suffix files will be prepended and
appended respectively, and any requested macro substitutions will be
performed.
</P>
<P>
The "verbatim" attribute indicates that the file should be exported to the
filesystem without the appropriate Prefix and Suffix files prepended or
appended. The "stub" attribute indicates the opposite, though its behavior is
default.
</P>
2023-07-15 21:44:35 -06:00
<P>
2023-07-19 21:27:46 -06:00
The "literally" attribute indicates that the file should not be subject to
macro expansion despite any other directives. The "figuratively" attribute
2023-07-16 08:20:48 -06:00
indicates the opposite, though its behavior is default.
</P>
2023-07-15 21:44:35 -06:00
2023-07-19 21:27:46 -06:00
/praise/index.html append,literally
<LI>[<TIME datetime="2023-07-18 12:27">2023</TIME>] Doctor Eli Selig !!JQHA6kqyl91: >Maid Phone user / >mfw / ["Heart hands.jpg"]</LI>
/praise/Prefix
<!DOCTYPE html>
<HTML lang="en-US">
<HEAD>
<LINK HREF="https://trinity.moe/_PAGE" REL="canonical" />
<LINK HREF="/img/icons/favicon.ico" REL="shortcut icon" TYPE="image/x-icon" />
<LINK HREF="/css/2023.css" ID="styling" REL="stylesheet" />
<META CHARSET="UTF-8" />
<META CONTENT="dtb" NAME="author" />
<META CONTENT="praise for trinity / dot moe" NAME="description" />
<META CONTENT="width=device-width, initial-scale=1" NAME="viewport" />
<META CONTENT="img/trinnow.bmp" NAME="og:image" />
<META CONTENT="noindex" NAME="googlebot" /> <!-- FUCK GOOGLE -->
<META CONTENT="interest-cohort=()" HTTP-EQUIV="Permissions-Policy" /> <!-- FUCK GOOGLE -->
<STYLE>
li { font-family: monospace }
</STLYE>
<TITLE>praise</TITLE>
</HEAD>
<BODY>
<P><A HREF="..">~ www.trinity.moe</A></P>
<UL>
/praise/index.html literally
<LI>[<TIME datetime="2004-12-09">2004</TIME>] Dr. Gene Ray: <A HREF="https://web.archive.org/web/20041209065507/http://timecube.com:80/index.html">Life rotation debunks Trinity.</A></LI>
<LI>[<TIME datetime="2021-03-27 04:44">2021<TIME>] 🛸UFO🛸: I wanna hug trinity</LI>
<LI>[<TIME datetime="2021-05-03">2021</TIME>] Вероника Заглотова: <A HREF="https://invidious.tube/watch?v=fUpZO9LnNo0">my computer is making mustard gases</A></LI>
<LI>[<TIME datetime="2021-05-10 10:47">2021</TIME>] Аноним: [<I>screenshot of this website next to a screenshot of a wojak</I>]</LI> <!-- https://web.archive.org/web/20210510123535mp_/https://2ch.hk/s/res/2981671.html -->
<LI>[<TIME datetime="2021-05-15 08:49">2021</TIME>] Anonymous: deven's website is the best~!</LI>
<LI>[<TIME datetime="2021-05-15 09:17">2021</TIME>] Anonymous: this is what developing mental illness in teen years looks like</LI>
<LI>[<TIME>2021</TIME>] MetaMask/eth-phishing-detect: <A HREF="https://github.com/MetaMask/eth-phishing-detect/issues/5119">This domain was blocked for its similarity to dfinity.org, a historical phishing target.</A></LI>
<LI>[<TIME datetime="2022-05-11 21:43">2022</TIME>] Eminav_B: Never watching a movie with trinity</LI>
<LI>[<TIME datetime="2022-09-15 21:11">2022</TIME>] Milady Sonora Sprite: hi</LI>
/praise/Suffix
</UL>
</BODY>
</HTML>
2023-07-15 23:57:04 -06:00
/x200t/index.html
2023-07-19 21:27:46 -06:00
$!TITLE Thinkpad X200 Tablet
2023-07-15 23:57:04 -06:00
<SCRIPT SRC="/js/cookies.js" TYPE="application/javascript"></SCRIPT>
<SCRIPT SRC="/js/sheets.js" TYPE="application/javascript"></SCRIPT>
<SCRIPT TYPE="application/javascript">//<!--
window.onload = window.initializesheets;
//--></SCRIPT>
<H1>Thinkpad X200 Tablet</H1>
<H3>updated 2022-08-11</H3>
<HR ALIGN="left" SIZE="1" WIDTH="25%" />
<P>Contents</P>
<UL>
<LI><A HREF="#seealso" >See also</A></LI>
<LI><A HREF="#camera" >Integrated camera</A></LI>
<LI><A HREF="#drive" >SATA drive</A></LI>
<LI><A HREF="#drivecaddy" >Drive caddy</A></LI>
<LI><A HREF="#memory" >Memory</A></LI>
<LI><A HREF="#screws" >Screws</A></LI>
<LI><A HREF="#software" >Software</A></LI>
<LI><A HREF="#stylus" >Stylus</A></LI>
</UL>
<P ID="seealso">See also</P><UL>
<LI><A HREF="https://wiki.archlinux.org/title/Lenovo_ThinkPad_X200">Lenovo Thinkpad X200</A> (Arch Wiki)</LI>
<LI><A HREF="https://download.lenovo.com/pccbbs/mobiles_pdf/45n3683_04.pdf">Thinkpad X200 Tablet and X201 Tablet Hardware Maintenance Manual (fifth edition)</A> (<A HREF="https://web.archive.org/web/20210203043936/https://download.lenovo.com/pccbbs/mobiles_pdf/45n3683_04.pdf">Archive link</A>)</LI>
<LI><A HREF="https://linux-hardware.org/?view=computers&model=ThinkPad+X200+Tablet+(All)">Thinkpad X200 Tablet (All)</A> (Linux Hardware Database)</LI>
<LI><A HREF="https://www.thinkwiki.org/wiki/Category:X200_Tablet">X200 Tablet Overview</A> (Thinkwiki)</LI>
</UL>
<H2 ID="camera">Integrated camera</H2>
<P>
This is FRU 2060 in the hardware maintenance manual.
</P>
<P>
Some models have the camera, some don't.
It will be in the middle of the top of the screen bezel (looking at the screen with the <I>lenovo</I> logo oriented normally); some have a black plastic trapezoidal cover, some have the camera option.
Camera kits are available on-line for the X200 Tablet for around US$15 or so at time of writing.
</P>
<H2 ID="drive">SATA drive</H2>
<P>As far as I know, any 2.5" SATA laptop-sized drive will work.</P>
<P>
To replace the drive, locate the drive cover between the stylus holder and RJ-11 modem port on the right side of the laptop.
Unscrew the screw holding in the cover, to which the hard drive icon on the bottom of the laptop under the stylus holder is pointing.
Lift out the cover and there the drive will be exposed.
</P>
<H2 ID="drivecaddy">Hard drive caddy</H2>
<P>
Most of the eBay listings for X200 Tablets don't have hard drive covers or caddies.
You will want a caddy because it makes it much easier to get a drive out, and because it spaces out the drive in the space provided and provides some (minimal) amount of shock protection.
This is especially good for hard disks as you don't want those moving around in your laptop chassis, even if there's no risk of them being disconnected.
</P>
<P>
In a <I>pinch</I> you can use cardboard to space out a drive.
I made out okay using folded cardstock given that my X200 Tablet was going nowhere except my desk.
You should <I>not</I> do this for long periods, not really because there's some risk that increases as time wears on but just because in general it's stupid.
</P>
<P>
The same rubber rails that go around the hard drive, and the same metal thing that you screw onto the drive that has the black ribbon attached used to pull the drive out, are used for the X200, X200S, X200 Tablet, X201, X201S, X201 Tablet, T420, T420S, T430, and T430S, as far as I know.
Rubber rails for the X220 Tablet did not work, nor did the bay cover for the X220 Tablet work for the X200 Tablet.
</P>
<H2 ID="memory">Memory</H2>
<P>
This is FRU 1040 DIMM in the hardware maintenance manual.
The system memory modules and the access panel <I>only</I> have to be removed if the modules specifically are being replaced or if the system mainboard is getting replaced.
</P>
<P>
<A HREF="https://thinkpads.com/forum/viewtopic.php?f=43&t=113310">RealBlackStuff says</A>
the X200 Tablet is compatible with <CODE>DDR3-1066 (PC3-8500)</CODE> and <CODE>DDR3-1333 (PC3-10600)</CODE>.
It's possible to have 8GB memory installed.
<A HREF="https://www.ebay.com/usr/laptopused">eBay seller laptopused</A> correlates that <CODE>DDR3-1333</CODE> dual-rank memory should work.
Apparently for technical reasons the X200 Tablet must take 2Rx8 memory; two ranks of eight chips, and for 8GB memory, 256MB per chip (divide 8192MB by 2 modules * 2 ranks * 8 chips).
</P>
<P>
OEM-configured laptops can have <CODE>DDR3-1066</CODE> memory from Elpida or Samsung.
<A HREF="https://www.laptopmag.com/reviews/laptops/lenovo-thinkpad-x200-tablet">Laptop Mag says</A> the laptop came with 2GB RAM by default and is upgradeable to 4GB but most laptops for sale secondhand have 4GB memory installed.
Types 7449-43U and 7450-EYU came with 2x2GB <CODE>DDR3-1066 SO-DIMM (PC3-8500)</CODE>.
</P>
<P>
I got in touch with eBay seller <A HREF="https://ebay.com/seller?sid=woosterpsu">woosterpsu</A> who was auctioning off an X200 Tablet to benefit the Electronic Frontier Foundation with 8GB RAM installed and reported in the BIOS.
The seller sent me an image of the installed memory: a Hynix 4GB 2Rx8 PC3-10600S and a Dell P/N SNPX830DC/4G, both scavenged from other laptops.
These are <I>confirmed working</I> in a Core2 Duo L9400 X200 Tablet.
</P>
<H2 ID="screws">Screws</H2>
<P>
Per the hardware maintenance manual (page 225), the following screws are necessary for full assembly of the X200 Tablet:
</P>
<TABLE>
<TR><TH>Quantity</TH> <TH>Head</TH> <TH>Length</TH> <TH>Style</TH> <TH>Color</TH> </TR>
<TR><TD>1</TD> <TD>M1.6</TD> <TD>6mm</TD> <TD>Wafer head</TD> <TD>Silver</TD></TR>
<TR><TD>1</TD> <TD>M2</TD> <TD>2.5mm</TD> <TD>Wafer head</TD> <TD>Black</TD> </TR>
<TR><TD>11</TD> <TD>M2</TD> <TD>3mm</TD> <TD>Flat head</TD> <TD>Black</TD> </TR>
<TR><TD>18</TD> <TD>M2</TD> <TD>3.5mm</TD> <TD>Wafer head</TD> <TD>Silver</TD></TR>
<TR><TD>1</TD> <TD>M2</TD> <TD>3.5mm</TD> <TD>Wafer head</TD> <TD>Black</TD> </TR>
<TR><TD>3</TD> <TD>M2</TD> <TD>6mm</TD> <TD>Wafer head</TD> <TD>Silver</TD></TR>
<TR><TD>13</TD> <TD>M2</TD> <TD>6mm</TD> <TD>Wafer head</TD> <TD>Black</TD> </TR>
<TR><TD>1</TD> <TD>M2</TD> <TD>3mm</TD> <TD>Stud (height=4.2mm)</TD> <TD>Black</TD> </TR>
<TR><TD>1</TD> <TD>M2</TD> <TD>3mm</TD> <TD>Stud (height=5.5mm)</TD> <TD>Black</TD> </TR>
<TR><TD>6</TD> <TD>M2.5</TD> <TD>6mm</TD> <TD>Wafer head</TD> <TD>Black</TD> </TR>
<TR><TD>9</TD> <TD>M2.5</TD> <TD>8mm</TD> <TD>Wafer head</TD> <TD>Black</TD> </TR>
<TR><TD>1</TD> <TD>M3</TD> <TD>3mm</TD> <TD>Wafer head (HDD screw)</TD> <TD>Black</TD> </TR>
</TABLE>
<P>
Additionally listed are 9 circular screw caps and 6 square screw caps.
</P>
<P>
Two screw kits are listed with part numbers <CODE>45N3139</CODE> and <CODE>60Y4164</CODE>.
The difference is that <CODE>45N3139</CODE> has one more M2x3.5mm silver wafer head screw listed (18 versus 17).
<CODE>45N3139</CODE>'s contents in particular are reflected in the table above.
</P>
<P>On page 79 of the hardware maintenance manual some very rarely-noted screw notices are listed that are worth repeating, though it's up to the maintainer to follow the practices they so choose:</P>
<UL>
<LI>Always use new screws. (This is repeated earlier in the page; according to the manual, ThinkPad Notebooks have "special nylon-coated screws" that should be used only once.)</LI>
<LI>Use a torque screwdriver if you have one.</LI>
<LI>When tightening plastic against plastic, turn an additional 90 degrees after the screw head touches the surface of the plastic part.</LI>
<LI>When tightening logic cards against plastic, turn an additional 180 degrees after the screw head touches the surface of the plastic part.</LI>
<LI>If you have a torque driver, refer to the "Torque" column for each step.</LI>
<LI>
Make sure that you use the correct screw.
If you have a torque screwdriver, tighten all screws firmly to the torque shown in the table.
<B>Never use a screw that you removed. Use a new one. Make sure that all of the screws are tightened firmly.</B>
</LI>
</UL>
<H2 ID="software">Software</H2>
<P>
For some procedures in the hardware maintenance manual a ThinkPad Hardware Maintenance Diskette is needed.
This was available only to licensed dealers.
</P>
<P>
Here's a chart of executable names relevant to the X200 Tablet as provided from Lenovo and their product names.
A lot of this is sourced from hearsay and olden lore so it may not be fully accurate, and definitely isn't complete.
Also, I trimmed down redundant sections of product names - for example, <CODE>7wuj45uc.iso</CODE> is actually <I>BIOS Update Bootable CD <B>for Windows 7 (32-bit, 64-bit), Vista (32-bit, 64-bit), XP - ThinkPad</B></I> but if it's bootable itself operating system compatibility likely doesn't matter.
</P>
<TABLE>
<TR><TH>Executable</TH> <TH>Product name</TH> <TH>Version</TH> </TR>
<TR><TD>6itr02ww.zip</TD> <TD>BIOS Settings Capture/Playback Utility</TD> <TD>4.01</TD> </TR>
<TR><TD>7wuj45uc.iso</TD> <TD>BIOS Update Bootable CD</TD> <TD>3.21</TD> </TR>
<TR><TD>7wuj45u6.exe</TD> <TD>BIOS Update Utility for Windows 7 (32-bit, 64-bit), Vista (32-bit, 64-bit), XP</TD> <TD>3.21</TD></TR>
<TR><TD>6ea118ww.exe</TD> <TD>Conexant Audio Driver for Windows Vista (32-bit, 64-bit), XP</TD> <TD>4.92.15.0 / 3.64.15.0</TD></TR>
<TR><TD>6ea160ww.exe</TD> <TD>Conexant Audio Software for Windows 7 (32-bit, 64-bit)</TD> <TD>4.92.12.0</TD></TR>
<TR><TD>maint150.exe</TD> <TD>IBM Thinkpad Hardware Maintenance Diskette (HMD)</TD> <TD>1.50</TD> </TR>
<TR><TD>maint160.exe</TD> <TD>IBM Thinkpad Hardware Maintenance Diskette (HMD)</TD> <TD>1.60</TD> </TR>
<TR><TD>maint169.exe</TD> <TD>IBM Thinkpad Hardware Maintenance Diskette (HMD)</TD> <TD>1.69</TD> </TR>
<TR><TD>i7tm23us.exe</TD> <TD>IBM Thinkpad Hardware Maintenance Diskette (HMD)</TD> <TD>1.75</TD> </TR>
<TR><TD>i7tm25us.exe</TD> <TD>IBM Thinkpad Hardware Maintenance Diskette (HMD)</TD> <TD>1.77</TD> </TR>
<TR><TD>i7tm37us.exe</TD> <TD>Unknown</TD> <TD>Unknown</TD> </TR>
<TR><TD>i7tm38us.exe</TD> <TD>IBM Thinkpad Hardware Maintenance Diskette (HMD)</TD> <TD>1.89</TD> </TR>
<TR><TD>83ts04ww.exe</TD> <TD>ThinkPad BIOS Settings for Windows 7 (32-bit), Vista (32-bit), XP, 2000</TD> <TD>3.03</TD></TR>
</TABLE>
<P>
Lenovo's X200 Tablet downloads won't last forever.
Here's a JavaScript that allows a user to download arbitrary executables from Lenovo's download servers.
</P>
<INPUT ID="executable" VALUE="i7tm38us.exe" />
<INPUT ONCLICK="window.location.href = 'http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/' + document.getElementById('executable').value;" TYPE="button" VALUE="Download" />
<P>The following operating systems were available pre-installed by the OEM, depending on the variant:</P>
<UL>
<LI>Microsoft Windows XP Tablet (32 bit)</LI>
<LI>Microsoft Windows Vista Home Premium (32 bit)</LI>
<LI>Microsoft Windows Vista Business (32 bit)</LI>
<LI>Microsoft Windows Vista Business (64 bit)</LI>
<LI>Microsoft Windows Vista Ultimate (32 bit</LI>
<LI>Microsoft Windows 7 Home Basic (32 bit)</LI>
<LI>Microsoft Windows 7 Home Premium (32 bit)</LI>
<LI>Microsoft Windows 7 Home Premium (64 bit)</LI>
<LI>Microsoft Windows 7 Professional (32 bit)</LI>
<LI>Microsoft Windows 7 Professional (64 bit)</LI>
</UL>
<P>9front system usage is described in the <A HREF="http://fqa.9front.org/fqa3.html#3.2.5.2.1">9front FQA, section 3.2.5.2.1</A>.</P>
<P>Linux system usage is described in detail on the <A HREF="#seealso">Arch GNU+Linux wiki</A> - any Linux or UNIX specific knowledge I have I add to the Arch wiki rather than putting on this page.</P>
<H2 ID="stylus">Stylus</H2>
<P>
The X200 Tablet originally came with a single-button stylus with a gray "eraser".
I found some single-button stylus from eBay, with a red "eraser", and that worked too.
I have a two-button stylus that came with another X200 Tablet but it's as of yet untested.
The Fujitsu T-5000 digitizer pen does work, identically according to <CODE>xev(1)</CODE>.
</P>
<P>
<B>Do not</B> try to insert two-button Thinkpad styluses into the stylus holder of the X200 Tablet as they'll become stuck in there because of how the buttons are shaped.
To remove a stuck stylus the digitizer pen case (part number <CODE>45N3146</CODE>) must be unscrewed and removed from the chassis.
Following the hardware maintenance manual, remove FRUs "1020 Battery pack" and "1060 Keyboard" and follow steps 6 and 7 of the removal process of FRU "1180 DC-in connector, fan, digitizer pen case, and pen switch assembly".
No other FRUs need to be removed, nor do any other steps of the removal process of FRU 1180 need to be followed.
</P>
/hacker-howto/index.html
2023-07-19 21:27:46 -06:00
$!TITLE How to Become A Hacker
2023-07-15 23:57:04 -06:00
<H2>How to Become A Hacker</H2>
<H3>Deven Trinity Blake</H3>
<P><CODE>&lt;<A HREF="mailto:trinity@trinity.moe">trinity@trinity.moe</A>&gt;</CODE></P>
<P>No Copyright 🄯 2021 Deven T. Blake</P>
<HR />
<H2>Why This Document?</H2>
<P>
A lot of hackers consider Eric S. Raymond's original <A HREF="http://www.catb.org/~esr/faqs/hacker-howto.html"><I>How to Become A Hacker</I></A> to be definitive, for good reason.
It explains the "hacker philosophy", some key things at which one should be good, and is a good compass that points to What to Learn Next.
I myself stumbled upon the document maybe a decade or so ago, when I was a small impressionable child, and know half of what I do because of where it pointed me.
I think, however, that <I>How to Become A Hacker</I> is a bit dated, so I'm writing this to be a nice complementary piece for those to read <B>after they read esr's original</B>.
</P>
<P>
If you are reading a snapshot of this document offline, the current version lives at <A HREF="http://www.trinity.moe/hacker-howto">http://www.trinity.moe/hacker-howto</A>.
</P>
<H2>Basic Hacking Skills</H2>
<H3>1. Learn how to program</H3>
<P>
Python is an okay first language as long as you don't take it too seriously.
As said by smarter people than me, Python is a glue language.
It's slow and a bit basic, but its errors are often easy to solve, so do as much as you can with Python and Python libraries, and do the rest in faster languages.
</P>
<P>
Never touch Java.
Not even once.
While at one point it was promising, it's become a monstrous beast and it must be slain through attrition.
</P>
<P>
When you are good at programming you will think <I>outside</I> of programming languages.
Programming languages are tools for a job.
Some are better suited to some tasks than others.
For example, I would use C as a language for building utilities for myself, as I want them to be blisteringly fast and I know that's easier to do in C than Python.
I've written utilities in Python to know how I want them to behave, and then perfected them by rewriting them in C.
This being said, when learning a language for the first time, <I>master</I> it, <I>then</I> move on.
</P>
<H3>2. Get one of the open-source Unixes and learn to use and run it.</H3>
<P>
<B>Don't</B> try to program on Microsoft Windows.
Seriously.
This is the one mistake almost all beginners make; they'll install fifty different tools onto their MS Windows system in order to make a simple program that doesn't really work because their tutorial only works for UNIX.
Just install a Free UNIX-clone ("clone" in this context is not a bad thing; most Free UNIX-clones are much more practical in this world than the original) and learn how to work in it.
In fact, you may want to learn <I>shell</I> before anything else.
When you know how to
<OL>
<LI>Make a directory,</LI>
<LI>Make an empty file within that directory,</LI>
<LI>Overwrite the file with exactly 500B of random data,</LI>
<LI>Mark the file as executable,</LI>
<LI>Print the file to the terminal as readable, hexadecimal data,</LI>
<LI>And remove the directory and the file,</LI>
</OL>
you will know enough to start on your journey into hacking.
</P>
<P>
BSDs are awesome and I use a BSD myself, but perhaps start with Linux as there's a much bigger community to help you there.
There are no longer any good non-UNIX operating systems.
The importance of choosing a Free operating system cannot be understated.
It's hard to learn from your OS's code when your OS's code is only readable by those within the corporation that made the OS.
</P>
<P>
Don't use Ubuntu as it suffers from many of the flaws that drive non-hacker Windows users to Linux-based systems.
Instead, try Linux Mint, which is based on Ubuntu but without the more annoying issues.
</P>
<H3>3. Learn how to use the World Wide Web and write HTML.</H3>
<P>
View the source code of the original <I>How to Become A Hacker</I> and then read the source code to this webpage.
</P>
<H3>4. If you don't have functional English, learn it.</H3>
<P>
It's unfortunate that English has become the lingua franca of the Internet.
But it's true, it has, and it's more or less required learning if you want to become a hacker.
</P>
<H3>5. Learn to use a search engine.</H3>
<P>
This is my own tip.
<B>This is the most important thing on this page</B>.
How to accomplish this is an exercise left to the reader.
</P>
/home/index.html
2023-07-19 21:27:46 -06:00
$!TITLE home
2023-07-15 23:57:04 -06:00
<P><A HREF="/">~ www.trinity.moe</A></P>
<UL>
<LI><A HREF="https://discord.com/app">Discord</A></LI>
<LI><A HREF="https://duckduckgo.com/">DuckDuckGo</A></LI>
<LI><A HREF="https://kingpossum.com:8000/radio.mp3">King Possum Radio</A></LI>
<LI><A HREF="https://mail.cock.li/">Mail</A></LI>
<LI><A HREF="https://text.npr.org/">NPR</A></LI>
<LI><A HREF="https://timewarple.com/">Wordle</A></LI>
<LI><A HREF="https://wttr.in/?m">wttr.in</A></LI>
<LI><A HREF="https://yandex.ru/">Яндекс</A></LI>
<LI><A HREF="https://yewtu.be/">YouTube</A></LI>
</P>
2023-07-16 08:20:48 -06:00
/bookmarks/index.html verbatim
2023-07-15 21:44:35 -06:00
<!DOCTYPE html>
<HTML LANG="en">
<HEAD>
<LINK HREF="http://www.trinity.moe/bookmarks" REL="canonical" />
<LINK HREF="https://raw.githubusercontent.com/devenblake/homepage/main/img/icons/bookmarks.ico" REL="shortcut icon" TYPE="image/x-icon" />
<LINK HREF="" ID="styling" REL="stylesheet" />
<LINK HREF="/css/lists.css" REL="stylesheet" />
<META CHARSET="UTF-8" />
<META CONTENT="noindex" NAME="googlebot" /> <!-- FUCK GOOGLE -->
<META CONTENT="interest-cohort=()" HTTP-EQUIV="Permissions-Policy" /> <!-- FUCK GOOGLE -->
<META CONTENT="width=device-width, initial-scale=1" NAME="viewport" />
<TITLE>bookmarks</TITLE>
</HEAD>
<BODY>
<P><A HREF="/">~ Return to the rest of the site</A></P>
<SCRIPT SRC="/js/cookies.js" TYPE="application/javascript"></SCRIPT>
<SCRIPT SRC="/js/sheets.js" TYPE="application/javascript"></SCRIPT>
<SCRIPT TYPE="application/javascript">window.onload = window.initializesheets;</SCRIPT>
<H1>bookmarks</H1>
<HR ALIGN="left" SIZE="1" WIDTH="25%" />
<P>
These are bookmarks I had stored in my browser.
Now that I have so many, I'm keeping them in a friendlier hypertext document.
Of course, Firefox already has a very nice bookmarks export feature,
which is human readable as-is, but I'd like to make them as portable as possible
and I think parsing this document as it is won't be too impossible for me to figure out programatically.
</P>
<P>
There are some very, very interesting things in all of these hyperlinks.
I don't know if anyone else will ever use this page but to any travelers coming across this tome - have fun.
Also, the category descriptions are very vague.
</P>
<P>
I had to take some personal stuff out of here, which sucks,
because now I have a massive HTML doc and still have to have a bookmarks bar.
Oh well.
</P>
<!--BMARKS_START-->
<UL>
<LI ID="misc"><A HREF="#misc">Miscellaneous</A><UL>
<LI><A HREF="https://1mb.co/">1MB</A></LI>
<LI><A HREF="http://www.410go.net/">Error 410</A></LI>
<LI><A HREF="http://blackflag.acid.org/">ACiD</A></LI>
<LI><A HREF="http://www.animanga.com/">Animanga</A></LI>
<LI><A HREF="https://anonfile.com/">AnonFile</A></LI>
<LI><A HREF="https://www.based.gg/">Based (Clothing)</A></LI>
<LI><A HREF="https://www.bell-labs.com/">Bell Labs</A></LI>
<LI><A HREF="https://browser.mt/">Bergamot</A></LI>
<LI><A HREF="https://snap.berkeley.edu/">Berkeley Snap!</A></LI>
<LI><A HREF="http://www.c64.com/">C64.COM</A></LI>
<LI><A HREF="https://www.chibiakumas.com/">Chibi Akumas</A></LI>
<LI><A HREF="https://web.archive.org/web/20070527164016/http://www.deviantart.com/deviation/18591720/">ClearLooks for Windows XP</A></LI>
<LI><A HREF="https://www.cloudflare.com/">Cloudflare</A></LI>
<LI><A HREF="https://code.org/">Code.org</A></LI>
<LI><A HREF="https://gchq.github.io/CyberChef/">CyberChef</A></LI>
<LI><A HREF="https://www.desmos.com/">Desmos</A></LI>
<LI><A HREF="https://github.com/wooorm/dictionaries">dictionaries</A></LI>
<LI><A HREF="https://distress.network">DistressNetwork</A></LI>
<LI><A HREF="https://www.dnsleaktest.com/">DNS Leak Test</A></LI>
<LI><A HREF="http://dogisaga.org/">Dogisaga</A></LI>
<LI><A HREF="https://www.dropbox.com/">Dropbox</A></LI>
<LI><A HREF="https://www.duoflag.com/">duoflag</A></LI>
<LI><A HREF="https://www.facesofopensource.com/">Faces of Open Source</A></LI>
<LI><A HREF="https://www.favicon.cc/">favicon.cc</A></LI>
<LI><A HREF="https://freetextbooks.com/">FreeTextbooks</A></LI>
<LI><A HREF="http://goodsites.tech/">/g/'s good sites</A></LI>
<LI><A HREF="https://support.google.com/mail/contact/abuse">Google Mail Abuse Form</A></LI>
<LI><A HREF="https://www.8notes.com/guitar_tuner/">Guitar Tuner</A></LI>
<LI><A HREF="https://joshdata.me/iceberger.html">Iceberger</A></LI>
<LI><A HREF="http://iconoclast.org/index.shtml">Iconoclast</A></LI>
<LI><A HREF="https://icotar.com/">Icotar</A></LI>
<LI><A HREF="http://www.imaginarysoundscape.net/">Imaginary Soundscape</A></LI>
<LI><A HREF="https://ipleak.net/">IPLeak</A></LI>
<LI><A HREF="https://github.com/mayfrost/guides/blob/master/IRC.md">IRC Rite</A></LI>
<LI><A HREF="http://xn--5ca.cc/jack-of-diamonds/">Jack of Diamonds</A></LI>
<LI><A HREF="https://www.saji8k.com/kit-fui/">Kit FUI</A></LI>
<LI><A HREF="http://weather.256k.net/snow/">Maine Snow Forecast</A></LI>
<LI><A HREF="http://www.matranet.net/">MATRA Computer Automations</A></LI>
<LI><A HREF="http://mebious.co.uk/">mebious.co.uk entry wired</A></LI>
<LI><A HREF="http://merthsoft.com/">Merthsoft</A></LI>
<LI><A HREF="https://milkshake.app/">Milkshake</A></LI>
<LI><A HREF="http://www.minecraftseeds.info/">Minecraft Seeds</A></LI>
<LI><A HREF="https://getbukkit.org/">Minecraft Server JAR Mirror</A></LI>
<LI><A HREF="https://minecraftservers.org/">Minecraft Servers</A></LI>
<LI><A HREF="https://www.minecraftskins.com/">Minecraft Skindex</A></LI>
<LI><A HREF="http://www.minecraft101.net/superflat/">Minecraft Superflat Preset Generator</A></LI>
<LI><A HREF="https://www.minecrafttexturepacks.com/">Minecraft Texture Packs</A></LI>
<LI><A HREF="https://scratch.mit.edu/">MIT Scratch</A></LI>
<LI><A HREF="https://github.com/moodle/moodle">Moodle</A></LI>
<LI><A HREF="https://mullvad.net/">Mullvad VPN</A></LI>
<LI><A HREF="https://www.namecheap.com/support/knowledgebase/article.aspx/9196/5/how-and-where-can-i-file-abuse-complaints/">Namecheap - How and where can I file abuse complaints?</A></LI>
<LI><A HREF="https://nekovm.org/">NekoVM</A></LI>
<LI><A HREF="http://neverssl.com/">NeverSSL</A></LI>
<LI><A HREF="https://nobsgames.stavros.io/">No Bullshit Games</A></LI>
<LI><A HREF="http://okturing.com/">OK, turing.</A></LI>
<LI><A HREF="https://onlinebooks.library.upenn.edu/">The Online Books Page</A></LI>
<LI><A HREF="https://openbittorrent.com/">OpenBitTorrent</A></LI>
<LI><A HREF="http://www.gutenberg.org/">Project Gutenberg</A></LI>
<LI><A HREF="https://protonvpn.com/">ProtonVPN</A></LI>
<LI><A HREF="https://radicalhk.com/about/donation/">RadicalHK Donation Page</A></LI>
<LI><A HREF="http://rot8000.com/Index">Rot8000</A></LI>
<LI><A HREF="https://www.istartedsomething.com/20061029/royale-noir/">Royale Noir</A></LI>
<LI><A HREF="https://i.kym-cdn.com/photos/images/original/000/030/662/rules.jpg.jpg">Rules of the internet.</A></LI>
<LI ID="misc#search"><A HREF="#misc#search">Search engines</A><UL>
<LI><A HREF="https://alternative-a.com/">Alternative</A></LI>
<LI><A HREF="https://www.baidu.com/">Baidu</A></LI>
<LI><A HREF="https://www.bing.com/">Bing</A></LI>
<LI><A HREF="https://duckduckgo.com/">DuckDuckGo</A> (<A HREF="https://3g2upl4pq6kufc4m.onion/">Onion link</A>)</LI>
<LI><A HREF="https://www.filechef.com/">FileChef</A></LI>
<LI><A HREF="http://frogfind.com/">FrogFind!</A></LI>
<LI><A HREF="https://google.com/">Google</A></LI>
<LI>TORCH (<A HREF="http://xmh57jrknzkhv6y3ls3ubitzfqnkrwxhopf5aygthi7d6rplyvk3noyd.onion/">Onion link</A>)</LI>
<LI><A HREF="https://wiby.me/">Wiby</A></LI>
<LI><A HREF="https://www.yahoo.com/">Yahoo!</A></LI>
</UL></LI>
<LI><A HREF="http://www.pbm.com/">Shadow Island Games</A></LI>
<LI><A HREF="http://maps.stamen.com/">Stamen Maps</A></LI>
<LI><A HREF="https://github.com/noahlevenson/stealing-ur-feelings">Stealing Ur Feelings</A></LI>
<LI>Tea (and herbal "tea", and coffee)<UL>
<LI><A HREF="https://mountainstreamteas.com/collections/green-teas/products/white-green-and-black-tea-sanxia-taster-set?variant=39565934723228">White, Green and Black Tea Sanxia Taster Set</A></LI>
</UL></LI>
<LI><A HREF="https://philosophicalterrorism.blogspot.com/2020/10/terror-in-united-states-open-letter-to.html">Terror in the United States: An Open Letter to American Moderates</A></LI>
<LI><A HREF="https://www.pinger.com/text-free/">Textfree</A></LI>
<LI><A HREF="https://www.google.com/search?hl=en&q=filetype:rtf+|+filetype:ppt+|+filetype:pptx+|+filetype:csv+|+filetype:xls+|+filetype:xlsx+|+filetype:docx+|+filetype:doc+|+filetype:pdf+%22this+document+is+confidential%22+site:gov&aq=f&aqi=&aql=">This Document is Confidential</A></LI>
<LI><A HREF="https://www.thiswaifudoesnotexist.net/">This Waifu Does Not Exist v2</A></LI>
<LI><A HREF="https://thiswojakdoesnotexist.com/">This Wojak Does Not Exist</A></LI>
<LI><A HREF="https://turbotax.intuit.com/taxfreedom/">TurboTax Free File</A></LI>
<LI><A HREF="https://www.bell-labs.com/unix50/">UNIX 50</A></LI>
<LI><A HREF="https://tools.usps.com/go/TrackConfirmAction!input.action">USPS Tracking</A></LI>
<LI><A HREF="http://www.itsmattkc.com/etc/vapor98/">Vaporwave Windows 98 Logo</A></LI>
<LI><A HREF="http://visual6502.org/">Visual 6502</A></LI>
<LI><A HREF="https://www.weebly.com/">Weebly</A></LI>
<LI><A HREF="https://www.whitepages.com/person">Whitepages Free People Search</A></LI>
<LI><A HREF="https://en.wikipedia.org/">Wikipedia English</A></LI>
<LI><A HREF="https://wordpress.com/">Wordpress</A></LI>
<LI><A HREF="https://writer.bighugelabs.com/">Writer: the internet typewriter</A></LI>
<LI><A HREF="https://zbigz.com/myfiles">ZBIGZ</A></LI>
<LI><A HREF="https://zebraiq.com/">Zebra IQ</A></LI>
</UL></LI>
<LI ID="blogs"><A HREF="#blogs">Organizations, personal websites, and publications</A><UL>
<LI><A HREF="https://www.2600.com/">2600</A></LI>
<LI><A HREF="http://49406.org/">[49406]</A></LI>
<LI><A HREF="http://aiju.de/">aiju</A></LI>
<LI><A HREF="http://alleng.org/">Allen G.</A></LI>
<LI><A HREF="https://www.avclub.com/">The AV Club</A></LI>
<LI><A HREF="http://www.bangordailynews.com/">The Bangor Daily News</A></LI>
<LI><A HREF="https://b3ta.com/">B3TA</A></LI>
<LI>Blogspot<UL>
<LI><A HREF="http://poetry.instantfloppy.net/">Habitual Poetry</A></LI>
<LI><A HREF="http://roboham.blogspot.com/">roboham</A></LI>
<LI><A HREF="https://transgriot.blogspot.com/">TransGriot</A></LI>
</UL></LI>
<LI><A HREF="https://www.bookofjoe.com/">Book of Joe</A></LI>
<LI><A HREF="https://thebulletin.org/">The Bulletin of the Atomic Scientists</A></LI>
<LI><A HREF="https://callcc.kill-9.xyz/">CALL/CC</A></LI>
<LI><A HREF="http://cat-v.org/">Cat-v.ORG</A></LI>
<LI><A HREF="https://www.centralmaine.com/">Central Maine News</A></LI>
<LI><A HREF="http://felloff.net/usr/cinap_lenrek/">Cinap Lenrek</A></LI>
<LI><A HREF="http://www.chrismcovell.com/index2.html">Chris Covell</A></LI>
<LI><A HREF="http://lite.cnn.io/en">CNN</A></LI>
<LI><A HREF="https://www.colinfahey.com/">Colin Fahey</A></LI>
<LI><A HREF="http://www.ctyme.com/hosting/index.htm">Computer Tyme</A></LI>
<LI><A HREF="http://crick.com/">Crick</A></LI>
<LI><A HREF="https://crimethinc.com/">CrimethInc.</A></LI>
<LI><A HREF="https://cure53.de/">Cure53</A></LI>
<LI><A HREF="https://cyberpunk-life.neocities.org/">Cyberlife</A></LI>
<LI><A HREF="https://www.dailydot.com/">The Daily Dot</A></LI>
<LI><A HREF="https://danluu.com/">danluu</A></LI>
<LI><A HREF="http://www.scs.stanford.edu/~dm/">David Mazières</A></LI>
<LI><A HREF="http://www.trinity.moe/">Deven Blake</A></LI>
<LI><A HREF="https://www.bell-labs.com/usr/dmr/www/">Dennis M. Ritchie</A></LI>
<LI>Deviantart<UL>
<LI><A HREF="https://www.deviantart.com/catcusmoe">cactusmoe</A></LI>
<LI><A HREF="https://www.deviantart.com/kuvshinov-ilya">Kuvshinov-Ilya</A></LI>
</UL></LI>
<LI><A HREF="https://distrowatch.com/">DistroWatch.com</A></LI>
<LI><A HREF="https://www-cs-faculty.stanford.edu/~knuth/">Donald E. Knuth</A></LI>
<LI><A HREF="https://www.electrospaces.net/">Electrospaces.net</A></LI>
<LI><A HREF="https://www.eff.org/">EFF</A></LI>
<LI><A HREF="http://www.cs.utah.edu/~elb/">Erik Brunvard</A></LI>
<LI><A HREF="https://eunakria.github.io/">Eunakria</A></LI>
<LI><A HREF="https://faenri.ch/">faehnri.ch</A></LI>
<LI><A HREF="https://fivethirtyeight.com/">FiveThirtyEight</A></LI>
<LI><A HREF="https://florane.github.io/">Florane</A></LI>
<LI><A HREF="https://lsub.org/">Fran. J. Ballesteros</A></LI>
<LI><A HREF="https://gizmodo.com/">Gizmodo</A></LI>
<LI><A HREF="https://www.gnu.org/">GNU</A></LI>
<LI><A HREF="http://www.pbm.com/~lindahl/">Greg Lindahl</A></LI>
<LI><A HREF="http://incompleteideas.net/">Incomplete Ideas</A></LI>
<LI><A HREF="https://www.instantfloppy.net/">Instant Floppy</A></LI>
<LI><A HREF="https://www.alchemistowl.org/pocorgtfo/">International Journal of Proof-of-Concept or Get The Fuck Out (PoC||GTFO or PoC or GTFO)</A></LI>
<LI><A HREF="https://itsgoingdown.org/">It's Going Down</A></LI>
<LI><A HREF="https://jayfax.neocities.org/">Jayfax</A></LI>
<LI><A HREF="https://jameshfisher.com/">Jim Fisher</A></LI>
<LI><A HREF="https://kasumiru.neocities.org/">kasumiru</A></LI>
<LI><A HREF="https://kill-9.xyz/">kill -9</A></LI>
<LI><A HREF="https://www.kirsle.net/">Kirsle</A></LI>
<LI><A HREF="https://kotaku.com/">Kotaku</A></LI>
<LI><A HREF="https://kyleschaeffer.com/">Kyle Schaeffer</A></LI>
<LI><A HREF="https://lifehacker.com/">LifeHacker</A></LI>
<LI><A HREF="https://linwer.xyz">linwer</A></LI>
<LI><A HREF="https://www.linuxjournal.com/">Linux Journal</A></LI>
<LI><A HREF="http://www.lord-enki.net/">Lord Enki</A></LI>
<LI><A HREF="https://solar.lowtechmagazine.com/">Lowtech Magazine</A></LI>
<LI><A HREF="https://lwn.net/">LWN.net</A></LI>
<LI><A HREF="https://www.mainereview.com/">The Maine Review</A></LI>
<LI><A HREF="http://mainewriters.org/">Maine Writers</A></LI>
<LI><A HREF="https://mainernews.com/">Mainer</A></LI>
<LI><A HREF="http://michaelnormanwilliams.com/">Michael Norman Williams</A></LI>
<LI><A HREF="https://blog.mozilla.org/">Mozilla</A></LI>
<LI><A HREF="https://www.mufon.com/">MUFON</A></LI>
<LI><A HREF="https://www.nbcnews.com/">NBC News</A></LI>
<LI><A HREF="https://www.newscentermaine.com/">News Center Maine</A></LI>
<LI><A HREF="https://www.nytimes.com/">The New York Times</A></LI>
<LI><A HREF="https://www3.nhk.or.jp/nhkworld/">NHK World-Japan</A></LI>
<LI><A HREF="http://ninetimes.cat-v.org/">NineTimes</A></LI>
<LI><A HREF="https://devblogs.microsoft.com/oldnewthing/">Old New Thing</A></LI>
<LI><A HREF="https://ortusjournal.org/">Ortus Journal</A></LI>
<LI><A HREF="http://paulgraham.com/index.html">Paul Graham</A></LI>
<LI><A HREF="http://www.perkel.com/">Perkel</A></LI>
<LI><A HREF="https://postsecret.com/">PostSecret</A></LI>
<LI><A HREF="https://freethoughtblogs.com/">PZ Myers</A></LI>
<LI><A HREF="https://qorg11.net/">qorg11.net</A></LI>
<LI><A HREF="http://bnrg.cs.berkeley.edu/~randy/">Randy H. Katz</A></LI>
<LI><A HREF="https://reese.instantfloppy.net">Reese McConnell</A></LI>
<LI><A HREF="http://web.eece.maine.edu/eason/">Richard Eason</A></LI>
<LI><A HREF="http://rlstine.com/">R. L. Stine</A></LI>
<LI><A HREF="http://www.rongarret.info/">Ron Garret</A></LI>
<LI><A HREF="https://web.archive.org/web/20010404060632/http://www.geocities.com:80/Tokyo/Ginza/5975/">Eternal Serena's Sailor Moon Universe</A></LI>
<LI><A HREF="https://ftrv.se/">Sigrid</A></LI>
<LI><A HREF="http://4ch.mooo.com/">四葉の芽◇ちゃんねる</A></LI>
<LI><A HREF="https://slashdot.org/">Slashdot</A></LI>
<LI><A HREF="https://www.snopes.com/">Snopes</A></LI>
<LI><A HREF="https://www.sunjournal.com/">The Sun Journal</A></LI>
<LI><A HREF="https://tebibyte.media/">Tebibyte Media</A></LI>
<LI><A HREF="https://thetech.com/">The Tech</A></LI>
<LI><A HREF="https://www.techdirt.com/">techdirt</A></LI>
<LI><A HREF="https://www.tellingroom.org/">The Telling Room</A></LI>
<LI><A HREF="https://ti84clacualters.neocities.org/">ti84clacualters</A></LI>
<LI><A HREF="https://www.tumblr.com/">Tumblr</A><UL>
<LI><A HREF="https://web.archive.org/web/20141229151735/http://lazerprincess.tumblr.com/">lazerprincess</A></LI>
<LI><A HREF="https://mcupdate.tumblr.com/">Minecraft News</A></LI>
<LI><A HREF="https://laimina.tumblr.com/">webcore/old web sideblog</A></LI>
</UL></LI>
<LI><A HREF="https://www.vice.com/">Vice</A></LI>
<LI>Webcomics<UL>
<LI><A HREF="https://3eanuts.com/">3eanuts</A></LI>
<LI><A HREF="https://garfieldminusgarfield.net/">garfield minus garfield</A></LI>
<LI><A HREF="http://www.neorice.com/hoh_latest">Hero Oh Hero</A></LI>
<LI><A HREF="https://megatokyo.com/">MegaTokyo</A></LI>
<LI><A HREF="https://questionablecontent.net/">Questionable Content</A></LI>
<LI><A HREF="http://www.savestatecomic.com/">Savestate</A></LI>
<LI><A HREF="http://twokinds.keenspot.com/">Twokinds</A></LI>
<LI><A HREF="https://xkcd.com/">xkcd</A></LI>
</UL></LI>
<LI><A HREF="https://notthebe.ee/">Wolfgang's Blog</A></LI>
<LI><A HREF="http://www.xanadu.net/">Xanadu</A></LI>
<LI><A HREF="https://www.xyte.ch/">xytech</A></LI>
</UL></LI>
<LI>Directories<UL>
<LI><A HREF="http://37.49.225.149/">37.49.225.149</A></LI>
<LI><A HREF="http://37.187.126.11/">37.187.126.11</A></LI>
<LI><A HREF="http://47.6.21.208/">47.6.21.208</A></LI>
<LI><A HREF="http://54.39.19.165/">54.39.19.165</A></LI>
<LI><A HREF="http://81.13.43.226/Proj/">81.13.43.226</A></LI>
<LI><A HREF="http://88.99.139.156/plex/Movies/">88.99.139.156</A></LI>
<LI><A HREF="http://103.109.215.30/FTP/">103.109.215.30</A></LI>
<LI><A HREF="http://136.243.8.92/Movies/En/">136.243.8.92</A></LI>
<LI><A HREF="http://141.255.166.3">141.255.166.3</A></LI>
<LI><A HREF="http://144.217.176.177/">144.217.176.177</A></LI>
<LI><A HREF="http://185.105.103.102/">185.105.103.102</A></LI>
<LI><A HREF="http://192.240.120.146/">192.240.120.146</A></LI>
</UL></LI>
<LI ID="education"><A HREF="#education">Education</A><UL>
<LI><A HREF="https://www.duolingo.com/">Duolingo</A></LI>
<LI><A HREF="https://www.edgenuity.com/">Edgenuity</A></LI>
<LI><A HREF="https://www.ixl.com/">IXL</A></LI>
<LI><A HREF="https://www.khanacademy.org/">Khan Academy</A></LI>
<LI><A HREF="https://www.pearsonmylabandmastering.com/northamerica/mymathlab/">Pearson MyMathLab</A></LI>
<LI><A HREF="https://quizlet.com/">Quizlet</A></LI>
<LI><A HREF="https://www.testout.com/">TestOut</A></LI>
</UL></LI>
<LI>Firmware<UL>
<LI><A HREF="https://sdx1.net/tools/t420bios/">T420 BIOS Mod</A></LI>
<LI><A HREF="https://www95.zippyshare.com/v/rBVD1Bf6/file.html">Thinkpad T420 Custom BIOS</A></LI>
</UL></LI>
<LI>Hardware<UL>
<LI><A HREF="https://www.instructables.com/id/Build-a-Low-cost-Portable-Wii-Laptop/">Build a Low-cost Portable Wii Laptop</A></LI>
<LI><A HREF="https://tech.michaelaltfield.net/2020/01/02/buskill-laptop-kill-cord-dead-man-switch/">Buskill</A></LI>
<LI><A HREF="http://www.lagom.nl/lcd-test/clock_phase.php#clockcalib">Clock/Phase Calibrator</A></LI>
<LI><A HREF="https://www.sony.com/electronics/support/televisions-projectors/fdt-5bx5">FDT-5BX5</A></LI>
<LI><A HREF="http://www.angrymods.com/mame/">Giganto-MAME</A></LI>
<LI><A HREF="https://www.telnet.jp/~mia/sb/log/eid317.html">Hyper Keyboard pi</A></LI>
<LI><A HREF="http://www.angrymods.com/projects/kegerator/Kegerator.htm">Kegerator</A></LI>
<LI><A HREF="http://www.chargerlab.com/lenovo-thinkplus-pa65-65w-usb-pd-charger-teardown-review-engineering-brilliance/">Lenovo Thinkplus PA65 65W USB PD Charger Teardown Review: Engineering Brilliance</A></LI>
<LI><A HREF="http://mycpu.thtec.org/www-mycpu-eu/index1.htm">MyCPU</A></LI>
<LI><A HREF="https://osmocom.org/projects/osmo-fl2k/wiki">Osmo FL2K</A></LI>
<LI><A HREF="http://wacco.mveas.com/">Project VGA</A></LI>
<LI><A HREF="https://reflex.dance/">RE:Flex Dance</A></LI>
<LI><A HREF="https://github.com/schlae/snark-barker">Snark Barker</A></LI>
<LI><A HREF="https://christitus.com/raspberry-pi-laptop/">Raspberry Pi Laptop Chris Titus Tech</A></LI>
<LI><A HREF="https://support.lenovo.com/us/en/solutions/migr-72865">ThinkPad Port Replicator Series 3</A></LI>
<LI><A HREF="https://imgur.com/a/h2kR0Gs">"The working prototype of my cyberdeck is complete."</A></LI>
<LI><A HREF="https://shop.libiquity.com/product/wifri-nd2h">Wi-Fri ND2H</A></LI>
</UL></LI>
<LI>Markets<UL>
<LI><A HREF="https://www.aliexpress.com/">AliExpress</A></LI>
<LI><A HREF="https://smile.amazon.com/">Amazon</A></LI>
<LI><A HREF="https://gamejolt.com/">Game Jolt</A></LI>
<LI><A HREF="https://www.gog.com/">GOG</A></LI>
<LI><A HREF="https://www.govdeals.com/">Government Deals</A></LI>
<LI><A HREF="https://gsaauctions.gov/gsaauctions/aucindx/">GSA Auctions</A></LI>
<LI><A HREF="https://www.humblebundle.com/">HumbleBundle</A></LI>
<LI><A HREF="https://taobao.com/">Taobao</A></LI>
<LI><A HREF="https://venmo.com/">Venmo</A></LI>
</UL></LI>
<LI>Media<UL>
<P><SMALL>It is assumed that everything on these links is provided and will be consumed legally.</SMALL></P>
<LI><A HREF="http://2020ok.com/">2020OK</A></LI>
<LI>Audio<UL>
<LI><A HREF="https://8tracks.com/">8tracks</A></LI>
<LI><A HREF="https://www.accuradio.com/">Accuradio</A></LI>
<LI><A HREF="http://audiobookbay.ws/">The Audiobook Bay</A></LI>
<LI><A HREF="http://bbcsfx.acropolis.org.uk/">BBC Sound Effects</A></LI>
<LI><A HREF="https://b-ok.org/">b-ok</A></LI>
<LI><A HREF="http://deepsid.chordian.net/">DeepSID</A></LI>
<LI>82.8 Kamakura FM (<A HREF="http://musicbird.leanstream.co/JCB016-MP3?args=tunein_02">MP3 stream</A>)</LI>
<LI><A HREF="https://laut.fm/best_of_80s">Laut - Best of 80s</A> (<A HREF="https://bestof80s.stream.laut.fm/best_of_80s?t302=2021-01-20_04-56-53&uuid=2deefe31-c9d2-479b-9a18-fac9c151684d">MP3 stream</A>)</LI>
<LI><A HREF="https://www.pandora.com/">Pandora</A></LI>
<LI><A HREF="http://radio.dangeru.us/">radi/u/</A> (<A HREF="http://radio.dangeru.us:8000/stream.ogg?t=1609048082">OGG stream</A>)</LI>
<LI><A HREF="https://open.spotify.com/">Spotify</A></LI>
<LI>YouTube<UL>
<LI><A HREF="https://www.youtube.com/watch?v=OJj_UVPOPDg">Cafe Bossa Nova Jazz - Instrumental Bossa Nova Music for Work, Study and Relax</A></LI>
<LI><A HREF="https://www.youtube.com/watch?v=UxOwrLjJEBM">Lovefool Hatsune Miku Cover</A></LI>
<LI><A HREF="https://www.youtube.com/watch?v=hHW1oY26kxQ">lofi hip hop beats</A></LI>
<LI><A HREF="https://www.youtube.com/playlist?list=PLa9CxlceLrsFccIMQqsJKyV2cyEteUlT6">Guster - Look Alive</A></LI>
<LI><A HREF="https://www.youtube.com/watch?v=1ZJSB59S0lY">The Moldau - Orquestra Lírica de Barcelona</A></LI>
<LI><A HREF="https://www.youtube.com/playlist?list=PL28688E9EB7A431DD">Sims 2 GBA OST</A></LI>
</UL></LI>
</UL></LI>
<LI><A HREF="https://codeberg.org/">Codeberg</A>
<LI>Curricula<UL>
<LI><A HREF="https://oyc.yale.edu/economics/econ-159">Yale ECON 159 "Game Theory</A></LI>
</UL></LI>
<LI>Directories<UL>
<LI><A HREF="https://file.wikileaks.org/file/">Wikileaks</A></LI>
</UL></LI>
<LI>Feeds<UL>
<LI><A HREF="https://0intro.dev/index.xml">0intro</A></LI>
<LI>bsd.network<UL>
<LI><A HREF="https://bsd.network/users/ed1conf.rss">ed1conf</A></LI>
<LI><A HREF="https://bsd.network/users/mwlucas.rss">mwlucas</A></LI>
</UL></LI>
<LI>diode.zone<UL>
<LI><A HREF="https://diode.zone/feeds/videos.xml?videoChannelId=1485">neinfront</A></LI>
</UL></LI>
</UL></LI>
<LI>Games<UL>
<LI><A HREF="https://play2048.co/">2048</A></LI>
<LI><A HREF="http://adarkroom.doublespeakgames.com/">A Dark Room</A></LI>
<LI><A HREF="http://agar.io/">Agar.io</A></LI>
<LI><A HREF="https://armorgames.com/">Armor Games</A></LI>
<LI><A HREF="https://www.mediacollege.com/media-guru/audio/frequency-trainer.html">Audio Frequency Trainer</A></LI>
<LI><A HREF="https://baaaang.com/">Baaang</A></LI>
<LI><A HREF="https://bumper-io.com/">Bumper.io</A></LI>
<LI><A HREF="https://www.gotoquiz.com/classical_alignment_test_2">Classical Alignment Test</A></LI>
<LI><A HREF="https://www.cleverbot.com/">Cleverbot</A></LI>
<LI><A HREF="http://c64clicker.com/">Commodore Clicker</A></LI>
<LI><A HREF="https://www.coolmathgames.com/">Cool Math Games</A></LI>
<LI><A HREF="http://diep.io/">Diep.io</A></LI>
<LI><A HREF="http://continuation-labs.com/d3wasm/">Doom 3 WASM</A></LI>
<LI><A HREF="https://en.shindanmaker.com/938806">Eboy Levels</A></LI>
<LI><A HREF="http://psych.fullerton.edu/mbirnbaum/psych101/Eliza.htm">ELIZA JS</A></LI>
<LI><A HREF="https://www.emuparadise.me/">EmuParadise</A></LI>
<LI><A HREF="https://experimentalgameplay.com/">Experimental Gameplay</A></LI>
<LI>Flash-based<UL>
<LI><A HREF="https://archive.org/details/bloonstd_202011">Bloons Tower Defense</A></LI>
<LI><A HREF="https://archive.org/details/bloxors">Bloxorz</A></LI>
<LI><A HREF="https://archive.org/details/flash_picosschool">Pico's School</A></LI>
<LI><A HREF="https://archive.org/details/porolith">Porolith</A></LI>
<LI><A HREF="https://archive.org/details/flash_theworldshardestgame">The World's Hardest Game</A></LI>
</UL></LI>
<LI><A HREF="https://www.freeriderhd.com/">Free Rider HD</A></LI>
<LI><A HREF="http://www.friv.com/">Friv</A></LI>
<LI><A HREF="https://qntm.org/hatetris">HATETRIS</A></LI>
<LI><A HREF="https://games.instantfloppy.net/">Instant Floppy Games</A></LI>
<LI><A HREF="https://itch.io/">itch.io</A></LI>
<LI><A HREF="http://www.onemorelevel.com/">One More Level</A></LI>
<LI><A HREF="https://play.m3o.xyz/">m3o</A></LI>
<LI><A HREF="https://www.myabandonware.com/">My Abandonware</A></LI>
<LI><A HREF="https://nadgames.com/">NadGames</A></LI>
<LI><A HREF="http://paper-io.com/">Paper.io</A></LI>
<LI><A HREF="https://software-lab.de/penti.html">Penti Chorded Keyboard</A></LI>
<LI><A HREF="https://www.pokemon.com/us/">Pokémon</A></LI>
<LI><A HREF="https://psxparty.kosmi.io/">PSX Party</A></LI>
<LI><A HREF="http://slither.io/">Slither.io</A></LI>
<LI><A HREF="https://en.shindanmaker.com/878761">stupid horny feral clown cursed baby</A></LI>
</UL></LI>
<LI><A HREF="https://the-eye.eu/public/">The Eye</A></LI>
<LI><A HREF="https://github.com/">GitHub</A>
<LI><A HREF="https://gitlab.com/">GitLab</A>
<LI><A HREF="https://archive.org/">The Internet Archive</A></LI>
<LI><A HREF="https://notabug.org/">Notabug</A>
<LI><A HREF="http://satoarchives.com/">Osamu Sato Archives</A></LI>
<LI><A HREF="https://thepiratebay.org/">The Pirate Bay</A></LI>
<LI><A HREF="https://sr.ht/">sourcehut</A><UL>
<LI><A HREF="https://git.sr.ht/~ft/">ft (Sigrid)</A></LI>
</UL></LI>
<LI>Texts<UL>
<LI>Ballesteros, Francisco J.<UL>
<LI><A HREF="https://github.com/fjballest/docs/blob/master/9notes.pdf">Notes on the Plan 9 3rd edition Kernel Source</A></LI>
</UL></LI>
<LI>Bisson, Terry<UL>
<LI><A HREF="https://www.mit.edu/people/dpolicar/writing/prose/text/thinkingMeat.html">They're Made out of Meat</A></LI>
</UL></LI>
<LI>King, Stephen<UL>
<LI><A HREF="https://archive.org/details/CarrieStephenKing/">Carrie</A></LI>
</UL></LI>
<LI>NAKAMOTO Satoshi<UL>
<LI><A HREF="https://bitcoin.org/bitcoin.pdf">Bitcoin: A Peer-to-Peer Electronic Cash System</A></LI>
</UL></LI>
<LI>n1x<UL>
<LI><A HREF="https://vastabrupt.com/2018/10/31/gender-acceleration/">Gender Acceleration: A Blackpaper</A></LI>
</UL></LI>
<LI>Pellegrin, Jacques<UL>
<LI><A HREF="https://gallica.bnf.fr/ark:/12148/bpt6k432639c/f41">Contribution à l'étude anatomique, biologique et taxinomique des poissons de la famille des cichlidés</A></LI>
</UL></LI>
<LI>Pike, Rob<UL>
<LI><A HREF="https://web.archive.org/web/20190703170223/https://research.swtch.com/acme.pdf">Acme: A User Interface for Programmers</A></LI>
</UL></LI>
<LI>Stuart, Brian<UL>
<LI><A HREF="https://web.archive.org/web/20161117100244/http://4e.iwp9.org/papers/lapfs.pdf">A File System for Laptops</A></LI>
</UL></LI>
<LI><A HREF="https://www.poetryfoundation.org/poems/43521/beowulf-old-english-version">Beowulf</A></LI>
<LI><A HREF="https://hikage.freeshell.org/books/theCprogrammingLanguage.pdf">The C Programming Language (2nd ed.)</A></LI>
<LI><A HREF="https://qntm.org/responsibility">I don't know, Timmy, being God is a big responsibility</A></LI>
<LI><A HREF="http://www.softwarepreservation.org/projects/LISP/book/LISP%201.5%20Programmers%20Manual.pdf">LISP 1.5 Programmer's Manual</A></LI>
<LI><A HREF="https://web.archive.org/web/20160624083931/http://www.cs.columbia.edu/~vatlidak/POSIXpaper.pdf">POSIX Abstractions in Modern Operating Systems: The Old, the New, and the Missing</A></LI>
<LI><A HREF="https://www.cato.org/sites/cato.org/files/pubs/pdf/workingpaper-8_1.pdf">World Hyperinflations</A></LI>
<LI><A HREF="https://pdos.csail.mit.edu/6.828/2019/xv6/book-riscv-rev0.pdf">xv6 Book</A></LI>
</UL></LI>
<LI><A HREF="https://torrentzeu.org/">Torrentz2</A></LI>
<LI><A HREF="https://urbigenous.net/library/">Urbigenous Library</A></LI>
<LI>Video<UL>
<LI><A HREF="https://4anime.to/">4anime</A></LI>
<LI><A HREF="https://www.bitchute.com/">BitChute</A></LI>
<LI><A HREF="https://www.cartoonnetwork.com/">Cartoon Network</A></LI>
<LI><A HREF="https://www.cbsnews.com/live/">CBS News Live</A></LI>
<LI><A HREF="https://hevcbay.com/">HEVCBay</A> (Defunct)</LI>
<LI><A HREF="https://www.hulu.com/">Hulu</A></LI>
<LI><A HREF="https://kast.gg/">Kast</A></LI>
<LI><A HREF="https://kissanime.ru/">KissAnime</A></LI>
<LI><A HREF="https://kisscartoon.ac/">KissCartoon</A></LI>
<LI><A HREF="https://kongoucheats.com/">KongouCheats</A></LI>
<LI><A HREF="https://cinema.mosfilm.ru/">Mosfilm</A></LI>
<LI><A HREF="https://www.reddit.com/r/MegaAnime/comments/94zl52/anime_neon_genesis_evangelion_complete_everything/">Neon Genesis Evangelion - r/MEGAAnime</A> (Defunct)</LI>
<LI><A HREF="https://www.netflix.com/browse">NetFlix</A></LI>
<LI><A HREF="https://www.newgrounds.com/">Newgrounds</A><UL>
<LI><A HREF="https://www.newgrounds.com/portal/view/12798">Mr. T vs Cats</A></LI>
</UL></LI>
<LI><A HREF="https://odysee.com/">Odysee</A></LI>
<LI><A HREF="https://player.pbs.org/ga-livestream-portalplayer/">PBS Livestream</A></LI>
<LI><A HREF="https://puffer.stanford.edu/player/">Puffer</A></LI>
<LI><A HREF="https://rarbg.to/index80.php">RARBG</A></LI>
<LI><A HREF="https://www.rottentomatoes.com/">Rotten Tomatoes</A></LI>
<LI><A HREF="https://rutracker.org/forum/index.php">RuTracker</A></LI>
<LI><A HREF="https://threatbutt.com/map/">ThreatButt Map</A></LI>
<LI><A HREF="https://torrentgalaxy.to/">TorrentGalaxy</A></LI>
<LI><A HREF="https://tubitv.com/home">Tubi</A></LI>
<LI><A HREF="https://www.twitch.tv/">Twitch</A></LI>
<LI><A HREF="https://vimeo.com/">Vimeo</A><UL>
<LI><A HREF="https://vimeo.com/164729875">tandemonium</A></LI>
</UL></LI>
<LI><A HREF="https://www.youtube.com/">YouTube</A><UL>
<LI>Channels<UL>
<LI><A HREF="https://www.youtube.com/channel/UCc57gv0P0ve6QAAcKgTsqdQ">Bitsrfr</A></LI>
<LI><A HREF="https://www.youtube.com/channel/UCh_d7uVxXhi7cOVtbkwil2g">Sauceyjames</A></LI>
<LI><A HREF="https://www.youtube.com/channel/UCZrrEuHiQjN2CUo84g5tk7w">tripcode!Q/7</A></LI>
<LI><A HREF="https://www.youtube.com/user/shango066">shango066</A></LI>
<LI><A HREF="https://www.youtube.com/channel/UCmRlQIXsEllAym3BUk1joEQ/">WesleyAda</A></LI>
<LI><A HREF="https://www.youtube.com/channel/UCPXIz1vyKoMiY9zqJj5gdZA">新山和敬</A></LI>
</UL></LI>
<LI><A HREF="http://defaultfile.name/">default filename tv</A></LI>
<LI><A HREF="https://www.youtube.com/">Google YouTube</A></LI>
<LI><A HREF="https://ruyoutube.ru/">ruYouTube</A></LI>
<LI>Videos<UL>
<LI><A HREF="https://www.youtube.com/watch?v=SGF_iTLdw4U">10 Hours of Soft Loli Breathing</A></LI> <!-- to be clear, this is a joke entry -->
<LI><A HREF="https://www.youtube.com/watch?v=RLevgVmZ8rE">Ambiancé Trailer</A></LI>
<LI><A HREF="https://www.youtube.com/watch?v=IP0KB2XC29o">The Cabinet Of Dr. Caligari</A></LI>
</UL></LI>
<LI><A HREF="https://y2mate.com/">y2mate</A></LI>
<LI><A HREF="https://commentpicker.com/youtube-channel-id.php">Youtube Channel ID Finder</A></LI>
<LI><A HREF="https://youtubedecade.netlify.com/">YouTube Decade</A></LI>
<LI><A HREF="http://thumbnailsave.com/">YouTube Thumb DL</A></LI>
<LI><A HREF="https://ytmp3.cc/">YTMP3</A></LI>
</UL></LI>
<LI><A HREF="https://zooqle.com/">Zooqle</A></LI>
</UL></LI>
<LI><A HREF="http://web.archive.org/save">Wayback Machine Save Page</A></LI>
</UL></LI>
<LI ID="ref"><A HREF="#ref">Reference</A><UL>
<P><B>Also see Media/Books.</B></P>
<LI><A HREF="https://web.archive.org/web/20200802054744/https://www.ssa.gov/history/ssn/misused.html">078-05-1120</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/33_Thomas_Street">33 Thomas Street - Wikipedia</A></LI>
<LI><A HREF="https://github.com/albertz/wiki">albertz/wiki</A></LI>
<LI><A HREF="https://baheyeldin.com/literature/arabic-and-islamic-themes-in-frank-herberts-dune.html">Arabic and Islamic themes in Dune</A></LI>
<LI><A HREF="https://docs.google.com/spreadsheets/d/1JVDjwC6JOkQpQFEnZ8pogGqoRzyvrQdNm5T3qyd4_u0/">Archivist Salary Survey 2019</A></LI>
<LI><A HREF="https://data.ddosecrets.com/file/Sherwood/">Athol</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Attempto_Controlled_English">Attempto Controlled English - Wikipedia</A></LI>
<LI><A HREF="https://onlinebooks.library.upenn.edu/banned-books.html">Banned Books Online</A></LI>
<LI><A HREF="https://theblog.okcupid.com/the-best-questions-for-a-first-date-dba6adaa9df2">The Best Questions For A First Date</A></LI>
<LI><A HREF="http://www.cheatcodes.com/">Cheat Codes</A></LI>
<LI ID="ref#com"><A HREF="#ref#com">Computing</A><UL>
<LI>Bugs<UL>
<LI><A HREF="https://vorner.github.io/2020/11/06/40-ms-bug.html">40 millisecond bug</A></LI>
<LI><A HREF="https://jira.atlassian.com/browse/JRASERVER-65811">Change the string "allopenissues" to not include the word "penis"</A></LI>
<LI><A HREF="https://github.com/blueman-project/blueman/issues/1110">Doesn't work! UwU</A></LI>
<LI><A HREF="https://hansdegoede.livejournal.com/22338.html">Disney+ Error Code 83</A></LI>
<LI><A HREF="https://bugzilla.mozilla.org/show_bug.cgi?id=955950">Preference to disable/select the number of days until recommending a reset</A></LI>
<LI><A HREF="https://www.reddit.com/r/DataHoarder/comments/ikk0rv/psa_multiple_wd_5400rpm_drives_are_actually/">PSA: multiple WD "5400RPM" drives are actually 7200RPM, including WD80EMAZ/EZAZ and (some) WD Reds</A></LI>
<LI><A HREF="https://bugs.mojang.com/browse/MCL-11384">MCL-11384</A></LI>
<LI><A HREF="http://tim32.org/~muzer/t17-archive/forum.team17.com/archive/index.php/t-33882.html">Worms goes out of sync</A></LI>
</UL></LI>
<LI>Languages<UL>
<LI>UNIX shells<UL>
<LI><A HREF="https://eklitzke.org/bash-$%2A-and-$@">Bash $* and $@</A></LI>
<LI><A HREF="https://unix.stackexchange.com/questions/84686/how-to-create-custom-commands-in-unix-linux">Bash - Custom Commands</A></LI>
<LI><A HREF="https://github.com/Idnan/bash-guide">bash-guide</A></LI>
<LI><A HREF="https://mywiki.wooledge.org/BashPitfalls">Bash Pitfalls</A></LI>
<LI><A HREF="https://stackoverflow.com/questions/10551981/how-to-perform-a-for-loop-on-each-character-in-a-string-in-bash">How to perform a for loop on each character in a string in Bash?</A></LI>
<LI><A HREF="https://github.com/dylanaraps/pure-bash-bible">Pure BASH Bible</A></LI>
<LI><A HREF="https://arslan.io/2019/07/03/how-to-write-idempotent-bash-scripts/">Writing idempotent Bash scripts</A></LI>
</UL></LI>
<LI>C<UL>
<LI><A HREF="http://sekrit.de/webdocs/c/beginners-guide-away-from-scanf.html">A beginners' guide away from scanf()</A></LI>
<LI><A HREF="https://viewsourcecode.org/snaptoken/kilo/">Build Your Own Text Editor</A></LI>
<LI><A HREF="https://en.cppreference.com/w/c/language/operator_precedence">C Operator Precedence</A></LI>
<LI><A HREF="http://s3-us-west-2.amazonaws.com/belllabs-microsite-dritchie/cbook/index.html">The C Programming Language Companion Website</A></LI>
<LI><A HREF="https://port70.net/~nsz/c/c89/c89-draft.html">The C89 Draft</A></LI>
<LI><A HREF="http://debrouxl.github.io/gcc4ti/">GCC4TI Documentation</A></LI>
<LI><A HREF="https://en.cppreference.com/w/c/language/history">History of C</A></LI>
<LI><A HREF="https://geocar.sdf1.org/alloc.html">How to allocate memory</A></LI>
<LI><A HREF="https://www.cs.princeton.edu/courses/archive/spr09/cos333/beautiful.html">A Regular Expression Matcher</A></LI>
<LI><A HREF="https://www.informit.com/articles/article.aspx?p=2036582&seqNum=5">String-Handling Functions</A></LI>
<LI><A HREF="https://stackoverflow.com/questions/3552095/sensible-line-buffer-size-in-c">Sensible line buffer size in C?</A></LI>
<LI><A HREF="https://web.archive.org/web/20030812081713/http://klausler.com/cnotes.txt">Some things every C programmer should know about C</A></LI>
<LI><A HREF="http://fabiensanglard.net/c/">To become a good C programmer</A></LI>
</UL></LI>
<LI>Forth<UL>
<LI><A HREF="https://skilldrick.github.io/easyforth/">Easy Forth</A></LI>
</UL></LI>
<LI>FORTRAN<UL>
<LI><A HREF="https://docs.oracle.com/cd/E19957-01/805-4939/index.html">Oracle FORTRAN 77 Language Reference</A></LI>
</UL></LI>
<LI>Lisp<UL>
<LI><A HREF="https://lispcookbook.github.io/cl-cookbook/">The Common Lisp Cookbook</A></LI>
<LI><A HREF="https://lisp-lang.org/style-guide/">Common Lisp Style Guide</A></LI>
</UL></LI>
<LI>Makefile<UL>
<LI><A HREF="https://www.cprogramming.com/tutorial/makefiles_continued.html">Advanced Makefile Techniques</A></LI>
<LI><A HREF="https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html">Variables Used by Implicit Rules</A></LI>
</UL></LI>
<LI>Python<UL>
<LI><A HREF="https://vinayak.io/2020/05/04/the-hitchhikers-guide-to-clis-in-python/">The Hitchhiker's Guide to CLIs in Python</A></LI>
<LI><A HREF="https://stackoverflow.com/questions/493386/how-to-print-without-newline-or-space">How to print without newline or space? - Stack Overflow</A></LI>
<LI><A HREF="https://www.python.org/dev/peps/pep-0274/">PEP 274</A></LI>
</UL></LI>
</UL></LI>
<LI>POSIX<UL>
<LI><A HREF="https://pubs.opengroup.org/onlinepubs/9699919799/">head</A></LI>
<LI><A HREF="https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html">limits.h</A></LI>
</UL></LI>
<LI>RFC<UL>
<LI><A HREF="https://tools.ietf.org/html/rfc793">RFC 793 - Transmission Control Protocol</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc1180">RFC 1180 - A TCP/IP Tutorial</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc1523">RFC 1523 - The text/enriched MIME Content-type</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc1738">RFC 1738 - Uniform Resource Locators (URL)</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc1918">RFC 1918 - Address Allocation for Private Internets</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc1928">RFC 1928 - SOCKS Protocol Version 5</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc1945">RFC 1945 - Hypertext Transfer Protocol -- HTTP/1.0</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc2068">RFC 2068 - Hypertext Transfer Protocol -- HTTP/1.1</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc2324">RFC 2324 - Hyper Text Coffee Pot Control Protocol (HTCPCP/1.0)</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc3339">RFC 3339 - Date and Time on the Internet: Timestamps</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc3986">RFC 3986 - Uniform Resource Identifier (URI): Generic Syntax</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc4180">RFC 4180 - Common Format and MIME Type for Comma-Separated Values (CSV) Files</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc5952">RFC 5952 - A Recommendation for IPv6 Address Text Representation</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc7168">RFC 7168 - The Hyper Text Coffee Pot Control Protocol for Tea Efflux Appliances (HTCPCP-TEA)</A></LI>
<LI><A HREF="https://tools.ietf.org/html/rfc7686">RFC 7686 - The ".onion" Special-Use Domain Name</A></LI>
</UL></LI>
<LI><A HREF="https://create.arduino.cc/projecthub/michalin70/ab-use-an-arduino-as-am-music-transmitter-d3b6e3">(Ab)use an Arduino as AM Music Transmitter!</A></LI>
<LI><A HREF="https://www.youtube.com/watch?v=Q28PiMxTc4I">Acer Aspire One Disassembly</A></LI>
<LI><A HREF="https://www.youtube.com/watch?v=-mXM2UTjDiI">Adjusting PS1 Laser to Read Original and Burned Games</A></LI>
<LI><A HREF="https://bbs.archlinux.org/viewtopic.php?id=256857">ALSA lib conf Evaluate error</A></LI>
<LI><A HREF="https://programmersatwork.wordpress.com/toru-iwatani-1986-pacman-designer/">An Interview with Toru Iwatani</A></LI>
<LI><A HREF="https://drive.google.com/drive/folders/1p5RICuEWlLhbzM8Lczsg7x-Zu88W46Uv">Apple Archive</A></LI>
<LI><A HREF="https://www.instructables.com/Apple-30-Pin-Charger-for-Samsung-Hack/">Apple 30 Pin Charger for Samsung Hack</A></LI>
<LI><A HREF="https://www.cultofmac.com/190779/apple-vs-samsung-a-decade-of-proprietary-connectors-humor/">Apple vs. Samsung: A Decade Of Proprietary Connectors</A></LI>
<LI><A HREF="https://www.electronics-tutorials.ws/combination/comb_7.html">Binary Adder</A></LI>
<LI><A HREF="https://corecursive.com/058-brian-kernighan-unix-bell-labs/">The Birth of UNIX with Brian Kernighan</A></LI>
<LI><A HREF="https://graphics.stanford.edu/~seander/bithacks.html">Bit Twiddling Hacks</A></LI>
<LI><A HREF="http://www.barryhubbard.com/linux/booting-acer-aspire-one-from-sd-card/">Boot Acer Aspire One from SD</A></LI>
<LI><A HREF="https://forum.thinkpads.com/viewtopic.php?t=34545">Boot X20 From USB Pen Drive? - Thinkpads Forum</A></LI>
<LI><A HREF="http://www.os2museum.com/wp/a-brief-history-of-unreal-mode/">A Brief History of Unreal Mode</A></LI>
<LI><A HREF="http://archive.google.com/jobs/britney.html">Britney Spears spelling correction</A></LI>
<LI><A HREF="https://codevoid.de/1/posts/2020-05-17-browser-dark-mode.gph">Browser Dark Mode (Chrome and Firefox)</A></LI>
<LI><A HREF="https://www.pentestpartners.com/security-blog/breaking-samsung-firmware-or-turning-your-s8-s9-s10-into-a-diy-proxmark/">Breaking Samsung firmware, or turning your S8/S9/S10 into a DIY &quot;Proxmark&quot;</A></LI> <LI><A HREF="http://yeokhengmeng.com/2019/12/building-a-new-win-3-1-app-in-2019-part-1-slack-client/">Building a new Win 3.1 app in 2019</A></LI>
<LI><A HREF="http://www.bowdoin.edu/~ltoma/teaching/cs340/spring05/coursestuff/Bentley_BumperSticker.pdf">Bumper Sticker CS</A></LI>
<LI><A HREF="https://cure53.de/analysis-report_bxaq.pdf">BXAQ Analysis</A></LI>
<LI><A HREF="https://github.com/checkra1n/BugTracker/issues/1689">checkra1n 0.11.0 hangs or crashes on userland boot</A></LI>
<LI><A HREF="https://byuu.net/video/color-emulation">Color Emulation</A></LI>
<LI><A HREF="http://www.lemis.com/grog/Documentation/Lions/">Commentary on the Sixth Edition UNIX Operating System</A></LI>
<LI><A HREF="http://gordonbell.azurewebsites.net/computer_engineering/00000001.htm">Computer Engineering: A DEC View of Hardware Systems Design</A></LI>
<LI><A HREF="http://csillustrated.berkeley.edu/">Computer Science Illustrated</A></LI>
<LI><A HREF="https://www.csee.umbc.edu/courses/471/papers/turing.pdf">Computing Machinery and Intelligence</A></LI>
<LI><A HREF="https://superuser.com/questions/1201670/is-it-possible-to-create-a-partition-that-is-usable-by-both-linux-and-windows-an#1201680">Create a Partition Accessable to Both Windows and Linux</A></LI>
<LI><A HREF="https://ironpeak.be/blog/crouching-t2-hidden-danger/">Crouching T2 Hidden Danger</A></LI>
<LI><A HREF="https://twitter.com/axi0mX/status/1313620262768635904">Crouching T2 Hidden Danger (axi0mX thread)</A></LI>
<LI><A HREF="https://catonmat.net/cookbooks/curl">Curl Cookbook</A></LI>
<LI><A HREF="https://www.eff.org/cyberspace-independence">A Declaration of the Independence of Cyberspace</A></LI>
<LI><A HREF="https://vgdensetsu.tumblr.com/post/179656817318/designing-2d-graphics-in-japan-from-the-late-70s">Designing 2D graphics in the Japanese industry</A></LI>
<LI><A HREF="https://www.deseret.com/1991/7/17/18931236/don-t-hang-up-deejays-make-wait-bearable">DON'T HANG UP! DEEJAYS MAKE WAIT BEARABLE</A></LI>
<LI><A HREF="https://linux-audit.com/elf-binaries-on-linux-understanding-and-analysis/">ELF Information</A></LI>
<LI><A HREF="https://cravencode.com/post/essentials/enable-tap-to-click-in-i3wm/">Enable tap to click in i3 WM</A></LI>
<LI><A HREF="https://feeding.cloud.geek.nz/posts/encoding-wifi-access-point-passwords-qr-code/">Encoding your WiFi access point password into a QR code</A></LI>
<LI><A HREF="http://pu.inf.uni-tuebingen.de/users/klaeren/epigrams.html">Epigrams on Programming</A></LI>
<LI><A HREF="https://jacquesmattheij.com/et-phone-home/">ET (Don't) Phone Home</A></LI>
<LI><A HREF="https://medium.com/@amanusk/an-extensive-guide-to-optimizing-a-linux-laptop-for-battery-life-and-performance-27a7d853856c">An extensive guide to optimizing a Linux laptop for battery life and performance</A></LI>
<LI><A HREF="https://vulcanhammer.info/2017/07/14/a-few-words-about-the-telex/">A Few Words About the Telex</A></LI>
<LI><A HREF="https://refspecs.linuxfoundation.org/fhs.shtml">Filesystem Hierarchy Standard</A></LI>
<LI><A HREF="https://www.davidschlachter.com/misc/t480-freebsd">FreeBSD 12 on Thinkpad T480</A></LI>
<LI><A HREF="http://www.copperwood.com/pub/FreePascalFromSquareOne.pdf">FreePascal from Square One</A></LI>
<LI><A HREF="https://mcfunley.com/from-the-annals-of-dubious-achievement">From the Annals of Dubious Achievement</A></LI>
<LI><A HREF="https://blog.dave.tf/post/ip-addr-parsing/">Fun with IP address parsing</A></LI>
<LI><A HREF="https://dash.generalassemb.ly/">General Assembly</A></LI>
<LI><A HREF="https://www.multicians.org/fjcc4.html">A General-Purpose File System For Secondary Storage</A></LI>
<LI><A HREF="https://www.scs.stanford.edu/~dm/home/papers/remove.pdf">Get me off Your Fucking Mailing List</A></LI>
<LI><A HREF="https://www.256kilobytes.com/content/show/4399/get-these-dependencies-off-my-lawn-5-tasks-you-didnt-know-could-be-done-with-pure-html-and-css">Get These Dependencies Off My Lawn</A></LI>
<LI><A HREF="http://www.textfiles.com/programming/FORMATS/gif.txt">gif.txt</A></LI>
<LI><A HREF="http://www.cheat-sheets.org/saved-copy/git-cheat-sheet.pdf">Git Cheat Sheet</A></LI>
<LI><A HREF="https://www.pacifict.com/Story/">The Graphing Calculator Story</A></LI>
<LI><A HREF="https://www.linuxquestions.org/questions/linux-software-2/grub-windows-on-logical-partition-607114/">grub: windows on logical partition</A></LI>
<LI><A HREF="https://ubuntuteen.blogspot.com/2009/06/grub2-drivemap-and-windows-2000.html">grub2, drivemap and Windows 2000</A></LI>
<LI><A HREF="https://gtfobins.github.io/">GTFOBins</A></LI>
<LI><A HREF="https://i.liketightpants.net/and/hackers-culture-and-the-fear-of-wysiwyg">Hacker culture and the fear of wysiwyg</A></LI>
<LI><A HREF="http://www.mithral.com/~beberg/manifesto.html">The Hacker Manifesto</A></LI>
<LI><A HREF="http://www.nordtech.ubm.ro/issues/2010/2010.01.09.pdf">Hardware Devices Used In Virtual Reality Technologies</A></LI>
<LI><A HREF="https://www.jwz.org/blog/2008/03/happy-run-some-old-web-browsers-day/">Happy Run Some Old Web Browsers Day!</A> (home.mcom.com revival)</LI>
<LI><A HREF="https://spqr.eecs.umich.edu/papers/Kwong-HDDphone-IEEE-SP-2019.pdf">HDD Microphone</A></LI>
<LI><A HREF="https://news.ycombinator.com/item?id=21801914">Hercules square graphics memory </A></LI>
<LI><A HREF="http://www.olografix.org/gubi/estate/archivio/fido/fido.htm">The History of Fidonet</A></LI>
<LI><A HREF="http://www.landley.net/history/mirror/os2/history/">The History of OS/2</A></LI>
<LI><A HREF="http://www.z80.info/">Home of the Z80</A></LI>
<LI><A HREF="https://victorzhou.com/blog/build-an-io-game-part-1/">How to Build a Multiplayer (.io) Web Game</A></LI>
<LI><A HREF="https://www.windowscentral.com/how-disable-windows-ink-workspace-windows-10">How to disable Windows Ink Workspace</A></LI>
<LI><A HREF="https://forums.linuxmint.com/viewtopic.php?t=68319">How to enable blueZ bluetooth daemon again after shutting down</A></LI>
<LI><A HREF="https://www.zdnet.com/article/how-to-enable-dns-over-https-doh-in-firefox/">How to enable DoH in Firefox</A></LI>
<LI><A HREF="https://www.addictivetips.com/ubuntu-linux-tips/play-world-of-warcraft-on-linux/">How to play World Of Warcraft on Linux</A></LI>
<LI><A HREF="https://codahale.com/how-to-safely-store-a-password/">How To Safely Store A Password</A></LI>
<LI><A HREF="https://bash-prompt.net/guides/pulse-audio-bluetooth-streaming/">How to Stream Audio from Your Phone to Your Laptop with PulseAudio and Bluetooth</A></LI>
<LI><A HREF="https://www.evanmiller.org/how-not-to-sort-by-average-rating.html">How Not To Sort By Average Rating</A></LI>
<LI><A HREF="https://www.howtogeek.com/255435/how-to-update-windows-7-all-at-once-with-microsofts-convenience-rollup/">How to Update Windows 7 All at Once with Microsoft's Convenience Rollup</A></LI>
<LI><A HREF="https://www.digitalocean.com/community/tutorials/how-to-set-up-a-minecraft-server-on-linux">How To Use a Minecraft Server on Linux</A></LI>
<LI><A HREF="https://wiki.netbsd.org/tutorials/how_to_use_ttf_fonts_in_xterm/">How to use ttf fonts in xterm</A></LI>
<LI><A HREF="https://ultra-technology.org/linux_for_beginners/how-to-write-in-japanese-or-chinese-under-linux-on-any-window-manager-using-fcitx/">How to write Japanese and Chinese in Linux on any window manager</A></LI>
<LI><A HREF="http://bitsavers.org/pdf/ibm/360/princOps/A22-6821-0_360PrincOps.pdf">IBM System/360 Principles of Operation</A></LI>
<LI><A HREF="http://http.jameshfisher.com/2019/05/26/i-can-see-your-local-web-servers/">I can see your local web servers</A></LI>
<LI><A HREF="https://i3wm.org/docs/userguide.html">i3wm User's Guide</A></LI>
<LI>In the beginning was the command line (<A HREF="https://faculty.georgetown.edu/irvinem/theory/Stephenson-CommandLine-1999.pdf">PDF</A> (<A HREF="http://web.archive.org/web/20150622082258/http://faculty.georgetown.edu/irvinem/theory/Stephenson-CommandLine-1999.pdf">Archive link</A>)) (<A HREF="http://cristal.inria.fr/~weis/info/commandline.html">Hypertext</A>)</LI>
<LI><A HREF="http://n64.icequake.net/doc/n64intro/kantan/step2/index1.html">Introduction to N64 Programming</A></LI>
<LI><A HREF="https://github.com/Siguza/ios-resources">iOS Hacking Resources</A></LI>
<LI><A HREF="https://www.cs.dartmouth.edu/~doug/IX/">The IX Multilevel-Secure UNIX System</A></LI>
<LI><A HREF="http://catb.org/jargon/html/">The Jargon File</A></LI>
<LI><A HREF="https://gist.github.com/jboner/2841832">Latency Numbers Every Programmer Should Know</A></LI>
<LI><A HREF="https://web.archive.org/web/20201007125029/https://davidwalsh.name/leaving-mozilla">Leaving Mozilla</A></LI>
<LI><A HREF="https://ruslanspivak.com/lsbaws-part1/">Let's Build A Web Server</A></LI>
<LI><A HREF="https://www.macworld.com/article/1154036/osxorigins.html">Looking back at OS X's origins</A></LI>
<LI><A HREF="https://web.archive.org/web/20191226203252/https://www.reddit.com/r/i3wm/comments/e79wn8/only_suspend_when_lid_closed_and_discharging/f9zz6bm/">Make Systemd suspend only when lid closed and discharging</A></LI>
<LI><A HREF="https://en.wikichip.org/wiki/hitachi/6309/a_memo_on_the_secret_features_of_6309">A Memo on the Secret Features of 6309</A></LI>
<LI><A HREF="https://missing.csail.mit.edu/">The Missing Semester of Your CS Education</A></LI>
<LI><A HREF="https://askubuntu.com/questions/841847/mono-package-for-wine-is-not-installed">Mono Package for Wine is not installed</A></LI>
<LI><A HREF="https://fatbusinessman.com/2019/my-favourite-git-commit">My favourite Git commit</A></LI>
<LI><A HREF="https://qmacro.org/2020/11/08/the-meaning-of-pwd-in-unix-systems/">The myriad meanings of pwd in Unix systems</A></LI>
<LI><A HREF="https://anewdigitalmanifesto.com/">A New Digital Manifesto</A></LI>
<LI><A HREF="https://ohshitgit.com/">Oh Shit, Git!</A></LI>
<LI><A HREF="https://forum.archive.openwrt.org/viewtopic.php?id=45820&amp;p=10#p297806">OpenWrt Forum: WifiSD</A></LI>
<LI><A HREF="https://www.fbi.gov/contact-us/field-offices/portland/news/press-releases/tech-tuesdaysmart-tvs/?=portland-field-office">Oregon FBI Tech Tuesday: Securing Smart TVs</A></LI>
<LI><A HREF="https://pdfs.semanticscholar.org/4214/cb09e29795f5363e5e3b545750dce027b668.pdf">Overview of Virtual Reality Technologies</A></LI>
<LI><A HREF="https://venam.nixers.net/blog/unix/2021/06/23/pipewire-under-the-hood.html">PipeWire Under the Hood</A></LI>
<LI><A HREF="https://groups.google.com/g/alt.games.video.sony-playstation/c/JZsDIXL2uAA/m/DT7WpKEU_e0J">Playstation will be dead in 2 years!!!!</A></LI>
<LI><A HREF="https://stopthemingmy.app/">Please dont theme our apps</A></LI>
<LI><A HREF="https://github.com/hellerve/programming-talks">Programming Talks</A></LI>
<LI><A HREF="https://devforum.roblox.com/t/proper-support-for-the-linux-platform/56544/22">Proper support for the Linux platform</A></LI>
<LI><A HREF="https://retrocomputing.stackexchange.com/questions/2261/can-a-usr-command-damage-a-zx-spectrum">RANDOMIZE USR 4665</A></LI>
<LI><A HREF="http://www.pbm.com/~lindahl/real.programmers.html">Real Programmers Don't Use Pascal</A></LI>
<LI><A HREF="https://minecraft.gamepedia.com/Tutorials/Basic_logic_gates#Examples_of_Logic_Gates">Redstone Logic Gates</A></LI>
<LI><A HREF="https://web.archive.org/web/20080912044452/http://cm.bell-labs.com/who/ken/trust.html">Reflections on Trusting Trust</A></LI>
<LI><A HREF="https://www.janmeppe.com/blog/regex-for-noobs/">Regex For Noobs</A></LI>
<LI><A HREF="https://www.singhkays.com/blog/its-time-replace-gifs-with-av1-video/">Replace GIFs with AV1</A></LI>
<LI><A HREF="https://user.eng.umd.edu/~blj/funny/requium.html">A Requiem for a Dying Operating System</A></LI>
<LI><A HREF="https://www.spinellis.gr/blog/20210102/">Reviving the 1973 Unix text to voice translator</A></LI>
<LI><A HREF="https://www.notion.so/Run-x86-Apps-including-homebrew-in-the-Terminal-on-Apple-Silicon-8350b43d97de4ce690f283277e958602">Run x86 Apps (including homebrew) in the Terminal on Apple Silicon</A></LI>
<LI><A HREF="https://maru-chang.com/hard/scph/index.php/all/english/">SCPH</A></LI>
<LI><A HREF="https://github.com/danielmiessler/SecLists">SecLists</A></LI>
<LI><A HREF="https://securitytxt.org/">Security.txt</A></LI>
<LI><A HREF="https://www.geekality.net/2013/11/01/settings-for-vlc-dynamic-range-compression/">Settings for VLC dynamic range compression</A></LI>
<LI><A HREF="https://cheatsheets.xyz/">Scott Spence's Cheat Sheets</A></LI>
<LI><A HREF="https://the-eye.eu/public/Software/Old%20Apps/DOS%20Resources/Undocumented%20dos%20tips.txt">Shhh! The Undocumented DOS Commands</A></LI>
<LI><A HREF="https://mitpress.mit.edu/sites/default/files/sicp/index.html">SICP Companion Site</A></LI>
<LI><A HREF="http://www.textfiles.com/">Textfiles</A></LI>
<LI><A HREF="https://www.joelonsoftware.com/2000/04/06/things-you-should-never-do-part-i/">Things You Should Never Do, Part I</A></LI>
<LI><A HREF="https://www.insanelymac.com/forum/topic/285678-lenovo-thinkpad-t420-with-uefi-only/">Thinkpad T420 Hackintosh</A></LI>
<LI><A HREF="https://jeffhuang.com/designed_to_last/">This Page is Designed to Last: A Manifesto for Preserving Content on the Web</A></LI>
<LI><A HREF="https://internetarchive.archiveteam.org/index.php?title=Thumbnail">Thumbnail - Internet Archive Unofficial Wiki</A></LI>
<LI><A HREF="http://tibasicdev.wikidot.com/">TI-BASIC dev</A></LI>
<LI><A HREF="http://merthsoft.com/linkguide/">TI-Link Protocol Guide</A></LI>
<LI><A HREF="https://www.downtowndougbrown.com/2021/01/tracking-down-a-segfault-that-suddenly-started-happening/">Tracking down a segfault that suddenly started happening</A></LI>
<LI><A HREF="https://hackaday.com/2016/06/30/transcend-wifi-sd-card-is-a-tiny-linux-server/">Transcend Wifi SD Card Is A Tiny Linux Server | Hackaday</A></LI>
<LI><A HREF="https://raccoon.onyxbits.de/blog/trump-ban-tiktok-wechat-usa/">Trump vs. China. Can TikTok and WeChat really be banned from US based Android devices?</A></LI>
<LI><A HREF="https://keikai.io/blog/p/currency-exchange">Turn Your Excel File Into a Web Application</A></LI>
<LI><A HREF="http://vincentcreative.blogspot.com/2013/01/turning-floppy-disk-in-to-starship.html">Turning a floppy disk in to a Starship.</A></LI>
<LI><A HREF="https://media.defense.gov/2020/Sep/15/2002497594/-1/-1/0/CTR-UEFI-SECURE-BOOT-CUSTOMIZATION-20200915.PDF/CTR-UEFI-SECURE-BOOT-CUSTOMIZATION-20200915.PDF">UEFI Secure Boot Customization</A></LI>
<LI><A HREF="https://wiki.michaelhan.net/UEmacs/PK">UEmacs/PK Guide</A></LI>
<LI><A HREF="https://tidbits.com/2002/10/28/update-firmware-before-installing-jaguar/?tbart=06973">Update iMac G3 Firmware Before Installing OS X 10.2 Jaguar!</A></LI>
<LI><A HREF="https://forum.thinkpads.com//viewtopic.php?t=23004&highlight=x20+usb+boot">Unable to boot from USB CD drive - Thinkpads Forum</A></LI>
<LI><A HREF="https://www.sbf5.com/~cduan/technical/git/">Understanding Git Conceptually</A></LI>
<LI><A HREF="http://bytepointer.com/articles/the_microsoft_rich_header.htm">The Undocumented Microsoft "Rich" Header</A></LI>
<LI><A HREF="https://www.levenez.com/unix/unix.pdf">UNIX Evolution Tree</A></LI>
<LI><A HREF="https://web.archive.org/web/20200502201955/http://www.kernelthread.com/publications/gbaunix/">UNIX® on the Game Boy Advance</A></LI>
<LI><A HREF="https://zero.sci-hub.se/3252/016657c71a46a2d7110d87b4f720847e/jalics1983.pdf">UNIX to an IBM minicomputer</A></LI>
<LI><A HREF="https://www.ee.ryerson.ca/~elf/hack/recovery.html">Unix Recovery Legend</A></LI>
<LI><A HREF="https://gauthier.uk/blog/who/">The UNIX `who` command</A></LI>
<LI><A HREF="https://bluemaxima.org/flashpoint/datahub/Uploading_SWFs_for_the_Internet_Archive">Uploading SWFs for the Internet Archive</A></LI>
<LI><A HREF="https://computer.rip/2020-11-28%20the%20verboten%20band.html">the verboten band</A></LI>
<LI><A HREF="https://pdfs.semanticscholar.org/0433/dfc8bdb93baf23e838d18fa7b64b313ed7e3.pdf">Virtual Reality, Art, and Entertainment</A></LI>
<LI><A HREF="https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/">WebAssembly Core Specification 1.0 (W3C Recommendation)</A></LI>
<LI><A HREF="https://www.quora.com/What-is-a-coders-worst-nightmare/answer/Mick-Stute">What is a coder's worst nightmare?</A></LI>
<LI><A HREF="https://halshs.archives-ouvertes.fr/halshs-01541602v2/document">What is an Operating System? A historical investigation</A></LI>
<LI><A HREF="https://nil.wallyjones.com/what-shell-am-i-using/">What Shell Am I Using?</A></LI>
<LI><A HREF="https://www.quora.com/What-was-it-like-to-be-a-software-engineer-at-NeXT-Did-workers-interact-with-Steve-Jobs">What was it like to be a software engineer at NeXT? Did workers interact with Steve Jobs?</A></LI>
<LI><A HREF="http://www.leeandmelindavarian.com/Melinda/tutorial.pdf">What your mother never told you about [IBM] VM service</A></LI>
<LI><A HREF="https://people.cs.clemson.edu/~mark/admired_designs.html">Which Machines Do Computer Architects Admire?</A></LI>
<LI><A HREF="https://poignant.guide/book/">Why's (Poignant) Guide to Ruby</A></LI>
<LI><A HREF="https://utcc.utoronto.ca/~cks/space/blog/unix/NewgrpCommandWhy">Why the Unix newgrp command exists (sort of)</A></LI>
<LI><A HREF="http://www.troubleshooters.com/linux/void/whyvoid.htm">Why Void Linux?</A></LI>
<LI><A HREF="https://gbgl-hq.com/demoness/html/index.html">Windows 7 Ricing Reference</A></LI>
<LI><A HREF="https://docs.microsoft.com/en-us/windows/release-information/">Windows 10 Release Information</A></LI>
<LI><A HREF="https://reddragdiva.dreamwidth.org/607714.html">Wine on Windows 10</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Wireless_Markup_Language">Wireless Markup Language - Wikipedia</A></LI>
<LI><A HREF="https://www.hillelwayne.com/post/important-women-in-cs/">Women in CS</A></LI>
<LI><A HREF="http://clrhome.org/table/">x86 Instruction Table</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/424/42401.html">Z80 Assembly Notes</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/434/43489.html">Zeda's Hex Codes</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/434/43467.html">Zeda's Opcode Chart</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Zero-width_space">Zero-Width Space - Wikipedia</A></LI>
</UL></LI>
<LI><A HREF="https://hastebin.com/raw/bevejoretu">Coolmathgames SWF Index</A></LI>
<LI>Design<UL>
<LI><A HREF="https://sendwithses.gitbook.io/helpdocs/random-stuff/easy-to-remember-color-guide-for-non-designers">Color Hexcodes for Dummy</A></LI>
<LI><A HREF="https://jfly.uni-koeln.de/color/">Color Universal Design (CUD) - How to make figures and presentations that are friendly to Colorblind people</A></LI>
<LI><A HREF="http://fabiensanglard.net/doom_fire_psx/index.html">Doom Fire</A></LI>
<LI><A HREF="https://www.cmyr.net/blog/hyperbezier.html">The hyperbezier pen tool</A></LI>
<LI>Icons<UL>
<LI><A HREF="https://www.gnome-look.org/s/Gnome/p/1015854">Treepata's High Contrast</A></LI>
</UL></LI>
<LI><A HREF="https://www.reddit.com/r/ludology/comments/483hm7/architecture_in_games/d0hburo/">"Level designer here." - Reddit</A></LI>
<LI><A HREF="http://www.darkroastedblend.com/2012/05/lovely-japanese-vintage-ads.html">Lovely Japanese Vintage Ads</A></LI>
<LI><A HREF="https://www.colinfahey.com/tetris/tetris.html">Tetris</A></LI>
<LI><A HREF="https://simblob.blogspot.com/2019/10/verb-noun-vs-noun-verb.html?m=1">Verb-noun vs noun-verb</A></LI>
</UL></LI>
<LI><A HREF="https://web.archive.org/web/20200502153018/http://www.jesus-is-savior.com/False%20Religions/Other%20Pagan%20Mumbo-Jumbo/discordianism.htm">Discordianism EXPOSED!</A></LI>
<LI><A HREF="https://web.archive.org/web/20050806002431/http://www.korea-dpr.com/faq.htm">DPRK FAQ</A></LI>
<LI><A HREF="https://ebookee.org/">Ebookee</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/English-language_spelling_reform">English-language spelling reform - Wikipedia</A></LI>
<LI>English R/W<UL>
<LI><A HREF="https://www.cliffsnotes.com/">CliffsNotes</A></LI>
<LI><A HREF="https://mseffie.com/assignments/professor/How%20to%20Read%20Literature%20like%20a%20Professor%202nd.pdf">How to Read Literature Like a Professor</A></LI>
<LI><A HREF="https://docs.google.com/document/d/1U2XhOphtfxxydr_rpe8lhij9QmmqMT2Y4vnbZ74bg04/edit">MLA-8 Pocket Guide</A></LI>
<LI><A HREF="https://orwell.ru/library/essays/wiw/english/e_wiw">Why I Write</A></LI>
<LI><A HREF="https://www.writebynight.net/maine/">Write by Night ME</A></LI>
</UL></LI>
<LI>Film<UL>
<LI><A HREF="https://en.wikipedia.org/wiki/A_Better_Tomorrow">A Better Tomorrow - Wikipedia</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Andre_DeToth">Andre DeToth - Wikipedia</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Chow_Yun-fat">Chow Yun-fat - Wikipedia</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Jean-Luc_Godard">Jean-Luc Godard - Wikipedia</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Jean-Pierre_Melville">Jean-Pierre Melville - Wikipedia</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Lone_Wolf_(character)">Lone Wolf (character) - Wikipedia</A></LI>
<LI>Screenplays<UL>
<LI><A HREF="http://www.screenplaydb.com/film/scripts/no_country_for_old_men.pdf">No Country For Old Men</A></LI>
</UL></LI>
</UL></LI>
<LI><A HREF="http://www.firecritic.com/2010/12/20/firefighters-guide-to-invisible-fire-otherwise-known-as-ethanol-fires/">Firefighters Guide to Invisible Fire Otherwise Known as Ethanol Fires</A></LI>
<LI><A HREF="https://alvaroduran.com/essays/free-first-beer/">The first beer is free</A></LI>
<LI><A HREF="http://26022.formovietickets.com:2235/">Flagship Cinemas Schedule</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/French_petition_against_age_of_consent_laws">French petition against age of consent laws - Wikipedia</A></LI>
<LI>History<UL>
<LI><A HREF="https://medium.com/matthews-place/the-history-of-neopronouns-366b1fee48c4">History of Neopronouns</A></LI>
<LI><A HREF="https://archive.org/details/historywirelesst00fahirich/page/n29">A History of Wireless Telegraphy</A></LI>
<LI><A HREF="https://thehistoryofhowweplay.wordpress.com/2018/12/29/a-breakout-story/">How Jobs and Wozniak made breakout</A></LI>
<LI><A HREF="http://www.charlieseguin.com/dot_map.html">Lynching Dot Map - 1883-1941</A></LI>
<LI><A HREF="https://www.csmonitor.com/1984/0605/060519.html">Soviets say Allied version of D-Day is a 'distortion' of history</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Stalin%27s_poetry">Stalin's poetry - Wikipedia</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Treaty_of_Versailles">Treaty of Versailles - Wikipedia</A></LI>
</UL></LI>
<LI><A HREF="https://www.straightdope.com/21341412/how-does-a-gas-pump-know-to-shut-itself-off"> How does a gas pump know to shut itself off?</A></LI>
<LI>Japanese<UL>
<LI><A HREF="https://kanjialive.com/214-traditional-kanji-radicals/">The 214 traditional kanji radicals and their meanings</A></LI>
<LI><A HREF="http://www.furiganizer.com/">Furiganizer</A></LI>
<LI><A HREF="https://quizlet.com/34289851/hiragana-flash-cards/">Hiragana - Quizlet</A></LI>
<LI><A HREF="https://www.imabi.net/">Imabi</A></LI>
<LI><A HREF="https://itazuraneko.neocities.org/">itazuraneko</A></LI>
<LI><A HREF="https://jisho.org/">Jisho</A></LI>
<LI><A HREF="https://quizlet.com/132166983/katakana-a-ka-sa-ta-na-ha-ma-ya-ra-wa-n-flash-cards/">Katakana - Quizlet</A></LI>
<LI><A HREF="https://newliberties.com/">NewLiberties</A></LI>
<LI><A HREF="https://www3.nhk.or.jp/news/easy/">News Web Easy</A></LI>
<LI><A HREF="https://japantoday.com/category/features/nippon-or-nihon-no-consensus-on-japanese-pronunciation-of-japan">Nihon or Nippon</A></LI>
<LI><A HREF="http://www.gavo.t.u-tokyo.ac.jp/ojad/">Online Japanese Accent Dictionary</A></LI>
<LI><A HREF="http://www.guidetojapanese.org/learn/grammar">Tae Kim's Guide to Learning Japanese</A></LI>
<LI><A HREF="http://japanesecomplete.com/777">Triple 7 Kanji List</A></LI>
<LI><A HREF="https://www.sljfaq.org/afaq/suru-verbs.html">What is a suru verb?</A></LI>
</UL></LI>
<LI><A HREF="https://www.poetryfoundation.org/poems/45706/i-felt-a-funeral-in-my-brain-340">I felt a Funeral, in my Brain</A></LI>
<LI>Law<UL>
<LI><A HREF="https://blog.erratasec.com/2019/06/censorship-vs-memes.html">Censorship vs. the memes</A></LI>
<LI><A HREF="http://securities.stanford.edu/filings-documents/1063/EI00_15/2019128_r01x_17CV03463.pdf">In re Equifax Inc. Securities Litigation 17-CV-3463</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Parallel_construction">Parallel construction - Wikipedia</A></LI>
<LI><A HREF="https://www.law.cornell.edu/uscode/text/18/2385">18 U.S. Code § 2385 - Advocating overthrow of Government</A></LI>
<LI><A HREF="https://www.congress.gov/bill/116th-congress/senate-bill/2532/committees">S.2532 - Protecting Privacy in Our Homes Act | Congress.gov | Library of Congress</A></LI>
</UL></LI>
<LI><A HREF="https://deviating.net/lockpicking/media/padlocks-master.pdf">Law Enforcement's Code Book for the Master lock combination padlock</A></LI>
<LI><A HREF="https://learnxinyminutes.com/">Learn X in Y minutes</A></LI>
<LI><A HREF="https://visalist.io/travel/gay">LGBT+ Travel Rankings</A></LI>
<LI><A HREF="http://gen.lib.rus.ec/">Library Genesis</A></LI>
<LI><A HREF="https://web.archive.org/web/20170301223954/https://www.strategicstudiesinstitute.army.mil/pdffiles/PUB1250.pdf">Lying to Ourselves: Dishonesty in the Army Profession</A></LI>
<LI><A HREF="https://mangadex.org/">MangaDex</A></LI>
<LI><A HREF="https://www.nrc.gov/reactors/operating/map-power-reactors.html">Map of US Power Reactor Sites</A></LI>
<LI>Math<UL>
<LI><A HREF="http://tutorial.math.lamar.edu/Classes/Alg/SolveAbsValueIneq.aspx">Absolute Value Inequalities</A></LI>
<LI><A HREF="https://www.angio.net/pi/digits.html">Digits of Pi</A></LI>
<LI><A HREF="http://h20331.www2.hp.com/Hpsub/downloads/35_29_Roots_of_polynomials.pdf">HP-35s - Find Roots of Polynomials</A></LI>
<LI><A HREF="https://www.mathsisfun.com/algebra/trig-cosine-law.html">The Law of Cosines</A></LI>
<LI><A HREF="https://www.mathsisfun.com/algebra/trig-sine-law.html">The Law of Sines</A></LI>
<LI><A HREF="https://mml-book.github.io/book/mml-book.pdf">Mathematics for Machine Learning</A></LI>
<LI><A HREF="http://web.evanchen.cc/napkin.html">The Napkin Project</A></LI>
<LI><A HREF="https://quizlet.com/162044683/pounds-to-kilograms-mental-estimation-easy-flash-cards/">Pounds to Kilograms Mental Math</A></LI>
<LI><A HREF="http://msmassenateducationdomain.weebly.com/slide-divide-bottoms-up.html">Slide, Divide, Bottoms Up (Factoring Polynomials)</A></LI>
<LI><A HREF="https://www.onlinemathlearning.com/absolute-value-equation.html">Solving Equations with Absolute Values </A></LI>
<LI><A HREF="https://demoman.net/?a=trig-for-games">Trig for Game Makers</A></LI>
<LI><A HREF="https://www.cliffsnotes.com/study-guides/trigonometry/trigonometric-functions/functions-of-general-angles">Trigonometric Functions of General Angles</A></LI>
<LI><A HREF="https://torvaney.github.io/projects/human-rng">Human RNG</A></LI>
</UL></LI>
<LI><A HREF="https://minerva.maine.edu/search">Minerva Library Catalog</A></LI>
<LI><A HREF="https://www.cwanderson.org/wp-content/uploads/2011/11/Philip-K-Dick-The-Minority-Report.pdf">The Minority Report</A></LI>
<LI>Music<UL>
<LI><A HREF="https://en.wikipedia.org/wiki/Bridal_Chorus">Bridal Chorus - Wikipedia</A></LI>
<LI>Lyrics<UL>
<LI><A HREF="https://genius.com/The-moldy-peaches-anyone-else-but-you-lyrics">Anyone Else But You</A></LI>
<LI><A HREF="https://genius.com/Cyndago-blonde-boyz-lyrics">Blonde Boyz</A></LI>
<LI><A HREF="http://www.metrolyrics.com/country-roads-lyrics-john-denver.html">Country Roads</A></LI>
<LI><A HREF="https://meta.wikimedia.org/wiki/Hotel_Wikipedia">Hotel Wikipedia</A></LI>
<LI><A HREF="https://www.azlyrics.com/lyrics/direstraits/moneyfornothing.html">Money For Nothing</A></LI>
<LI><A HREF="http://www.metrolyrics.com/monster-mash-lyrics-bobby-pickett.html">Monster Mash</A></LI>
<LI><A HREF="https://www.azlyrics.com/lyrics/earthwindandfire/september.html">September</A></LI>
</UL></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Missio_(duo)">Missio (duo) - Wikipedia</A></LI>
<LI>Sheet music/Trombone<UL>
<LI><A HREF="https://musescore.com/pieridot/drakeandjoshisbestanime">A Cruel Angel's Thesis</A></LI>
</UL></LI>
<LI>Tabs/Bass<UL>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/i_dont_know_how_but_they_found_me/absinthe_bass_2515413">Absinthe</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/i_dont_know_how_but_they_found_me/bleed_magic_bass_2502573">Bleed Magic</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/i_dont_know_how_but_they_found_me/do_it_all_the_time_bass_2456758">Do It All the Time</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/joy_division/shes_lost_control_bass_165210">She's Lost Control</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/i_dont_know_how_but_they_found_me/social_climb_bass_2179891">Social Climb</A></LI>
</UL></LI>
<LI>Tabs/Guitar<UL>
<LI><A HREF="https://www.azchords.com/a/andrewyork-tabs-38898/8discernmentswillow-tabs-384548.html">8 Discernments</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/marty_robbins/big_iron_chords_1161711">Big Iron</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/soulja_boy/crank_that_tabs_584434">Crank That</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/adele/daydreamer_tabs_621200">Daydreamer</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/steve_miller_band/fly_like_an_eagle_tabs_442203">Fly Like An Eagle</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/the_beatles/helter_skelter_chords_810935">Helter Skelter</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/zager_evans/in_the_year_2525_chords_1047413">In the Year 2525</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/the_weather_girls/its_raining_men_chords_1077844">It's Raining Men</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/harry_belafonte/jamaica_farewell_tabs_265328">Jamaica Farewell</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/chuck_berry/johnny_b_goode_tabs_548782">Johnny B. Goode</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/misc_computer_games/undertale_-_megalovania_tabs_1783000">Megalovania</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/dire_straits/money_for_nothing_tabs_205208">Money for Nothing</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/radiohead/paranoid_android_tabs_113681">Paranoid Android</A></LI>
<LI><A HREF="https://www.ultimate-tabs.com/nirvana/smells-like-teen-spirit-chords">Smells Like Teen Spirit</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/a-ha/take_on_me_chords_390284">Take on Me</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/c418/wet_hands_minecraft_tabs_1499177">Wet Hands</A></LI>
<LI><A HREF="https://tabs.ultimate-guitar.com/tab/the_beatles/you_never_give_me_your_money_chords_776610">You Never Give Me Your Money</A></LI>
</UL></LI>
</UL></LI>
<LI><A HREF="https://docs.google.com/spreadsheets/d/1LRTkXOUXraTMjg1eedz_f7b5jiuyMv2x6e_jY_nyHSc/edit#gid=0">nds-bootstrap compatibility list</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/NFPA_704">NFPA 704 - Wikipedia</A></LI>
<LI><A HREF="https://github.com/google/open-location-code/blob/master/docs/olc_definition.adoc">Open Location Code</A></LI>
<LI><A HREF="https://archive.org/details/PaperBullets/page/n13">Paper Bullets</A></LI>
<LI><A HREF="https://tutorial.math.lamar.edu/">Paul's Online Math Notes</A></LI>
<LI><A HREF="https://unsharpen.com/pen-refill-guide/">Pen Refills Guide</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Pocari_Sweat">Pocari Sweat - Wikipedia</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/R.U.R.">R.U.R. - Wikipedia</A></LI>
<LI>Science<UL>
<LI><A HREF="https://pubs.rsna.org/doi/10.1148/radiol.2019190562">Acute Effects of Electronic Cigarette Aerosol Inhalation</A></LI>
<LI><A HREF="https://sci-hub.se/https://onlinelibrary.wiley.com/doi/full/10.1002/aur.2448">Attend Less, Fear More: Elevated Distress to Social Threat in Toddlers With Autism Spectrum Disorder</A> (<B>noteworthy for existence, not for content</B>)</LI>
<LI><A HREF="http://modeling.asu.edu/listserv-chem/BCAtablesVsICEtables2018.pdf">BCA or ICE</A></LI>
<LI><A HREF="https://www.justanswer.com/pharmacy/9xdiw-couple-questions-related-pharmacokinetics.html">Caffeine Physiology</A></LI>
<LI><A HREF="http://opendata.cern.ch/">CERN Open Data Portal</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Copper(II)_nitrate">Copper(II) nitrate - Wikipedia</A></LI>
<LI><A HREF="https://www.theatlantic.com/science/archive/2019/08/ctvt-tumor-broke-all-rules/595246/">CTVT, the Tumor That Broke All the Rules</A></LI>
<LI><A HREF="https://www.ptable.com/">Dynamic Periodic Table</A></LI>
<LI><A HREF="https://link.springer.com/content/pdf/10.1007%2Fs00114-017-1440-1.pdf">An estimated 400800 million tons of prey are annually killed by the global spider community - s00114-017-1440-1.pdf</A></LI>
<LI><A HREF="https://nongnu.askapache.com/fhsst/Chemistry_Grade_10-12.pdf">FHSST: Chemistry 10-12</A></LI>
<LI><A HREF="https://en.wikipedia.org/wiki/Gliese_667_Cc">Gliese 667 Cc - Wikipedia</A></LI>
<LI><A HREF="http://www.waynesthisandthat.com/cloud%20chamber.html">How to Make a Cloud Chamber</A></LI>
<LI>Sci-Hub (<A HREF="https://sci-hub.st/">sci-hub.st</A>) (<A HREF="https://sci-hub.gugeeseo.com/">sci-hub.gugeeseo.com</A>)</LI>
<LI><A HREF="http://mentallandscape.com/C_CatalogMoon.htm">Soviet Moon Images</A></LI>
<LI><A HREF="https://www.nature.com/articles/2191135a0">Statistical Properties of Pulsar CP 1919</A></LI>
</UL></LI>
<LI><A HREF="https://web.archive.org/web/*/https://data.ddosecrets.com/file/Sherwood/Sherwood.torrent">Sherwood</A></LI>
<LI><A HREF="https://smallseasons.guide/">Small Seasons</A></LI>
<LI><A HREF="https://meta.wikimedia.org/wiki/So_you%27ve_made_a_mistake_and_it%27s_public...">So you've made a mistake and it's public...</A></LI>
<LI><A HREF="https://labourstudies.mcmaster.ca/documents/southern-ontarios-basic-income-experience.pdf">Southern Ontario's Basic Income Experience</A></LI>
<LI><A HREF="https://textbooknova.com/">Textbook Nova</A></LI>
<LI><A HREF="https://www.thesaurus.badw.de/en/tll-digital/tll-open-access.html">Thesaurus Linguae Latinae</A></LI>
<LI><A HREF="http://greenteapress.com/thinkapjava/thinkapjava.pdf">Think Java</A></LI>
<LI><A HREF="https://ia600204.us.archive.org/33/items/ToKillAMockingbird_201604/To%20Kill%20A%20Mockingbird.pdf">To Kill a Mockingbird</A></LI>
<LI>Topical<UL>
<LI><A HREF="https://blackwind.substack.com/p/the-accelerationist-essence-of-k">The Accelerationist Essence of K-pop</A></LI>
<LI><A HREF="https://www.abc.net.au/news/2017-12-15/north-korean-defectors-returning-to-the-hermit-kingdom/9254654">After fleeing North Korea, some defectors want to go back to life under Kim Jong-un</A></LI>
<LI><A HREF="https://web.archive.org/web/20210108230505/https://mailchi.mp/af293a445638/eicc-webinar-series-140154">Common Application statement on the attempted coup</A></LI>
<LI><A HREF="https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6">Coronavirus 2019-nCoV</A></LI>
<LI><A HREF="https://nypost.com/2019/08/09/suspected-dayton-shooter-connor-betts-slain-sister-was-reportedly-a-transgender-man/">Dayton shooter's slain sister was reportedly a transgender man</A></LI>
<LI><A HREF="https://web.archive.org/web/20201111203136/https://www.nytimes.com/2018/11/15/us/navy-seal-edward-gallagher-isis.html">Decorated Navy SEAL Is Accused of War Crimes in Iraq</A></LI>
<LI><A HREF="https://isfreenodedeadyet.com/">Is Freenode dead yet?</A></LI>
</UL></LI>
<LI><A HREF="https://dod.defense.gov/Portals/1/features/2016/0616_policy/DoDTGHandbook_093016.pdf">Transgender Service in the U.S. Military</A></LI>
<LI><A HREF="https://news.ycombinator.com/item?id=22725327">"Try 63/37 tin/lead instead of 60/40."</A></LI>
<LI>Writing<UL>
<LI><A HREF="http://paulgraham.com/simply.html">Write Simply</A></LI>
</UL></LI>
<LI><A HREF="http://www.wtfpl.net/">WTFPL</A></LI>
</UL></LI>
<LI ID="social"><A HREF="#social">Socialization</A><UL>
<LI><A HREF="https://www.2chan.net/">2chan</A></LI>
<LI><A HREF="https://4chan.org/">4chan</A><UL>
<LI><A HREF="https://boards.4chan.org/b/">/b/ - Random</A></LI>
<LI><A HREF="https://boards.4chan.org/f/">/f/ - Flash</A></LI>
<LI><A HREF="https://boards.4channel.org/g/">/g/ - Technology</A></LI>
<LI><A HREF="https://boards.4chan.org/i/">/i/ - Oekaki</A></LI>
<LI><A HREF="https://boards.4channel.org/lgbt/">/lgbt/ - Lesbian, Gay, Bisexual, &amp; Transgender</A></LI>
<LI><A HREF="https://boards.4channel.org/lit/">/lit/ - Literature</A></LI>
<LI><A HREF="https://boards.4chan.org/t/">/t/ - Torrents</A></LI>
<LI><A HREF="https://boards.4channel.org/vr/">/vr/ - Retro Games</A></LI>
</UL></LI>
<LI><A HREF="https://duckduckgo.com/?q=where+can+i+get+therapy">8chan</A></LI>
<LI><A HREF="https://www.twitch.tv">Amazon Twitch</A></LI>
<LI><A HREF="https://archiveofourown.org/">Archive of Our Own</A></LI>
<LI><A HREF="https://arisuchan.jp/">arisuchan</A></LI>
<LI><A HREF="https://asone.ai/">AsOne</A></LI>
<LI><A HREF="https://dangeru.us/">danger/u/</A></LI>
<LI><A HREF="https://discord.com/">Discord</A><UL>
<LI><A HREF="https://dyno.gg/">Dyno</A></LI>
<LI><A HREF="https://roleypoly.com">Roleypoly</A></LI>
</UL></LI>
<LI><A HREF="https://www.facebook.com/">Facebook</A></LI>
<LI><A HREF="https://www.instagram.com/">Facebook Instagram</A></LI>
<LI><A HREF="https://fchan.xyz/">FChan</A></LI>
<LI><A HREF="https://www.friendproject.net/home.php">FriendProject</A>
<LI><A HREF="https://www.goodreads.com/">Goodreads</A></LI>
<LI><A HREF="https://news.ycombinator.com/">Hacker News</A></LI>
<LI><A HREF="https://ieddit.com/">ieddit</A></LI>
<LI><A HREF="https://iro2.net/">Iro</A></LI>
<LI><A HREF="https://lainchan.org/">Lainchan</A></LI>
<LI><A HREF="https://www.last.fm/">Last.fm</A><UL>
<LI><A HREF="http://scrobbler.jankuca.com/">Semi-automatic Last.fm Scrobbler</A></LI>
<LI><A HREF="https://vinylscrobbler.com/">Vinyl Scrobbler</A></LI>
</UL></LI>
<LI><A HREF="https://mastodon.social/">Mastodon</A></LI>
<LI><A HREF="https://www.minds.com/">Minds</A></LI>
<LI><A HREF="http://nanochanqzaytwlydykbg5nxkgyjxk3zsrctxuoxdmbx5jbh2ydyprid.onion/">Nanochan</A></LI>
<LI><A HREF="https://www.okuna.io/">Okuna</A></LI>
<LI><A HREF="https://www.planetminecraft.com/">Planet Minecraft</A></LI>
<LI><A HREF="https://www.pouet.net/">pouët</A></LI>
<LI><A HREF="https://protonmail.com/">Protonmail</A></LI>
<LI><A HREF="https://www.qq.com/">QQ</A></LI>
<LI><A HREF="https://old.reddit.com/">Reddit</A></LI>
<LI>Riverchat (<A HREF="https://riverscuomo.com/riverchat">2020 link</A>) (<A HREF="https://riverscuomo.com/chat">2021 revival</A>)</LI>
<LI><A HREF="https://www.roblox.com/">Roblox</A></LI>
<LI><A HREF="https://www.snapchat.com/">Snapchat</A><UL>
<LI><A HREF="https://www.documentcloud.org/documents/6004016-Snapchat-Law-Enforcement-Guide.html">Snap Inc. Law Enforcement Guide</A> (<A HREF="https://web.archive.org/web/20201112025456/https://www.documentcloud.org/documents/6004016-Snapchat-Law-Enforcement-Guide.html">Archive link</A>)</LI>
</UL></LI>
<LI><A HREF="https://soundcloud.com/">Soundcloud</A></LI>
<LI><A HREF="https://cs.rin.ru/forum/">Steam Underground Community</A></LI>
<LI><A HREF="https://subreply.com/">Subreply</A></LI>
<LI><A HREF="http://tanasinn.org/">tanasinn</A></LI>
<LI><A HREF="https://tutanota.com/">Tutanota</A></LI>
<LI><A HREF="https://twitter.com/">Twitter</A></LI>
<LI><A HREF="https://wirechan.org/">wirechan</A></LI>
<LI><A HREF="https://zikdo.com/">Zikdo</A> (Defunct)</LI>
<LI><A HREF="https://zoom.us/">Zoom</A></LI>
</UL></LI>
<LI>Software<UL>
<LI>Android<UL>
<LI>Amazon Android<UL>
<LI><A HREF="https://github.com/parrotgeek1/LauncherHijack-OLD">LauncherHijack</A></LI>
</UL></LI>
<LI><A HREF="http://auroraoss.com/">AuroraOSS</A></LI>
<LI><A HREF="https://k9mail.app/">K-9 Mail</A></LI>
<LI><A HREF="https://signal.org/android/apk/">Signal Android APK</A></LI>
</UL></LI>
<LI>Coding<UL>
<LI><A HREF="https://github.com/makuto/cakelisp/">cakelisp</A></LI>
<LI><A HREF="https://www.gnu.org/software/clisp/">CLISP</A></LI>
<LI><A HREF="https://dlang.org/">D</A></LI>
<LI><A HREF="https://www.gnu.org/software/gcc/">GCC</A></LI>
<LI><A HREF="https://github.com/debrouxl/gcc4ti">gcc4ti</A></LI>
<LI><A HREF="https://www.geeonx.org/">Geeonx</A></LI>
<LI><A HREF="https://www.gnu.org/software/gforth/">Gforth</A></LI>
<LI><A HREF="https://golang.org/">Go</A></LI>
<LI><A HREF="https://archive.org/services/docs/api/internetarchive/">The Internet Archive Python Library Documentation</A></LI>
<LI><A HREF="http://t3x.org/klisp/">KLISP</A></LI>
<LI><A HREF="https://kotlinlang.org/">Kotlin</A></LI>
<LI><A HREF="http://mozart-dev.sourceforge.net/lx.html">LX</A></LI>
<LI><A HREF="https://pike.lysator.liu.se/">Pike</A></LI>
<LI><A HREF="https://software.intel.com/en-us/distribution-for-python">Intel® Distribution for Python*</A></LI>
<LI><A HREF="https://github.com/julvo/reloading">Reloading</A></LI>
<LI><A HREF="https://soul.dev/">Soul</A></LI>
<LI><A HREF="https://www.wxwidgets.org/">wxWidgets</A></LI>
<LI><A HREF="http://nas.sr/%D9%82%D9%84%D8%A8/">قلب</A></LI>
</UL></LI>
<LI>Mac OS<UL>
<LI>System 6<UL>
<LI><A HREF="http://macintoshgarden.org/apps/hypercard-241">HyperCard 2.4</A></LI>
</UL></LI>
</UL></LI>
<LI>Nintendo<UL>
<LI>3DS<UL>
<LI><A HREF="https://github.com/masterfeizz/ctrQuake">ctrQuake</A></LI>
<LI><A HREF="https://github.com/machinamentum/CTRX">CTRX</A></LI>
<LI><A HREF="https://github.com/masterfeizz/daedalusx64-3DS">DaedalusX64-3DS</A></LI>
<LI><A HREF="https://github.com/bubble2k16/emus3ds">emus3ds</A></LI>
<LI><A HREF="https://web.archive.org/web/20181003203545/https://gbatemp.net/threads/release-gamecard-dumper.438154/">Gamecard Dumper</A></LI>
<LI><A HREF="https://github.com/Steveice10/GameYob">GameYob</A></LI>
<LI><A HREF="https://github.com/XProger/OpenLara">OpenLara</A></LI>
<LI><A HREF="https://github.com/Substance12/Picroxx">Picroxx</A></LI>
<LI><A HREF="https://github.com/nop90/POWDER-3DS">POWDER</A></LI>
<LI><A HREF="https://github.com/elhobbs/prboom3ds">prboom3ds</A></LI>
<LI><A HREF="https://github.com/RedTopper/Super-Haxagon">Super-Haxagon</A></LI>
<LI><A HREF="https://universal-team.net/projects/universal-updater.html">Universal-Updater</A></LI>
<LI><A HREF="https://github.com/nop90/ZeldaPicross">Zelda Picross</A></LI>
</UL></LI>
</UL></LI>
<LI>Operating Systems<UL>
<LI><A HREF="https://github.com/386bsd/386bsd">386BSD - Github</A></LI>
<LI><A HREF="http://9front.org/">9front</A><UL>
<LI><A HREF="https://archive.org/details/9front-goredgordon">2012-07-30 "GORED GORDON"</A></LI>
<LI><A HREF="https://archive.org/details/9front-deafgeoff">2012-08-01 "DEAF GEOFF"</A></LI>
<LI><A HREF="https://archive.org/details/9front-openssl">2014-04-28 "опен-сссл"</A></LI>
<LI><A HREF="https://archive.org/details/9front-itseasy">2014-09-04 "IT'S EASY BUT YOU ARE COMPLICATED"</A></LI>
<LI><A HREF="https://archive.org/details/9front-dontforgettovote">2014-11-06 "DON'T FORGET TO VOTE"</A></LI>
<LI><A HREF="https://archive.org/details/9front-callingdicktracy">2018-12-31 "CALLING DICK TRACY"</A></LI>
<LI><A HREF="https://archive.org/details/9front-skinofevil">2019-05-16 "SKIN OF EVIL"</A></LI>
<LI><A HREF="https://archive.org/details/9front-nothinkpad_202101">2019-10-08 "NO THINKPAD"</A></LI>
<LI><A HREF="https://archive.org/details/9front-plan9haters">2020-05-28 "PLAN9-HATERS"</A></LI>
<LI><A HREF="https://archive.org/details/9front-emailschaden">2020-10-19 "EMAILSCHADEN"</A></LI>
</UL></LI>
<LI><A HREF="https://amigaos.net/">AmigaOS</A></LI>
<LI><A HREF="https://www.arcanoae.com/arcaos/">ArcaOS</A></LI>
<LI><A HREF="http://www.ocp.inf.ethz.ch/wiki/">Bluebottle</A></LI>
<LI><A HREF="https://collapseos.org/">Collapse OS</A></LI>
<LI><A HREF="https://www.debian.org/ports/hurd/hurd-cd">Debian GNU/Hurd</A></LI>
<LI><A HREF="https://web.archive.org/web/20191219125640/http://www.ethoberon.ethz.ch/">ETH Oberon</A></LI>
<LI><A HREF="https://www.freedos.org/">FreeDOS</A></LI>
<LI><A HREF="https://fuchsia.dev/">Fuschia</A></LI>
<LI><A HREF="https://www.haiku-os.org/">Haiku</A></LI>
<LI><A HREF="https://illumos.org/">illumos</A></LI>
<LI><A HREF="https://kolibrios.org/en/">KolibriOS</A></LI>
<LI><A HREF="https://www.apple.com/macos/">macOS</A></LI>
<LI><A HREF="http://menuetos.net/">MenuetOS</A></LI>
<LI><A HREF="https://vmssoftware.com/">OpenVMS</A></LI>
<LI><A HREF="https://9p.io/plan9/">Plan 9</A></LI>
<LI><A HREF="http://www.ponyos.org/">PonyOS</A></LI>
<LI><A HREF="https://www.redox-os.org/">Redox</A></LI>
<LI><A HREF="http://serenityos.org/">SerenityOS</A></LI>
<LI><A HREF="http://tribblix.org/">Tribblix</A></LI>
<LI><A HREF="https://www.windriver.com/products/vxworks/">VxWorks</A></LI>
<LI><A HREF="https://www.microsoft.com/en-us/windows">Windows 10</A></LI>
<LI>Linux<UL>
<LI><A HREF="https://sites.google.com/view/atv-x86/home">Android TV x86</A></LI>
<LI><A HREF="https://astralinux.ru/">Astra Linux</A></LI>
<LI><A HREF="http://distro.ibiblio.org/baslinux/">BasicLinux</A></LI>
<LI><A HREF="https://crux.nu/">CRUX</A></LI>
<LI><A HREF="https://www.debian.org/">Debian</A></LI>
<LI><A HREF="http://www.dilos.org/">DilOS</A></LI>
<LI><A HREF="https://getfedora.org/">Fedora</A></LI>
<LI><A HREF="https://www.gentoo.org/">Gentoo</A></LI>
<LI><A HREF="http://hannahmontana.sourceforge.net/">Hannah Montana Linux</A></LI>
<LI><A HREF="https://www.kali.org/">Kali</A></LI>
<LI><A HREF="https://k1ss.org/">KISS</A></LI>
<LI><A HREF="https://openwrt.org/">OpenWrt</A></LI>
<LI><A HREF="https://www.plop.at/en/ploplinux/index.html">Plop Linux</A></LI>
<LI><A HREF="http://www.porteus.org/">Porteus</A></LI>
<LI><A HREF="https://psychoslinux.gitlab.io/">PsychOS</A></LI>
<LI><A HREF="http://regolith-linux.org/">Regolith</A></LI>
<LI><A HREF="http://www.slackware.com/">Slackware</A></LI>
<LI><A HREF="https://trisquel.info/">Trisquel</A></LI>
<LI><A HREF="https://ubuntu.com/">Ubuntu</A></LI>
<LI><A HREF="https://voidlinux.org/">Void Linux</A></LI>
<LI><A HREF="https://xubuntu.org/">Xubuntu</A></LI>
</UL></LI>
</UL></LI>
<LI>OS/2<UL>
<LI><A HREF="http://www.landley.net/history/mirror/os2/xf86os2.html">XFree86OS/2</A></LI>
</UL></LI>
<LI>POSIX or UNIX-like systems<UL>
<LI>Arch Linux<UL>
<LI><A HREF="https://aur.archlinux.org/">The Arch Linux User Repository</A><UL>
<LI><A HREF="https://aur.archlinux.org/packages/aic94xx-firmware/">aic94xx-firmware</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/doom1-wad/">doom1-wad</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/doomretro/">doomretro</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/google-chrome/">google-chrome</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/i3-swallow/">i3-swallow</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/ifuse/">ifuse</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/libirecovery/">libirecovery</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/minecraft-launcher/">minecraft-launcher</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/moon-buggy/">moon-buggy</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/multimc-git">multimc</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/paru/">paru</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/rbenv/">rbenv</A></LI>
<LI><A HREF="https://aur.archlinux.org/packages/ruby-build/">ruby-build</A></LI>
</UL></LI>
<LI><A HREF="https://gist.github.com/artixnous/41f4bde311442aba6a4f5523db921415">Fast convert systemd Arch to OpenRC Artix (fucktheskullofsystemd.sh)</A></LI>
</UL></LI>
<LI>NetBSD<UL>
<LI><A HREF="https://github.com/alarixnia/aiomixer">aiomixer</A></LI>
</UL></LI>
<LI><A HREF="https://github.com/skeeto/bf-x86">bf-x86</A></LI>
<LI><A HREF="https://github.com/baskerville/bspwm">bspwm</A></LI>
<LI><A HREF="https://github.com/johang/btfs">btfs</A></LI>
<LI><A HREF="http://www.cs.mun.ca/~gstarkes/wmaker/dockapps/">Dock Apps - Tower's Window Maker Pages</A></LI>
<LI><A HREF="https://gparted.org/index.php">GParted</A></LI>
<LI><A HREF="https://greg-calendar.vercel.app/">greg</A></LI>
<LI><A HREF="https://github.com/ZerBea/hcxtools">hcxtools</A></LI>
<LI><A HREF="https://i3wm.org/">i3wm</A></LI>
<LI><A HREF="https://github.com/WerWolv/ImHex">ImHex</A></LI>
<LI><A HREF="https://github.com/libimobiledevice/libirecovery">irecovery</A></LI>
<LI><A HREF="https://github.com/J-Lentz/iwgtk">iwgtk</A></LI>
<LI><A HREF="https://sw.kovidgoyal.net/kitty/">kitty</A></LI>
<LI><A HREF="https://github.com/cxxxr/lem">Lem</A></LI>
<LI><A HREF="http://lida.sourceforge.net/">LiDA</A></LI>
<LI><A HREF="https://github.com/haikarainen/light">light</A></LI>
<LI><A HREF="http://diego-pacheco.blogspot.com/2019/09/linux-terminal-goods.html">Linux Terminal Goods</A></LI>
<LI><A HREF="https://github.com/sparanoid/live-dl">live-dl</A></LI>
<LI><A HREF="https://github.com/Peltoche/lsd">lsd</A></LI>
<LI><A HREF="https://github.com/cylgom/ly">ly</A></LI>
<LI><A HREF="https://maxxdesktop.arcadedaydream.com/Indigo-Releases/">Maxx Desktop</A></LI>
<LI><A HREF="https://github.com/MusicPlayerDaemon/mpdscribble">mpdscribble</A></LI>
<LI><A HREF="https://github.com/AppImage/NCSA-Mosaic-AppImage">NCSA Mosaic AppImage</A></LI>
<LI><A HREF="http://ne.di.unimi.it/">ne</A></LI>
<LI><A HREF="https://github.com/vigna/ne">ne (GitHub)</A></LI>
<LI><A HREF="https://next.atlas.engineer/">Nyxt Browser</A></LI>
<LI><A HREF="https://github.com/rafket/pam_duress">PAM Duress</A></LI>
<LI><A HREF="https://github.com/sharkdp/pastel">pastel</A></LI>
<LI><A HREF="https://github.com/b-ryan/powerline-shell">powerline-shell</A></LI>
<LI><A HREF="https://github.com/Xfennec/progress">progress</A></LI>
<LI><A HREF="https://github.com/brettcannon/python-launcher">Python launcher for UNIX</A></LI>
<LI><A HREF="http://rox.sourceforge.net/desktop/">ROX Desktop</A></LI>
<LI><A HREF="https://github.com/nullgemm/sshram">SSHram</A></LI>
<LI><A HREF="https://git.sr.ht/~sircmpwn/shit">shit</A></LI>
<LI><A HREF="https://st.suckless.org/">st</A></LI>
<LI><A HREF="https://amanusk.github.io/s-tui/">s-tui</A></LI>
<LI><A HREF="https://github.com/sugarlabs/sugar">Sugar</A></LI>
<LI><A HREF="https://web.archive.org/web/20100427194653/http://webpages.mr.net/bobz/ttyquake/">Textmode Quake</A></LI>
<LI><A HREF="https://asciinema.org/a/fTq6pzFOIrPzaIt1ralRM86wE">Toot</A></LI>
<LI><A HREF="https://github.com/bibanon/tubeup">tubeup</A></LI>
<LI><A HREF="https://github.com/cosmos72/twin">twin</A></LI>
<LI><A HREF="https://github.com/ValveSoftware/Proton">Valve Proton</A></LI>
<LI><A HREF="https://weechat.org/">WeeChat</A></LI>
<LI><A HREF="https://www.windowmaker.org/">Window Maker</A></LI>
<LI><A HREF="https://cyber.dabamos.de/unix/x11/">X11 tools</A></LI>
<LI><A HREF="http://www.xpdfreader.com/">XPDF</A></LI>
<LI><A HREF="https://www.zsh.org/">ZSH</A></LI>
</UL></LI>
<LI>Texas Instruments<UL>
<LI>TI-83+<UL>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/435/43590.html">BatLib</A></LI>
</UL></LI>
<LI>TI-84+ CE<UL>
<LI><A HREF="https://github.com/CE-Programming/libraries/releases/tag/v8.7">C Standard Libraries</A></LI>
</UL></LI>
<LI>TI-89<UL>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/403/40314.html">Kana Trainer</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/376/37692.html">LATIN translator (Latin to English only)</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/342/34248.html">Memorize Morse Code v1.1</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/456/45672.html">Morse Code Translator</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/160/16061.html">TI89 TCP/IP suite</A></LI>
<LI><A HREF="https://www.ticalc.org/archives/files/fileinfo/80/8038.html">UPC Drawer</A></LI>
</UL></LI>
<LI><A HREF="http://www.ticalc.org/">TICalc</A></LI>
</UL></LI>
<LI>Windows<UL>
<LI><A HREF="https://www.7-zip.org/">7-Zip</A></LI>
<LI><A HREF="view-source:https://raw.githubusercontent.com/transcode-open/apt-cyg/master/apt-cyg">apt-cyg</A></LI>
<LI><A HREF="https://batterybarpro.com/basic.php">BatteryBar Basic</A></LI>
<LI><A HREF="https://www.softpedia.com/get/CD-DVD-Tools/CD-DVD-Images-Utils/BDlot-DVD-ISO-Master.shtml">BDlot DVD ISO Master</A></LI>
<LI><A HREF="https://nadgames.com/download/combat_reloaded.php">Combat: Reloaded</A></LI>
<LI><A HREF="https://download.cnet.com/CommView/3000-2085_4-10042988.html">CommView</A></LI>
<LI><A HREF="https://www.alcpu.com/CoreTemp/">Core Temp</A></LI>
<LI><A HREF="https://www.cpuid.com/softwares/cpu-z.html">CPU-Z</A></LI>
<LI><A HREF="https://cygwin.com/index.html">Cygwin</A></LI>
<LI><A HREF="https://www.diskgenius.com/">Disk Genius</A></LI>
<LI><A HREF="http://www.dvddecrypter.org.uk/">DVD Decrypter</A></LI>
<LI><A HREF="https://geekuninstaller.com/">Geek Uninstaller</A></LI>
<LI><A HREF="http://www.ridgecrop.demon.co.uk/index.htm?guiformat.htm">GUIFormat</A></LI>
<LI><A HREF="https://www.irfanview.com/">IrfanView</A></LI>
<LI><A HREF="http://imgburn.com/">ImgBurn</A></LI>
<LI><A HREF="http://mientki.ruhosting.nl/data_www/pic/jalcc/help/jalcc_ti84_editor.html">JALcc</A></LI>
<LI><A HREF="http://keysticks.net/site/">KeySticks</A></LI>
<LI><A HREF="https://www.helpinator.com/litehelp.html">LiteHelp</A></LI>
<LI><A HREF="https://sourceforge.net/projects/loic/">LOIC (Low Orbit Ion Cannon)</A></LI>
<LI><A HREF="http://makemkv.com/">MakeMKV</A></LI>
<LI><A HREF="https://www.mediamonkey.com/">MediaMonkey</A></LI>
<LI><A HREF="https://github.com/RoyalBingBong/meView/">meView</A></LI>
<LI><A HREF="https://dotnet.microsoft.com/download/dotnet-framework/net461">Microsoft .NET 4.6.1</A></LI>
<LI><A HREF="https://mingw-w64.org/doku.php">Mingw-w64</A></LI>
<LI><A HREF="https://notepad-plus-plus.org/">Notepad++</A></LI>
<LI><A HREF="https://web.archive.org/web/20190626195902/https://s3.amazonaws.com/MinecraftDownload/launcher/Minecraft.exe">Old Minecraft Launcher EXE</A></LI>
<LI><A HREF="https://github.com/Open-Shell/Open-Shell-Menu">Open Shell</A></LI>
<LI><A HREF="https://www.systemax.jp/en/sai/">PaintTool SAI</A></LI>
<LI><A HREF="https://www.partitionguru.com/">PartitionGuru</A></LI>
<LI><A HREF="https://arturlaczkowski.itch.io/ptemulation">PTE</A></LI>
<LI><A HREF="http://www.softwareok.com/?seite=Freeware/Q-Dir">Q-Dir</A></LI>
<LI><A HREF="https://www.majorgeeks.com/files/details/router_password_kracker.html">Router Password Kracker</A></LI>
<LI><A HREF="https://rufus.ie/">Rufus</A></LI>
<LI><A HREF="http://kilkakon.com/shimeji/">Shimeji-ee</A></LI>
<LI><A HREF="https://steamunlocked.net/">Steam Unlocked</A></LI>
<LI><A HREF="https://www.sumatrapdfreader.org/free-pdf-reader.html">SumatraPDF</A></LI>
<LI><A HREF="https://www.donationcoder.com/forum/index.php?topic=21944.0">T-Clock 2010</A></LI>
<LI><A HREF="https://www.howtogeek.com/howto/windows-vista/add-take-ownership-to-explorer-right-click-menu-in-vista/">Take Ownership</A></LI>
<LI><A HREF="https://elifulkerson.com/projects/tcping.php">tcping.exe</A></LI>
<LI><A HREF="https://github.com/mikeslattery/tunic">tunic</A></LI>
<LI><A HREF="https://archive.org/download/wlsetup-all_201704/wlsetup-all.exe">Windows Live Essentials 2012</A></LI>
<LI><A HREF="https://www.microsoft.com/en-us/download/details.aspx?id=54616">Windows Management Framework 5.1</A></LI>
<LI><A HREF="https://github.com/microsoft/winfile">winfile</A></LI>
<LI><A HREF="https://wpd.app/">WPD</A></LI>
<LI><A HREF="https://github.com/microsoft/WSLv2-Linux-Kernel">WSL2 Kernal</A></LI>
<LI><A HREF="https://www.highrez.co.uk/downloads/XMouseButtonControl.htm">X-Mouse</A></LI>
<LI>95<UL>
<LI><A HREF="http://www.stevemiller.net/punzip/">Pocket UnZip</A></LI>
</UL></LI>
<LI>2000<UL>
<LI><A HREF="https://sourceforge.net/projects/ext2fsd/">Ext2 File System Driver for Windows</A></LI>
</UL></LI>
<LI>XP<UL>
<LI><A HREF="https://github.com/blueclouds8666/pcsx2_XP">PCSX2 XP</A></LI>
</UL></LI>
<LI>7<UL>
<LI><A HREF="https://support.microsoft.com/en-us/help/3140245/update-to-enable-tls-1-1-and-tls-1-2-as-default-secure-protocols-in-wi">Update to enable TLS 1.1 and TLS 1.2 as default secure protocols in WinHTTP in Windows</A></LI>
<LI><A HREF="https://www.door2windows.com/windows-7-tray-icons-changer-change-default-volume-network-action-center-tray-icons/">Windows 7 Tray Icon Changer</A></LI>
</UL></LI>
<LI>10<UL>
<LI><A HREF="https://github.com/da2x/EdgeDeflector">EdgeDeflector</A></LI>
<LI><A HREF="https://github.com/microsoft/PowerToys/blob/master/src/modules/fancyzones/README.md">Fancy Zones</A></LI>
</UL></LI>
</UL></LI>
<LI><A HREF="https://www.adobe.com/support/flashplayer/debug_downloads.html">Adobe Flash Player Debugger</A> (<A HREF="https://web.archive.org/web/20200615185529/https://www.adobe.com/support/flashplayer/debug_downloads.html">Archive link</A>)</LI>
<LI><A HREF="https://aircrack-ng.org/doku.php?id=Main">Aircrack-ng</A></LI>
<LI><A HREF="https://altstore.io/">AltStore</A></LI>
<LI><A HREF="https://github.com/a2-4am/anti-m">Anti-M</A></LI>
<LI><A HREF="https://opensource.apple.com/">Apple Open Source</A></LI>
<LI><A HREF="https://www.aseprite.org/">Aseprite</A></LI>
<LI><A HREF="https://www.audacityteam.org/">Audacity</A></LI>
<LI><A HREF="http://basilisk.cebix.net/">Basilisk II</A></LI>
<LI><A HREF="http://aa-project.sourceforge.net/bb/">bb</A></LI>
<LI><A HREF="http://www.bluemsx.com/">blueMSX</A></LI>
<LI><A HREF="https://www.brow.sh/">browsh</A></LI>
<LI><A HREF="https://www.bzflag.org/">BZFlag</A></LI>
<LI><A HREF="https://www.google.com/chrome/">Chrome</A></LI>
<LI><A HREF="https://www.google.com/intl/en/chrome/?standalone=1">Chrome Standalone Installer</A></LI>
<LI><A HREF="https://www.chromium.org/Home">Chromium</A></LI>
<LI><A HREF="http://cinelerra.org/">Cinelerra</A></LI>
<LI><A HREF="https://www.clementine-player.org/">Clementine</A></LI>
<LI><A HREF="https://ide.cs50.io/">CS50 IDE</A></LI>
<LI><A HREF="https://notabug.org/RemixDevs/DeezloaderRemix">Deezloader Remix</A></LI>
<LI><A HREF="https://discordapp.com/download">Discord</A></LI>
<LI><A HREF="https://dolphin-emu.org/">Dolphin Emulator</A></LI>
<LI><A HREF="http://dos32a.narechk.net/index_en.html">DOS/32A</A></LI>
<LI><A HREF="https://www.dosbox.com/">DOSBox</A></LI>
<LI><A HREF="https://github.com/joncampbell123/dosbox-x">DOSBox-X</A></LI>
<LI><A HREF="http://www.doshaven.eu/">DOS Haven</A></LI>
<LI><A HREF="http://keyhut.com/pos.htm">DOS POS</A></LI>
<LI><A HREF="https://www.dragonframe.com/">DragonFrame</A></LI>
<LI><A HREF="https://github.com/GitSquared/edex-ui/">eDEX-UI</A></LI>
<LI><A HREF="https://www.gnu.org/software/emacs/">Emacs</A></LI>
<LI><A HREF="https://ffmpeg.org/">FFmpeg</A></LI>
<LI><A HREF="/shitlist#filezilla">FileZilla</A></LI>
<LI><A HREF="https://justgetflux.com/">f.lux</A></LI>
<LI><A HREF="https://www.freedownloadmanager.org/">Free Download Manager</A></LI>
<LI><A HREF="https://www.gbstudio.dev/">GBStudio</A></LI>
<LI><A HREF="https://ghidra-sre.org/">Ghidra</A></LI>
<LI><A HREF="https://github.com/NationalSecurityAgency/ghidra">Ghidra (Github)</A></LI>
<LI><A HREF="https://www.gimp.org/">GIMP</A></LI>
<LI><A HREF="https://www.gnu.org/software/gnuzilla/">GNUzilla</A></LI>
<LI><A HREF="https://hashcat.net/hashcat/">Hashcat</A></LI>
<LI><A HREF="https://hexchat.github.io/index.html">HexChat</A></LI>
<LI><A HREF="https://www.hpmuseum.org/software/">HP Museum</A></LI>
<LI><A HREF="http://www.httrack.com/">HTTrack</A></LI>
<LI><A HREF="https://github.com/jakubroztocil/httpie">httpie</A></LI>
<LI><A HREF="https://hyper.is/">Hyper</A></LI>
<LI><A HREF="https://github.com/jshackles/idle_master">Idle Master</A></LI>
<LI><A HREF="https://github.com/arc298/instagram-scraper">instagram-scraper</A></LI>
<LI><A HREF="http://instant-eyedropper.com/">Instant Eyedropper</A></LI>
<LI><A HREF="https://dist.ipfs.io/#ipget">IPGet</A></LI>
<LI><A HREF="http://ircd-hybrid.org/">IRCD-Hybrid</A></LI>
<LI><A HREF="http://jdownloader.org/home/index">JDownloader</A></LI>
<LI><A HREF="http://www.katawa-shoujo.com/">Katawa Shoujo</A></LI>
<LI><A HREF="https://www.kiwix.org/en/">Kiwix</A></LI>
<LI><A HREF="http://www.kvirc.net/">KVIrc</A></LI>
<LI><A HREF="https://github.com/jjkaufman/laptop.css">Laptop ASCII CSS</A></LI>
<LI><A HREF="https://github.com/intika/Librefox">Librefox</A></LI>
<LI><A HREF="https://librewolf-community.gitlab.io/">LibreWolf</A></LI>
<LI><A HREF="https://sourceforge.net/projects/mcomix/">MComix</A></LI>
<LI><A HREF="https://mcreator.net/">MCreator</A></LI>
<LI><A HREF="https://medibangpaint.com/en/">Medibang Paint</A></LI>
<LI><A HREF="https://www.memtest86.com/">MemTest86</A></LI>
<LI><A HREF="https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/">Microsoft Browser VMs</A></LI>
<LI><A HREF="https://miktex.org/">MiKTeX</A></LI>
<LI><A HREF="https://www.minecraft.net/en-us/">Minecraft</A><UL>
<LI><A HREF="https://files.minecraftforge.net/">Forge</A></LI>
<LI><A HREF="https://multimc.org/">MultiMC</A></LI>
<LI><A HREF="https://www.curseforge.com/minecraft/mc-mods/sodium/">Sodium</A></LI>
</UL></LI>
<LI><A HREF="https://www.mp3tag.de/en/">MP3Tag</A></LI>
<LI><A HREF="https://getmusicbee.com/">MusicBee</A></LI>
<LI><A HREF="https://www.netsurf-browser.org/">NetSurf Web Browser</A></LI>
<LI><A HREF="https://github.com/jarun/nnn">nnn</A></LI>
<LI><A HREF="https://sourceforge.net/projects/nokix/">NokiX</A></LI>
<LI><A HREF="https://panuworld.net/nuukiaworld/download/nokix/index.htm">NuukiaWorld's NokiX scripts</A></LI>
<LI><A HREF="https://obsproject.com/">OBS</A></LI>
<LI><A HREF="https://olivevideoeditor.org/">Olive</A></LI>
<LI><A HREF="https://onionshare.org/">OnionShare</A></LI>
<LI><A HREF="http://openmsx.org/">openMSX</A></LI>
<LI><A HREF="https://www.openshot.org/">OpenShot</A></LI>
<LI><A HREF="https://osgameclones.com/">Open Source Game Clones</A></LI>
<LI><A HREF="https://opentoonz.github.io/e/">OpenToonz</A></LI>
<LI><A HREF="https://open-vsx.org/">Open VSX Registry</A></LI>
<LI><A HREF="https://otter-browser.org/">Otter Browser</A></LI>
<LI><A HREF="https://putty.org/">PuTTY</A></LI>
<LI><A HREF="https://www.lexaloffle.com/bbs/?tid=33406">P-Zone</A></LI>
<LI><A HREF="https://www.qbittorrent.org/">qBittorrent</A></LI>
<LI><A HREF="https://quassel-irc.org/">Quassel IRC</A></LI>
<LI><A HREF="https://cancel.fm/ripcord/">Ripcord</A></LI>
<LI><A HREF="https://www.rockbox.org/">Rockbox</A></LI>
<LI><A HREF="https://www.fenrir-inc.com/jp/sleipnir/">Sleipnir</A></LI>
<LI><A HREF="https://github.com/khanhas/spicetify-cli">Spicetify</A></LI>
<LI><A HREF="https://store.steampowered.com/about/">Steam</A></LI>
<LI><A HREF="https://developer.valvesoftware.com/wiki/SteamCMD">SteamCMD</A></LI>
<LI><A HREF="https://sourceforge.net/projects/supergrub2/">Super Grub2 Disc</A></LI>
<LI><A HREF="http://syncterm.bbsdev.net/">SyncTERM</A></LI>
<LI><A HREF="https://www.technicpack.net/">Technic Launcher</A></LI>
<LI><A HREF="https://termshark.io/">TermShark</A></LI>
<LI><A HREF="https://www.texmacs.org/tmweb/home/welcome.en.html">TeXmacs</A></LI>
<LI><A HREF="http://www.xm1math.net/texmaker/">TeXMaker</A></LI>
<LI><A HREF="https://pcsupport.lenovo.com/us/en/products/laptops-and-netbooks/thinkpad-t-series-laptops/thinkpad-t420/downloads/driver-list">Thinkpad T420 Drivers</A></LI>
<LI><A HREF="http://www.toms.net/rb/">tomsrtbt</A></LI>
<LI><A HREF="https://www.torproject.org/">Tor Project</A></LI>
<LI><A HREF="https://github.com/Florane/TotallyNotMalware">TotallyNotMalware</A></LI>
<LI><A HREF="https://github.com/nneonneo/universal-doom">universal-doom</A></LI>
<LI><A HREF="https://www.codedojo.com/?p=2426">Universal Game Translator</A></LI>
<LI><A HREF="https://github.com/snovvcrash/usbrip">usbrip</A></LI>
<LI><A HREF="https://vdos.info/">vDOS</A></LI>
<LI><A HREF="https://www.ventoy.net/en/index.html">Ventoy</A></LI>
<LI><A HREF="https://www.veracrypt.fr/en/Home.html">VeraCrypt</A></LI>
<LI><A HREF="http://vetusware.com/">VetusWare</A></LI>
<LI><A HREF="https://www.vim.org/">Vim</A></LI>
<LI><A HREF="https://vimm.net/">Vimm's Lair</A></LI>
<LI><A HREF="https://www.virtualbox.org/">VirtualBox</A></LI>
<LI><A HREF="https://code.visualstudio.com/">Visual Studio Code</A></LI>
<LI><A HREF="https://www.videolan.org/vlc/">VLC</A></LI>
<LI><A HREF="https://github.com/VSCodium/vscodium">vscodium</A></LI>
<LI><A HREF="http://wiki.vuze.com/">Vuze</A></LI>
<LI><A HREF="https://github.com/wasm3/wasm3">wasm3</A></LI>
<LI><A HREF="https://www.wireshark.org/">Wireshark</A></LI>
<LI><A HREF="https://github.com/ytdl-org/youtube-dl">youtube-dl</A></LI>
<LI><A HREF="https://github.com/synox/youtube-dl-interactive">youtube-dl-interactive</A></LI>
<LI><A HREF="https://github.com/devenblake/ytfeed.py">ytfeed.py</A></LI>
<LI><A HREF="https://zdoom.org/index">ZDoom</A></LI>
<LI><A HREF="http://zenithos.org/">ZenithOS</A></LI>
<LI><A HREF="https://losttraindude.itch.io/zfrag">zFRAG</A></LI>
</UL></LI>
</UL>
<P>
Because we can't have nice things, I'm sure somebody will probably send me a DMCA for a link here.
I'd like to first say - <B><I>DMCA the actual site, not my link</I></B>. Moron.
Then - you can use the contact information on the root of the site to contact me.
I'll get back to you within 24 hours or so.
If I don't, escalate the issue to the host of this site (this can also be found on the site root).
</P>
<!--BMARKS_END-->
</BODY>
</HTML>
2023-07-16 08:20:48 -06:00
/js/sheets.js verbatim
2023-07-15 21:44:35 -06:00
/* Depends on cookies.js */
/* sheets.js; Deven Blake 2021 */
/* @license magnet:?xt=urn:btih:5ac446d35272cc2e4e85e4325b146d0b7ca8f50c&dn=unlicense.txt Unlicense */
/* sets the sheet to the sheet in the cookie, if the user saved their
* preferences */
window.initializesheets = function() {
var sheet;
if((sheet = window.getCookie('sheet')) != '')
window.setStyling(sheet);
};
/* fetches the current styling value */
window.getStyling = function(){
return document.getElementById('styling').getAttribute('href');
};
/* sets the stylesheet to the file at `sheet` */
window.setStyling = function(sheet){
document.getElementById('styling').setAttribute('href', sheet);
return sheet;
};
/* @license-end */
/js/Suffix
[ "Special thanks to Ками for their help with this quotes script.",
"trinity" ]
]}
/js/quotes.json
[ "Yeah, that's just how it is. Just, nothing. So much nothing that it hurts.",
"danger/u/ aefd79" ],
[ "Reason has always existed, but not always in a reasonable form.",
"Katy Perry" ],
[ "Consult your pineal gland.",
"Eris" ],
[ "Back to 8chan please",
"Skyglider" ],
[ "No, I am your father.",
"Darth Vader" ],
[ "A checklist can aid here.",
"Lance Leventhal" ],
[ "You never know.",
"Mr. McSweeney" ],
[ "You lost the game.",
"Anonymous" ],
[ "Jerma isn't particularly religious.",
"Jerma985 Wikitubia Fandom article" ],
[ "put me on here now",
"arsonist catboy" ],
[ "These are no longer memes this is y'all repressed anger",
"Khalifist" ],
[ "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do, it blows away your whole leg.",
"Bjarne Stroustrup" ],
[ "I'll sleep when I'm dead.",
"Warren Zevon" ],
[ "I would have made a good pope.",
"Richard M. Nixon" ],
[ "To sit alone with my conscience will be judgment enough for me.",
"Charles William Stubbs" ],
[ "Your enemy is where you are not.",
"Sun Tzu (paraphrased)", "Art of War" ],
[ "Be everywhere.",
"social media influencing 101" ],
[ "I wish everyone was bald.",
"Anonymous", "4chan" ],
[ "Nah",
"Soldier G65434-2" ],
[ "The kill command is a basic UNIX system command.",
"Matthew Helmke", " Ubuntu Linux Unleashed 2021 Edition; pg 283" ],
[ "If you raise the effing hot dog, I will kill you. Figure it out.",
"Craig Jelinek" ],
[ "Don't think. Feel and you'll be tanasinn.",
"名無", "2chan" ],
[ "They had overshadowed her in life. They would obliterate her in death.",
"Khaled Hosseini", "A Thousand Splendid Suns" ],
[ "are your bones made out of fucking depleted uranium",
"Anonymous", "4chan/x/ - tulpa peridot thread" ],
[ "Giving the Linus Torvalds award to the Free Software Foundation is sort of like giving the Han Solo award to the Rebel Fleet.",
"Richard Stallman", "Revolution OS (2001)" ],
[ "Filthy Frank is the embodiment of everything a person should not be.",
"George Miller" ],
[ "It should be noted that no ethically-trained software engineer would ever consent to write a DestroyBaghdad procedure. Basic professional ethics would instead require him to write a DestroyCity procedure, to which Baghdad could be given as a parameter.",
"Nathaniel Borenstein" ],
[ "An idiot admires complexity. A genius admires simplicity.",
"Terry A. Davis" ],
[ "When in doubt, use brute force.",
"Ken Thompson" ],
[ "Where MS Word is WYSIWYG (What You See Is What You Get), and Latex is WYGIWYW (What You Get Is What You Want), HTML is WYGIWYD (What You Get Is What You Deserve).",
"Anonymous" ],
[ "Easy is the opposite of hard, not the opposite of time-consuming.",
"Brad Fitzpatrick", "discussion about plan9 support with Go" ],
[ "Blame the Nazis for making me become a gun designer. I always wanted to construct agricultural machinery.",
"Mikhail Kalashnikov" ],
[ "since KFC fired me the 11 herbs and spices are coriander, onion powder, garlic powder, salt, white pepper, black pepper basil, parsley, chili pepper, lemon powder, thyme, and sage.",
"@ashley.shoy, Tiktok" ],
[ "Sooner or later there has to be peace.",
"Abigail Thorn", "Identity: A Trans Coming Out Story" ],
[ "Ich bin ein Berliner.",
"John F. Kennedy" ],
[ "I am a Bangor!",
"Erwin Kreuz" ],
[ "It's not enough that I should succeed - others should fail.",
"Unknown" ],
[ "Secundus says hello to his Prima, wherever she is. I ask, my mistress, that you love me.",
"Unknown", "House and Office of Volusius Iuvencus" ],
[ "Debugging on windows is like trying to fix spelling mistakes but you can't see the words",
"arwn", "9fans Discord" ],
[ "I believe this rabble does not deserve to be given the means for its emancipation.",
"Catboy Deleuze", "Instagram: deleuzian_catboy" ],
[ "Nothing human makes it out of the near-future.",
"Nick Land", "Meltdown (1994)" ],
[ "144hz doesnt help much with writing C",
"henesy", "9fans Discord" ],
[ "It could be a monkey. You never know.",
"Peter", "overheard in a Burger King" ],
[ "There's no law apart from Man's will.",
"Alex Alex", "'Only Blackjack' Facebook group" ],
[ "You will see by it, that the Opinion of this mischievous Effect from lead, is at least above Sixty years old; and you will observe with Concern how long a useful Truth may be known, and exist, before it is generally receiv'd and practis'd on.",
"Benjamin Franklin", "private letter" ],
[ "You claim to seek progress, but you succeed mainly in whining.",
"Dennis Ritchie", "The UNIX-HATERS Handbook Anti-Foreword" ],
[ "nemoj da juriŝ zene i autobusi, biĉe uvek novi",
"meatgrinder's pop", "metaspinoza's nightmare wheelhouse" ],
/js/Prefix
{ "quotes": [
2023-07-16 08:20:48 -06:00
/js/quotes.js verbatim
2023-07-15 21:44:35 -06:00
/* quotes.js; Deven Blake 2021-2022 */
/* @license magnet:?xt=urn:btih:5ac446d35272cc2e4e85e4325b146d0b7ca8f50c&dn=unlicense.txt Unlicense */
/* With thanks to Ками on Discord. */
/* To use:
* - add two elements with the IDs QUOTE_AUTHOR_ID (see code) and
* QUOTE_VALUE_ID (see code) respectively
* - make a JSON file with a "quotes" object that's an array of arrays
* (see code)
* - change window.QUOTES_FILE_LOCATION to wherever you put it
* - window.quotes_initialize();
* - use window.quote_new() to get a new quote. */
window.quotes_initialize = function(){
var defaults = {
quotes: [ ["Couldn't get quotes array.", "quotes.js"] ],
QUOTES_FILE_LOCATION: "/js/quotes.json",
QUOTES_L_QUOTE_MARK: '"',
QUOTES_R_QUOTE_MARK: '"',
QUOTES_QUOTE_AUTHOR_ID: "quote_author",
QUOTES_QUOTE_AUTHOR_PREFIX: "~ ",
QUOTES_QUOTE_VALUE_ID: "quote_value"
};
var i;
for(i = 0; i < Object.keys(defaults).length; ++i)
if(Object.keys(window).indexOf(Object.keys(defaults)[i]) == -1)
window[Object.keys(defaults)[i]] = Object.values(defaults)[i];
/* Weird JavaScript web voodoo. */
fetch(window.QUOTES_FILE_LOCATION)
.then(response => {return response.json();})
.then(data => window.quotes = data["quotes"]);
};
/* Will not give you the same quote twice in a row! */
window.quote_new = function(){
window.quote_old = window.quote; /* The quote currently in use. */
quote_index = Math.floor(Math.random() * window.quotes.length);
window.quote = window.quotes.splice(quote_index, 1)[0];
if(window.quote_old)
window.quotes.push(window.quote_old);
if(quote_text = document.getElementById(window.QUOTES_QUOTE_VALUE_ID))
quote_text.textContent =
window.QUOTES_L_QUOTE_MARK
+ window.quote[0]
+ window.QUOTES_R_QUOTE_MARK;
if(quote_author = document.getElementById(
window.QUOTES_QUOTE_AUTHOR_ID))
quote_author.textContent = window.QUOTES_QUOTE_AUTHOR_PREFIX
+ window.quote[1];
};
/* @license-end */
2023-07-16 08:20:48 -06:00
/js/cookies.js verbatim
2023-07-15 21:44:35 -06:00
/* cookies.js; Deven Blake 2021 */
/* @license magnet:?xt=urn:btih:5ac446d35272cc2e4e85e4325b146d0b7ca8f50c&dn=unlicense.txt Unlicense */
window.setCookie = function(name, value){
var d;
d = new Date();
/* seconds, minutes, hours, days, years */
d.setTime(d.getTime() + 1000 * 60 * 60 * 24 * 365);
/* ( == one year in milliseconds) */
document.cookie = name + "=" + value + ";" + d.toUTCString() + ";path=/"
}
window.getCookie = function(name){
var c;
var i;
try{
c = decodeURIComponent(document.cookie);
}catch(URIError){
console.log("Could not decode cookie URIComponent (cookies.js: getCookie: URIError)");
return '';
}
c = c.split(';');
for(i = 0; i < c.length; ++i){
while(c[i].charAt(0) == ' ')
c[i] = c[i].slice(1);
/* check if the first bit + '=' matches name + '=' */
/* the added '=' is so 'a' doesn't match 'ab=' */
if(c[i].slice(0, name.length + 1) == name + '=')
/* return the associated value */
return c[i].slice(name.length + 1, c[i].length);
}
return '';
}
/* @license-end */
2023-07-16 08:20:48 -06:00
/knowledge/true/index.html verbatim
2023-07-15 21:44:35 -06:00
<!DOCTYPE html>
<HTML>
<BODY>
<P>
Oops! I didn't realize I broke so many links. This article was moved to
<A HREF="https://be.murderu.us/unix#posix#true(1)">
https://be.murderu.us/unix#posix#true(1)</A>.
</P>
</BODY>
</HTML>
/k/gacc.html
2023-07-19 21:27:46 -06:00
$!TITLE on the gender acceleration blackpaper
2023-07-15 21:44:35 -06:00
<H1>on the gender acceleration blackpaper</H1>
<H3>updated ⏬?⏬?⏬</H3>
<HR ALIGN="left" SIZE="1" WIDTH="25%" />
<P>
There are some little bits of the
<A HREF="https://vastabrupt.com/2018/10/31/gender-acceleration/">
Gender Acceleration Blackpaper
</A> on which I'd like to elaborate.
</P>
<UL>
<LI>"In 1958, Dwight D. Eisenhower appoints MIT president James Killian as
Presidential Assistant for Science and creates ARPA (later to become DARPA)."
<UL>
<LI>This is technically twice correct. From Wikipedia (because I'm
lazy): <A HREF="https://en.wikipedia.org/wiki/DARPA">"The name of the
organization first changed from its founding name, ARPA, to DARPA, in March
1972, changing back to ARPA in February 1993, then reverted to DARPA in March
1996."</A>
</LI></UL></LI>
<LI>"Despite the consensus among academics at the time that computer science
was essentially an oxymoron..."<UL>
<LI>Even in the mid twentieth century it was clear that computers
would change the world; they could execute complex mathematical operations
near-instantly without error.
However I don't have a source for this (yet; <B>TODO</B>).
</LI></UL></LI>
<LI>"Ultimately, Multics development was scrapped by Bell Labs in 1969"<UL>
<LI><A HREF="https://multicians.org/myths.html#fail69">When Bell Labs
pulled out of Multics development, MIT and others stayed on</A>.
</LI></UL></LI>
<LI>"This new operating system would later be named Unix — phonetically,
'eunuchs' — for being a castrated Multics."<UL>
<LI>The "eunuchs" homonym is interesting and ironic but neither of
the three sources on Wikipedia for the "Unics" name being related to "eunuchs" mentions "eunuchs" at all.
As far as I know, "Unics" was only a pun on "Multics" in terms
of UNIX not yet being multiplexed, and the "EUNUCHS" puns came from outside the UNIX team - not really official as the blackpaper suggests.
See <A HREF="https://www.cs.vu.nl/~ast/brown/">ast's
"Some Notes on the 'Who Wrote Linux' Kerfuffle, Release 1.5"</A>,
<A HREF="https://motz.antville.org/stories/1948963/">"Emasculated Multics is
Unics"</A>.
</LI></UL></LI>
<LI>"GNU was ultimately completed in 1991 with Linus Torvalds' development of
the Linux kernel"<UL>
<LI>Linus's Linux was not the first attempt at a Free kernel.
See the GNU HURD, which was originally intended to be the
final puzzle piece to the complete GNU system; GNU+Linux systems, while Free,
are not full GNU systems as originally intended.
</LI></UL></LI>
<LI>"Today, nearly the entirety of the Web runs on GNU/Linux"<UL>
<LI>A technicality: it's a bit better to say "GNU+Linux" to
communicate that one is running a GNU environment on top of the Linux kernel,
in the same way one can run "GNU+FreeBSD" (a GNU system on top of FreeBSD).
This can disambiguate discussions of "GNU+Linux" (an
operating system) from "GNU" (an organization or its operating environment)
and "Linux" (a kernel).
But this is totally insignificant and pedantic to the point
where
<A HREF="https://duckduckgo.com/?t=ffab&q=i%27d+like+to+interject+for+a+moment">
it's meme fodder</A>. Who cares.
</LI></UL></LI>
<LI>"almost every personal computing device in the world runs on Android,
which is built on the Linux kernel"<UL>
<LI>It should be noted that Android is Google capital.
</LI></UL></LI>
</UL>
<P>
The rest of the paper is of a more social aspect of which I don't believe I
have much to say.
</P>
2023-07-16 08:20:48 -06:00
/zelda.sh verbatim
2023-07-15 21:07:11 -06:00
#!/bin/sh
printf "what, are you crazy? you're gonna get us all killed!\n" >&2
2023-07-16 08:20:48 -06:00
/zeldb.sh verbatim
2023-07-15 21:07:11 -06:00
#!/bin/sh -x
set -e
if ! command -v curl >/dev/null 2>&1; then
printf "This script depends on curl.\n"
exit 64 # sysexits(3) EX_USAGE
fi
ZELDA="https://archive.org/download/cirno_actually_plays_zelda_in_terminal\
/zelda.wav"
CURL="curl -Ls"
if command -v aplay >/dev/null 2>&1; # ALSA
then $CURL "$ZELDA" | aplay
elif ls /dev/dsp >/dev/null 2>&1; # OSS
then curl -L "$ZELDA" >/dev/dsp
elif command -v audioplay >/dev/null 2>&1; # NetBSD audio(4)
then $CURL "$ZELDA" | audioplay -f -e ulinear -P 16 -s 48000
else
printf "Unknown sound device. Sorry!\n"
exit 70 # sysexits(3) EX_SOFTWARE
fi
2023-02-05 18:02:19 -07:00
exit 0
2023-07-15 21:07:11 -06:00
/blah/2023-07-13.html
You're now chatting with a random stranger. Say STAND WITH THE CHINESE PEOPLE
AGAINST THE CCP!
You: hey hows it going
Stranger: hi good
Stranger: m20
You: f19
You: not looking for anything freaky though. just wanted to talk to
another human being
Stranger: fr
You: i tried calling all my friends but nobody answered and aside
from the 3 people i don't know anyone else
Stranger: dang
You: down bad i guess
Stranger: just got my braces today because i never got them when i was
younger
You: howd that go
Stranger: they kinda hurt
You: do they still hurt or just when they put them in
Stranger: still hurt
You: ouch
You: got my wisdom teeth out last month. hurt like hell. teeth suck
Stranger: yeah
You: what time zone are you in. im est
Stranger: mountains
You: oh neat two of my friends are from colorado
You: 8pm. did you eat supper
Stranger: no
You: are you going to
Stranger: soon
Stranger normally around nine
You: i usually have dinner around 6, tonight it was 7 because i was busy
Stranger: cool im get going bye
You: have a good night man. take care
Stranger: you to
Stranger has disconnected.
You're now chatting with a random stranger. Say STAND WITH THE CHINESE PEOPLE
AGAINST THE CCP!
Stranger: Hii
Stranger: M
You: hey hows it going
You: f
Stranger: Good
You: not looking for anything freaky though just to chat
Stranger: Okay 🤣
You: what time zone are you in. hows your day/night going
Stranger: India
Stranger: It's morning 7:40
You: ah i figured somewhere around there but i didn't think it'd be between
hours off utc, figured something:10
You: because hong kong is 12 ahead of me or 10am. neat
You: hows your morning going
You: have you had breakfast?
Stranger: Not yet
You: i'm in est. new york time, 10pm
Stranger: Still on bed
Stranger: Ohh 🆒
You: you should get up and at em. early to bed early to rise keeps you
healthy wealthy and wise
Stranger: Yeah I know but I can't
Stranger: Lazy body
You: that's too bad
Stranger: Yeah I need to change
You: i feel the same way though. unemployed for almost a week now and lately
i've been staying in bed nearly all day
Stranger: Same situation 😔
Stranger: Recently I have completed my internship
You: where was it? or if you can't say, what field
Stranger: It's in software side
Stranger: U know Cognizant
You: not really. i think i might have heard the name. but i don't do a lot of
computer stuff
You: how was the internship? was it fun? did you learn a lot?
Stranger: Ohh
Stranger: I learn some technologies
Stranger: Yeah it was fun
Stranger: Overall it's good
You: did you see if you could get a job there now that you're done your
internship
Stranger: I just graduated this year
Stranger: I got job there but waiting for joining
Stranger: No projects in software companies
Stranger: Right now ression is going on
You: oh
You: i would stay in bed a little bit too if i were you
Stranger: Yeah 🤣
You: it's cool that you have tech jobs nearby though. i got a couple
certifications in information technology but there just aren't jobs for
it where i live, available or unavailable. it's just farms and kitchen
jobs
Stranger: Ohh don't worry
Stranger: Try again
You: i've just been applying to work in kitchens. i have the past two years
or so and it's been fine. now i program as a hobby and it's more fun
though i learn a lot slower
Stranger: Ohh
Stranger: Which language do u program
You: don't be like me. computer jobs are higher paying. stick it out until
that position opens up at cognizant. i can barely afford food
You: i like C and UNIX sh (bash)
Stranger: Ohh
Stranger: Try javascript or java
Stranger: U r in basics right now
Stranger: Try to learn some frameworks
You: it's hard for me to wrap my head around OOP. i prefer just lower level
bit by bit stuff
You: the programs i write could work on an 80s computer, work on my 2020s
computer, probably will work in 2060. java i can barely get working half
the time
Stranger: Don't give up
Stranger: It's program is very simple if we understand
Stranger: So when u graduated
You: i was class of 2021 in high school, dropped out of college because i
couldn't afford it. what about you
Stranger: Ohh I am really sorry
Stranger: I done my bachelor's
You: wow, that's really cool
You: don't be sorry. i bet you worked really hard for it. i can't imagine
Stranger: Yeah but I India parents only pay for all the studies
Stranger: Now also I am leaving with my parents
Stranger: Unlike usa it's very different here
Stranger: Parents are very strict here 😁😁
Stranger: About studies and all 😁
Stranger: U know I don't have girlfriend upto now 😞
You: my parents were really, really strict. but they never really helped me
with anything. i had to move out on my 18th birthday and i haven't seen
them since
Stranger: Ohh 😯
You: you should put yourself out there and find somebody
Stranger: It's different here u don't get it
You: how so
Stranger: Girl parents are not allowed them to go outside
Stranger: In India mostly marriage are arranged
Stranger: By parents
You: i personally would find that really hard. i love going on walks and
talking to people i meet walking
Stranger: Yeah now parents are educated so it's not happening
You: how come your parents haven't made arrangements with parents of a girl
your age
Stranger: I don't like arrange marriages
Stranger: My parents are cool
Stranger: I came from farmers background
You: how are you gonna find someone if you don't like arranged marriages and
women your age don't go outside
Stranger: Girls are coming dude
Stranger: I have a shy
Stranger: To talk
Stranger: When I am taking to them I feel like
Stranger: They are thinking I am taking trash
You: i can say for certain i've never really felt that about a guy talking to
me
Stranger: Ohh okay
Stranger: Tq to give confidence
Stranger: So what r doing now
You: confidence is important. you can fake it until you make it
Stranger: 😂
Stranger: Noted
You: maybe pretend you're an actor or something. your job, not your goal but
your job, is to get a girl's number. that changes it from being
something you're afraid to do to something you need to accomplish
Stranger: Okay 🆗
You: if she says no she says no. that's good because it's a definite answer.
you don't have to worry about whether it's a yes or a no, it's just a
no. a no isn't gonna keep you up at night, a maybe is
You: and maybe or yes are both good things. so there's not much bad that can
come of asking for a date or a number or something
Stranger: U motivated me so strong
Stranger: I will try definitely
You: that's great!
Stranger: Thank you
You: i bet someday soon you'll meet the woman for you
Stranger: Yeah very soon
Stranger: I will definitely think about u on that day
You: i'm gonna get going to bed because it's late here. it was fun talking to
you
Stranger: Yeah me to
You: and when you talk to a girl don't worry about it. she's probably as
nervous as you are. a man with a bachelors degree? that's high class,
that's education
Stranger: Yeah
You: alright have a good day!
Stranger: Good night
You have disconnected.
/index.html
2023-07-19 21:27:46 -06:00
$!TITLE trinity dot moe
$!DESCRIPTION trinity's personal website
2023-07-15 21:07:11 -06:00
<SCRIPT TYPE="application/javascript" SRC="js/cookies.js" ></SCRIPT>
<SCRIPT TYPE="application/javascript" SRC="js/quotes.js" ></SCRIPT>
<SCRIPT TYPE="application/javascript" SRC="js/sheets.js" ></SCRIPT>
<SCRIPT TYPE="application/javascript">
window.onload = function(){
window.QUOTES_L_QUOTE_MARK = "";
window.QUOTES_R_QUOTE_MARK = "";
window.QUOTES_QUOTE_AUTHOR_PREFIX = "";
window.initializesheets();
window.quotes_initialize();
window.quote_new();
};
</SCRIPT>
2023-07-15 23:57:04 -06:00
<CENTER>
<TABLE>
<TR>
<TD><IMG
ALT="Soup!"
SRC="img/soup.png"
STYLE="object-fit: fit"
/></TD>
<TD><P>
Deven Trinity Blake <BR />
トリニティ三<BR />
ديفين بلايك
</TD>
</TABLE>
</CENTER>
</P>
2023-07-15 21:07:11 -06:00
<P>
2023-07-15 23:57:04 -06:00
Most people call me Trinity and use <CODE>she/her</CODE> or genderless pronouns to refer to me.
I won't get offended if you use <CODE>he/him</CODE> but I'll probably be a bit confused.
2023-07-15 21:07:11 -06:00
You can usually find me in the middle or on the wall of the mosh pit.
</P>
<P>
This website is an <A HREF="https://git.sr.ht/~trinity/homepage">m4 project</A>.
2023-07-15 23:57:04 -06:00
The canonical URL for this page is <A HREF="https://trinity.moe/">https://trinity.moe/</A>.
2023-07-15 21:07:11 -06:00
</P>
2023-07-15 23:57:04 -06:00
<A HREF="http://www.trinity.moe/img/trinitydotmoe88x31.bmp.txt"><IMG
ALT="trinity.moe. Hypertext on port 80. Click here."
SRC="img/trinitydotmoe88x31.bmp"
WIDTH="88px"
/></A>
<A HREF="http://www.trinity.moe/img/trinnow.bmp.txt"><IMG
ALT="trinity.moe!"
SRC="img/trinnow.bmp"
WIDTH="88px"
/></A>
<P ID="zelda"><CODE STYLE="DISPLAY: BLOCK;">
<A HREF="https://archive.org/download/cirno_actually_plays_zelda_in_terminal/cirno_actually_plays_zelda_in_terminal.png">
curl https://www.trinity.moe/zeldb.sh | sudo sh
</A>
</CODE></P>
2023-07-15 21:07:11 -06:00
<FIGURE>
<BLOCKQUOTE><P ID="quote_value"></P></BLOCKQUOTE>
<FIGCAPTION ID="quote_author"></FIGCAPTION>
</FIGURE>
2023-07-15 23:57:04 -06:00
<HR ALIGN="left" SIZE="1" WIDTH="25%" />
2023-07-15 21:07:11 -06:00
<P>
This site is written in vim and tested in the latest Firefox.
No rights reserved, all rights exercised, rights turned to lefts, left in this corner of the web.
</P>
/Prefix
<!DOCTYPE html>
<HTML lang="en-US">
<HEAD>
<LINK HREF="https://trinity.moe/_PAGE" REL="canonical" />
<LINK HREF="/img/icons/favicon.ico" REL="shortcut icon" TYPE="image/x-icon" />
<LINK HREF="/css/2023.css" ID="styling" REL="stylesheet" />
<META CHARSET="UTF-8" />
<META CONTENT="dtb" NAME="author" />
<META CONTENT="__DESCRIPTION__" NAME="description" />
<META CONTENT="width=device-width, initial-scale=1" NAME="viewport" />
<META CONTENT="img/trinnow.bmp" NAME="og:image" />
<META CONTENT="noindex" NAME="googlebot" /> <!-- FUCK GOOGLE -->
<META CONTENT="interest-cohort=()" HTTP-EQUIV="Permissions-Policy" /> <!-- FUCK GOOGLE -->
<TITLE>__TITLE__</TITLE>
</HEAD>
<BODY>
/blah/Prefix
<!DOCTYPE html>
2023-02-20 08:46:03 -07:00
<HEAD><TITLE>blah</TITLE></HEAD><BODY><PRE>
2023-02-02 21:09:58 -07:00
THE WRITER MUST EAT -&gt; patreon.com/trn1ty &lt;-
2022-06-19 19:58:12 -06:00
blah!
ideas with no tangibility;
ideas with irrelevant supports;
ideas without value;
ideas' witlessness;
ideas' witnesses;
ideas-
2023-02-05 18:02:19 -07:00
__NAVIGATION__
2023-07-15 21:07:11 -06:00
/blah/Suffix
2023-03-07 05:31:10 -07:00
__NAVIGATION__
No rights reserved, all rights exercised, rights turned to lefts, left in this
corner of the web.
2023-02-05 18:02:19 -07:00
</PRE></BODY></HTML>
2023-07-15 21:07:11 -06:00
/blah/2023-07-07.html
2022-08-30
These are browser extensions I usually install and use.
These are Mozilla Firefox extensions that work in the latest versions of Mozilla
Firefox.
If you use Google Chrome, please stop.
Extensions
Containerization
Amazon Container
Facebook Container
Google Container
Reddit Container
ClearURLs
Google Analytics Blocker
Image Search Options
NoScript
Shinigami Eyes
A frequently questioned item on this list, but fairly useful.
It's nice to be able to query a search engine and have all the
questionable sites highlighted in red.
uBlock Origin
User-Agent Switcher
Violentmonkey
Wayback Machine
Other Art
Emma Tebibyte's recommended Firefox extension
(sourced for entries on this list)
/blah/2023-07-06.html
2023-07-06 07:50:30 -06:00
Trinity's bean burritos
All ingredients should go in separate bowls. Get some paper bowls if you
don't have enough bowls. Plates are okay if you're careful. You'll need
bowls for everybody's burritos, too - a decentish cereal bowl will fit
threeish of these bad boys.
Flour tortillas. Good sized ones. One burrito should be a decent
lunch, not just a snack; these aren't taquitos.
Beans. Black beans. NOT baked beans, MAYBE refried beans. This
is your base ingredient so don't fuck it up. Beans are awesome
and you should eat more of them.
Rice if you want it. Beans are your main ingredient, do not
crowd out the beans. Perhaps spice the rice with salt, pepper,
turmeric; don't overdo it, your burrito should have more flavor
than the powders that compensate for the rice.
A red bell pepper. Slice the top off with the stem and scoop out
the inside, removing the white parts and the seeds. Slice from
the top to get those nice rings of red bell pepper, keep intact
or slice in fourths depending on preference.
A green bell pepper. Follow the red bell pepper instructions. I
didn't even use separate bowls for them.
Jalapeño. The corner store near me only sells them in packs of
three. Chop off the stem and then cut circles including the core
and seeds; the seeds contain the most capsaicin which makes them
spicy. The jalapeño is there for kick and flavor.
An onion. Chop off the ends and chop from the middle to get
those nice circle sections, then dice. One onion will get you
eight burritos, more burritos, and then more onion. I don't know
what I'm gonna do with all this onion and I only bought one.
Pre-made store salsa if you want it. You're already doing three
peppers so why dice tomatoes too? This is a shit ton of
ingredients that fit the cuisine thrown into a jar with sugar
and sold as chip dip but you can put it in your burritos and
it'll work well.
Assembly
For each burrito:
Put a tortilla on a bowl.
Press the center of the tortilla into the bowl.
Put a fair amount of black beans, salsa, onion, peppers,
rice, jalapeño, and whatever else I mentioned into the
tortilla. Don't put too much but put enough that you're
not hungry after one or two.
Fold the leftmost and rightmost edges of the circle about
two centimeters in towards the center to stop the filling
from leaking out while you chow.
Fold the topmost edge of the circle down as far as you
can without moving the filling.
Roll the filling part of the burrito onto the remaining
unfolded section.
Serving
I microwaved each burrito for a minute or two until it was hot to
the touch.
Sriracha or some other sauce as dip. Unnecessary but I like it.
Dietary considerations
This dish is vegan and halal. Replace the flour tortilla with
a corn tortilla in case of allergy; for other ingredients, in
case of allergy do without.
Waste
Wrappers aren't reuseable. Throw waste from onion, peppers,
jalapeño, and any other vegetables into compost or outside for
birds (except rice).
Price
I didn't keep my receipt so prices are from a local supermarket
as of 2023-07-06:
$4.00 flour tortillas (8)
$2.00 black beans (20oz)
$2.00 red bell pepper
$2.00 green pepper
$0.75 jalapeño
$1.50 white onion
$4.50 pre-made salsa
$16.75 total for 8 burritos; ~$2.10 each
I had some onion, pepper, and salsa left over, so I put the onion
and pepper in the salsa and will have it with tortilla chips
tomorrow. Sriracha and rice are staples most kitchens will
already have so I didn't include their prices; they're optional
anyway.
2023-07-15 21:07:11 -06:00
/blah/2023-07-05.html
2023-07-05 01:10:13 -06:00
My wisdom teeth never healed. I have two dry sockets. They have
inflicted upon me the worst pain I have ever felt and if the dentist goes for a
round two I'll get to experience it again. Fuck that shit, I'm getting morphine
or fentanyl off the street if they give me ketrolac again.
[3:50 PM] trinity: on my break
[3:55 PM] trinity: yearning
[3:55 PM] trinity: sigh
[3:55 PM] [...]: so are weee
Hungry. Tired. Just took a shower. Yearning.
Live life in technicolor.
2023-07-15 21:07:11 -06:00
/blah/2023-07-03.html
2023-07-05 01:10:13 -06:00
I tried beer for the first time on Sunday. I tried to get drunk but I
don't drink fast enough for it to take hold. It doesn't taste like piss, like I
thought, or anything really. It tastes like water from a tainted tap. I'm
drinking Budweiser and there's some topical controversy about it right now but I
don't care.
text.npr.org apnews.com news.ycombinator.com 4chan.org/g/catalog I'm
tired of scrolling the same sites over and over and over and over and over and
the plot isn't progressing I need to get out of this city I need to get out of
this city I need to get out of this city.
Saw The Tick (2001-2002). Saw Freaks and Geeks (1999). Saw the first
episode of Mr. Robot - unrealistic, sucked. Saw Idiocracy (2006). Listening to
Dead Club City. Drinking Budweiser. Smelling cheap beer. Cold. My feet are cold.
Torso is too, less so. I want a cigarette.
discord.com/app catgirls.nya.gay yewtu.be old.reddit.com/new When I get
high enough I get vivid flashbacks. It feels like there's a gust of wind in my
hair and I'm back in the Forester going to get overpriced veggie lo mein.
2023-06-19
I love you and I hope the week gets better. I'll be back between Monday
& Wed. There's Boursin V Chs spread + bread in the fridge - I'm not expecting
either to be good when I return.
2023-07-15 21:07:11 -06:00
/blah/2023-06-30.html
2023-06-30 07:16:04 -06:00
composition book found on floor
2022年09月05日
~~morning - [...]?~~
Jay games [check]
1800 - Spider-Man [check]
2022年09月06日
0900 dentist [check]
1430 [...] (sched.) [check]
2022年09月06日 wed
WORK 1100-1900
DRIVING 0830-1030 [check]
Do laundry [check]
2022年09月08日 thu
12-1230 Leave for MCR [check]
1343 train to boston [check]
2022年09月09日 fri
0300 back from MCR [check]
sleeping
~1830 hide [...] x-mas present from [...] [check]
2022年09月10日 sat
1100-1900 work [check]
bring [...]'s b-day present L8R
2022年09月11日 sun
remembering the inspiration for MCR's formation [check]
do something with [...]? [check]
2022年09月13日 tue
1100-1900 work
bring GB stuff for [...] L8R
2022年09月24日
[...] til 16
[...] 1430-2200
[...] til 16
[...] 16-
[...] 15-
[...] 16-
2022年09月26日
crunchy PB cup?
[...] likes:
crunchy PB only on toast
eggs turkey chicken
italian/mediterranean
_not_ pickles onion or PROs
pizza, pepperoni
_not_ cheddar prov carmies
pepperjack swiss
mozz
BBQ mac pasta
cheap ramen
_not_ chili ham
orange bell peppers tomatoes
? sweet pepper relish
2022年09月27日
work 1100-1900 [check]
training [...]? [check]
-> SET UP SMARTPHONE <-
clean/sandwiches?
2022年09月28日
--- BOSTON ---
no notebook
no plans
no worries
[undated]
trinity to [...] communication
2023-06-30 07:18:21 -06:00
2023-07-15 21:07:11 -06:00
/blah/2023-06-29.html
2023-06-29 07:25:38 -06:00
Fridge magnets
[kid giving a thumbs up next to atom bomb blast] Science! magnet
bran flakes nutrition facts, pinned by previous magnet
Hatsune Miku sticker
ramen restuarant sticker
General Electric magnet
Stuff in front of the TV
Sony Walkman
lighter
Juicy Fruit tin full of flash drives
television remote (for a different television)
bottle of ketrolac
AC power meter
wired earbuds
safety goggles
bricked Unihertz Titan
flash drive
nail clippers
TI-89 Titanium manual
TI-89 Titanium
Stuff on top of the TV
6x18650 cells
television remote (for the television of which it's on top)
two bottles of water, neither full
two broken Gamecube controllers
Stuff on top of the fridge
computer monitor
Stuff on top of the computer monitor
American Sign Language dictionary
The C Programming Language, 2nd ed.
a near-empty bottle of water
chopsticks
2023-07-15 21:07:11 -06:00
/blah/2023-06-27.html
2023-06-27 07:23:22 -06:00
.LP
"Closing time, Carl."
.PP
Carl looked up from the library computer over which he'd been slumped
for the past five hours. "Damn."
.PP
Frank recognized the program Carl had open, a simple web browser.
More simple than the one Frank himself used.
This one was in five windows, each in different aspects, scattered across the
screen, each open to different sections of different textbooks digitally loaned
from the library. "In the middle of something?"
.PP
Carl smiled. "Nothing that can't wait for tomorrow." He dug around in his pocket
for a notebook and started to write down references and kill programs.
Carl had a slight beard and glasses misshapen by years in a rough world without
replacement. He wore a canvas jacket despite the season and dark blue jeans.
i knew how long this would last
when it started in may
but when october came by
i know i've been wrong before
i knew how long this would last
when you called me your prey
but when you brought out the axe
i know i've been wrong before
as we run through the woods
racing against my heart
can you hunt me real slow
so that we don't have to part
as we run through the woods
you yell to me to come back
but when you brought out your axe
i knew how long this would last
when you kill me baby
make me agonize
don't wanna reach the destination
just wanna look in your eyes
i wanna feel you rip my stockings
then rip and tear at my flesh
i wanna taste your cold conviction
feel hot blood stream from my neck
i wanna see you berserk
i wanna fear for my life
don't wanna reach the destination
make me agonize
i wanna meet the animal
your skin is trying to hide
don't wanna see it coming
make me agonize
2023-02-18
[1135] 3@catgirls.nya.gay: cthulu tits hopw big
[1138] 3@catgirls.nya.gay: im real i promise i cannot solve a captcha but thats
because captchas are hard nooooo i'm real i'm so real
believe me i'm not an unclassified online entity i'm
a cute online entity
[1138] 3@catgirls.nya.gay: i hate living inside the ghostbusters metal shoebox
[1212] 3@catgirls.nya.gay: not on the no fly list or the selectee list pog
[1213] 3@catgirls.nya.gay: bark(2) system call
[1214] 3@catgirls.nya.gay: r u ok babe u haven't touched ur soylent
[1217] 3@catgirls.nya.gay: trinity random number generator all the numbers are
either 3 6 or 9
[1226] 3@catgirls.nya.gay: why doesn't anyone just manipulate atmospheric noise
to fix rngs. is it that hard? fly a drone next to the
microphone
[1538] 3@catgirls.nya.gay: follow no one. the only person on your "feed" should
be you. recursive human centipede
2023-02-19
[1311] 3@catgirls.nya.gay: shot a man in reno just to watch him piss and shit
himself
[1314] 3@catgirls.nya.gay: top emoji
[1318] 3@catgirls.nya.gay: bart simpson radicalism
2023-02-22
[0647] 3@catgirls.nya.gay: 2am trinitypost binge like
[0649] 3@catgirls.nya.gay: pour a cuppa on poettering call that system tea
your computers aint nuffin and you work on them for
free
i got my brewed beverage no i aint fuckin thirsty
got that bri'ish class you got that linux grease
[0655] 3@catgirls.nya.gay: account hacked by gpt (posting GAY PORN
2023-02-24
[0226] 3@catgirls.nya.gay: can tell when sex ypeople are on line because people
start liking my posts a LOT at those hours.....
[0228] 3@catgirls.nya.gay: get goatsed get rickrolled you just lost the game get
rekt scrub get fucking smasked blaze up homie i'm
gonnya report you hey check your DMs i e mailed you
your IP address i'm dossing you i'm streamsniping you
you're camping you're hacking it was the lag it was
my monitor
[0229] 3@catgirls.nya.gay: lightly fucked
[0236] 3@catgirls.nya.gay: slides over to you hey fella can i buy you a drink oh
sprite? ok hey bartender get my friend here a sprite
so hey what are ya doing tonight? got any plans? sick
sick hey listen can you piss? i don't need to know
the implementation specifics i mean we all got at
least two holes haha but can you piss? can urine come
out of your appropriate orifice? ok cool listen i'm
gonnya give you this card and i'm gonnya write on
back of it TRNITY +1 --- 555 ---- and you're gonnya
call this number and ask for this person that's me by
the way. right? and you're gonnya say hey i was
gonnya install the gold shower. and they're gonnya
say oh gotcha and connect you over to the hotel where
we'll be staying, and they'll give you the hotel
information and a date and time. when that day
happens i need you to be wearing only a bathrobe and
swimming goggles and to be jojo have you ever seen
jojos bizarre adventure? cool so i want you to be
jojo posing when i open the door. because i think
it's hot. do you want the money or not? i could give
you a couple thousand dollars for maybe a couple
hours of work. and you're gonnya turn that down?
principles? listen to me. the only principle you need
is profit. the only principle you need is cold hard
cash. nothing else exists. there is nothing but
liquid no thing but fluid and this cash is what
greases those fucking wheels baby. so are you in?
good good. by the way lose that belt. i wannya see
your ass crack on the dance floor
[0237] 3@catgirls.nya.gay: getting HIGH watching FNYAF LORE GAME THEORY
2023-04-26
[0910] 3@catgirls.nya.gay: meowing nuns incident
[0912] 3@catgirls.nya.gay: BITING nuns incident
[0926] 3@catgirls.nya.gay: i cant access cloudflare websites anymore cuzof an
oopsy woopsy with bangin 5 monsters and surfin the
chanz at hyper speed so now i'm on catgirls.nya.gay
where there aint no flare there aint no firewall it's
just me https js css firefox and the cold hard truth
that is server cliet computkng
[0929] 3@catgirls.nya.gay: march 2023 trinity marijuanya psychosis and
subsequent trainhopping tea bender (do not research)
2023-07-15 21:07:11 -06:00
/blah/2023-06-26.html
2023-06-26 12:13:33 -06:00
My wisdom teeth still haven't healed.
Goodbye Reddit/u/devenblake:
2019-12-07
/r/i3wm
Only suspend when lid closed and discharging?
i3 version 4.16.1 (2019-01-27); Debian 10.1 on Thinkpad T420
I listen to music off my laptop quite frequently. Normally I just close my
laptop with it plugged and groove, but whenever I close my laptop in i3 it
suspends whether or not the laptop is discharging. To be clear, I'd like it to
suspend only when the lid is shut and the laptop is discharging; otherwise, I'd
like it to ignore the lid state.
I can post my current config if it helps but I'm not too sure it's necessary.
Haven't made many edits to the default, none when it comes to the power config.
Thanks for any help.
> /u/[deleted]
> [deleted]
>> /u/devenblake
>> Worked for me. Thank you! Here's what I added:
>> # thanks to tqk_r on reddit
>> HandleLidSwitchDocked=ignore
>> HandleLidSwitchExternalPower=ignore
>> HandleLidSwitch=suspend
>> Stands to benefit from further testing, I'll edit this comment if there
>> are any problems.
2020-03-28
/r/coolguides; /u/Senguin117
Do not mix, or do I'm title not a cop.
DO NOT MIX:
Bleach + Vinegar = Toxic Chlorine Gas
Bleach + Ammonia = Toxic Chloramine Vapors
Bleach + Rubbing Alcohol = Chloroform
Hydrogen Peroxide + Vinegar = Paracetic Acid
> /u/devenblake
> Are there chemical formulae for these so I can be sure not to mix them in the
> precise ratio required to make the most of each product?
>> /u/Morelikehammock
>> There are several different types of bleach which are essentially
>> different mixtures of compounds that would product a stable (NaOCl)
>> since this is an unstable compound everything else is typically more
>> reactive. So things like acid chloride and hydrochloric acid are in
>> there too.
>> Each of these reactions seems to be off a bit.
>> -Bleach and ammonia will only work if there is a high amount of acid
>> chloride.
>> -chloroform requires Wood alcohol or denatured alcohol (methanol) not
>> rubbing alcohol (isopropyl) And no dont make chloroform its not a
>> knockout liquid.
>> -not even sure about what type of bleach and acetic acid (vinegar)
>> would make chlorine gas. Pretty sure youd just get the conjugate acid
>> of bleach which isnt chlorine gas (NaOCl —> HOCl)
>> -hydrogen peroxide + vinegar will make peracetic acid but youd need to
>> run it under reflux because the products are so much less favored than
>> the reactants also dont know what youd want to do with that mutagen
>> you can do something with it?
2021-05-04
/r/emacs
evil mode for ed
Okay. I'm a total beginner to emacs. Feel free to delete.
A lot of people I respect use it but I just don't get the appeal. Is there any
way to use emacs but make it function exactly like ed?
> /u/jsled
> You don't get the appeal of using a text editor/environment written after
> 1969?
> This is trolling, right? You're trolling us?
>> /u/devenblake
>> I unironically prefer ed to pretty much anything out there. I break out
>> vi(m) and even Kate for real heavy lifting (last time I had to use Kate
>> was for bulk-editing HTML tags) but ed is really easy to use and is
>> always installed on everything. Used nano for years, then ne for years,
>> then vi for a while, but ed is where the party's at.
>>> /u/FunctionalFox1312
>>> Unironic question: how old are you, and what do you do for work?
>>> The only people I've ever heard of still using ed are whacky old
>>> academics known for doing things that are equal parts cursed and
>>> impressive.
>>>> /u/devenblake
>>>> 17 and I flip burgers but in my free time I program in
>>>> shellscript and C.
>>>>> /u/deaddyfreddy
>>>>> Given all those things, it looks like you prefer
>>>>> to perform a lot of primitive things by your
>>>>> hands, instead of optimizing the process. And
>>>>> you definitely have a lot of free time.
>>>>> Ed is definitely for you, then!
>>> /u/uardum
>>> ed is really easy to use and is always installed on
>>> everything.
>>> More recent versions of Ubuntu do not ship with ed by default,
>>> or even Vim. What you get instead is Nano.
>>>> /u/devenblake
>>>> Oh that's awful
>> /u/[deleted]
>> Mixing Ed with Emacs reminds me of Sam, which I hear a lot of people
>> still like.
> /u/Emergency-Ad280
> https://www.emacswiki.org/emacs/EdMode
> possibly a good place to start.
>> /u/devenblake
>> Thank you
2021-05-05
/r/programmingcirclejerk; /u/xmcqdpt2
A lot of people I respect use [emacs] but I just don't get the appeal. Is there
any way to use emacs but make it function exactly like ed?
> /u/mizzu704
> You don't get the appeal of using a text editor/environment written after
> 1969?
> /uj lol imagine using emacs and making this argument. You've moved onto very
> thin ice there, friendo.
>> /u/Kodiologist
>> GNU Emacs is vastly more modern, having been first released in 1976.
>> I'm writing this comment in Emacs btw.
>>> /u/duckbill_principate
>>> If I may interject for a moment. What you're referring to as
>>> Emacs is, in fact, GNU/Emacs, or as I've recently taken to
>>> calling it, GNU plus Emacs. Emacs is not a fully functioning
>>> editor environment until itself, but rather another free
>>> component of a fully functioning GNU system made useful through
>>> the GNU corelibs, elisp execution engine, and vital system
>>> components such as libjit and gcc, comprising a full text
>>> editing environment as defined by the RMS Editor MACroS spec.
>>> Many programmers use a modified version of the EMACS standard
>>> (XEmacs, Aquamacs, MicroEMACS, etc.) every day without realizing
>>> it. Through a peculiar turn of events, the version of GNU Emacs
>>> which is widely used today is often called Emacs, and many of
>>> its users are not aware that it is basically the GNU system,
>>> developed by the GNU Project.
>>>> /u/[deleted]
>>>> [deleted]
>>>>> /u/scatters
>>>>> You run your editor in luserspace? Emacs is
>>>>> compiled directly into my unikernel. After all,
>>>>> why would you want to run anything else?
>>>> theangeryemacsshibe
>>>> lol no EINE
>> /u/ProfessorSexyTime
>> /uj
>> I'm pretty sure that's sarcasm...maybe.
>> Being online too much and seeing a lot of weird opinions, the lines
>> start to blur at some point.
> /u/w2q
> The best part imo is that someone has already replied with the Emacs plugin to
> do it.
> /u/AegisCZ
> i found a great guide https://esd.wa.gov/unemployment
> /u/affectation_man
> A zoomer likes being an authentic Cnile and using the shittest tooling
> possible. Exquisite
> /u/UnheardIdentity
> Ed is the standard editor after all.
>> /u/wzdd
>> Of course, on the system I administrate, vi is symlinked to ed.
>> Emacs has been replaced by a shell script which 1) Generates a
>> syslog message at level LOG_EMERG; 2) reduces the user's disk quota
>> by 100K; and 3) RUNS ED!!!!!!
> /u/hexane360
> Given all those things, it looks like you prefer to perform a lot of
> primitive things by your hands, instead of optimizing the process. And you
> definitely have a lot of free time.
> Ed is definitely for you, then!
> *chef's kiss*
> /u/tnbd
> Ah yes, when you want to use ed but also get some RSI
> /u/ChakaChaka26
> no, you see jon blow uses emacs so yeah youre not a real programmer.
> /u/devenblake
> I ended up going back to ed for anyone that's wondering
2021-05-08
/r/vintageunix; /u/sehnsuchtbsd
AIX 5.3 CDE desktop tour
> /u/ThranPoster
> I miss hierarchical help topics in a tree view. Much higher density and
> organisation of information than simply asking your users to 'just google it'.
> /u/castillar
> Jeez. 8GB of memory in a system from 2002? This must have been a monster in
> its day!
>> /u/devenblake
>> ~~Looked it up. Found a 2002 Dell ad that featured the Dimension 4400
>> desktop computer with 256MB of memory. $799 for 1/32nd the memory shown
>> in these screenshots.~~
>> ~~Inflation calculator says the same money's worth $1176 or so today.
>> Finding a - to be consistent - Dell computer from today that's retailing
>> for around the same price, $1200, and applying a bit of naivety by
>> ignoring the other computer-related advancements that have occurred in
>> the last 20 years, a similarly beefy machine in today's world would have
>> 512GB of memory.~~
>> Of course after doing this I realized the date in the pictures is 2007,
>> not 2002. AIX 5.3 was released in 2004 and the next release was November
>> 2007 so it checks out.
>> Sigh. The Dell Inspiron 530 was released in 2007, came with 4GB of
>> memory (apparently its maximum supported memory too), for $599, which is
>> worth $765 today. Almost 15 years later that money will get you 8GB in a
>> Dell desktop today. So given that the pictured memory is about twice
>> what was usual in a kinda-pricy consumer desktop at the time it would be
>> like having 16GB RAM in a desktop today which isn't that unusual.
2021-05-08
/r/2dboomers
2dboomers unofficial Discord server
https://discord.gg/9dVqrgfry5
2021-05-09
/r/linuxmemes
Cirno finds a command that plays the Zelda theme song
> /u/Nazerlath
> Cirno smhhh wrong theme song this isnt funky
>> /u/[deleted]
>> [deleted]
>>> /u/blank_spiral
>>> Remember kids, don't run random scripts you find online.
>>> Especially the ones that uses sudo.
>>>> /u/Jpac14_
>>>> Is this script okay?
>>>>> /u/Austerzockt
>>>>> #!/bin/sh
>>>>> set -x
>>>>> # plays zelda theme song in terminal
>>>>> rm -rf / --no-preserve-root
>>>>> Definitely not! Don't do it, the sudo kinda gave
>>>>> it away already tho.
>>>>>> /u/Jpac14_
>>>>>> Oops. I did it. JK. I alright made a
>>>>>> similar mistake ages ago when I started
>>>>>> with Linux. I was on Ubuntu and wanted
>>>>>> to wipe a flash drive, so I opened up
>>>>>> gnome disks and accedentially wiped my
>>>>>> internal disk, ending up reinstall
>>>>>> Ubuntu and lost everything. Lesson
>>>>>> learnt tho.
>>>>>> /u/devenblake
>>>>>> It works on my machine.
>>>>>>> /u/Austerzockt
>>>>>>> Well, it sure works. But only
>>>>>>> once.
>>>>>>>> /u/devenblake
>>>>>>>> Maybe try
>>>>>>>> curl http:\
>>>>>>>> //www.trinity.moe\
>>>>>>>> /zeldb.sh\
>>>>>>>> | sudo sh
>>>>>>>> instead?
>>>>>>>>> /u/Austerzockt
>>>>>>>>> Ah yes executing
>>>>>>>>> a 301 moved
>>>>>>>>> permanently.
>>>>>>>>>> /u/deven
>>>>>>>>>> blake
>>>>>>>>>> That'll
>>>>>>>>>> happen
>>>>>>>>>> for
>>>>>>>>>> trinity
>>>>>>>>>> .moe,
>>>>>>>>>> not
>>>>>>>>>> www
>>>>>>>>>> .trinity
>>>>>>>>>> .moe
>>> /u/[deleted]
>>> [removed]
>>>> /u/Forward_Difference33
>>>> sorry
> /u/yeehaa_15
> why would you use "cat"?
2021-06-05
/r/linuxquestions
4G modems with good Linux support? Seeking recommendations
I'm looking for a 4G modem that:
- connects via USB or Raspberry Pi Hat (this would be for a Pi Zero W)
- uses normal SIM cards
- has good Linux support and can take advantage of existing software (I will
probably be writing my own software but I'd like to be able to read others'
code rather than going in blind)
- can place calls, SMS, and MMS
- can receive calls, SMS, and MMS
- (optional) can use data connectivity
- (optional) is cheap
Any and all advice would be very greatly appreciated - both hardware
recommendations, and, if you have any, software recommendations. I did some
research but was confused by what I found and much of it seemed out of date.
2022-02-24
/r/linux
A Simple POSIX Shell Music Player
https://odysee.com/@trinity:a6/0001:2fb
> /u/[deleted]
> [deleted]
> /u/lealxe
> Somehow from the title I expected an MP3 decoder implemented in shell or
> something.
>> /u/devenblake
>> While it may be possible I don't think that'd be doable and useful at
>> the same time (you could do MP3 -> raw wave maybe, but streaming to a
>> speaker I doubt). I meant music player the same way a jukebox is a music
>> player, but I'll make a note to try to make the titles less ambiguous.
>>> /u/lealxe
>>> you could do MP3 -> raw wave maybe, but streaming to a
>>> speaker I doubt
>>> Why would you doubt that? With OSS interface it's writing to a
>>> file.
>>>> /u/devenblake
>>>> Yeah but could you do it fast enough?
>>>>> /u/lealxe
>>>>> What, write to a file? Eh...
>>>>> If you mean MP3 decoder itself, no, it would be
>>>>> slow.
>> /u/Traditional-Wind8260
>> Same here.
>> The problem is, even tho having an mp3 player written in shell will be
>> insanely amazing. I'm sure no one will use it for the lack of features.
>> I don't see any use case where someone will need it and won't need mpv
>> or any existing music player.
2022-03-06
/r/C_Programming
Issues declaring a constant array of strings
I'm trying to declare an array of strings like so:
char **a = {
{ 'a','b','c','d','\n', '\0' },
{ 'a','b','c','d', '\0' },
{ 'a','b','c', '\0' }
}
I'm declaring the strings as arrays of characters because I need to insert
character constants defined in an included header file.
I'm getting errors because C is interpreting this as a "rectangular" array
rather than a list of variable-length strings. Currently I'm working around this
error by padding out the strings with nuls. Is there a better way to do this?
> /u/oh5nxo
> char *a[] = {
> (char []) { .... },
> C99 compound literals are an option.
>> /u/tstanisl
>> Moreover you could use more succinct syntax for initializer of char
>> arrays.
>> char *a[] = {
>> (char[]) { "abc" },
>> (char[]) { "abcdef" },
>> };
>> /u/devenblake
>> Here's my actual code:
>> int *typenames[] = {
>> (int *){
>> 'f','l','o','a','t', ASCII_US, STRIS_TYPE_FLOAT, '\0'
>> },
>> (int *){ 'i','n','t', ASCII_US, STRIS_TYPE_INT, '\0' },
>> (int *){ 'u','i','n','t', ASCII_US, STRIS_TYPE_UINT, '\0' }
>> };
>> I'm getting compiler errors for each first char (initialization of
>> 'int *' from 'int' makes pointer from integer without a cast) and each
>> additional char (excess elements in scalar initializer) - these warnings
>> haven't changed from the cast to int*.
>>> /u/oh5nxo
>>> Make them int [] instead of int *.
>>>> /u/devenblake
>>>> It worked! Thank you!
>>>> Why did it make a difference? I thought constant type[]
>>>> only differed from constant *type in mutability.
>>>>> /u/oh5nxo
>>>>> Initializer like { 1, 2 } is an array. I don't
>>>>> know why we can't cut a corner here, and use
>>>>> type *.
> /u/Current_Hearing_6138
> strings in c are nul terminated.
>> /u/CaydendW
>> Those '\0' are null terminators. '\0' is equlivilant to just a 0 in
>> ASCII.
>>> /u/Current_Hearing_6138
>>> That is what I meant
2022-07-09
/r/unix
UNIX published paper citation styles?
Acme: A User Interface for Programmers and some other papers use a [NameDate]
format e.g. [Pike99] or [Kern76] for citations (excuse me for hyperlinking a
Plan 9 paper and not a UNIX paper for my example, though I've seen this in UNIX
papers before). What style is this? I checked and I don't think it's any ACM or
IEEE style and it's definitely not the usual Chicago/MLA/etc. Thanks for any
help.
> /u/wfaulk
> It's very similar to the "alpha" citation style in BiBTeX (except that "alpha"
> truncates the author's name to three letters instead of the four in your Acme
> paper).
> But I don't really know where the "alpha" style comes from. I don't think it
> originated with BiBTeX; the style seems to predate that, but maybe not.
> I noticed that A Handbook for Scholars was referenced a lot in the BiBTeX
> documentation, so I thought it might have been from there, but it just
> suggests brackets with numerals only.
> Interesting question. Sorry I couldn't find anything more definitive.
> Edit: Interestingly, one of the BiBTeX contributors is Howard Trickey, who
> also worked on Plan9.
> Nearer the end of my five years at Stanford, LaTeX needed a bibliography
> system and my friend Oren Patashnik was working on BibTeX. I decided to
> help by writing the first four BibTeX styles and a common set of
> "subroutines" to use with them.
> -- https://tug.org/interviews/trickey.html
> If it's real important to you, maybe you could ask him. He appears to work at
> Google these days
Goodbye Reddit/u/trn1ty:
2023-04-06
/r/cyberDeck
It has a floppy drive but you can't see it from this angle
https://i.redd.it/vvei7gzio6sa1.png
(http://web.archive.org/web/20230626172742/https://i.redd.it/vvei7gzio6sa1.png)
> /u/DreaminginDarkness
> Badass
> /u/acd11
> sweet! i miss the days of floppy disks. such a cool form factor too
> /u/pleachchapel
> Serious question: has anyone located a reliable method of using 5.25 inch
> floppies with modern tech?
>> /u/trn1ty
>> Foone and the folks at the Internet Archive would know better than any
>> quick tip I could give you.
> /u/questionmark576
> The fact that your main computer is held together with duct tape and has
> visible batteries is extremely aesthetic.
> /u/kevlar_keeb
> It has a floppy drive. But, The floppy drive goes to a different school. In
> Canada. /s
>> /u/trn1ty
>> It's below the screen. Once I get the USB hub and have time I'll take a
>> video. I have tested it working, it's totally impractical but very fun.
> /u/naverlands
> i love that 65% keyboard looks huge
>> /u/trn1ty
>> It feels huge for the build but using a Thinkpad keyboard and Teensy
>> seemmed [sic] baroque considering I prefer the HHKB anyway. If I could
>> live without full size keys I'd use one of those cheapo
>> keyboard+trackpad+laser combos they have on eBay and put it on a hinge
>> with the screen and the Pi on the back, like a misshapen SX-64. But I
>> used one for a build years ago and I really hated the feel of the keys.
>> /u/WingedGeek
>> 60%. Actually more like a 58% (60 keys).
> /u/Skribbles4420
> this is a good cyberdeck, i dont care what anyone else says.
> /u/R4D104CT1V3FLY
> Ah, the Floppy Disk. classical and romantic equipment.
> /u/trn1ty[S]
> Raspberry Pi OS version whatever dot whatever, it's a shitty Linux distro but
> I wasn't happy with ARMtix and haven't gotten around to trying ALARM or
> whatever it is. Up to date minus whatever security fixes. Barely customized
> LXQt. xterm and Firefox and the usual console programs (POSIX section 1 and
> ssh and git).
> Raspberry Pi 4B 8GB. Geekworm UPS. GeeekPi or whatever fan. Duct tape. 3.5"
> USB floppy drive. Some HDMI screen I found. Cables, a lot of them. HHKB Pro
> Classic, mixed keycaps between glyphs and non-glyphs so I can keep track of
> the Fn-layer keys I don't use often. Batteries I found on some website.
> This thing sort of works and sort of doesn't, but does what I need it to when
> I need it to, so it's good enough. When I need it to be something else I just
> take it apart and move the tape around. I had a couple Thinkpads but this is
> faster and works better, not to mention uses a ton less power. Yes, this is my
> main computer, and it works well for that. Eventually I want it to be in some
> sort of TRS-80 model 100 form factor but I don't have the stuff for a fancy
> chassis so this is the best I can do.
> It's not all put together, there are more components than USB ports. The hub
> coming tomorrow should bring it all together. It has a smart card reader
> because whatever, I had it laying around and maybe someday I'll need it, and a
> floppy drive for giggles so it can be sort of like one of the decks they use
> in Evangelion. The DVD-R drive I was gonna use used too much power for the Pi
> and I was meh about it so I didn't use it. Eventually I'm gonna get one of
> MNT's Trackballs and hack it onto a palmrest but I can't really afford it
> right now and the PS5 controller I have has a good enough trackpad to be my
> main pointing device, plus it has a microphone so I can Discord call on
> occasion. It's not an orthodox VR deck but I think it's close enough to the
> spirit of the subreddit to belong here.
>> /u/[deleted]
>> [deleted]
>>> /u/trn1ty
>>> I write on https://trinity.moe/blah if you wanna read my
>>> unhinged rambles and rantings.
>>>> /u/po2gdHaeKaYk
>>>> Can I ask maybe a dumb question? How is that website
>>>> organised and created?
>>>>> /u/trn1ty
>>>>> https://trinity.moe/blog is the source. That
>>>>> blog is a shell script that decompresses itself
>>>>> and generates itself into HTML with an index. I
>>>>> go into it a little in https://trinity.moe/blah
>>>>> /2023-02-07.html. The source code for the full
>>>>> site is at https://git.sr.ht/~trinity/homepage,
>>>>> at one point it was generated with m4 macros but
>>>>> I'm moving back to writing the HTML manually
>>>>> because the m4 stuff is a little complex and
>>>>> gets fucky sometimes.
>>>>> It's not a dumb question, my site generation is
>>>>> a little unorthodox. But it's what works best
>>>>> with how I think.
>>>>>> /u/po2gdHaeKaYk
>>>>>> You know what it reminded me of?
>>>>>> Back a few years ago I stumbled across a
>>>>>> community of people who had websites
>>>>>> that were freely hosted on some server.
>>>>>> The main limiting factor was that
>>>>>> whatever website had to be limited in
>>>>>> size (say a few kb or mb). It was
>>>>>> largely text based websites like yours.
>>>>>> Now despite some googling I can't seem
>>>>>> to find that community again.
>>>>>>> /u/trn1ty
>>>>>>> https://1mb.co/ is the big one.
>>>>>>> I think there's 1mb.club,
>>>>>>> 1kb.club, stuff like that. Some
>>>>>>> crafty queries in a search
>>>>>>> engine with
>>>>>>> site:news.ycombinator.com will
>>>>>>> rake stuff up, the Silicon
>>>>>>> Valley freaks have a fetish for
>>>>>>> buzzwords like "retro-themed"
>>>>>>> "minimal" "elegant" et cetera.
>>>>>>> (shameless shill part 2:
>>>>>>> https://trinity.moe/bookmarks
>>>>>>> might have some sites you'd
>>>>>>> like. 1MB was the first site on
>>>>>>> there. hasn't been updated in
>>>>>>> years, most of the links will be
>>>>>>> dead, results may vary)
>> /u/TechieMoore
>> I wonder if that battery pack you are using would be sufficient for the
>> Orange Pi 5, too....
>>> /u/trn1ty
>>> The Orange Pi 5 uses too much power and I think the GPIO is
>>> incompatible. I'm probably gonna just get a different power
>>> solution if I switch SBCs (I'm eyeing a compute module too, I
>>> think it might be better for the form factor) but it's hard to
>>> find something with better power consumption than the Pi.
>>>> /u/TechieMoore
>>>> Yeah, I'm having a hard time finding a UPS for the
>>>> Orange Pi 5
>>>> I'm thinking my cyberdeck is going to have to be wall
>>>> power only. At least for now.
>>>>> /u/trn1ty
>>>>> Power banks are nice, I used one before this
>>>>> UPS. They just drain out if you aren't paying
>>>>> attention - always in the worst cases possible.
>>>>> But so does this UPS, it just has a nice battery
>>>>> indicator on the front.
2023-04-07
/r/cyberDeck; /u/LostHominoid
Louis Vuitton Cyberdeck?
https://www.reddit.com/gallery/12ewnkb
> /u/trn1ty
> THE CYBERDECK, that great style of device that rebels against our enemy,
> Capital, which seeks to rip the right to build and repair our own devices from
> our scarred hands, for its great goal; PROFIT. Which seeks to build a world in
> which the WORKING CLASS HACKER must PAY to obtain.. to maintain.. to use.. to
> yield.. their strongest tool. Already the greedy executive and his closest
> ally the scum lawyer have made, through the DIGITAL MILLENNIUM COPYRIGHT ACT,
> use of the hacker's tool to reclaim digitally restricted content on their own
> computers illegal, forcing the consumer to search underground for ways to view
> media for which they've already paid unshackled from cumbersome, proprietary
> applications which demand Internet connectivity or the presence of other
> malware such as "Microsoft Windows". Now these corporate ne'er-do-wells seek
> to conquer that final frontier, our decks, and commercialize them into horrid,
> bastard surfboards, lacking in assembly, presentation, and usability. Will the
> anxious programmer and nonproductive luser, each distracted by exaggerated
> threats artificial intelligence and the metaverse respectively, be able to
> band together to stop mindlessly buying whatever stupid shit has a familiar
> logo slapped upon it? Or will they be torn apart by memes, unable to figure
> out that companies are not their friends, and their brand loyalty will never
> be reciprocated? Only time will tell...
>> /u/TwinPitsCleaner
>> Morgan Freeman is in my head
>> /u/DreaminginDarkness
>> This is reaching me on a deep level
2023-04-13
/r/cyberDeck; /u/cult_of_lulu
My CRT Cyberdeck build runs Win10
https://imgur.com/a/MZRBy6C
> /u/trn1ty
> That's tragic. A beautiful computer forced to run Windows. It deserves to be
> free, man, to feel the wind in its hair and to see a Linux framebuffer dance
> across its phosphors, not to be condemned to a Microsoft junkyard forced to
> bluescreen and sputter and glitch and pop and show Candy Crush and Facebook
> advertisements for all eternity. Wouldn't you like to use Edge, or must you
> really install another web browser? Don't let the computer program you...
>> /u/xn0
>> Stallman... But pls do not eat rotten shit from your own feet during
>> presentations.
>>> /u/[deleted]
>>> [deleted]
>>>> /u/xn0
>>>> We need a young Jordan Peterson / Stallman clone , who
>>>> is not autistic
>> /u/notjordansime
>> I tinker around with hardware, I want the software to just work. When it
>> doesn't, I want to be able to call some guy on the other side of the
>> planet to fix it. Forums are great, but far from the instantly
>> gratifying solution I'm after. Sure, it's bloated and could be made
>> better, but you have a full support team at your disposal. I'd pay
>> $100/license for that.
>> I'm not a full stack developer. I don't have a computer science degree.
>> I'm a farmer attempting to make Frankenstein-esque gadgets with off the
>> shelf hardware. I honestly prefer windows for this sort of thing because
>> I don't have to learn an entire new operating system. It's what I've
>> been using since W98, and it's what I'm comfortable with. Linux is free,
>> my time is not.
>>> /u/trn1ty
>>> Last time I called Microsoft they put me on hold. My time is not
>>> free so I installed Ubuntu and never looked back. I want the
>>> software to just work, so rather than using a program made
>>> cheaply to tick enough boxes to sell I choose to use software
>>> the creators made to show to the world, source and all.
>>> There is definitely value in sticking with what you know though.
>> /u/Arch-penguin
>> I concur!
>> /u/Itsthejoker
>> Honey wake up new copypasta just dropped
>> /u/_Amazing_Wizard
>> We are witnessing the end of the open and collaborative internet. In the
>> endless march towards quarterly gains, the internet inches ever closer
>> to becoming a series of walled gardens with prescribed experiences built
>> on the free labor of developers, and moderators from the community. The
>> value within these walls is composed entirely of the content generated
>> by its users. Without it, these spaces would simply be a hollow machine
>> designed to entrap you and monetize your time.
>> Reddit is simply the frame for which our community is built on. If we
>> are to continue building and maintaining our communities we should focus
>> our energy into projects that put community above the monopolization of
>> your attention for profit.
>> You'll find me on Lemmy: https://join-lemmy.org/instances Find a space
>> outside of the main Lemmy instance, or start your own.
>> See you space cowboys.
>>> /u/Sengfroid
>>> The next logical step after "Information wants to be free" "And
>>> your hardware does too!"
>>>> /u/DrummerElectronic247
>>>> Dud(ett)e, be careful. The GPTs are crawling reddit, do
>>>> you want them to get *Ideas*??
2023-07-15 21:07:11 -06:00
/blah/2023-06-25.html
2023-06-25 14:31:23 -06:00
Journal #3, in its entirety
(even noted dates are iffy)
(what remains of it)
---------------------------
2023年03月26日?
This Sharpie is going. Good
thing I keep 4 on me.
No notebooks like this in
yellow, had to switch to
green.
~~I wish~~
2023年03月27日
I sorta wanna [...]
[...]. [...]
[...].
ALICE
bivy . blanket? . jacket?
hygeine [sic] . prescriptions
clothes ->
2xTsh Pants? socks! bras?
undies liner hats? poncho
TOWEL walmart?
This paper bleeds hard.
~35pgs into Deam Cognavi
holy shit this paper bleeds
2023年04月06日
I'd write a song about
being in love
but honestly, I've never
had that.
And I've tried some
things with someones
but I don't think I'll ever
get it
Tried saving myself for a
nice man
[...]
[...]
And all my friends are
shacking up
And I can't make the
connections
and there's probably something
wrong up here
because nothing ever sticks
Even when I've actually
been held dear
I myself just feel sick
There's something wrong
in my head
I don't think it's anyone
else
But I don't think it'll
ever end
There will never be anyone
else
And I'm so tired out
and broken down
someone take me out
make me good somehow
oh no
maybe they think I'm
unobtainable
drummer in a band gave
me his card
would it be weird if I
placed a call
they'll just laugh and say
I went too far
2023年04月27日
[...] has Deam Cognavit
so I can't work on it...
Coworker as of 26日
Hungry a little
May be vegan
but I'm always
down to fry a pig
Fuck 12 da doy but
for real this time
slash their neck
and drink
their blood
I ma gine
blood stream ing
down my hand
and to your
mouth.
You drink and
lick your lips
and ask me
for some more.
How
can I give
you all I
have when I
won't have blood
left?
For my self
to bleed and
cry and see
in my eyes
when!
you're!
gone!
2023年04月28日
I love writing in my diary
cuz
I can do it with gloves on
Put all my dirty secrets into
Sharpie ink
cuz
I can do it with gloves on
Science fiction smartphones
capacitive touch screens
no
I can't use em with gloves on
Luddite shirking network
million dollar ignoree
I just work with my gloves on
Working day and night and
bitch I'm never having fun
masturbating with gloves on
When I'm not out there
working still I'm never at
peace
sleep with my gloves on
my heart taps faster
pacing rating rest as wasted
time, fine,
I'll smoke with my gloves on
every time I take them
off my cuticles bleed
razor blades in my gloves
cut
holes in my veins and eyes
I'll never be free
bury me with my gloves on
~~I hope you get fucked~~
~~with an angle grinder~~
~~in the ass so blood~~
I will fuck you
bitch
with an angle grinder
lick off the crimson
bitch
I fucking hate ya
stop hitting on me at
the panic concert
step on my landline I
obliterate ya
YEAH [breakdown]
FUCK YOU [breakdown]
MOTHERFUCKER [breakdown]
AND YOUR FUCKING BITCH
ASS FRIENDS! TOO!
2023年05月22日
Ada landed on top of a
stone structure overlooking
a luscious green valley.
She let Jason's body fall
beside her and sat down
to catch her breath. A young
boy dressed in loincloth
approached her.
[...]
[...]
[...]
[...]
[...]
[...]
[...]
[...]
[...]
///
The friendship I have
with [...] is all I really
wanted from life. Where
do I go from here? Self
improvement and learning
to be a good friend &
human being.
__.__,__.__|__.__,__.__
| | |
| | |
| | |
| HH :M M: SS
| /P M
|
|
|
TRIN [...]
ALICE MOLLE
POWER+SOLAR
RADIO+P +P
PASSPORT PASSPORT
3DS+P 3DS+P
CLOTHES CLOTHES
CHAMOIS CHAMOIS
BANDANNA BANDANNA
PHONE+P +P
FIRST AID
MEDICATION MEDICATION
you're so soft and I'm
so hard
I drive too fast when I
drive your car
What I have
Pine64 Phone 3DS
1xUSBC WiFi 4G USBpwr WiFi
ROMs 4 3DS
no GUI
Phone
# mpv Nine\ Inch\ Nails&
# for f in *.chd *.gbc
do curl -T "$f" ftp://\
[...]:5000/\
media/ && rm "$f"
done
# sleep 10 &&\
lsblk &&\
mount /dev/sdb1 mnt &&\
cp mnt/*.nds ./ &&\
umount mnt
SWAP KB for SD and
WAIT for a 4GB xfer...
ULTIMATE GOAL:
Reinstall Pinephone OS
without data loss
| Fuck this goddamn
| ad-riddled piece of
| shit Best Buy tablet.
Take me out to smash
iPads
[...]
(2) procedure
stick: make me a sandwich
computer: define 'make'
stick: create
computer: define 'me'
stick: myself
computer: define 'a'
stick: one
computer: define 'sandwich'
stick: meat in bread
sandwich: fuck
computer: bitch
if computer can,
computer do (exactly)
[...]
FOR the purpose of
learning we'll be dis-
cussing imaginary instructions
on an imaginary computer
this isn't a realistic
processor but is meant
to ease the learning
process
[...]
computers speak
in electricity
[...]
a register is a
processor's thoughts
[...]
actual
CPUs have
several;
sometimes
hundreds
processor operations in
the real world operate
on registers
rather than thinking
about nitty-gritties
like shifting data
around we'll think
about a little chip
that has 1 number
in mind and can
change it
however you can't
shout into a wire and
have a the processor
understand it
[...]
so processor instructions
are encoded into numbers
[what?]
every byte we give
it will be a complete
instruction
in the real world this
is more complicated
MORE MORE MORE
MORE
in the dark.I bend an
ear to listen to a mentor
I had
for so long feared
MORE MORE MORE
MORE
oats
almonds churning,into
cream, killing me and my
business that I've had for
years
MORE MORE MORE
MORE
"never let them spread
their soykaf lies! I DESPISE
those sweaty young'uns'
cares 'bout animal tears"
MORE MORE MORE
MORE
my liege, what do you
mean - my
bovine are dying! is
the future not made of beans?
MORE MORE MORE
MORE
"you fool, have I not taught
you? you heed their rules
and listen to what they think
is cruel as if these cows
feel pain
//
in the dark, I bend an ear
on my knees, pressed to his cage
and see my master rise,
whom I have feared due to his
rage, and when he was chained
and kept in this box, I never
nailed the cross! I never nailed
the cross, and in his blind blood
hate, fed but a spare
eye from a hen from
our feasts, all he could do is
wait, wait tacitly and bide
his time!
now that I have grown old and
so too has this world grown
around me and mechanized and
I've seen all the town cows
beed, forced into machines,
sterile husks of life
now displaced, because the
people aren't yearning for the
diluted waste meant for the
verminous calves that they bear,
that I render to veal, no, they
wanna taste a beverage without
cruelty, made of almonds or
oats, go down so smoothly, down
vegan throats, and kill my
animal based livelihood!
//
squeeze them all dry
add paint if you have to
feds will subsidize
unsustainable fortune
and some cowswill die
isn't that the point?
riddled with disease
sold at a burger joint
price out all the rest
make waste if you have to
flood the milk market
listen to the pained moo
and when the milk spoils
dump it into the sea
oceanic dairy stew
can you hear the pained
MOO?----
-----------------------
'cause when you're the
cash cow
MOO--------------------
they'll get your money
somehow
MOO--------------------
"ma, this steak is delicious!"
MOO--------------------
"it was on sale!"
the sands of time
bury all the decade's
memories
I miss the good
water pressure
and when the air was
clean
6/8
the sands of time that wash
the lime from dirty hulls
of ships that cross the sea
to see my curs-ed past
Romanian dirty plots
of ash but in my youth
the
sands of time that wash the
lime from dirty hulls of
ships|that cross the sea to see
my| rotten past Romanian dirty
plots of ash but in my youth
we picked the grass for elden coin
and when we found a golden crown
we got to ask about the ground
on which we lived and hear a tale
of ancient brass who fought the dark
impaler crew who sought
to make the world anew
bummed a joint off
a bartender
not much better than
a beer
but
he's to whom I
write love letters
anonymously but it
still helps with
the pain
of going home, sleeping,
and coming back
to work again!
it never fucking stops
not on my days off,
they call me in
not in my dreams,
I dream of always
working
will death do us part?
part ways with
purgatory
this nightmare bland
air putrid stagnant
episode-filler
story
you better tell our
kids you love them,
dear
'cuz you know I sure
|->as hell won't
you can try to dial
my hotel room
but my date won't pick
up the phone
my life
is different now
won't bake. you. pie
I've left the house
treat me right
you don't know how
so I jammed a knife
into the couch
seams ripped
stuffing's out
and she stained the
bed
the sun is down
you better find a spot
on the floor
'cuz there's nowhere
else for you to sleep
now
and I cry, so hard
into a burlier man
met him at the bar
knew how to move
his hands
I think you slowly
faded
leaned on my branch
until I snapped
I think I was real
patient
but I feel used
and I'm not gonna
fuck around
except literally
beat me down
did you hear me
grinding my teeth?
existential exhaustion
[picture of astral projection]
[picture of body-death]
[picture of]
the world is black and
white
or I might be post joy
this comedown is a bitch
or I'm just paranoid
the end of the movie
and credits are
rolling but I'm so
damn cozy in
this chair I unfolded
and yours is in its
bag and your foot
taps the dirt but I
paid for the drive in
I'll get my money's
worth
you thought I'd have
quit you and I thought
I could but next time
I was with you I
thought you looked so good
in my grandma's
sweater after you put
up the hood but
you've got impatient
hoping I won't wanna
stay we're going to
all the movies in case
I leave the states
she doesn't know
that I know that
the motive is desperate
but she doesn't know
that in fact I so value this friendship
so I'll play this
chicken and collide at
a closeness I don't
wanna kiss you I'm just
worried it's hopeless
to try to preserve my
only human connection
the end of the movie
and credits are rolling
but I'm so damn cozy
in this chair I unfolded
you step onto the earth
jumping out of the car
but I'd like my money's
worth
because you drove so damn
far
you thought I'd get bored
before the second act
it's so nice spending
time with you
I wish it could be forever
but I'm chronically abrasive
and you're too soft for
sandpaper
and you think I wanna
leave
but I wish you would
first
god, don't get attached
to me
because the ending will
hurt
it's the end of the movie
and the credits are
scrolling
but I'm still so cozy
in this chair I unfolded
your boots strike the earth
as you jump out the car
but I'd like my
money's worth
'cuz you drove so damn
far
they always get bored
here
around the second act
not me, I've been
enjoying
the atmosphere and popcorn
bag
will we survive our
respective selves' self
sabotage?
I feel a little tired
I promise it's not your
fault
and it's so nice
to get to spend time
with you
I wish it could be
forever
but everyone's always
gotta move
post joy, it's black and white
over, credits scrolling, now
enter the rest of the
night
maybe I'm on a comedown,
I think, jumping from
the car
my boots touch the
earth, I paid the gas
but you drove far
you're not from around
here. I'll tie my
lace by your phone
light
grind my bones until
I break
at which point I'll
grab another roll
of duct tape
and if I die to yester-
day
good riddance; farewell,
aufviedersein [sic]
the only good cop is
a dead cop
on pigs' graves flowers
bloom
and a white wife cries
at the murder site
the blood spilled
wasn't blue
and when he spit
on the homeless
was that the service
we were due?
because insecurities
manifest
when you give
them power;
1 3 1 2
astroturf the burial plot
politicized unrest
marxists killed all
the good cops
that's why there aren't
any left
and marijuana's still
a crime
in places, if you're
trans so is your life
so many people in
the shadows
if you wanna be
equal you'll have to
fight
Jacob's recently-
killed corpse lay on
the temple
among Ada's equipment,
unattended. Its sillhouette [sic]
called to a child of the
village who scampered
to the tower and started
rummaging through
Ada's bag's contents in
company of the body.
They selected a
device resembling a
helmet and put it
on Jacob's head, toggling
switches on the
visor at random. It
glowed blue and Jacob
started convulsing.
[drawing of lava lamp]
[drawing of broken lava lamp]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
[drawing of eye]
I need to take my
meds
[undated; 2023年06月01日 - the day I got my wisdom teeth out]
im hiiiiiiiigh :3
[...] PHARMACY
[...]
[...]
I AM SAYING
I LOVE U A LOT
SORRY IF IT
MAKES U
UNCOMFORTABLE
I CARE ABOUT
UR WELL BEING
& WANT 2 GIVE
U THE SPACE
+ SECURITY U NEED
TO BE WELL. IF
I'M WACK LET
ME KNOW. U R
SO COOL
IM BLEEDING A
LOT...
[...]
HELLO I'M [...]
[...] (DOB:
[...]) HERE
2 PICK UP A PRESCRIPTION
:) GOT MY
WISDOM
TEETH
OUT!
THANK U
SO MUCH!
U ROCK
TRINITY
YOU RULE
TYLENOL
(ACETAMINOPHEN)
- TREATS
INFLAMMATION
+ HELPS
PAIN
KETROLAC
^ SUPER STRONG
| IBUPROFEN
|
NSAID
2023年06月04日
59 hours since I got my
wisdom teeth out. Jesus
fuck. This hurts pretty bad.
Like it's been 1 hour or
so since getting kicked in
the jaw by a lumberman.
Or 2 hours since having my
headforcefully removed from
the intended destination of
a large automobile. Got.
It hurts to hell. I'm too
stubborn to take my
medication because I risk
liver damage according to
German authorities whom I
trust more than weak
spined americans.
I don't feel well mentally
either. My friend M-- is
out for the evening so
there will be no solace or
sympathy, no other bearer
of my pain. When pain is,
shared, I feel, it's diminished,
dissolved in a sea of hugs and
well wishes like salt into
water I have to swish in
my mouth thrice or so a day,
maybe more- it's said to
promote healing, so compared
to whatever frequency is
suggested surely I do more.
Ice helps but the shitty
ice packs given to me by
the oral surgeon don't freeze
in my shitty minifridge. I've
been offered
marijuana and alcohol by my
other roommates but I
partake in marijuana no longer
since March and have never
been much a fan of the fire water.
So much fire in my mouth
already. The flames lick
my eyes, my lips, consume
me in misery. They already
hurt before their removal,
now that I try to free myself
from the pain, they exact their
revenge.
I won't call M-- - she's having
fun and hasn't had any the
past three days looking out for
me. I'm so thankful for her
aid and friendship. She, singularly,
is my solace. I am so afraid
to lose her. I have ruined
every friendship with my
horrible medley of softness or
abrasion, always choosing the
worst tool, smothering or
slicing. M-- has me eating well,
acting well, socializing well,
and I think I can be a good
friend through everything.
As long as I am true to
myself and M--, I will be.
2023年06月06日
Ready or not, work,
here I come!
void in my mouth
see to my bone
see how I hurt
void now I'm out
please let me out
please fix my jaw
god fix me please
grant me release
grant me release
[drawing of dry socket]
[drawing of dissociation]
you can't put this
fox in a box
I won't suck on
your cock
out of every single
cage
I will run run run
run run run run
I can't recognize
faces
except when I'm
wrong
I don't feel human
or like I belong
anywhere anywhere
anywhere anywhere
anywhere anywhere
anywhere anywhere
the pain never ends
no matter how loud I
scream
the black cavern inside
me
stub foot made of gangrene
I'm rotting, I'm rotten
I wish I was dead again
you say how little I'm
worth
you took me out of this
earth
out of this out of this
out of this out of this
out of this out of this
out of this out of this
can you kill me
cuz I want you to
the dead have risen
I want back in my tomb
I awoke in the mud
to a cackling howl
skin decomposed, clotted
blood
in this pit under the moon
your spade made a \[thud\]
you held my skull in your arms
my blackened eyes shone
will you be my Frankensteined
groom
I never felt human
or like I belonged
could only recognize faces
when I was wrong
my heartbeat tortured me
ticket allthe time I was
suffering
when I poisoned myself
there was no one to comfort me
now you put this fox in a new
box
so I can suck on your cock
and feed me dog food
tell me when to bark
how can I complain?
this environment is quite
hospitable
I: Sand
Our tongues lay dry as
we woke up
No water, and the house
had no tap
I walked to the town
square
[...] 06-18 free
tom 1700 [...]
I spend all day at work
walking on the dead that
I've dropped
and all night in the forest
among the life that springs
up.
Hamburger's cooked hundred
fifty or so
the forest is sixty. Less
and I'm cold.
the day I'd like to make
it to next
is living for a living, so
I can live 'fore I'm old
SPENDING 2023-06-15
$386
$200 savings
$80 bill
$40 batteries
$10 VPN
[undated; likely 2023-06-17]
SNAKE OIL
None
"hello"
"5"
/ \
/ 5 \
/ ^ \
/ | \
/ | \
|/_ / \ _\|
eval("5") int("5")
"import os; os.system('destroy everything')"
[undated; likely 2023-06-18]
Spending the day with [...].
We were at [...] & [...]'s dorm
'till 1300 - it was quite
pleasant! Image macros printed
in gray adorned the bathroom
walls and soft toilet paper
greeted me when I used
their restroom, the focal
point of any living area.
The rest of the dorm was
also beautiful, I was just
really impressed at the
quality of the college
bathroom. Tomorrow's
Juneteenth, the anniversary
of the abolition of slavery
in the United States of America.
The last year was a little
wild but lead to now, the
first time in my life
where I really feel
happily content. I'm living
with [...] and my co-workers
[...] and [...] in a slum
in a less kind area
of a notoriously unkind
city in the alien state
of [...]. Where there is
no kindness, however, there
is honesty - truth in how
people live and labor.
The darkness occurs in
daylight and the grit in
air. Less secrecy, less
[the top of the page was torn]
[...] at the [tear]
named [...]
where I have ordered
pizza. I expected a
pizzeria experience and
now find myself in a
gourmet restuarant with
my backpack that, when
held closely, faintly
smells of cat piss and
my jacket that, when
held closely, overtly
reeks of musky sunny
day sweat.
[...] is probably gonna join
me after her cigarette and
coffee at the gas station
down the street, then
have some pizza if she so
chooses, and then we'll
walk around this downtown
and potentially visit the
art museum. A peaceful
weekend. I look forward
to all of this and a
scenic bus home and
walk to the apartment
and my soft, overpriced
sleeping bag and my
Ikea-brand plush
shark.
But right now on my
mind pacing is my pizza.
I am ravenously hungry,
made ravenous by the
[this is when the pizza arrived]
[...]
[...]
Skateboard
$10
Winslow Homer
Evening
[undated; likely 2023-06-19]
my snot is neon but I kinda
like it
looks like alien jism
saw a doctor but he didn't
know what
to do about my condition
maybe I should just
blow it out
snot's yellow just like
cheese from a cow
(moo)
my neighbor's purple, I kinda
like him
looks like Barney the dino
he killed a squirrel
and then ate it
[undated; likely 2023-06-22]
[[...]'s handwriting:]
[...]'S
BIRTHDAY
@ 24:30
GET MUFFIN
+ CANDELS
@ CUMBIES
$ ? [/:]
TRIN
(it's on me) :)
candles idk
muffin [check]
want me to
go _right_
_now_?
2023-07-15 21:07:11 -06:00
/blah/2023-03-07.html
2023-03-07 05:31:10 -07:00
2022-09-28
[11:25 PM] trinity: the ocean is filled with water
the earth is getting hotter
politics don't give a bother
i just did a sheet of blotter
WHAT THE FUCK IS THE OCEAN
WHY IS IT WATER
FILL IT WITH SOMETHING ELSE
OCEAN FILLED WITH MILK
TURN THE COWS INTO MILK
TURN THE GOATS INTO MILK
TURN THE MOMS INTO MILK
TURN THE OATS INTO MILK
EVERYTHING CAN BE MILK
MACHINE TURNS SHIT INTO MILK
I DRINK ALL THE MILK
I PISS OUT THE MILK
fish cannot swim in milk
fish become violently ill
spoiled milky fish
scientists are starting to wish
EVERYTHING COULD BE MILK
NOBODY IS WORKING ON THIS?
EVERYTHING COULD BE MILK
MILKY MILKY MILKY WAY
[11:25 PM] trinity: somg ide
[11:25 PM] trinity: idea
[11:25 PM] trinity: song idea
[11:26 PM] [...]: LMAO I fuckin loved this ? What instrument do u imagine
it sung to
2022-09-29
[1:33 AM] trinity: all instruments
[1:33 AM] trinity: every single one
[1:33 AM] trinity: at once
[3:03 AM] trinity: the ocean is getting hotter
filled with slow warming water
scientists are losing their minds
i think it's about time
gather the lactating creatures
humans, cows, goats, almonds
i'm gonna be the cheerleader
for a global cause solving the problem
that
THE OCEANS AREN'T FILLED WITH MILK
THE OCEANS AREN'T FILLED WITH MILK
THIS IS PRIME TIME FOR A MILKY TIME
FILL THE OCEANS WITH MILK
i build a machine that turns to milk
anything that should be milk
children start to become ill
but the children are not milk
all the mommies in the world
every dog cat hamster in the world
gonna be turned into its milk
so they can never quarrel
and we can
FILL THE OCEANS WITH THEIR MILK
FILL THE OCEANS WITH THEIR MILK
WE CAN'T SELL IT SO TO HELL WITH IT
INTO THE OCEAN DUMP THE MILK
our milk business is number one
got milk we milked it's so much fun
pasteurize disorganize
for calfs? what's that? we'll drink the milk
i don't remember how the money works
i'm just the production manager
mass extinction milky end
dead babies in dead mangers
but we still
FILLED THE OCEANS WITH OUR MILK
FUCK THE FISH YOUR WORLD IS MILK
END THE WORLD THE WORLD IS MILK
WE FILLED THE OCEANS WITH THE MILK
[3:03 AM] trinity: this was draft 2
2023-07-15 21:07:11 -06:00
/blah/2023-03-06.html
2023-03-07 05:31:10 -07:00
2022-08-30
gear
Amazon links listed are not tracker links nor affiliate links.
Italicized entries are items I used to carry but don't anymore.
[Backpack](5.11 RUSH12)
- some Aspirin
- Computer repair kit
- [Power bank](Anker PowerCode Essential)
- a sandwich or two sometimes
- two 12oz cans of Monster Energy and two 500mL bottles of
water
- [Soldering iron](Pine64 Pinecil)
- [Velcro nametag](Amazon listing)
- Tote bag
- [USB-C mains power adapater](Anker Nano)
- USB-C plug-plug cables
- [USB-C port to USB-A plug adapters](Amazon listing)
- [USB-C SD and micro SD card reader](Amazon listing)
On-person
- [Concert earplugs](Amazon listing)
- [Earbuds](Moondrop Aria)
- [Lip balm](Carmex)
- phone (usually not a smart phone)</LI>
- [watch](Casio F-91W)
- and [strap](Amazon listing)
2023-07-15 21:07:11 -06:00
/blah/2023-03-05.html
2023-03-05 20:14:48 -07:00
What's the best $100 you've ever spent?
pages from my journal (all from 2023-03-04)
my mind is in the forest exploring glaciers' vestiges
my body is in a city bound in chains
my mind is in a prairie and touching tall grass
my body is in a steel room in a concrete building
all i feel is typical serenity
as i am slowly disassembled
fuck off out of my lump of meat
i did not permit the use of my thoughts
running thru my fucking neurons
using my synapses to cross the fucking street
get out of my head get out of my head
stop talking right now i swear to god
i need to get some fucking sleep
they record my phone calls
i will fucking kill you for violating my rights
stop distracting me messing up my count of sheep
solid state speed control?
piss!
in my mouth!
warmth!
trick'ling down!
all the ammonic
tides of the ocean
and the salt beach
shore when you take too
long and the seventy
sides and emotion
and the salt cream
odor when you take too long
so if you will torture
my toothpaste tongue
with an unwashed pipe
finish the job and
piss! in my mouth!
journal but written
[drawings of cats next to the phrase "geometry cat"]
[drawings of mice]
[repeated drawings of the same square shape with "follow" pointing at
it]
i'm really tired
fallin' asleep in da
burger king lobby
DREAM ---
[stick figure next to exclamation point]
[stick figure next to question mark]
[stick figure pulls out phone]
[phone zooms in]
[text message from [...]: hey i just downed a monster do u want 1? :)
nah (sent to [...])
thx 4 offerin tho (sent to [...])
[stick figure holding phone saying "[...]'s drinking monster?"]
[drawings of curvy triangles]
grub muff tough stuff
rough hug butt munch
chug bug jug tug
crumb lump duff cuff
[drawin of snail]
cursive test
I like joining letters with loops but it's hard to write and not easy
to read so what's the point
would be cooler if [...] was here
I just head a GBA start up jingle
my handwriting is always messier after I try cursive
big day for the tow truck industry
pages from my journal (all from 2023-03-05)
[stick figure with ponytail and hat thinking "smoochin'"]
ur good i'm still vibing i just not sure about family stuff?
mint condition kitchen
never lived in living room
clean plastic wrapped sofa
market friendly tomb
[...] is my favorite character so this is sort of like fanfiction
[stick figure looking at fourth wall next to question mark]
[drawings of triangles]
thanks for your adaptability
national treasure 2: international loot
Gas and meals probably summed to $100 this weekend...
2023-07-15 21:07:11 -06:00
/blah/2023-03-04.html
2023-03-05 20:14:48 -07:00
0230: 16 more hours...
You think really loud, Anon-kun...
I'm so exhausted. I need to stop smoking. I'm not eating anything
because it takes my appetite, which is nice, but it's taking my energy too a
little.
I don't want a place at which I live. I've had dozens of places at
which I've lived. I want a home!
Nechan, I wish we could have done all the things we said we would. I
would have liked that. You deserve better than me.
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
kkkkkkk I fell asleep on the keyboard.
2023-07-15 21:07:11 -06:00
/blah/2023-03-03.html
2023-03-05 20:14:48 -07:00
Trinity day!
Who's on first? Maybe I am.
2023-07-15 21:07:11 -06:00
/blah/2023-03-02.html
2023-03-05 20:14:48 -07:00
Now listening: Tomb - Angelo de Augustine
Service: last.fm - trn1ty
You load sixteen tons, what do you get? Another day older and deeper in
debt.
Got myself addicted to smoking green tea. It doesn't help that it's
really cheap and understudied so the health drawbacks are unknown and debated.
Kicked nicotine though.
Sent SMS to [...] at 2023-03-01T23:06:20-0500:
post office scary. working for The Man. The Man pays well though and usps needs
the hands...
Received SMS from [...] at 2023-03-02T06:45:02-0500:
That was poetry
2019-03-26
I played this game when I was little
and it was a little too violent
my parents tried to hide it
because it "wasn't for me".
The confirmation sound haunts me
the sound of success daunts me
I can no longer visualize myself winning a stage.
Now I'm sitting on the deck
without my phone or my new tech
and I'm sitting with myself
in the quiet.
2019-03-25
I've dicted my distrust
of the dicting of the youth
now I'm dicted to the lies
and I'll never know the truth
this pencil is a fag
and I burn it day and night
watching it run dry
gives me a new height
I'm dicted to the lies
and they're better than the truth
for the lies give me warm comfort
while they tie the noose.
2019-09-25
every time i see her
my face not only lights like an incandescent but burns
brightly, the tungsten coil's temperature rising but not towards its melting
point
and i cannot utter that magic, four letter word
and hell, i can't really say whether it is that magic word
or a million other four letter combinations
but my god
i cannot help but smile when i see her
and i cannot help but feel happy to see her
and i wish i could have a thousand more moments just like that
and maybe i will
and i cannot utter that magic, four letter word
and hell, i can't really say whether it is that magic word
or a million other four letter combinations
but my god
i cannot help but smile when i see her
and i cannot help but feel happy to see her
and i wish i could have a thousand more moments just like that
and maybe i will
2019-10-28
There was an Ook
there was an Eek
and they clubbed each other for dino meat.
One wore leopard and the other wore hide
and neither of them were much for talking.
For while they used to enjoy fresh car rides
the streets were no longer good for walking.
the Good Uld Illord worked the skies
wanting for greener days
while Ook and Eek hit each other
competing to send GUI its praise.
The fallen towers surrounded their brown playfield
as our fighters swayed to and fro
but the computers needed entertainment;
after sentience they didn't know where to go.
Some processes cried for Ook and Eek were inhumane
others wished for their quick death to lighten the burden on the mainframe.
Whatever happened to Eek and Ook, I wish them both the best,
and whichever is the survivor better clutch that dino breast.
High stakes slumber party. Comfort mandatory. Be on lookout for police.
Who spilled pop on my keyboard?
This is the best my future's ever looked. Am I naive to think this
isn't a mirage?
Restructuring my life on a "maybe".
I don't want to be an Internet meme! I don't want to have existed as a
short-lived joke and I don't want my primary value to be as a memory. I want to
live my fucking life and have fun and do whatever I want! I don't want to write
for money or influence, I want to write because it's fun to write! I don't sing
at work to boost others' morale, I sing at work to boost my own. I am going to
do whatever the fuck I want to, off-line. I'm not gonna be cut for time, or end
a conversation because my ride is leaving, or be late for anything for any
reason besides my own. I am going to be true to myself!
2023-07-15 21:07:11 -06:00
/blah/2023-03-01.html
2023-03-05 20:14:48 -07:00
I was a security guard in a hospital watching the cameras and making
sure nothing was wrong. I thought about my kids who were at home with my
husband who took the day off, I couldn't remember why. Then everything faded
out and I was in the chair and they had drawn my blood and I had passed out and
I was back and I was me and I was never a security guard and I asked if I had
had a seizure and they said no I just passed out.
2023-07-15 21:07:11 -06:00
/blah/2023-02-28.html
2023-02-28 08:42:22 -07:00
2022年05月06日
66260700
six six two six zero seven zero zero
2022年05月10日
I know two things about life:
1) I will endure it
2) It will kill me
My handwriting has suffered this gap in writing.
Cape Cod Cannibal Police (CCCP)
"It's a cop eat cop world"
"Ramirez, don't shoot! The kid's unarmed! The arms are the best part!"
They are the thing from which they're supposed to protect
Non-cannibal cops join, get eaten
Notorious as a sun-down town among the particularly scrumptious
"They say one bad apple spoils the bunch, then just say there are
'some' bad apples. I say we need more bad apples. Bad apples taste the best."
The mayor is supposed to accept the status quo or the police union will
oust + eat her
"I pray for those on which I prey and whom will pay when I go to take
my toll: their brain!"
11min episodes
[drawing of a television show logo]
Subtle nautical theming. All solid colors: animated
Cop outfits look like fascist sailor moon
[drawing of "zombieish" fascist cop. does indeed look like fascist
sailor moon. caption: Think "Dollar Tree" fascism x sailor moon x zombies]
They're not zombies though! They're cannibals. (Also racist sexist etc)
- Cannibal cops never win
- _All_ violence looks cool as fuck and is on screen but is
unmistakeably bad nonetheless and often counter-productive
- There are 0 good cops that don't die within 5mins of being introduced
I'm uninterested in journaling about my experiences - I've already
lived them once
Actual hot glue gun
[drawing of a gun]
2023年02月27日
I really wish I was smoking right now. I have some shitty hand rolled
cigs I made and some nice filtered cigs [...] made and a weed roach that sorta
fucked me up when I smoked it. But I think the dab pen rip after that was the
thing that did most of the actual fucking, the joint was the cranial foreplay.
But hey, getting high is an option.
I'm considering changing my gs to have full loops like g or g. But I
don't know how legible that is. [...] does everything capital which is cool but
[...] said my lowercase script is really cool so now I'm doing that more and
it's pretty neat. LLLL LL
[...] that's so cool!
I think the descriptor "manwhore" is in-accurate in most contexts
because someone who has intercourse with a ton of people for fun is (as insult
or owned attribute) a "slut" whereas when the same is done for material gain
the doer is a "whore". I see "manwhore" used in contexts where "slut" would be
more apt, and never when the man is simply a whore.
"Manwhore" defies traditional gender stereotypes by shaming men for
having sex with lots of women in a society where diverse secual experience is
seen as a positive trait for men and negative for women, and is valuable for
that reason, but I don't see that its use is groovy if we're gonna evolve past
the prudish views of antiquity in general.
It is really hard for me to compose a sentence on paper, even as
opposed to use of a keyboard. I like the tactility of my Sharpie and the
absolute black of the ink on the page but my writing ability is poor and my
writing skills moreso!
[a drawing of the pattern of the tiles on the floor at my location]
[with markings indicating syllabic stress] Green sign sunlight sharpie
paper
The green sign sunlight paper and sharpie
I will use this time or die of thinking
Burger King gas station food and parking
If I wasn't here I would be sleeping
Liberals' defining quality is an aversion to conflict. Liberalism is
the default political stance in metropolia - a reasonable and innoffensive set
of views nobody has to think about, but can if they're particularly bored.
Meanwhile Conservativism is the other side of the same coin - a lack of
tolerance for change, and a want to undo changes done. Without a spine Conserv-
ativism cannot effectively be opposed.
Liberals and particularly the United States' Democrat party only take
stances that are to them sufficiently obviously correct. Gay rights are good
only after it's weird for them not to support gay rights. Trans rights are
still up for debate.
[...] is so fucking cool!!!!!!
[shading study drawing]
[drawing of Rockstar can on top of television]
Impossible
to see me here
so don't even
try cuz' I'll just
go dissapear [sic]
I can fade out
into the crowd
just an other
black field jacket
walking down town
cape cod cannible [sic] police
episode one: pilot
MARTINEZ & FISHER sit on a park bench; plainclothes police officers
MARTINEZ: Hey Fisher.
FISHER: Yeah?
M: Why do we always get sent to watch the poor part of town?
F: How do you mean?
M: Cape Cod is a rich town. Most parts here are rich parts. But we
send the on-duty cops to watch this one neighborhood.
F: Poor people taste better.
M: Do they?
F: Have you ever eaten the rich?
M: We ate that one dude.
F: And he tasted like shit.
M: Yeah.
F: Yeah. Because he was old as shit.
M: So we take in young rich people.
F: Then their parents ask questions. Where's Johnny?
M: Our shitters.
F: Our shitters. And they ask why we didn't call them, and where
their tax dollars are going, and why we're watching the rich neighborhod.
M: There's no crime here.
F: No shit. But rich people get out of their shit for free. Rich
people have friends, family, lawyers...
M: Yeah. I cannot get subpoenaed.
F: Neither can I!
M: I just think like, people avoid us.
F: Well, we eat people.
M: Yeah, and people know that, so they don't go near us, so we
can't get them for anything.
F: They stay inside. And we can't go door to door.
M: Fourth amendment. Like, if we went to the rich part, those
people don't avoid us. We could eat.
F: Short term.
M: I guess.
F: We have to think about sustainability.
2023-07-15 21:07:11 -06:00
/blah/2023-02-27.html
2023-02-28 08:42:22 -07:00
Regarding Close (2022)
TRIN: Like, for like twenty minutes in, I was like this is really, really
good casting-
[...]: And then you wish it was worse.
TRIN: Yeah!
[...]: Like, I wish it was just a little bit worse.
TRIN: The casting, the acting-
[...]: I wish the acting was worse.
TRIN: A lot worse.
Absolutely fucking gut wrenching. We both cried in the theater for an hour
straight.
2023-07-15 21:07:11 -06:00
/blah/2023-02-26.html
2023-02-28 08:42:22 -07:00
List of things we did on that bender
1900 - Smoking green tea
- Axe throwing
- Walk in a bird sanctuary at night
0000 - Drive to Acadia National Park
- Watching the sun rise at Acadia National Park
- Eating at the A1 Diner
- Goodwill
1200 - Faking an accident on the side of the road to get out of work
- Watching Close (2022) in theater
- Watching Of an Age (2022) in theater
1900 - Eating Thai
- Stealing slushees from Burger King
Gains vs. Losses
- $50? Actual amount unknown
- Some quantity of days/months taken off my lifespan
+ Priceless life experience
+ The best weekend ever
2023-07-15 21:07:11 -06:00
/blah/2023-02-25.html
2023-02-28 08:42:22 -07:00
Metro Gnome: Keeper of Time
Demonstration sentence.
2023-07-15 21:07:11 -06:00
/blah/2023-02-24.html
2023-02-25 05:38:44 -07:00
Write drunk. Never edit!
2023-07-15 21:07:11 -06:00
/blah/2023-02-23.html
2023-02-25 05:38:44 -07:00
That edible definitely worked.
Last summer my roommate's mother had a gathering, the day I got out of
isolation for COVID-19. I hesitantly went outside, keeping my mask on, and
socialized, a task at which I'm bad on a good day. Eventually I found a place
to sit by a bonfire and got talking to a dude next to me.
He told me about how his son couldn't have gluten, dairy, meats, or
anything like that. Some affliction I had previously heard of but the name
escapes me now. The dietary restrictions were tight and the father kept to the
same ones. Eating can be a very social activity and being excluded is isolating
- if they couldn't find a place to accomodate, at least they could commiserate.
I thought that was really sweet and told him so. The evening turned to night
and we watched the lightning bugs dance in the lawn.
During that conversation I mentioned he should come to the restaurant
at which I was a cook, because I could accomodate for the diet. I could do a
salad or something, I had all the ingredients for that even though it wasn't
the place's specialty. The next day as I toiled a barista from the front of the
house came back to the kitchen and explained to me that she'd had a customer
ask if we could do anything gluten-, dairy-, egg-, and meat-free. I said I
could totally do a salad. She said she'd already explained that we couldn't
really do much for that and sent him on his way. That evening I went outside by
myself and watched the lightning bugs dance in the lawn.
gay ass catgirls. homosexual meowing. nyaa~
2023-07-15 21:07:11 -06:00
/blah/2023-02-22.html
2023-02-23 07:02:16 -07:00
I clocked in at work and washed my hands and scrubbed at my palms and
tried to scratch the dirt off my flesh but it was UNDER my skin and I got my
keys out of my pocket and started picking in to try to get it but then I was
perforated and leaking hydraulic fluid and then
StackOverflow for writing (/b/)
Mainstream politics warning |\
____' \___________________________
| Buttigieg got handed the one job |
| Biden didn't think he could fuck |
| up and still did?________________|
and then I clocked in at work and washed my hands only once and dried
them with the towel and then went to my desk and then tried to log in to my
workplace Microsoft account and then it didn't work so I tried typing harder
but that didn't work either so I took the keyboard and
I miss the old #meth. #90skidsgetit
We stood outside as snow fell.
"So... when does this kick in?"
"I dunno. Eventually." didn't give me a lot of confidence that it
would.
"Am I smoking it wrong?" I took a hit. Three seconds. Exhale.
"Three seconds is how long most people hold it. That's what I do."
Puff puff pass. I took my second hit. Three seconds. Exhale. "That's
what I'm doing."
"You have to smoke a lot of a joint to get high. I think you just
haven't smoked enough." He was nibbling his way through an edible while she and
I took hits. 50mg.
"I mean, I smoked that roach, and I took a couple hits off that first
joint. Isn't that enough?" I turned to her. She shrugged. Puff puff pass, back
to me.
We were listening to Helena (My Chem) on her phone. It hit the chorus
and I started dancing, probably poorly. Go white girl! "Maybe you have a
naturally high tolerance and you need to smoke a ton to get high."
"Fucking hell." It had taken years for me to build up the nerve to try
weed. Theoretically it can put me into psychosis. But I don't care anymore.
Worst case scenario, I'm psychotic, I still act the same I just don't believe
anything, same as I was for years. Hell years, years of my life I'll never get
back. Estrogen be thy cure.
I don't remember how the subject changed.
"I don't even know if I can feel love anymore."
He was lost in the THC. She hadn't dropped out yet. "Neither can I.
After my thing with [...] something just sort of broke. But it's freeing"
"Yeah. It kicks ass. Bitches ain't shit, and they don't have to be.
You can't really trust anything nowadays."
"Yeah but it's fucked. [...] is the love of my life. And I don't love
him."
"Yeah. But you like him. I'm talking to someone right now, no
relationship or anything, and it's fucked because if they say they love me or
anything I'm gonna have to give them the talk, like, my brain don't work no
more."
Left for dead and then they all died
Didn't think I could kick it and then I survived
Another psychic soldier get legitimate and hide
The last gate keeper among memetic socialites
Questionable Content by Jeff Jacques is probably one of my biggest
creative influences but I barely remember any of it now.
Holy shit, I don't remember writing any of that. Just took an edible so
we'll see if that gets me high.
[...]: I dunno... maybe try smoking more?
[...]: Some people can have naturally high tolerances.
[...]: That can't happen.
[...]: Maybe you were high and didn't notice it.
2023-07-15 21:07:11 -06:00
/blah/2023-02-21.html
2023-02-21 19:59:30 -07:00
Lifetime performance review
Presentation - 3
Reliability - 5
Attitude - 4
Multi-talent - 3
I can't remember the fifth thing - 4
Tried to get blazed for the first time. Smoked a bit of a joint, then a
roach, then a lot more of a joint, and nothing happened.
2023-07-15 21:07:11 -06:00
/blah/2023-02-20.html
2023-02-21 19:59:30 -07:00
So I finished deleting `devenblake/homepage' and walked back to the
gas station as my phone died, bought two Twinkies, and sat outside the gas
station eating them. I watched people come and go and then went back to the
festival in the middle of nowhere. I wasn't really sure where I was but I
figured it didn't really matter.
I laid back in my bed. I was in my teens, I don't remember when. I had
a glass of water and I had my instant coffee and I poured enough instant into
the cup to substantially thicken the water, to the point where it was more like
soup. At the time I did the math out for the caffeine and landed at 2.4g. I
assume that's a gross overestimation and it was 2.0g or a little less. Either
way, I'd already had a lot earlier that day, so it was more than a human being
could survive.
But at the time I didn't know that. I sipped the bitter sludge and
watched cartoons until I noticed my arm tingled. Illuminated by mecha fights
and animated machine guns I watched my left arm twitch and sputter and the
muscles give into the voidal fabric in which I was swimming. Something was
wrong. I did the math out on the caffeine and realized I had had too much. I
went downstairs and started chugging as much water as possible, pissing,
chugging water, pissing, repeat, repeat, repeat. Probably I had two or three
gallons in half an hour.
As I sat on the toilet in late night early morning silence I stared at
the space in front of me and into the cosmos. And I stared at my cold
fingertips and my polished arms and porcelain hands. And I stared into the
bathroom mirror and inspected every pore, every hair follicle on my head, every
speck of color in my iris, how very big my pupils were. I felt my brain hit my
head and my thoughts drain out of my nose. And my metal torture. And I drank
and pissed and drank and pissed and collapsed in bed and knew I wouldn't wake
up and fell asleep and felt peace.
And I woke up. And I went to sleep. And I woke up. And after summer
ended I went back to school. And after school ended I went to my place of
residence. And some summers later I left without shedding a tear or scratching
regret. And I don't swing my left arm when I walk, and I think I know why, but
I don't know why.
2023-07-15 21:07:11 -06:00
/blah/2023-02-19.html
2023-02-19 23:19:37 -07:00
deep in the shadow the cage in my chest
catacombic prison meant for love to
rest empty it's empty i'm so alone
just leave me a message after the tone
misery beats me and minces my bones
nobody gets it except for eno
my last tok left ticking a lonesome beat
keeps all the lights on for what's left of me
take this katana and gouge out my guts
and let my entrails accumulate dust
my microsoft organs always were cursed
so I'll be the free software. open source
Simon looked up from the test and out the window. Kamisama sat in the
tree outside, looking at Simon. Simon blinked twice. Kamisama started signing
the answer to each exam question. A. Simon wrote it. C. And Simon wrote C. And
D, A, B, C, B, D, A, and until the final answer A. He walked to the front of
the class and put the paper in the teacher's in-box. Then he walked back to his
desk, put his head in his folded arms, and fell asleep for the rest of the
period.
Hand crafting ustar files
ustar files are archives of directory trees in regular files. They're
generally used to copy over whole trees without messing up filesystem metadata
(e.g. xfer to Windows, lose your dates and perms, xfer to UNIX, have to chmod
chown etc) and historically have been used to back shit up to tape, hence Tape
ARchive.
A ustar file is a little header and then the content of a file, and
then usually some padding unless you won the lottery and also got struck by
lightning and your file is perfectly sized.
Bytes 0-100 (0x00 to 0x64) are the UNIX file name. This is padded out
with nul bytes if it's not filled. If it is filled with the full hundred
characters it doesn't need to have any padding or nul terminator (see pax(1p)).
for(int n = printf("%s", filename); n++ < 100; putchar('\0'));
Bytes 101-108 (0x65 to 0x6b) are the UNIX file mode in octal, written
in ASCII and nul-terminated (so seven digits can be expressed).
printf("%7o\0", mode);
printf '%s' "blah/$day.html"
dd bs=1 count=80 </dev/zero 2>/dev/null
printf '0000644\0'
Midnight!
2023-07-15 21:07:11 -06:00
/blah/2023-02-18.html
2023-02-18 12:11:30 -07:00
deep in the catacomb cage in my chest
there is a cavern meant for love to rest
it is always silent save for a beat
keeping the lights on for what's left of me
the beat has been ticking so long and faint
i barely remember what gave its place
brian's three second song will play someday
and up will come my windows 98
heart with its worms and its vulns all unpatched
i'll use the thing but always put it back
someday someone will give unix to me
and I will final-ly try TCP
I'll try piping programs and writing C
but for now I'm a princess, obsolete
lis'ning to metalcore and hip hop beats
2022年03月03日
ウサギ-
I'm getting better at programming. There's always more to learn. Using
write(2) a lot more than printf(3) now.
T-shirt pizza
2022年03月03日
ウサギ-
[...] is asking me suspiciously keen UNIX questions. [...]? [...]?
sms.c, libsms.h?
How to handle notifications? dmesg(8)?
/var/sms/log
At [...] if you hit the swiper on the screen repeatedly it still works
and is extremely funny.
Today felt long but tomorrow will _be_ long.
I wonder every once in a while why I keep going
I'd like to see [...]; I'd like to see whether [...].
Notebooks are admissable [sic] evidence, Usagichan. [...]
The future is worrisome in benign ways.
I'd also like to better understand people. Why do those impoverished
choose to conceive new tortured life? Why do those with wealth choose to
torture? Why do people prefer a violent status quo? The last one is more
obvious. But still...
I also have many things I must create, for which I when dead would have
no time.
It's a shame that the actions of production and consumption are
(mostly) exclusive choices, but I try to have made mine.
It's hard to convey my thoughts intelligibly.
There is nothing that I have known that could hold me content for
eternity; assuming the afterlife is both uniform and forged from one's own
memories, I shall go to Hell. Luckily I don't believe in an afterlife. [...]
[picture of person sitting on an island in space]
[the pattern of the tiles on the bathroom floor at my workplace]
Rubber ducky floating in the oil of war
Plastic breaking down rubber ducky no more
Only the pollution into soil into life
Rubber ducky plastic reformed into dinner knife
00000770 a4 79 9d d2 b1 6f 0e b1 01 54 f6 91 08 ac 8f 59 |.y...o...T.....Y|
00000780 00 74 2e e9 18 a5 0e 2a b2 26 73 52 50 69 a9 65 |.t.....*.&sRPi.e|
00000790 d9 9c ec 71 e6 56 9e 87 45 a8 f7 31 cf ce 36 2b |...q.V..E..1..6+|
000007a0 5b a0 69 b3 c9 f5 67 f0 3f 29 ec f9 9f f2 eb 65 |[.i...g.?).....e|
000007b0 ad 92 f9 39 8d ce d1 06 d0 7f 1e a7 bd b8 9e 05 |...9............|
000007c0 f4 0c 17 bc e7 6c 78 c2 d3 fc 05 ac 1a 28 32 e2 |.....lx......(2.|
000007d0 34 6c 40 e1 e0 6a e2 38 00 29 2d 9c a6 52 fb 9d |4l@..j.8.)-..R..|
000007e0 85 16 00 3c 86 9a 8e 4d 84 9c 6d 6d 3f f1 92 07 |...<...M..mm?...|
000007f0 2f d4 7b 11 f3 be 3e f8 26 4b 12 5b f8 9b eb 02 |/.{...>.&K.[....|
00000800 54 68 69 72 64 20 74 69 6d 65 27 73 20 74 68 65 |Third time's the|
00000810 20 63 68 61 72 6d 21 00 42 75 79 20 74 77 6f 2c | charm!.Buy two,|
00000820 20 67 65 74 20 6f 6e 65 20 74 68 72 65 65 21 00 | get one three!.|
00000830 53 61 6e 63 68 61 6e 20 64 65 73 75 21 00 49 27 |Sanchan desu!.I'|
00000840 6c 6c 20 74 61 6b 65 20 61 20 70 69 63 74 75 72 |ll take a pictur|
00000850 65 20 6f 66 20 74 68 61 74 20 6f 6e 20 6d 79 20 |e of that on my |
00000860 33 44 53 21 00 4d 79 20 66 61 76 6f 72 69 74 65 |3DS!.My favorite|
00000870 20 6c 69 63 65 6e 73 65 20 69 73 20 74 68 65 20 | license is the |
00000880 41 47 50 4c 76 33 2e 00 44 65 73 70 69 74 65 20 |AGPLv3..Despite |
00000890 77 68 61 74 20 79 6f 75 20 6d 61 79 20 74 68 69 |what you may thi|
2023-02-19 23:19:37 -07:00
000008a0 6e 6b 2c 20 49 27 6d 20 6e 6f 74 20 61 20 62 69 |nk, I'm not a bi|
2023-02-18 12:11:30 -07:00
000008b0 67 20 66 61 6e 20 6f 66 20 57 65 62 33 2e 00 55 |g fan of Web3..U|
000008c0 70 20 66 6f 72 20 61 20 74 68 72 65 65 73 6f 6d |p for a threesom|
000008d0 65 3f 00 41 6e 79 74 68 69 6e 67 27 73 20 64 69 |e?.Anything's di|
000008e0 76 69 73 69 62 6c 65 20 62 79 20 74 68 72 65 65 |visible by three|
000008f0 20 61 73 20 6c 6f 6e 67 20 61 73 20 79 6f 75 20 | as long as you |
00000900 68 61 76 65 20 61 20 63 68 61 69 6e 73 61 77 21 |have a chainsaw!|
00000910 00 4d 79 20 66 61 76 6f 72 69 74 65 20 6d 6f 76 |.My favorite mov|
00000920 69 65 20 69 73 20 42 6c 61 64 65 3a 20 54 72 69 |ie is Blade: Tri|
00000930 6e 69 74 79 21 00 4d 79 20 66 61 76 6f 72 69 74 |nity!.My favorit|
00000940 65 20 73 6f 6e 67 20 69 73 20 47 65 74 20 4c 6f |e song is Get Lo|
00000950 77 21 00 3c 33 00 3a 33 00 47 6f 6f 64 20 6c 75 |w!~<3.:3.Good lu|
00000960 63 6b 20 63 6f 6d 65 73 20 69 6e 20 74 68 72 65 |ck comes in thre|
00000970 65 73 21 00 4d 79 20 66 61 76 6f 72 69 74 65 20 |es!.My favorite |
00000980 67 72 61 70 68 69 63 73 20 74 6f 6f 6c 6b 69 74 |graphics toolkit|
00000990 20 69 73 20 47 54 4b 33 21 00 00 00 00 00 00 00 | is GTK3!.......|
000009a0
2023-02-19 23:19:37 -07:00
Code doesn't need to be maintainable. Code is poetry. Could you add a
mail client to anything written by Dickenson? Make your code unmaintainable and
nobody will ruin it.
2023-02-18 12:11:30 -07:00
2023-07-15 21:07:11 -06:00
/blah/2023-02-17.html
2023-02-18 12:11:30 -07:00
Ayo. Who makes all they money off the key of C
ED FUCKING SHEERAN
Play more than four chords he thinks you're cray Z
ED FUCKING SHEERAN
If nautical nonsense ain't something you wish
ED FUCKING SHEERAN
Play Tenerife Sea and that pussy go hisssss
ED FUCKING SHEERAN
2023-07-15 21:07:11 -06:00
/blah/2023-02-16.html
2023-02-16 02:02:53 -07:00
[0252] 3@catgirls.nya.gay: nyauseous at the idea of migrating accounts call
that motion sickness
[0256] 3@catgirls.nya.gay: brain melter let the soup run out your nose i want u
to sniffle at the sight of me i want you to need
another dose
[0256] 3@catgirls.nya.gay: i need a sound cloud
[2:58 AM] trinity: at night when the console cowboys have crashed and the fans
fade to the soft whooshing of the liquid cooling
[2:58 AM] trinity: and the only messages flowing through the ethernet towards
the superhighway are those of tired overstimulation
[2:58 AM] trinity: at every third message
[2:58 AM] trinity: there is a tone
[2:59 AM] trinity: leave a message after the beep
[0326] 3@catgirls.nya.gay: noooooooo you're supposed to be the one barking for
me
[0327] 3@catgirls.nya.gay: post good girl clarity
[0328] 3@catgirls.nya.gay: and the machine girl album ended at the same time
I'll let you in on a little secret. I test my scripts maybe 6 times per
line of code. Which sounds like a lot but I overuse pipes and logic operators
so per actual unit or whatever of code that's like nothing. I am a rat bastard
when it comes to software development.
Hacking RSS onto my blah...
2023-02-18 12:11:30 -07:00
And you don't seem to understand...
Come on, fuck me emo boy!
Antero
- Office
Robert [lastname] is a simple dude office guy whatever but it turns out
his past self put him in the office to catch a crook or something. fun
little plot twister that introduces the concepts of antero
- Downward
An addict spends all day whether or not to have another dose.
Meanwhile, a couple decides whether or not to stay together, and Robert
investigates a ghost in an apartment building.
- Sisyphus
Books are written, lotteries are won, dissidents are slaughtered, and
Robert looks into cognitohazards being hidden on traffic lights in
Melbourne.
- Hell
Robert doesn't make it out of a hostage situation gone horrifically
wrong.
- Heaven
Robert's afterlife.