1
0
src/homepage/homepage

12761 lines
563 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:
2023-07-21 10:19:18 -06:00
attributes = []; content = ""; substitutions = dict()
figurative = True; stub = True
def addattribute(self, *args):
for a in args: # sloppy but works
if a == "stub": self.stub = True
elif a == "verbatim": self.stub = False
elif a == "figuratively": self.figurative = True
elif a == "literally": self.figurative = False
2023-07-19 21:27:46 -06:00
def __init__(self, **kwargs):
for key in kwargs:
2023-07-21 10:19:18 -06:00
if key == "attributes": self.addattribute(*kwargs[key])
else: setattr(self, key, kwargs[key])
2023-07-28 12:46:47 -06:00
files = dict()
2023-07-19 22:46:51 -06:00
for part in reversed(sys.stdin.read().split("\n\n\n")):
name = "." + part.split("\n")[0]
2023-07-19 21:27:46 -06:00
if "\t" in "." + name:
attributes = name.split("\t")[1].split(",")
name = name.split("\t")[0]
2023-07-19 22:46:51 -06:00
else: attributes = []
2023-07-28 12:46:47 -06:00
if len(name) <= 1 or name[1] != "/" or "ignore" in attributes:
continue
2023-07-19 22:46:51 -06:00
content = part.split("\n\n")[0].split("\n")
substitutions = dict()
if(len(content) > 1):
for s in content[1:]:
s = s.split("\t")
if len(s) == 2: substitutions[s[0]] = s[1]
2023-07-21 10:19:18 -06:00
mode = "replace"
2023-07-28 12:46:47 -06:00
for attribute in attributes:
if attribute in ["append", "replace"]:
mode = attribute
2023-07-21 10:19:18 -06:00
attributes = list(set(attributes) ^ {"append", "replace"})
2023-07-19 23:09:34 -06:00
content = part[len("\n".join(content))+2:]
2023-08-05 09:05:36 -06:00
file = File(attributes = attributes, content = content + "\n",
2023-07-19 22:46:51 -06:00
substitutions = substitutions)
2023-07-21 10:19:18 -06:00
if mode == "append":
2023-07-19 21:27:46 -06:00
if not(name in files):
sys.stderr.write(sys.argv[0] + ": " + name + ": "
+ "appending to nothing\n")
else:
2023-07-19 22:46:51 -06:00
file.content = files[name].content + file.content
files[name] = file
2023-07-19 21:27:46 -06:00
for name in files:
2023-07-21 10:19:18 -06:00
if files[name].stub:
2023-07-28 12:46:47 -06:00
p = ""; s = ""; d = name
while True:
2023-08-03 17:15:58 -06:00
d = os.path.dirname(d)
if (p == ""
and os.path.join(d, "Prefix")
in files.keys()):
p = files[os.path.join(d, "Prefix")].content
if (s == ""
and os.path.join(d, "Suffix")
in files.keys()):
s = files[os.path.join(d, "Suffix")].content
2023-08-05 09:05:36 -06:00
if d == "." or (not(p == "") and not(s == "")):
break
2023-07-28 12:46:47 -06:00
files[name].content = p + files[name].content + s
2023-07-21 10:19:18 -06:00
if files[name].figurative:
2023-07-19 21:27:46 -06:00
content = files[name].content
for s in files[name].substitutions:
instances = []
i = 0
while True:
instance = content.find(s, i)
if instance == -1: break
2023-07-19 22:46:51 -06:00
instances += [instance]
2023-07-19 21:27:46 -06:00
i = instance + len(s)
if len(instances) == 0: continue
2023-07-19 22:46:51 -06:00
for i in reversed(instances):
content = (content[:i]
+ files[name].substitutions[s]
2023-07-19 21:27:46 -06:00
+ content[i+len(s):])
files[name].content = content
2023-07-28 12:46:47 -06:00
# TODO error checking
if not(os.path.isdir(os.path.dirname(name))):
os.makedirs(os.path.dirname(name))
2023-07-19 22:46:51 -06:00
with open(name, "w") as fd: fd.write(files[name].content)
2023-08-03 17:15:58 -06:00
d = ""; bucket = "#!/bin/sh\n"
for name in files:
d = name
while True:
if os.path.dirname(d) == ".":
mop = ("rm "
+ "-r " * os.path.isdir(d)
+ name # yeah this sucks
+ "\n"
)
if not(mop in bucket): bucket += mop
break
else:
d = os.path.dirname(d)
if len(bucket.split("\n")) > 2:
2023-07-19 21:27:46 -06:00
with open("./cleanup.sh", "w") as fd:
2023-08-03 17:15:58 -06:00
fd.write(bucket)
2023-07-19 21:27:46 -06:00
'
test -x homepage.local \
2023-07-15 21:44:35 -06:00
&& exec ./homepage.local \
|| test -e homepage.local \
&& exec sh ./homepage.local \
2023-07-15 21:44:35 -06:00
|| 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>
2023-07-28 12:46:47 -06:00
<TABLE>
<TR><TH>attribute</TH> <TH>default?</TH><TH>action</TH></TR>
<TR><TD>"figuratively"</TD><TD>yes</TD>
<TD>Indicates the file should be subject to macro expansion.</TD></TR>
<TR><TD>"ignore"</TD> <TD>no</TD> <TD>Ignore the current entry.</TD>
</TR>
<TR><TD>"literally"</TD> <TD>no</TD>
<TD>Opposite of "figuratively".</TD></TR>
<TR><TD>"stub"</TD> <TD>yes</TD>
<TD>Indicates the file should be exported to the filesystem with the
appropriate Prefix and Suffix files prepended or appended.</TD>
</TR>
<TR><TD>"verbatim"</TD> <TD>no</TD> <TD>Opposite of "stub".</TD></TR>
</TABLE>
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>
2023-08-03 17:15:58 -06:00
/praise/Prefix verbatim
2023-07-19 23:09:34 -06:00
2023-07-19 21:27:46 -06:00
<!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
2023-07-19 23:09:34 -06:00
2023-07-19 21:27:46 -06:00
<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-10-08 11:17:59 -06:00
/blah/2023-10-08.html
An angel commits to sin...
I'm hallucinating, just a little. I think it's exhaustion. Everything is just a
little unreal.
Yesterday I had a cigarette. The day before I did too. That's four since
starting to quit.
Today I read Blood Stained Teeth #2-5 (2022). I've recently read The Vampyr
(1816), Tales to Astonish #1-2 (1958), #3-9 (1959), #10-17 (1960), #18-29
(1961), #30-41 (1962), Fantastic Four #1-3 (1961), #4-5 (1962), The Incredible
Hulk #1-4 (1962), V for Vendetta #1-6 (1988), #07-10 (1989), and the entirety
of Death Note. Oh, also Injection #1-5 (2015), #06-10 (2016), #10-15 (2017), No
Longer Human (2019), and some other stuff. Reading Alias Grace (1996) and quite
enjoying it.
I've been reading a lot lately. I have a lust for passive but self-paced
entertainment and adult-oriented comic books have been hitting the point
between candy for eyes and food for thought. Particularly V for Vendetta, which
has excellent and distinct artwork, and Blood Stained Teeth which is a visual
fever dream very different from but reminiscent of Panty and Stocking with
Garterbelt, an animation from Gainax. Art overflowing with passion.
I think Anarchism most closely resembles my political beliefs but I'm not sure.
I don't particularly care about labels but as a word-as-summary they are
useful. When someone falls in the mosh pit you help them up, there's no more to
it.
[...] has been discussing Zen Buddhism in [...] and it's fascinating, and not
quite what I had thought it was from pop culture education.
I've been learning Toki Pona passively and it is a very fun language.
I have my Raspberry Pi set up perfectly. Absolutely perfectly. This is my ideal
setup for a computer. It's such a shame that this is a temporary setup; it will
be replaced by my ClockworkPi uConsole when it comes ("this" being a CrowPi2
with the disadantage of not having a battery and thus being tethered either to
the wall (via AC adapter) or my power pack (via DC 5525 or whatever it is)
which can't injest power while delivering voltage out of the barrel jack
("power pack" being the Shargeek Storm2 or whatever it's called now).
I discovered strerror(3) recently and my life has become a lot easier.
Fight or flight? I flap my angel wings and am spirited away.
I talked to Usagi for the first time in a while. I was so weird to her. So
weird. And she is still my friend. I was so weird and she has no problem with
it whatsoever. Acceptance is so rare.
Yesterday I wanted to die. Today I am ready to accept death should it happen to
me, but I will do what I can to prevent it. I don't think I'll ever fear death
but I don't long for it when I'm doing decently. Yesterday I was not doing
decently. I have been cold and nervous for a long while now and have not known
genuine safety since August. My body is in fight or flight mode and has been
for a while. I am less a rabbit and more a hare.
I've been using Chimera Linux and absolutely love it.
2023-10-04 22:35:54 -06:00
/blah/2023-10-05.html
Today taking my bag of trash out I noticed my old kitchen manager, one of those
partly to blame for my training, doing the same with the restaurant's trash. He
asked me if I'd heard from my sidekick using a name that while attributable to
her was not her herself - too formal and she would say in more words
incongruous [is that a word?] to her being. This was my first red flag of the
day but the person himself is a walking one his own, a Lady Gaga song glorifier
and notorious gossip not to mention lacking in empathy or humbleness, afflicted
even worse by the latter two than myself.
I cannot think of him without thinking of my training in 2021 when I was
seventeen and he in twenties and I pulled a trash can from one inaccessible
location to a better one and I by himself was pulled aside and told unkindly
not to meddle with any sort of kitchen organization whatsoever, because he was
running the kitchen and his food making ship needed to be tight and
disciplined. Perhaps this was true, but whatever discipline he taught was yet
unaware of the basics of food safety as he gripped the trash bag liner to bring
the can back and forth on wheels from under the preparation table where he kept
it, contaminating the gloves with which he would make food with the retch
byproducts from the junk we organized.
The same supposed manager, at that time technically the same role as my own
though given authority by that which did have it to give, that would tell me I
was a fool for going from chicken to beef - both cooked - without changing my
gloves and washing my hands, would go from raw meat to cooked comfortably with
contaminated tongs sitting in the no doubt E. Coli plentiful meat well
protecting food from bacteria, and do the same when tending to chicken between
frozen bird and fried. This is extremely common in food preparation and I
encourage any reader not to consume that which you did not produce or at least
prepare. I've never seen the use of preventing food from touching food when
both are flesh and both thoroughly dead and thoroughly cooked, nor have I ever
seen the sense in crossing the dead and preserved with the dead whose food
safety is preserved. Nor have I ever seen how his taking me out of line and
chewing me out for moving a trash can was justified when I was trying to
guarantee the food safety that was not my responsibility but his.
TRINITY: She's not doing well- I thought it was kind of obvious. You
should talk to her yourself.
[...]: You and she both have this thing where you're rude- whatever, I
guess I'll just go fuck myself.
TRINITY: Enjoy fucking yourself then.
And then I left on my scooter and heard him say something behind me. My
assumption though not charitable is he made a remark either about my being
transgender or being homeless, both things that while he may accept he is glad
certainly to not experience. But I can't say for sure. And I could say while I
may not have a ceiling or roof, at least I have my heart.
2023-10-04 21:29:34 -06:00
/blah/2023-10-04.html
2023-09-28 I woke up a little after midnight at my workplace to my coworkers
finishing close. I put my backpack on and scooted out and down the hill to find
the old lookout point one of my former roommates had mentioned once.
The path was blocked by three boulders placed so as to prevent automobile
through-traffic. I walked by them and up the hill through the path. The
streetlight faded behind me and soon I was alone among the dark silence save
for the chatter of the crickets and varied twig-snapping of unseen nocturnal
creatures, the friends of Nowhere, Maine.
I came to a pile of strewn trash among, if it had been warmer, which would have
been flies I suppose and bits of nastiness that are begotten by nastiness.
Hoping this was the only bit decrepid in this desolation I walked further. It
was cold and I was tired so when I saw the needles and blood I made no reaction
even after my slow realization of what had happened there.
It was not a place of honor, there was nothing to be had or found there, and
had I known better I would have fled immediately to avoid the fate that had
befallen what was left of whomever that had found ruin among the brush and
uncaring wilderness. This was the fate of the addict when they find an
apathetic owner of a chainsaw and these were the pieces that, should I chose to
indulge in mainlined drugs, will compose myself as well. Dogs or cats or foxes
or wolves had got to what was left but what had happened was apparent. The baby
stroller and diapers and formula pouches told the rest of the story. I stood
for a while comprehending this mess, processing without being able to process.
Nor it being safe to do so.
My grandmother has no sympathy for addicts though even she wishes they'd get
better and supports the free dispersal of naloxone for those that need it. She
doesn't see why an addict should redose rather than purchase warmth or water,
not to mention inhabit a crack shack rather than find work and hearth and life.
She's smart. She's never looked down drunkenly at an empty bottle or
experienced lethargic purple haze and stupefied daze that accompanies the
shortening of a rolled joint. She's never craved a cigarette like I have. She
couldn't imagine it. She couldn't imagine my knowing the feeling. She can't
answer my questions for her - how sober lukewarm shelter could compare to pure
happiness coursing through a vein, or how hydration could compare to not
needing to care about any need, physical or emotional. Perhaps money can't buy
one love, but there are things a person enjoys more. At least at first.
I've been through the downward spiral slipping from shelter to smaller shelter
like a sieve, looking only for acceptance and a place to sleep and finding
scarce the former and only more expensive the latter while my pay doesn't
increase nearly as quickly as the cost to live. One shot would kill me years
later after hundreds more, perhaps not as directly the first as the last, but
the first would be my death all the same. I know this. The sound ice makes when
it hits water and feels the sharp difference in temperature accompanied by the
whoosh of butane and naked laugh of the crazed fiend hungry for more pleasure,
more solace, a hoard of catharsis never to be experienced, only kept like a rat
keeps food for winter, and the drawing in of the needle and the flick and snap
of the glass and rubber band and push of it in and the mind out and let the
reason bleed out of you in transparent drool and snot and let the eyes droop
and heart swell with unearned passion. As much as it would be my comfort then
it is my recurring nightmare now. And it's not inevitable, because I will make
it out of this hell before it chains me and loses the key.
Hyperlinks relating to moulage
https://www.atlasobscura.com/places/narrenturm
https://en.wikipedia.org/wiki/Moulage
https://www.unmc.edu/newsroom/2014/01/07/unmc-history-101-medicine-in-wax/
https://blog.unmc.edu/2013/09/04
/dan-brick-lays-the-foundation-for-realistic-simulation/
https://upload.wikimedia.org/wikipedia/commons/b/bd
/The_Dead_Pearl_Diver_by_Benjamin_Paul_Akers_2.jpg
https://www.aoc.gov/explore-capitol-campus/art/ulysses-s-grant-statue
Hyperlinks relating to CrowPi2 programming
https://github.com/WiringPi/WiringPi
http://wiringpi.com/examples/blink/
https://github.com/Elecrow-RD/CrowPi2/tree/main/known_issues
https://github.com/Elecrow-RD/CrowPi/blob/master/Examples/segment.py
https://www.adafruit.com/product/877#description
https://github.com/adafruit/Adafruit_LED_Backpack
https://cdn-shop.adafruit.com/datasheets/ht16K33v110.pdf
http://wiringpi.com/reference/i2c-library/
[Xlib](https://www.x.org/releases/X11R7.7/doc/libX11/libX11/libX11.html)
/blah/2023-10-03.html
everything sucks so fucking hard
So. Roommates got evicted. Seeing the writing on the wall I packed my shit up
and left. Now that my repack's done I am now comfortably contained in a
backpack with strapped on sleeping bag and scooter on my shoulder. Where to go
next, though, was complicated.
2023-09-26 I got out of work and went back to my roommates. They were squatting
and for lack of space elsewhere I slept in the kitchen in my clothes and jacket
next to the litter box. The cats kept staring at me. It smelled like shit and
piss and the cats would paw at the litter to toss it on me. I got an hour of
sleep and went to work early.
2023-09-27 I got out of work and scooted up the street to a Dollar Tree around
which I scooted and found a nice clear area behind a railing next to a parking
lot. At work I had debated leaving the scooter. It's weight and something else
to carry. Eventually I just brought it though and it lay next to me in the
brush.
I laid out my sleeping bag, opened a book on my tablet, and silently and
comfortably if a little bit chilly read Hulk comics until I heard a distant
yell.
You mother fuck!
I looked up but I couldn't see the source.
Get out of here!
Perhaps it was voices. Perhaps it was a trick of the air. I laid back down. I
was wearing all black and my bivy was green against the olive brush. They
couldn't see me.
I see you out there! If you're still there I'm going to fucking kill you!
Night had by this time fallen. I sat up and got out my telescope.
At work I had also considered leaving it behind.
Two camoflouged cameras against the walls and two doors. The second one opened
and then closed. I was visible and I had probably been made. I began to pack my
stuff, quickly. Then the SUV arrived. Black, big, and it circled the parking
lot like a cat about to pounce on me. It's at this point I strap my sleeping
bag on halfway and with a glance at my former spot I got on my scooter and
sped. It started following me.
I scooted for a cliff, jumped off my scooter and jumped down onto the wet grass
sliding to a stop. I took the time to strap the rest of my sleeping bag on and
then from that ledge jumped down and scooted down a side street. Left. Right.
Left. Right. Left onto Lisbon St and eventually I was back at work.
[10:46 PM] trinity: outran an suv on a kick scooter
[10:46 PM] trinity: i am so swag
[11:03 PM] [..1]: i read that in your voice and it made me smile
[11:05 PM] [..2]: gayass
I was huffing and puffing and tuned my UV-5R to the county dispatch but there
was nothing, city dispatch is encrypted and I don't wanna bother figuring it
out so I assume whoever was after me was not police.
2023-03-06
post meta coital meta cigarette
pixelated bodies having meta sex
meta kids meta hacking both our meta eyes
peeping meta Toms in the same meta lie
/blah/2023-09-26.html
01 "It's pretty nice." Nice didn't begin to cut it. In fact, it was the
most beautiful wax sculpture I had ever seen. It depicted a life-sized nude
woman with intricate detail: hair so fine you could trace individual strands
down to their split ends, make out the scoring of her flesh and the lines in
her palms - including wrinkling that on the animate would indicate lack of
moisture. "Why the injury?"
3: Is your dog nice?
?: All dogs are nice.
3: Like. Can I pet your dog?
?: That's up to the dog.
2023-09-25 06:11:52 -06:00
/blah/2023-09-25.html
horizontal six letters; poly pollinators
that's a bee threesome. right!
shit you sunk my battleship
red peg in hole strike
vertical nine letters; alley alligators
that's a crocodile dealer. nice,
i want a pet reptile
but the vet bills are so high
i keep pissing washing my hands stepping out
my fly is down
i can't finish jack shit
and it's written on my frown
can you bind my knees together and sit me at my writers chair
and bring me coffee daily
and can you pet my floofy hair? no!
well i can't write about that
in a magazine like this
you're describing graphic violence
I write a nature column for the kids
you're reprehensibe
defending serial killers who pass laws
it's upsetting to my senses
from my cat ears to my paws
pin me by my bee wings 'cause the hive is dying out
repopulate our hexing nest babe breed me til the sun is down
no really! i'm so fucking weak i don't work out and i'm so pettable
tie me up take out a knife and then do something reprehensible
2023-09-23 21:25:03 -06:00
/blah/2023-09-23.html
My paycheck was $548.
no tape assembly
easy carry handles with lift off lid
strong, double wall construction
reusable
no tape
we're sticky ourselves
while our words bounce off your skin
they reflect and cut into our shells
so many razor blades in my back
i look like i lost a saw trap
easy carry so easy to get carried away
last time i was told to make them get the message
they almost got carried away on a stretcher
bury a stray
bullet in your heart and lift off the lid
see the lead beat with your organs
warm metal surgery
the wall is textured like the painter didn't care
because he didn't
your wallet's empty like your broke ass didn't work
because you didn't
bitch keep walking
bitch keep walking
butterfly knife in my right hip pocket
button quietly pops a scooter handle off it
and i have an EMP just in case shit gets rough
you never know what could happen getting groceries
times is tough
bitch keep walking
AC hum
a hostess apple pie gets eaten in a rush
"become ungovernable" bitch that's us
sisyphus in zeno's paradox only rolls up
twenty million sisyphuses surrounding the top
any rookie with a boulder is a threat
sell space at the zenith make amateurs pay rent
get defenestrated by straight finesse
another has been for the history texts
and yet
the only ones with the truth
are the ones who can't use it
or the ones who are useless
or the ones who have interests so vested
they can't wrestle their mind away. they lose it
to multibillion dollar trademarked facelessness
empathy's a weapon and capital can't stop testing it
and your heaven sent neolib is already in the dem trenches
"thank bernie for giving the overton window to leftists"
puppet parrot puppy left it for lobby dollar moral debting
netorare
i've been having car troubles bang bang
from the engine keeps me up bang bang
in the streets keeps me up bang bang
when i find my crew slacking bang bang
knock at the door, classy bang bang
bitch too loud, so i slap him bang bang
in the head disrespecting me bang bang
in the head dissecting me bang bang
in the head expecting me bang bang
in a bitch's head for testing me bang bang
and i'm home and in bed and free bang bang
the metal arm strikes the bell bang bang
shoes hit doorstep on the way out bang bang
get in and start the car bang bang
/blah/2023-09-19.html
I'm tired and I'm not recovering from things from which I should be recovering.
Everything hurts and the bruises are only ever replaced with new wounds. The
bruises aren't even from anything cool like [...] with [...] or [...].
I need headpats.
The Ballad of Sean and Josh
Sean is forty-eight
and Josh was twenty that
when Sean took Josh away
from the closet in the flat
where Josh had made his home
with a dealer selling crack
Sean lived with his ma
and Josh would live alone
in Sean's house room he'd lay
until fin'ly to Sean he said hello
they learned about each one's
/blah/2023-09-18.html
WITH THIS TECHNOLOGY
[kim jong un holding a floppy disk]
WE WILL BRING THE UNITED
STATES TO ITS KNEES
The first time I saw this image macro was in 2012 and I thought it was so funny
I laughed about it for a week.
Today [...] posted horg.com in [...].
The DPRK is kinda swag.
Once I transcribe all my GitHub repos to either this blah or src I can delete
them and finally have nothing on GitHub. I'm still keeping my account to track
contributions to GitHub repositories but I'm no longer using GitHub for even
things that aren't meaningful. I'm not super up to date on everything with it
but I don't like that CoPilot could be trained on my code and I don't like that
it looks like social media when I log in nowadays. Gotta remove all my stars...
2018-05-20
# GUESSNEXT
A guessing game for the TI-83/84(+).
## Installation
### Required software:
- [TI-Connect](https://education.ti.com/en/products/computer-software
/ti-connect-sw "ti.com")
- [TokensIDE](https://www.ticalc.org/archives/files/fileinfo/433/43315.html
"ticalc.org")
### Installing from the source code:
01. Download GUESSNXT.txt.
02. Install TokensIDE.
03. Open GUESSNXT.txt in TokensIDE.
04. Delete the documentation (lines preceded by a "//").
05. Remove any empty lines.
06. Compile the program by pressing F5 or going into the BUILD MENU and
selecting 8X>8XP.
08. Install TI-Connect.
09. Plug in your calculator.
10. Open TI-Connect.
11. Open your file explorer and navigate to the directory with GUESSNXT.8XP in
it.
12. Copy GUESSNXT to your calculator.
13. Wait for the copy process to finish and wait an additional ten seconds for
TI-Connect to finish calibration.
14. Unplug your calculator.
15. Enjoy your game!
## Compatibility
TI-83 - Unsupported
TI-83+ - Should work; untested
TI-84+ - Tested working
TI-84+ SE - Should work; untested
2018-05-20
40 - Disp "OUT OF GUESSES.
40 + Disp "OUT OF GUESSES.","IT WAS:",B
2018-05-22
16 16 //Main loop
17 17 Lbl B
18 18 Disp D," TO",E,"","YOUR GUESS?
19 - Input "> ",C
19 + Input "> ",Str0
20 + If Str0="B
21 + Then
22 + Disp "CHEATER!!!
23 + Return
24 + End
25 + expr(Str0)->C
26 + Delvar Str0
20 27 A-1->A
21 28 If C=B
22 29 Disp "CORRECT","
2018-05-30
6 6 ### Required software:
7 7 - [TI-Connect](https://education.ti.com/en/products/computer-software
/ti-connect-sw "ti.com")
8 - - [TokensIDE](https://www.ticalc.org/archives/files/fileinfo/433/
43315.html "ticalc.org")
8 + - [TokensIDE](https://www.ticalc.org/archives/files/fileinfo/433/
43315.html "ticalc.org") (if installing from the source code)
9 9
10 10 ### Installing from the source code:
11 11 01. Download GUESSNXT.txt.
[...]
22 22 13. Wait for the copy process to finish and wait an additional ten
seconds for TI-Connect to finish calibration.
23 23 14. Unplug your calculator.
24 24 15. Enjoy your game!
25 +
26 + ### Installing a release:
27 + 01. Go to the releases page and grab GUESSNXT.8xp.
28 + 03. Install TI-Connect.
29 + 04. Plug in your calculator.
30 + 05. Open TI-Connect.
31 + 06. Open your file explorer and navigate to the directory with GUESSNXT
in it.
32 + 07. Copy GUESSNXT to your calculator.
33 + 08. Wait for the copy process to finish and wait an additional ten
seconds for TI-Connect to finish calibration.
34 + 09. Unplug your calculator.
35 + 10. Enjoy your game!
26 - Delvar Str0
26 + DelVar Str0
2023-09-17 22:53:58 -06:00
/blah/2023-09-17.html
[10:33PM] trinity: i like puzzling out timeframes. the more the past makes
sense the more the present does
I'm twenty years old. Two decades old. No longer teenage by any stretch of the
word.
Dear future self -
you better be kicking as much fucking ass as I have kicked and am
presently kicking. We have a reputation to keep.
I was hoping to have a book published by the time I turned 20. I think I tossed
the manuscript. The plot was meandering and while it was serviceable I think
I'm just gonna write something else.
My paycheck last Friday was $555.28.
I read Tank Girl and liked it. Tank Girl 2 I liked less but liked a whole lot
more high than sober. Chronologically the next one is the movie novelization
but it's a little harder to find for download and my texts SD card shattered
due to high stress (I get it).
We arrived at the Orlando Greyhound station, kissed, and I went inside to
double check whether my bus was there yet. They had a different time listed for
my bus than what I had on my ticket so I went to the information desk for help.
They said I needed to jet over to the address on my ticket, which, rather than
the place at which I had been dropped off, that place, which I had foolishly
assumed was the same place I should depart, was a small bus tours business in
an Asian marketplace. So we went over there.
The car ride took a bit and it was stressed about me missing my bus. I was
stressed too but pretended not to be. I asked if I could get my ticket
rescheduled and the clerk told me in broken English I should catch the bus at
the station we had just left. I said it would be impossible to catch the bus
because it had left by the time we got to Atlanta Bus Tours and the clerk said
that was a real shame because I couldn't reschedule my ticket or get a refund,
but that I should check the Greyhound website. The website was barren except a
cancellation page that errored on my ticket number.
However before determining I was stranded in Orlando Florida I, heroically,
told my girlfriend it could drop me off and I would Figure It Out. I am averse
to asking for help, severely and perhaps it is terminal without intervention.
But then I would have to bother someone to intervene. I slept that night under
a palm tree across from an abandoned Magic Outlet Mall. I thought this was a
franchise but looking it up it is in fact the one and only Magic Outlet Mall.
The reviews are good.
The original plan for Orlando was to spend my time browsing the city and visit
a friend in the area (now girlfriend) and the plan slowly morphed into spending
most of the week in a bed and being really well rested. It felt really good to
be well rested, actually. My head was clear. The plan was originally to sleep
in forgotten areas of Orlando but I couldn't have imagined how sparse the city
is. Cities should be dense, naturally developed, zoned curiously and built
vertically where space was no longer available otherwise. Orlando is the
opposite. My time in Florida was the best week of my life despite all of this.
Easily.
Spotify Playlist: florida
Billy Knows Jamie 100 gecs
Kiss My Own Dick David Shawty, Yungster Jack
dui estelle allen
CREEP U Black Dresses
Tell Me Your Secret death's dynamic shroud
うずまき Machine Girl
I Slept With Someone in Fall Fall Out Boy
Out Boy And All I Got Was This
Stupid Song Written About Me
Somebody's Watching Me Rockwell
Revenge Captainsparklez, Tryhardninja
N95 Kendrick Lamar
Nightcall Kavinsky
Cops and robbers underscores
Loansharks underscores
Old money bitch underscores
2023-08-28
[ 8:53 AM] trinity: fuck plato
[ 8:53 AM] trinity: plato would fuck a mcchicken and say hey guys look i had sex
[ 8:55 AM] trinity: stupid motherfucker
2023-08-29
[12:33 AM] [...]: wgat
[12:33 AM] [...]: what
[12:33 AM] [...]: real
[ 9:05 PM] trinity: full moon. spooky
[ 9:05 PM] trinity: why was i so angry at plato
[ 9:05 PM] trinity: i think i wrote that at a wendys
[ 9:05 PM] trinity: wendys seasoned potatoes sorta fuck
[ 9:19 PM] [...]: cause plato sux
2018-05-20
Disp "GUESSNEXT","CODED BY","DEVEN BLAKE 2018
Pause
ClrHome
2023-09-17 22:58:02 -06:00
5-&gt;A
2023-09-17 22:53:58 -06:00
//Prepper
Lbl A
2023-09-17 22:58:02 -06:00
5+A-&gt;A
2023-09-17 22:53:58 -06:00
Disp "GUESSES:",A
Pause
2023-09-17 22:58:02 -06:00
randInt(1,100)-&gt;B
1-&gt;D
100-&gt;E
2023-09-17 22:53:58 -06:00
ClrHome
//Main loop
Lbl B
Disp D," TO",E,"","YOUR GUESS?
2023-09-17 22:58:02 -06:00
Input "&gt; ",C
A-1-&gt;A
2023-09-17 22:53:58 -06:00
If C=B
Disp "CORRECT","
//Seperate IFs so as to avoid memory leakage
If C=B
Goto A
2023-09-17 22:58:02 -06:00
If C&lt;B
2023-09-17 22:53:58 -06:00
Then
Disp "TOO LOW
2023-09-17 22:58:02 -06:00
If C&gt;D
C-&gt;D
2023-09-17 22:53:58 -06:00
End
2023-09-17 22:58:02 -06:00
If C&gt;B
2023-09-17 22:53:58 -06:00
Then
Disp "TOO HIGH
2023-09-17 22:58:02 -06:00
If C&lt;E
C-&gt;E
2023-09-17 22:53:58 -06:00
End
2023-09-17 22:58:02 -06:00
If A&lt;1
2023-09-17 22:53:58 -06:00
Then
Disp "OUT OF GUESSES.
Return
End
Goto B
2023-09-16 21:03:29 -06:00
/blah/2023-09-16.html
The pages got disorganized in my backpack, so here they are as I dig them out.
The View from Halfway Down is definitely from before any of the other pages, I
decided to change the name after the person for which I went to Florida noted
it was the name of a Bojack Horseman episode.
---
Homelessness is a crime few want to commit. Dear vagabonds and ruffians, the
former being my category, do, though I thought carefully before deciding. Most
don't. Human beings need creature comforts, consistency, safety. Maybe I'm not
a __real__ vagabond. I'd like housing. I just can't fathom honest safety;
acceptance.
Salsa shark.
I'm not a real programmer, not a real writer, not a real vagabond, not a real
human, not a real woman, barely a cook - a bad one, and a burden on my loved
ones. The voices in my head disagree. When did I become the negative one?
I imagine if I don't catch a bus in 7 hours I will be swept into the ocean. I
understand - no, kin - Dostoevsky.
I will start asking others to help me. I sort of wish my ancestors stayed in
Finland. But I wouldn't have met [...], [...], [...]...
Draft kinlist
- Patrick Bateman
- Ryan Gosling
- ANARCHY Stocking
- IBUKI Maya
- AMANE Misa
- My friend Lily from Maine
- Saul Goodman
- Mike from Breaking Bad
- Mr. Triangle from Gravity Falls
- Charlie Chaplin
- Dostoevsky
- Franz Kafka
- Abandoned Magic Outlet
- Randall from Clerks
- Rorshach
---
Rules for the road: charging
Charge your biggest battery first. Use it last. Batteries before devices.
If near a power source, use it. 1% is a text message.
Charge as much as possible; if there are as many power sources as you have
devices, all your devices should be charging.
Use 1 device at a time, if necessary, if you can help it.
Internet takes battery. Cell networks take more.
2117: Departing Jacksonville
---
THE VIEW FROM HALFWAY DOWN (pg. 1)
My job is to separate the bones. I stand at South Station in front of a
conveyer belt - my conveyer belt, just for me - and dip my hands through the
skim and pick the bones out of the line. The bones go to the vat to my right,
to level twenty-something, where the marrow is extracted and they make the
jelly. The meat, the fat, and most importantly, the blood, go further down the
line and to level 31 which I can see below me. Level 31 is where the content is
homogenized.
I saw and talked to someone when I was in training. I don't remember its name.
It handed me my scalpel and taught me where to cut. The torso is handled by
those before me, whose work I admire. I admired the eyes to whose nose I
talked. The stainless steel. Smell of warmth. Blood from limb.
Those before me cut a Y into the chest and take the organs. My turn is already
hollowed so I use my scalpel to - efficiently - extract the bones from the
forearm, the upper arm, calves, thighs. Cut dip pull move. Cut dip pull move.
I can tell when a new hire takes over. The cuts aren't as neat, more is taken
with the organs than necessary.
It's so loud. Something always needs chopping, grinding. I hear dremels above
me sawing through bone. Everything is red.
I separate the bones because I was told to do so, and separating the bones is
how I am let live, let breathe, let sip, let eat the meat. My first day is my
breath, my second water, my third my apartment, my fourth this. This meat.
It is ground and turned to food. People beget people beget me. Simply. I
remember it that begot me. My handcuffs were unlocked in front of a
blue-painted skyscraper, my home.
---
Today I woke up next to [...]
and the [...]
oh, to think, since it's been 48 hours
today's four days long shoulda already been home
I can't remember yesterday, it's sure been a while
Since I asked did we - did you - while reaching for my phone
[...]
it's been two days since yesterday and I still haven't seen [...]
I missed my bus, shit, went to the wrong station
the agent told me there wasn't any way to change it
$250 down the drawin and I slept under a palm tree
a friend booked the next ticket, owed me, now I'll pay the difference
---
machine
and no there won't
be a sequel
---
[grossly inaccurate drawing of the fifty United States
---
THE VIEW FROM HALFWAY DOWN (pg. 2)
From the top of the skyscraper I heard the bellows of the heavens. The distance
made the roar fade and twist into a melodious drone that seemed to be the tone
of the local crimson soil and the resonance of being. I clutched the railing of
the lift upwards, 33 stories minus none, that carried me into the low ashen
clouds. The noise crescendoed.
It was halfway up that lift, 16 stories or so, that I met my predecessor. We
made eye contact, me slowly going up and it, stained all over in various films
of scarlet, swiftly descending. In a second I heard vague yowls of excitement
far below me.
Suicide is the most natural way to die. By choice rather than by chance. In my
opinion to die in such a way as to mix impure brain or spine with meat is to
end in selfishness, to ensure death with one's calories.
To say nothing of the crime. I stayed on the lift because that is my job and my
duty, and I realize that now. I committed a heinous act. I don't remember it
and naturally could not therefore defend myself. I now commit all my heinous
acts to memory.
I was a cook. My job was to render meat into meals; patties, stew, sausage, and
sometimes delicacies if a person to me noble came to the kitchen. I thought the
work was difficult.
I like to think about dying. To be separating my own bones on line. When I die
I'd like my cuts to be beautiful, sharp and clean, by those professional
processors that have honed their craft with their blade.
Sometimes the bones are broken. Sometimes all the bones are broken. Nothing was
not deafening. But nothing, too, became deafening. The drone joined my silence,
residue in my riddled brain. I lie awake at night, if for nothing else then the
cacophony.
---
THE VIEW FROM HALFWAY DOWN (pg. 3)
I have been chauffered from place to place, as if I am cattle, since I was very
young. Perhaps it has been this way forever. I love my job. I love the smell.
It may seem unbelievable but it's true, I was raised in the smell, I know the
scent of blood better than flesh, I love the smell. I have also made my peace
with the unending mechanical thunder. I can't hear much else. My fingers may as
well have been tattooed red. Cut dip pull move.
I don't know where the people came from. Nor do I know whom I would ask. I live
just as well.
---
2023-08-19 T 1400
ON A GREYHOUND...
An hour or so ago, between Lewiston (Maine) & Portland (Maine), the driver
stopped the bus, opened the door, stepped out, took some paces into Maine's
ubiquitous forest, and out of our sight, pissed.
There's something about commercial transit in this state that makes ya gotta
go, I suppose.
I'm sitting wedged against my pack and carryon, Lynn, never before mentioned
stuffed IKEA shark, above me, wondering when I can smoke my next cigarette.
I imagine Lynn is wondering when I'll again quit.
Greyhound is comfortably, perhaps haphazardly, disorganized. I was hoping I
could stow my pack under the bus. Funny thing about hope... I've been rereading
Watchmen and listening to the driver's radio. 80s? 60s-80s?
I wanna see [...]. 150mins down. 2790mins to go. At least by my small mental
scratchpad. I'm embarrassed to do the math out on this real pad. I have 3
calculators...
---
PHONE ATT.
------------- -------------
| INT SDA SCL | | SCL SDA INT |
| DCIN 5V GND | | GND 5V DCIN |
------------- -------------
-------------
| 1 _ DCIN ___|
| 2 _ VOUT ___|
| 3 _ GND ____|
| 4 _ SCL ____|
| 5 _ SDA ____|
| 6 _ INT ____|
-------------
---
2023年08月27日
I SHOULD BE ON A GREYHOUND...
Today is sunday so I guess I'll start from last Monday.
On the 21st, 1300 or so, I arrived in Orlando Florida, city - city? - of dear
hearts and weak knees. I was here to see a beloved someone and soak up some sun
and have a good time. I've never been to Florida before - in fact, I'd only
been as far as Virginia, which I didn't particularly like. I remember being
disappointed we couldn't go to a Kentucky KFC. How goals change...
I called an ex-roommate and we spoke about how things were up in Maine: not
great. Then I called [...] who was on its way over to pick me up, on a car trip
longer than I would expect (20mins? 30?). After confusion about where it was
going (the nearest Family Dollar so I could get deodorant after spending 49
hours on a bus) it arrived.
It was shorter in meatspace than I expected. More beautiful. We met on-line in
[...] after a video call in which I noticed it and got flustered at how hot it
was and it got flustered at my calling it fucking stunningly gorgeous and
everyone else in the video call in the programming community sat in silence. I
threw my backpack and carry-on in the back of the car and got in the passenger
seat and I got flustered and it got flustered still more than half a year later
for the same reasons.
Every siren makes me nervous. I know how this city treats its homeless. City?
---
Orlando isn't what I, a Mainer, imagine a city to be. Before Florida's
colonization and sterilization it was just a swamp or something like that -
every presence, as well as every absense, is deliberate. It's strange how much
absence there is. Sprawling empty parking lots, five-lane roads, lines of palm
trees and now cars and the empty Magic Outlet in front of me. A city is dense.
You can walk to another restaurant in less than five minutes if you're not
enjoying your meal. People talk to you, maybe not in your language but a little
gesturing goes a long way. There is nobody in Orlando except the sun and the
heat.
1730. No new text messages. I'm considering pawning my sleeping bag.
1804. 1 new text message.
On the 21st, 1500 or so, after some typical affection - as in, the act, not as
in what it meant to me - I took my first shower since about 2300-0100 between
the 18th and 19th in Maine. The water in Orlando is excellent. Ice is a must as
most taps only allow a selection between hot and lukewarm due to the
temperature.
Then I don't remember. And what I can remember doesn't belong here.
I thought nechan was eye-chan, but eye is me [this is Japanese; pronounced
"meh"]. Its eyes are beautiful. Much of this week I was paralyzed in awe at how
beautiful my girlfriend is. It is also just in general an excellent person. We
cooked dinner together nearly every night, it learning my rat bastard scarcity
recipes and I learning what real food tastes like and how to pronounce
jalape~no (hah lah peh nyo).
"There's something inside you. It's hard to explain. They're talking about you,
boy, but you're still the same."
---
I think it's going to rain and I have no shelter. Maybe I could figure a way
into that Magic Outlet but I have too much in my backpack to hop a fence and no
decent tools for lockpicking.
1833. No new text messages.
Received SMS from ??? ([...]) at 2023-08-27T17:07:38-0400:
stay as safe as you can please
TRINITY: Would you still love me if I was a worm?
[...]: No.
TRINITY: ...
I would still love you if you were a worm.
[...]: You love me?
I'm sorry for not showing it with my actions. Of course I love you. That was
what I was figuring out while I disappeared.
I don't know how to ask for what I need.
Magic Outlet Mall: Brand Names for Less
says the sign's faded vestige on tan-gray bricks
above palm trees yellow tape abandoned commerce sign
the magic outlet tapped out ain't that just the way
I don't miss my bed because I never had a bed
I had an air mattress flattened every morning by seven
then I got a foam slab but I'd still feel the bedframe
I don't miss my bed, I miss having my own space.
Magic Outlet Mall: Brand Names for Less
now here we both lie in the dirt at sunset
the light here is different prettier in many ways
better home than my last home, no roaches or sleeping bag cat spray
1-800-FL-LEGAL I just keyed a Tesla
my magic outlet sleeping space saw a rich asshole intruder
where will you deport me bitch barely of this earth
I'm from an orbiter of mars and polycule network
---
2004. No new messages.
I just heard a cicada for the first time. They're deafening. Like a car alarm
in immediate proximity. They make a piezo buzz like they're charging up a
missile and continue to target you with an otherworldly humm until the sun
finishes its descent.
The sun and his heat are gone. It is me and Luna and Gaia that remain. Lights
are on at the magic outlet. I guess it had a little more power.
I did not need my laptop, tech repair kit, phone parts, or two tablets. I
should have brought 1 tablet, my phone, and that's it. I needed a UV5R with
extended battery. I did not need the condoms. Gay sex is better anyway. I miss
my 5.11 RUSH 48. The ALICE's organization isn't great and it's harder to pass
unnoticed. Better would be TSA carry-on sized, then I wouldn't need to part
with my luggage. Greyhound never searched me. I'm covered in mosquito bites.
---
2023年08月28日
Hurricane Idalia - maybe only a tropical storm, I'm not sure - hits Florida
tomorrow, and for that I will need to either stay with a friend or find a
strong umbrella.
My bivy didn't survive the night, kinda shit but makes good insulation from the
ground. I could have roughed it but I wanted to be comfortable and I was
worried about bugs. I'm really unfamiliar with the local flora and fauna.
I had tickets to Billy Joel and Arctic Monkeys. I was only excited to see the
friend with which I booked them. And now the plan is to go back to our
hometown.
I'm scruffy and my hair is wack. We - as in, my girlfriend and I, which is a
delight for me to write - were planning on watching a lot of vampire movies:
Nosferatu, Only Lovers Left Alive, and Shadow of the Vampire. We ended up
watching the old classics American Psycho, Clerks, and Drive. It had never seen
Clerks and I had never seen Drie. Nor had [...] who was there Saturday. I
didn't catch a lot of the plot of Drive as I was distracted but [...] explained
it in the morning and it seems like a good movie. I was surprised at how
graphic [...]'s death in the movie was, it was a little triggering to be
honest.
It feels good to be bitten. Bitten hard. Bitten so hard you have a mark the
next day, a bruise after a week. It feels good to bite. I bite weakly,
cautiously. I bite worried about the mark and tearing flesh and the pain. It
feels better to be bitten by one that does not care. But I feel bad when I
don't care.
/blah/2023-09-09.html
western mysticism influencers stick
dispensing business stickers onto crosswalk notices
and say that mary jane is the merriest trick
and that egotistic bourgouis corpos shouldn't be so rich
2023-09-04 15:48:55 -06:00
/blah/2023-09-04.html
Regarding something I read.
I feel some guilt for not really having a lot of trans pride.
I grew up on /b/. Post golden era, when /pol/ started festering in its second
coming and pseudoanons started spiking the machine, everything got a lot more
transphobic. I didn't give a shit what the r/greentext exiles bore in prejudice
but I knew their opinions roughly reflected the 20% or so and life would be
easier if I lived without making them piss and shit themselves. But being
dishonest with myself, or being honest with myself but hiding who I was, didn't
work for me. I felt nothing as I breathed nothing and I worked on hidden
projects and scum agendas with the pitch hands of a tear in space, wordlessly
and heartlessly to test the limits to which a person could influence. Rage
against the biomass. I also wasn't able to safely come out in meatspace but to
a few at the time friends who still misgender me after years.
My dream was not to be accepted and trans, but to be ignored and a cis woman.
Or pass as a cis woman.
I too started programming on graphing calculators but I felt invalid, not a
true programmer, so I called it coding, and myself a coder, as evident by the
splashes I put before my TI-BASIC programs. Deven Blake is not my deadname, by
the way - I had my name changed when I was very young. I still don't see myself
as a programmer. Insecurities.
I had other thoughts but I forgot them.
2023年06月27日
When I started learning to program all I had was FreeBASIC and I just. Didn't.
Get it. Nor did I get PetitComputer which I got for my DSi XL. The first time I
made anything was when I was 11, 3 years after I started learning, and made a
simple drawing demo in Processing.JS.
I was not a natural programmer. Lacking any sort of lessons or guidance or a
lot of motivation I floundered, and floundered, and floundered, and tried and
failed a dozen times. Pascal, Fortran, Petit Computer, FreeBASIC, Microsoft
Batch, SmileBASIC, a dozen more. Now I work in C and shell, only because I
learned shell to script tasks and learned C to understand my scripts better.
A lot of people see expert programmers and get discouraged. My advice: Pick a
_good_ tool ~~(C or shell)~~ and stay until you know it. Python!
OK I'm done shitting
need more fiber
I'm elsewhere, AFK - I wanna add this to the blah though.
Undated; maybe from a year ago? Written on a paper bag in black sharpie
soy sauce -> dill
-> teriyaki
-> avocado
-> salt
no too
Na
coffee
avocado -> ? brown ?
chai honey
blueberry lemon
green tea maple
pineapple -> oat soggy?
-> grape
key of C cheese
cream cheese
sat atop a
speaker playing
435Hz until
the Cc is
extra soft
"dream cheese"
-> orange zest
mainly -> chamomile
-> green tea
lemon
honey
"mean cheese"
-> jalapeno
chili powder
cinnamon?
orange zest?
~~paprika?~~
~~turmeric?~~
pumpkin?
cinnamon?
kale?
salt?
pepper?
mint -> lavendar
-> coconut
-> garlic?
garlic rosemary
licorice + lavendar?
malta cream cheese
-> how?
[ -> why? ]
dandelion?
dandelion maple?
wasabi?
birthday cake?
bubblegum?
matcha!
cinnamon ginger
cola?
moxie!!!
mountain dew?
doritos?
fritos?
"team cheese" blueberry
for olympics strawberry
season (2024?)
2023年07月03日
07-05 wisdom
teeth recheck
8AM be there @ 7
commie gets fucked by capitalist,
well he was so hot
can't afford the rent
and he drives mercedes benz
and we did it in the parking lot
all of the fucking jacked in bullshit
went to law school on daddy's nest egg
and I'm stealing toilet paper out of the store
I had a good thing and I fucked it up
everyone I know has gone
came down into the mosh pit so I can push you away
just hit your head get out and run
I had a good thing and fucked everything up
all my friends moved on
I'm still here sleeping on the floor
yeah didn't we have so much fun
2023年07月04日
July 4 - when the
USA declared independ[...]
from Monarchist cunts.
I'm hiding in a parking
lot far from the hordes
that have invaded the
~~areas of~~ usual areas
of congregation. Loungi[...]
against my backpack
among Razor scooter
and Sony camera
watching the st[...]
sky
Amateur pyrotechnicians,
like teenagers on prom
night, put all their
effort into the first
five minutes of their
shows that blaze
occasionally during
twilight. The pre-show
to the fireworks
demonstration - paid
for by your tax dollars
- performed by the
city. I'm considering
breaking into an old
mill to see sky from
roof.
But that's so much
effort and the crisp
air hasn't yet cooled
me after my frantic
dash on two cheap
wheels from unnerving,
unthinking, unpredictable
crowds. A pack of
wild children crosses
my turf before deciding
to continue up Canal St.
My face itches. The
sweat and my
moisturizer are
considering waging
war on my dry skin.
2023年07月12日
[...] appt 18日1000
2023年07月13日
methamphetamine
took all his molars
and then crack cocaine
only left his front teeth
Paul always yearns
for steak medium rare
but the man only has
cans of soup to eat
consumption begets
more of the same
when it doesn't,
it's illegal
give me your money,
shoes, or brain
you're not allowed
to call me evil
I am the capital
meth took my molars
crack took my canines
lying on a park bench
what took my mind
i can't sleep in a bed
won't sleep in a bed
i can't sleep in a bed
what took my mind
the gray matter bubbled
bends made me all fried
I keep tossing & turning
what took my mind
how do you fix that?'
death
but I love life and I love
sex
my friends all died and I'm
left
but it's not now my turn to
end
I just want a steak
but crack took my canines
my destructive consumption
what the hell took my mind
methamphetamine
took my molars
crack cocaine
took my canines
then life decided to
dissolve my gray matter
please, Gaia
who took my mind?
destructive consumption
oh how badly I crave steak
all I've got's my two front teeth
can't eat even if I have my cake
my nerves shoot my eyes
head won't stop. someone end my pain
please, Gaia
who did this to my brain
2018-08-30
Disp "SCHEDULE","CODED BY","DEVEN BLAKE 2018
Pause
ClrHome
//Menu
Lbl M
0→Z
Menu("LHS SCHEDULE","VIEW SCHEDULE",A,"EDIT SCHEDULE",B,"QUIT",C
Stop
//View
Lbl A
ClrHome
For(A,1,8
"!D:→Str1
A
Asm(prgmLBLRW
Output(A,1,Ans
End
0
While Ans≠21
getKey
If Ans≠0
Output(8,1,"2ND TO QUIT
Goto M
//Edit
Lbl B
ClrHome
Output(1,1,"1-8 TO EDIT
Output(2,1,"OTHERS TO QUIT
0→A
0
While Ans=0
getKey
If Ans=72
7→A
If Ans=73
8→A
If Ans=82
4→A
If Ans=83
5→A
If Ans=84
6→A
If Ans=92
1→A
If Ans=93
2→A
If Ans=94
3→A
End
If A=0
Goto M
ClrHome
Disp "ENTER NEW DATA
Input "",Str1
"D:"+Str1→Str1
A
Asm(prgmLBLRW
ClrHome
Disp "DATA CHANGED!
While Ans≠21
getKey
End
Goto M
//Quit
Lbl C
ClrHome
Stop
//Data
Lbl D
PERIOD ONE
PERIOD TWO
PERIOD THREE
PERIOD FOUR
PERIOD FIVE
PERIOD SIX
PERIOD SEVEN
PERIOD EIGHT
2023-08-26 16:26:35 -06:00
/blah/2023-08-25.html
the voices in my head just gave me a pep talk
i was wondering if my presence had done harm
because my host just went away said they thought they felt pent up
now i'm sitting here in the dark on my laptop
i can't justify my presence if i've done harm
can't justify existing if my presence won't let pain stop
i worry about hurting everybody i love
they say it's not my fault but would say the same if it was
i'm not feeling great it's not my stomach it's my head i
think it's the static state of my location i've been in i
was wondering if i could get some space for a minute i
am going out i'll be back or if not i will text you back bye
i cleaned the room i'm staying in it's not my room it's its
it's its near institution living space i've invaded and its
floor is taken over by my shit from my backpack it is
now in the corner so it's not so claustrophobic inducing
i should shit or get off the pot but i still won't turn the light on
i would rather sit in darkness than walk over to the switch my
laptop is light enough and i don't like disturbing the air
2023-08-23 18:37:31 -06:00
/blah/2023-08-23.html
roses are red
the warmest color is blue
holy fuck i'm in florida
and i'm on your todo
it's so nice to be normal
but there's nothing normal about you
you are so fucking special
and i know you're kind of weird too
I feel good. Really good. This is the best vacation of my life.
2023-08-23 14:50:49 -06:00
/blah/2023-08-20.html
On a Greyhound...
I'm in South Carolina, or maybe Georgia. A long way from Maine - don't remind
me. Or do.
I have made it out of Lewiston.
The most tearful goodbye was my sidekick with whom I have resolved to join in
four months. I'm considering returning to Lewiston because I am so worried
about her alone in the colloquial "dirty Lew". Atlanta is 130 miles away, so
this must not be Georgia.
I wouldn't go to Hell if it was the only way I could see her. But if it was the
only remaining way to see my sidekick I would think about departing every hour.
Now the notion for myself is out of the question, completely, absolutely, not
even by accident. I'm more careful now. Fewer risks taken. Healthier choices.
Which isn't to say our separation would destroy us. We take measures to ensure
minimal if any codependency. But a wrongful separation, too soon or too early,
would.
The skyline has McDonald's, Arby's, Exxon. It could be a Maine skyline if the
Makku didn't have neon on its fringe, if the gas station was by a different
name, if there wasn't also a Waffle House. I hadn't seen a BP gas station in
my life until Virginia or so when I first noticed a "green Irving".
Anderson, South Carolina. I need to take my estrogen. Done. I am so thoroughly
farther from the place from which I was I can already scarcely remember the
sparse urbanoid environment. The forested ghetto.
The local accent has in common with mine that Atlanta is "et LANna". I wonder
what the older, thicker Maine accent would say.
Next stop: Gainsville, Georgia, if I spelled it right. I'd like to go to a
Waffle House. I wonder if they have vegan options.
2023-08-15 16:04:19 -06:00
/blah/2023-08-14.html
2021-01-12
sitcom.txt
CARLOS walks into the room.
FELL: So, how'd it go?
CARLOS: It went well. It went pretty well.
CARLOS faints onto the sofa. FELL grabs a bottle of water and pours a
third of it on CARLOS.
FELL: Well? Just well? Did you...
CARLOS (sputtering from the water): Yeah. Yeah we did. It was... sexy.
FELL: Sexy?
CARLOS: I mean, I almost died. But it was sexy.
FELL: How?..
CARLOS: Ah.. strangulation?
FELL: Strangulation?
CARLOS: I was suspended from her ceiling fan by a rope.
FELL: Oh.
CARLOS: I just need to take a quick nap to recuperate here.
FELL: Is that why you have a new turtleneck?
CARLOS: Yeah. She gave it to me when she took me out to Dennys.
FELL: Oh, well that was nice of her.
CARLOS: On a leash.
FELL: A leash?
CARLOS: I was fortunately wearing a paper bag, so it's okay. No embarrassment.
FELL: How did you eat?
CARLOS: I didn't. She said she was going to peg me later.
FELL: Did she?
CARLOS: Yes.
FELL: Was it your first time?
CARLOS: No. Thank god. She pulled out a nine-incher-
FELL: Jesus, a nine-incher?
CARLOS: That's what she called it. It was more than a foot though.
FELL: The nine inches was...
CARLOS: The nine inches was its girth. Yeah.
FELL: Did it hurt?
CARLOS: Not really, she gave me some drugs or something-
FELL: Let me see your eyes.
FELL shines a bright light into CARLOS'S eyes. Their pupils shrink.
FELL: Your eyes aren't dilated.
CARLOS: Yeah, I'm not still high or anything.
FELL: So, she hanged you up like a pin~ata-
CARLOS: Like some kind of French pin~ata-
FELL: and then after she was done with you there, doing?..
CARLOS: She put a vibrator in my ass.
FELL: So you were swinging around by your neck with a vibrator in your ass?
CARLOS: In my ass and two on my nipples.
FELL (concerned): Was all of this consensual?
CARLOS: What, does she seem like a fucking monster to you? Of course it was.
FELL: I was just checking.
CARLOS: I loved that shit. We're going on our second date next Friday.
FELL: That was the first date?
CARLOS: That was me coming over to play video games. Things just snowballed.
2021-12-03
priongod.odt
I am rotting. I can feel it. My brain eats at my skull at my eyes at my
tongue my tongue. Left arm gone. GOne. I am sitting in this freezer rotting.
The flies cannot find me but it doesnt matter. In the years after I am gone
the precipitation the weather the wind the rain the snow the sleet the hail
will fall will reign will blow will fall will fall will destroy this building
not today not tomorrow not in a hundred years but. IN a hundred years. Plus
one. Plus one day. The rust, the rot, the rot of the barrier between me and the
world will become rot in here with me with what used to be me. And my rot, my
sacred rot, will join the worlds. And the flies will find me will find whats
left and they will love me and I shall bE THEIR GOD. But now as I sit I a,m no
GOD no MESSIA the messiah came and I was weak as were everyone ELSE. We are all
dead. I am merely the last animate in a sea of death.
I was seven days younger when the fast moving slow destroying
harbringer of harrowing horror bit flipped and started eating a cow a hundred
magnitudes faster. Deus ex bovem venit.
Nobody at work read the news. Then half the cows in Canada died in the
span of eight hours. Nobody at work could afford to hide from the news anymore.
Fast food. Our lives were made from the deaths and consumption of cows.
By the time the corporation that owned the building in which I made my
living determined the price of the new scarce burger the rest of the cows in
Canada had died too, and half the people had died with them. It was at this
point that people started to worry.
Six days ago I woke up to an alarm clock that would never ring again to
a world that had changed and to the realization that I could not feel my left
foot.
2021-12-23
epilogue.odt
I woke up at dawn to the peace of my home, got out of bed, without
making it, a single pillow and blankets on a tatami mat, next to some books,
found in the basement of a church, some of its stones even still standing,
whatever denomination it was wiped away with its believers, said good morning
to my mother and father, whom I love, and who taught me love, love the only
thing I know, war wiped away, destroyed not by itself but by something smaller,
greater, got out the door, spoke my hello to the cow, the chicken, the grass,
the flowers, and began my stroll through the green, my daily walk, through the
once urbanus field, the only thing remaining being the dust of concrete and
glass, metal, lithium, my stroll my favorite exercise, through the peace of the
outside, from the peace of my home, in this piece of the world.
With the ascending sun today to my starboard, I walked through my field
of soy and wheat and potatoes, almost undisturbed by rot. I kept beatpace until
it reached halfway between the heaven and the dirt which was when I came to the
barrier, new, of the century, that had bothered me last moon. There it stood.
Moss had yet to take its rightful place and no cracks were in its boulders.
Enough powder we had to take us again to this season, more than enough barrels,
yes, but Id have liked more soy just in case. More soy in that place. Now
there were only stones and flowers.
By the suns peak Id returned home, and knowing my father had known
this land before Id known this life, I found him in a rocking chair in the
pasture, rocking back and forth, staring at a lone tree in the shadow, his hand
fallen to his side, fingers brushing the cow, whose own chest rose and fell, as
he rocked, the cow laying next to him in the same peace. “Father, do you know
the edifice, beatpace eighth the right sun from home, new as it stands?”
He didnt open his eyes. “Yes, if you can call it that. My own father
built it. Do you know why it stands?”
“No.”
My father took his hand from the cow and traced the air. “It…” he
trailed off. “The words flee. Where are we to Sol?”
“Nine suns past its solstice.”
He smiled. “Bo; go back to the stones. Youll see why your ancestor
erected them.”
I returned to the stones by the time evening started to take its toll,
sat by the flowers, and waited for epiphany. It came after the suns set, when
a low roar rose from the suns resting place. I lay staring up at the brilliant
night sky when the roar swallowed me all at once. Jumping to my feet, I saw it
all around me, a black mass, running past me towards the sea. A herd of cattle.
Id never seen one before, nor had I seen so many fauna in the same place,
twenty or thirty cows running towards what I had never known. I and the moon
above me stood upright watching them go.
After I slept I returned to my father, still in the pasture. The cows
chest was stationary.
“Miles, did you find what you sought?”
“Yes.”
My father seemed weary. “Would you say its been nice, to be here? To
exist in this world?”
The trees leaves were as green as I remembered. “Yes. Its a good
world.”
Father smiled. “Im glad you see it this way.”
/blah/2023-08-12.html
Five more days.
The tubes are in the process of being packed. I'm gonna do some cleaning this
morning (maybe). I have a shit ton of Thinkpad X200 Tablets from work I was
doing and I was gonna give one or two to locals but I think our government
provided tablets are enough for everyone.
I don't have the energy to explain. Through some government program the needy,
after filling out half a dozen forms, are given a free ten-inch tablet and a
15GB/month 4G LTE data plan that will be paid for until whatever act provides
it expires. Or you can bribe the person handing them out. $20 bought me a ten-
inch tablet and 15GB/month indefinite data plan. I don't feel bad because I
most likely qualify, I just hate forms. I can't figure them out. Something in
my noggin just can't do paperwork. I've been using the government tablet for
piracy. Breaking the law with government approval works pretty well for the
CIA, at least.
I got new Doc Martens and I feel scummy about it. They're a leather product. A
cow died so my feet could be dry. They don't make 1460 SRs (slip resistants)
vegan and I need them for kitchen jobs - while regular 1460s are good enough
for a kitchen, I need my boots to be unimpeachably adequate, which these
standards-compliant boots are. And they cost an arm and a leg but hopefully
they're worth it.
2023-08-06 15:16:37 -06:00
/blah/2023-08-06.html
The blah/ works now as well as it did early July, but is based on homepage, my
fucky single file static site generator. This was something I needed to take
care of before I left or I wouldn't get around to it; if I'm using some shitty
interface to edit the git repository instead of good old UNIX (which may happen
if my tech breaks down) I don't wanna figure out how to manage directories and
new files and stuff. I just want to edit the same old file and hope the web
interface doesn't fuck everything up. Granted, I don't know if Sourcehut has a
web interface. So that could be like 50 hours of work down the drain. But I'm
happy with homepage and it's another quirky little project of mine.
/homepage.local verbatim
#!/bin/sh
set -x
for f in ./blah/*.html
do
awk '
BEGIN { n = 0; }
/^\$!NAVIGATION$/ {
if(++n == 1){
print $0 "\n\n" substr(FILENAME, 8, 10) "\n"
}else
print "\n" $0;
}
!/^\$!NAVIGATION$/ { print $0 }
' "$f" >"$f.tmp" \
&& mv "$f.tmp" "$f" \
|| rm "$f.tmp"
f="$(printf '%s\n' "$f" | sed -e 's,./blah/,,' -e 's,\.html$,,')"
test -n "$last" \
&& sed -i "./blah/$last.html" \
-e "s,\$!NAVIGATION,$nav<A HREF=\"$f.html\">\&gt;</A>,g" \
&& nav="<A HREF=\"$last.html\">\&lt;</A>" \
|| true
nav="$nav<A HREF=\"index.html\">^</A>"
last="$f"
done
sed -i "s,\$!NAVIGATION,$nav,g" "./blah/$last.html"
ls ./blah/*.html \
| sed -e 's_.*/__g' \
-e 's/\.html$//g' \
| sort -r \
| tee ./feed.xml \
| sed -e 's_.*_<A HREF="/blah/&.html">&</A>_g' \
-e "1i\
<!DOCTYPE html><HEAD><TITLE>blah</TITLE></HEAD>\
<BODY><PRE><A HREF=\"..\">..</A>" \
-e '$a</PRE></BODY></HTML>' \
>./blah/index.html
sed -i feed.xml \
-e "1i\
<?xml version=\"1.0\" encoding=\"utf-8\"?><rss version=\"2.0\">\
<channel><title>trinity.moe/blah</title><link>https://trinity.moe/blah</link>\
<lastBuildDate>$(date)</lastBuildDate>" \
-e "s,^....-..-..\$,<item>\
<title>&</title>\
<link>https://trinity.moe/blah/&.html</link>\
<description>blah post for &</description>\
<pubdate>&</pubdate></item>," \
-e '$a</channel></rss>'
2023-08-05 09:05:36 -06:00
/blah/2023-08-05.html
On August 19 I'm taking a Greyhound away from Lewiston, Maine and I'm probably
not coming back. The only thing that could precipitate my return is my sidekick
being in trouble here.
Since walking out of work I've been picking around and working on clearing out
the stuff I'm not taking with me. It's been difficult. Sidekick left June 22 or
so and I haven't seen her since. Called regularly until recently. For the last
couple weeks she'd be here the day after we called so we could hang out before
I leave. Now I think I've lost that hope. If I'm being honest with myself I
knew 2023-07-07T1300 that I wasn't gonna see her again. But I also knew I'd
been wrong before. She said she'd be here yesterday. We didn't call to extend
the promise.
I feel like a divorcee. But if she walks through the apartment door between now
and the nineteenth she's welcome certainly and without a second thought. But I
know she doesn't read this blog. Few if any do.
/Suffix verbatim
</BODY>
</HTML>
/blah/2023-08-04.html
when I'm unrepairable I need you to not break
I may be your dependency but I can't change my fate
you don't understand me or that I'm just pushing you away
I promise it's not your fault I just can't bear to leave you chained
chained to my lifeless corpse, cadaver floating in the sea
waterlogged and bloated, pirate pacific devotee
swiss army woman drifting, you're still holding onto me
please just let me go so you yourself can go be free
your self sabatoge got to me and my life got to you
i don't know how arrange the words that'll get it through
buddy dear I love you and I'm hopelessly now due
for my seven years of bad luck month of hell condemned volume
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 */
2023-08-05 09:05:36 -06:00
/js/Suffix verbatim
2023-07-15 21:44:35 -06:00
[ "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" ],
2023-08-03 17:15:58 -06:00
/js/Prefix verbatim
2023-07-15 21:44:35 -06:00
{ "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-08-03 17:15:58 -06:00
/blah/2023-08-03.html
The Ballad of Sean and Josh
Sean is forty eight
Josh was twenty that
when Sean took Josh away
from the closet in the flat
where Josh had made his home
what home among the smack
and Sean lived with his ma
and Josh would live alone
in Sean's house room he lay
and Josh would stay alone
but then he said hello
to Sean in Sean's room
they learned about each one's
life in the dirty Lew
and Josh hadn't too much
and Sean had much to do
in Sean's big old house
Sean's Josh there could have grew
When Sean's ma passed away
in those hospital sheets
the world shut down the same
day Josh and Sean would grieve
and then the money dried up
and so did the sinks
and so did the savings
and so did their things
apartment to apartment
while Sean worked at Burger King
then an eviction was sent
and Sean and Josh moved in
to Sean's car.
And Josh didn't work and Sean said that it was fine
but Sean was working and conversing
and trying to get scheduled overtime
and Josh would smoke all of Sean's weed
and barely chip in from the check
the state sent him every month
because Josh's mom knew the system
and Sean could barely survive
his ankles swelled to tree trunk size
and Josh didn't take a job on his endless break
sleeping in Sean's car passenger side
and Sean cared deeply for his quote-friend
unquote because Sean didn't want Josh
2023-08-03 20:26:03 -06:00
to go sleep at a homeless shelter
2023-08-03 17:15:58 -06:00
in case he'd get stuff stolen from his cot
and Josh just bitched and complained
2023-08-03 20:26:03 -06:00
about the situation at hand and didn't take a fucking job
2023-08-03 17:15:58 -06:00
and sat there watching Tubi on his data plan
and all while Sean could barely stand!
And ten years was a hell of a sunk cost
but Sean didn't take out all this trash
because a human is a human
Josh had a soul, the two had a past
Josh is thirty eight
and now I'm sleeping on Sean's floor
and across from Sean's empty doorway
is Josh's dirty door
I'm twice Josh's age
take twice Josh's pay a week
because he won't take any hours
he just stays at home and sleeps.
The man is able bodied, heck
you should see him smoke a pack
of cigs he bought with Sean's new paycheck
and for which he forgot to pay Sean back
Don't give a mouse a cookie
or give a rat a joint
because Josh got a new girlfriend
and might move 'cause of his groin.
Based on a true story.
I've gotta get out of Lewiston I've gotta get out of Lewiston I've gotta get ou
2023-08-03 20:26:03 -06:00
the songs i softly sing myself
as i'm beaten so blue
are the songs i wish i sang myself
instead of playing them for you
we have come so far apart
like cotton balls unfurled
piece component piece a part
each scattered across the world
2023-08-03 17:15:58 -06:00
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
2023-07-28 12:46:47 -06:00
/blah/2023-07-26.html
https://en.wikipedia.org/wiki/Tank_Girl
https://tankgirl.fandom.com/
Tank Girl
https://web.archive.org/web/20160303193237/
http://comicbookdb.com/title.php?ID=2006
https://en.wikipedia.org/wiki/Deadline_(magazine)
- Deadline (1988-1995)
- First appearance - issue #1 (1988).
https://tankgirl.fandom.com/wiki/Comics
- In issues 1-3,5,7-10,12,13,15-17,19-21,23,25,26,29-31,39,40,45-47,50,
| 55,56,58,59,61,63,66.
http://web.archive.org/web/20230726144832/
https://www.mycomicshop.com/search?TID=125641
- Deadline USA (1991-1992)
- Appears in all three issues.
- Tank Girl (1991)
- #1 (May) to #4 (August).
- Tank Girl 2 (1993)
- #1 (June) to #4 (September).
- Tank Girl - The Movie (1995)
- 1995-03-28 according to Wikipedia.
https://en.wikipedia.org/wiki/Tank_Girl_(film)
- Tank Girl [Movie] (1995)
- 1995-03-31 according to Wikipedia.
- Tank Girl: The Odyssey (1995)
- #1 (June) to #4 (November)
- Tank Girl: Apocalypse (1995-1996)
- #1 (November 1995) to #4 (February 1996).
https://www1.thepiratebay3.to/torrent/11327499/
Tank_Girl_Ultimate_Mega_Collection
- Tank Girl 3 (1996)
- Tank Girl: The Gifting (2007)
- #1 (May) to #4 (August).
https://archive.org/details/tankgirlarmadill0000mart/
- Tank Girl: Armadillo! And a Bushel of Other Stories (2008)
- Not a comic book but instead a novel(?)
- Inside cover mentions Tank Girl 1-3, Odyssey, Apocalypse, and The
| Gifting as other Tank Girl publications.
- Internet Archive copy has a date on the inside cover of 2008-04-07.
- Tank Girl: Visions of Booga (2008)
- #1 (May) to #4 (August).
http://web.archive.org/web/20101017222217/http://rufusdayglo.blogspot.com/2008/
07/cream-of-tank-girl.html
https://www.angusrobertson.com.au/books/the-cream-of-tank-girl-alan-c-martin/p/
9781845769420
https://www.goodreads.com/en/book/show/4241646
- The Cream of Tank Girl (2008)
- Angus & Robertson lists a publication date of 2008-10-24.
- Per "Jennifer" on Goodreads:
> This book...does fill in a few missing pieces. ...it's a much
| broader history of the authors and the comic, but told in
| short bursts of text wedged between lots of art, including
| storyboards for an animation that never came to be, lots of
| design drawings for the movies, comic covers, and a side
| project comic about pirates.
https://www.suicidegirls.com/girls/nicole_powers/blog/2680051/
alan-martin-tank-girl-resurrected/
http://web.archive.org/web/20101017203627/http://rufusdayglo.blogspot.com/2008/
11/exclusive-tank-girl-art-on-suicide.html
http://web.archive.org/web/20101017215352/http://rufusdayglo.blogspot.com/2008/
12/second-suicide-girls-exclusive-up-on.html
http://web.archive.org/web/20101017201911/http://rufusdayglo.blogspot.com/2009/
03/new-tankie-pin-up-on-suicide-girls.html
http://web.archive.org/web/20101017214638/http://rufusdayglo.blogspot.com/2009/
04/easter-pin-up.html
http://web.archive.org/web/20090416013112/http://suicidegirls.com:80/members/
TankGirl_TGonSG/
http://web.archive.org/web/20090725162238/http://www.hypergeek.ca/2009/07/
thrill-power-thursday-the-weekly-droid-watch-july-23rd-2009.html
- Suicide Girls appearance (2008-2009)
- Promotional pages done monthly.
- Eight total; pg. 1 (November 2008) to pg. 8 [presumably June 2009?].
- Tank Girl: Skidmarks (2009-2010)
- #1 (November 2009) to #4 (February 2010).
- Collects stories originally published in Judge Dredd Megazine.
- Tank Girl: Dark Nuggets (2009)
- One-shot (December).
- Tank Girl: The Royal Escape (2010)
- #1 (March) to #4 (June).
- Tank Girl: Dirty Helmets (2010)
- One-shot (April).
- Tank Girl: Hairy Heroes (2010)
- One-shot (August).
- Tank Girl & Booga Split! (2010)
- One-shot (November).
- Tank Girl: Bad Wind Rising (2011)
- #1 (January) to #4 (June).
- Tank Girl: Carioca (2011-2012)
- Three issues in print, six in digital.
- Digitally, #1 (November 2011) to #6 (January 2012).
- Collected in Dirty Old Tank Girl (2019).
- Everybody Loves Tank Girl (2012)
- #1 (August) to #3 (October).
- Collected in Total Tank Girl (2017).
- The Hole of Tank Girl (2012)
- Collects Tank Girl 1-3 with bonus material.
- Solid State Tank Girl (2013)
- #1 (June) to #4 (November).
- Collected in Total Tank Girl (2017).
- 21st Century Tank Girl (2015)
- #1 (July) to #3 (September).
- Tank Girl: Two Girls, One Tank (2016)
- #1 (June) to #4 (September).
- Collected in The Legend of Tank Girl (2018).
- Tank Girl: Gold (2016-2017)
- #1 (September 2016) to #4 (March 2017).
- Collected in The Legend of Tank Girl (2018).
- World War Tank Girl (2017)
- #1 (May) to #4 (September).
- Collected in The Legend of Tank Girl (2018).
- The Wonderful World of Tank Girl (2017-2018)
- #1 (November 2017) to #4 (May 2018).
- The Way of Tank Girl (2018)
- Art book.
- A Brief History of Tank Girl (2018)
- One-shot (June).
- Tank Girl All Stars (2018)
- #1 (July) to #4 (October).
- Tank Girl Coloring Book (2018)
- Tank Girl: Action Alley (2019)
- #1 (January) to #4 (May).
- #1-4 of Tank Girl Ongoing.
- Tank Girl Forever (2019)
- #1 (August) to #4 (December).
- #5-8 of Tank Girl Ongoing.
https://comicvine.gamespot.com/king-tank-girl-1/4000-813470/
- King Tank Girl (2020-2021)
- #1 (October 2020) to #5 (June 2021).
You were good to me and now you're good to go
still, I lie awake at night dreaming 'bout the wendigo
Its forsaken autophagic mind control
Will we meet again or have I eaten at your soul
Everyone wants someone else for whom they can profess
An undying love eternal worship, egoless
All I want is an unending episodic mess
of a serialized formatted wacky hinjinks-based friendship
Now I'm a recycling center wage slave, who'd have guessed
that I'd be doing unskilled labor in ten hour shifts
And everyone else has already had their life condensed
into the other fourteen hours where they simply rest
Yet
When do I get to live among the cans that we all press?
Take the bottle bags off the trucks, feed them into baler vents
One fifteen minute pause and then a thirty minute break
Work six hundred minutes then a hundred twenty's made
Can you blame the homeless bum, confined to a park bench?
At least he gets to think without breaking his back and neck
/blah/2023-07-22.html
2020-10-27
+ +
o +
+ +
o
o o o
+ o o
o +
+ o
o
0 o
o o +
+ o o
+ + +
p
+ +
o +
+ +
o
o o o
+ o o
0 +
o +
+ o
o
0 o
o o +
+ o o
+ + +
p
+ +
o +
+ +
o i d k o i d k o i d k o i d k
d k o i d k o i d k o i d k o
o i d k o i d k o i d k o i d
\
k o i d k o i d k o i d k o i
o i d k o i d k o i d k o i d k
d k o i d k o i d k o i d k o
\
doki doki
\
that's the sound my heart makes when i
think of her
\
she occupies every thought i think eve-
ry neuron in my brain leads to a neuro-
n that leads to another neuron that le-
ads me to her
\
symlinked to every single file
\
when i wake up i imagine her next to m-
e i imagine her perfect hair her perfe-
ct smile her perfect being her perfect
flaws that make her human more human t-
han anything else on the planet i'd se-
nd a thousand helens of ships a hundre-
d thousand a thousand thousand a milli-
on million i'd send so many ships the
historians put the number in scientifi-
c notation it's the only notation fit
to describe her
\
there are four hundred seventy thousan-
d words in the merriam webster third n-
ew international dictionary if you inc-
lude its nineteen ninety three (that i-
s a date) addenda section there are th-
at many words and not a single one cou-
ld describe the feeling that feeling i-
'd get from running my fingers through her hair. it makes me feel real.
: ships.txt
i'd send those ships out if she
went missing
what the hell would i do
if she did
i can't imagine a world without her
when i do tears near my eye-lids
\
the earth, too, may sigh
when she leaves its sights
the sky, too, will shake
retch acid at the end of her wake
but the oceans, thankfully, may stay
calm
because poseidon will sympathize
with my longing
and i'll voyage on my own if need be
for the most beautiful girl
to come back to me
\
if she leaves on her own
i'll cry and i'll groan
though it's her choice and one
i respect
but if she's forced by those forces
that see joy and put out the torches
i will not cease until she is well
2023-07-21 10:19:18 -06:00
/blah/2023-07-21.html
2023-07-28 12:46:47 -06:00
2019? 2020?
2023-07-21 10:19:18 -06:00
: the usual situation in eurasia, from a distance
say thanks to my wife for making this meal
she toiled all day cooked this supper with zeal
and we feast and we feast and we eat with the wars
on tv movie screen pictring blood and al gore
turn that goddamn thing off i can't hear jamie talk
dad wait please we lost greece now they're storming iraq
say thanks to the machines they are filling the screen
fighting proxy wars over capital regimes
no more deaths no more fights only systems tonight
will be killed hard drives milled turned into bits and bytes
there's a person onscreen they aren't real let them be
shredded hair collarbone now the drones go take rome
dad agrees history will be written by 3
but now's not the time turn it off o k fine
: Waiting for your return
I found,
and shot,
your dog that sat at the door to your luxury condo
waiting for your return.
He was old
wizened
gray, thin hair on his back
and I felt bad doing it
but I wanted to see your face
your reaction
your black short hair shine in the setting sun
as you had read my neat handwriting on college ruled paper
"Turn around"
pinned by one red tack to your dead dog's ear
and as you turned you put your hand to your thigh
where sat a holstered pistol
far too late to lift your arm or pull the trigger
before I put a nine millimeter round
in your forehead
heart
and left kneecap (for good measure)
and watched you collapse on your newly tarred driveway
and watched your blood drip out your head and torso and leg
and drip down onto the hot, black surface,
and watched the blood make that interesting splatter.
It's too bad
that your dog had to die this way
before he died I gave him a nice steak I picked up on the drive over
a small steak, maybe a half-dollar's size
but nice nevertheless and better than any food you'd ever given him
and I took him to your living room and he and I sat on your couch and
he sat his head on my lap
and I shed a tear
I always shed a tear
for the souls I take (I only took one that day).
I am sorry
your dog had to die this way
but it was a better death than could be had
in that airless, sterile condo
and one your dog was happy to receive
pressing his head against my silencer.
: Autumn
The best thing my parents ever did for me was neglect to raise me,
because if they raised me I'd surely be an even worse person.
They seem to hate me, and I do too,
but it's odd that they seem to be under the illusion that they did
raise me. Because then wouldn't it be their fault
that I turned out like this?
: TempleOS
hey davis terry a temple codin every day
jesus christ on systemd
fading through reality
modern 64 bit fight
commodore and kilobytes
glowing hard and nothing more
switch statements power in C
user programmed commodore
small town train fatality
hey terry whyd you leave us so many mysteries
we don't understand your code
insane man or god, who knows?
how could one guy ever make a
self hosting OS ISO
: In a sky without a sun
there are a bunch of people falling from the sky
including me
and if you maneuver your arms a bit
against the pressure of a forceless wind
that is so powerful in the absence of a sun, or stars,
or planet
you can look up and see It
it has a face but its face will make you vomit in the \
air that is passing by you
it's best not to think about it or try to comprehend it
see tony over there
no, to your left
yeah, there
and how his face is white as a sheet?
illuminated, clearly visible in a \
world without light
he Understood it
it has eyes but we don't know how something so big
could have anything to see
/
it has a mouth but no teeth, or maybe teeth, maybe we \
could see
its teeth if so much blood wasn't falling out of it
fortunately newton's laws still apply
it's falling at the same rate we are
you'll never have to touch it
but there is no ground on which we can land, and be freed from this \
life
no way out
but to Understand
so what do we do
sheila and i play tic tac toe, we can keep the squares in our head
/
i prefer to maneuver myself to face away from the thing in the sky
because if i squint a little bit
it looks like me
/blah/2023-07-20.html
2023-07-10
[2:13 PM] [...]: Hey what happened you don't bk no more???
[2:18 PM] trinity: what happened is u owe me $80 and i will never see u
again after august 20 so i need that money pronto
[2:18 PM] trinity: where can i meet u for it
[2:18 PM] trinity: i walked out cuz i decided fuck it we ball
[2:18 PM] [...]: Why?
[2:19 PM] [...]: You leaving?
[2:19 PM] [...]: Maine
[2:19 PM] trinity: august 20 i'm moving on from maine
[2:19 PM] [...]: Ah
[2:19 PM] [...]: Noice
[2:19 PM] [...]: Where you off too?
[2:19 PM] [...]: Random or picked place?
[2:19 PM] trinity: colorado
[2:20 PM] trinity: but if i find a cool town i'm just gonna live there
instead
[2:21 PM] trinity: btw if u know any quick work i need money
[2:23 PM] trinity: within walking distance of blake st. i'm down as long
as it's not me getting fucked
[2:23 PM] [...]: Ah well I don't blame you honestly I wanna do similar
things and just kinda go around every where and go
where life takes me but I'll lyk about any work if I
find any
[2:24 PM] [...]: My plan is next year after my birthday I'm getting in
my car and driving and not looking back for a awhile
Sent SMS to ??? ([...]) at 2023-07-07T14:25:54-0400:
this is trinity btw
hey [...], i just walked out. [...]'s gonna need coverage for 11-6ish tomorrow.
i think the way [...] talks to me isn't appropriate considering what i
contributed in terms of labor. if you want i can work at lisbon st from now on,
i can make it on time and for whatever shifts they want. i've been working at
bk main st nearly a year and before that it had been another and i think my
time there has now come to an end
i didn't walk out out of anger but a realization that the things i want to be
changed won't be and even if i made it through today tomorrow (a saturday on
main st) would be as bad if not worse, and the same thing would happen week
after week. i'm planning on moving to colorado and will be in late august or so
with no plans as to what i'll be doing there when i arrive
until then, i'm at lisbon st when you need me, if you need me. if not i'll
start looking for different work tonight. i like burger king but i don't like
being understaffed and micromanaged when i came in to a poor kitchen setup in
the first place.
i already texted [...] and told him if he's the night manager kim would
appreciate it if he came in early. i'm not super sure if that was the right
move but i know he can text whomever it may concern
thanks
2023-07-06
[6:38 PM] trinity: [...]
[6:38 PM] trinity: i wanna move to [...]
[6:38 PM] trinity: Eventually. like end of year maybe
[6:39 PM] trinity: first of all is that cool with u. cuz it's ur turf. i'm
the crazy bitch u know on the internet who's slightly
unstable and notoriously abrasive. if ur like what no
what the fuck that is a fair reaction
[6:40 PM] [...]: i would love it if you moved here
[6:40 PM] [...]: we could smoke together
[6:40 PM] [...]: legal weed :3
[6:41 PM] trinity: i'm bored of maine. i like it but the people can be
dangerous and the wild can be dangerous and although
it's an honest place it can be a cruel place
[6:41 PM] trinity: oh i missed u typing
[6:42 PM] [...]: Colorado is nice
[6:42 PM] [...]: but the big city is scary a little bit
[6:42 PM] [...]: im just a country girl
[6:44 PM] trinity: weed is legal here too. and i too am meh on cities. but
i need to never be recognized again by anyone with
which i went to high school and i know 4 good people in
this state and the rest are somewhere between neutral
and evil once ive gotten to know them
[6:45 PM] trinity: i know u a little, i know [...] a little, i know how to
sleep outside and live out of a backpack, and i know
burger king kitchens like the back of my hand. so i'm
fine wherever and [...] seems kinda fuckin swag
[6:47 PM] trinity: that makes 2 decent people 0 known bad people and 1 big
metropolitan area to explore
[6:47 PM] trinity: could i receive mail where u guys are while i get a new
id and then po box?
[6:49 PM] trinity: if not thats fine ill figure it out
[6:51 PM] [...]: yea thats fine
[6:51 PM] [...]: awa
[6:52 PM] [...]: we could put you up
[6:52 PM] trinity: up?
[6:52 PM] [...]: like you could crash here
[6:52 PM] [...]: lol
[6:52 PM] trinity: nah i prefer to sleep in nature or abandoned areas
[6:53 PM] [...]: based
[6:53 PM] trinity: colorado will be difficult because snow. but i can
figure it out
[6:53 PM] [...]: it also feels about 10° colder than it is due to the air
thinness
[6:54 PM] trinity: damn
[6:54 PM] [...]: it has gotten up to 34°C here and i still havent had to wear
shorts
[6:55 PM] trinity: i just need to be free. from stuff from being known and
from existing on so much paper
[6:55 PM] [...]: yea
[6:55 PM] [...]: good luck
[6:55 PM] [...]: i feel that
[6:57 PM] trinity: i've been stagnant for the last nearly 2 years and i
have barely any friends and recently a friend of mine
turned out to be totally wacked out and now i have 2
friends less than in january and i barely was friends
with anyone in the first place
[6:58 PM] trinity: which would be fine but bumfuck nowhere maine doesn't
exactly have a strong people that exist demographic
[7:01 PM] trinity: that's my rant ive been thinkin bout this at work
[7:01 PM] [...]: yea
[7:02 PM] [...]: ily
[7:03 PM] trinity: i love you too
[7:03 PM] [...]: you could definitely find friends here
[7:03 PM] [...]: its a big city
[7:03 PM] [...]: and people are really friendly
[7:03 PM] [...]: its like it was in the midwest
[7:03 PM] [...]: but bigger
[7:04 PM] trinity: i mostly wanna know fewer bad people
[7:04 PM] [...]: i get that
[7:04 PM] [...]: its hard sometimes especially when you stumble into a
friend group that has some people you feel are being
wacky but you cant say anything really cause youre new
[7:04 PM] [...]: at least that has happened to me
[7:05 PM] trinity: lead in the water and drugs in the streets. everyone i
know has been abused brutally and takes their rage out
by abusing others. it's like a mosh pit of cruelty.
even people i know that are intent on breaking their
cycle still don't. maybe i'm one of them but maybe if
i'm no longer surrounded by bad i'll be less bad
[7:05 PM] trinity: not even good drugs just crack coke and opioids
[7:07 PM] [...]: circumstances are important
[7:07 PM] [...]: material conditions
2019-10-10
Bridge English
Gatsby Journal #2 (Journal #3)
I dont know if I can relate to Gatsby. Im sure I have an ego that Im
not aware of (but that everyone else is) - but I guess Ill probably
know if I was like him when I age out of this stage of my life. I used
to make YouTube videos, a while ago, and for a couple weeks when I
started out I was trying to play a character in front of the camera
because I felt people would like me more. I dont think theres an easy
way to say it, but, hell, nobody liked me anyway, and I decided that
Id be as genuine as possible - but for a time I guess there was a
disconnect between how people saw me and who I was. It probably wasnt
a lot of people, though. My videos averaged fifty or so views. But it
was enough to scare me straight. Its dangerous to pretend to be
someone who you arent, because you begin to lose sight of who you are.
I dont see myself as “destined” for something in my life, either. Ill
probably get a degree in Computer Science a couple years after I
graduate high school but after that I have no plans. My opinion is that
Lewiston, Maine, is a curse rather than a destiny. I know very few
people who have left this city, even after planning to, and I know very
many people who wish to leave every single day. Maybe by the nature of
where I live (and Id say you, too, but teaching is a respectable job
and you dont live in Lewiston anyway) Im “destined” to get a minimum
wage job and become a puppet for the bourgeoisie until I die. Maybe the
only reason I feel this is cynicism; after you live in the same place
for a majority of your life, you come to hate it, no matter where it
is. But, hey, yknow, life keeps on tripping.
This journal was kinda a downer and I dont really have a good ending for it so
heres a picture of a dog to cheer you up. This is the companion of a
guy I follow on Twitter, her name is Akina.
[picture of Akina]
oh also before you go all “wow people dont like deven thats crazy” dude its
actually awesome i can do whatever i want and nobody cares, plus i
actually know who my real friends are. life is poppin. having four or
five good friends really is way better than having twenty or so lame
friends.
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>
2023-08-09 18:48:03 -06:00
This website is generated by
<A HREF="https://git.sr.ht/~trinity/src/tree/main/item/homepage">
shell script
</A>.
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>
2023-08-03 17:15:58 -06:00
/Prefix verbatim
2023-07-28 12:46:47 -06:00
2023-07-15 21:07:11 -06:00
<!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" />
2023-07-19 23:09:34 -06:00
<META CONTENT="$!DESCRIPTION" NAME="description" />
2023-07-15 21:07:11 -06:00
<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 -->
2023-07-19 23:09:34 -06:00
<TITLE>$!TITLE</TITLE>
2023-07-15 21:07:11 -06:00
</HEAD>
<BODY>
2023-08-03 17:15:58 -06:00
/blah/Prefix verbatim
2023-07-28 12:46:47 -06:00
2023-07-15 21:07:11 -06:00
<!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-08-05 11:35:21 -06:00
$!NAVIGATION
2023-02-05 18:02:19 -07:00
2023-08-06 08:48:31 -06:00
/blah/Suffix verbatim
2023-03-07 05:31:10 -07:00
2023-08-05 11:35:21 -06:00
$!NAVIGATION
2023-03-07 05:31:10 -07:00
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-r