<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.stefans.computer/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.stefans.computer/feed.php">
        <title>DokuWiki</title>
        <description></description>
        <link>https://wiki.stefans.computer/</link>
        <image rdf:resource="https://wiki.stefans.computer/lib/exe/fetch.php?media=logo.png" />
       <dc:date>2026-04-03T19:20:33+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=bookmark.py&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=comparekeys.sh&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=get-motivated&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=install&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=installs&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=lpt&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=mental-models&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=modifyhosts.sh&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=mount-s3&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=muses&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=programmer-mba&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=quotes&amp;rev=1728225138&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=scripts&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=snippets&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=start&amp;rev=1728224834&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.stefans.computer/doku.php?id=vocabulary&amp;rev=1757949374&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.stefans.computer/lib/exe/fetch.php?media=logo.png">
        <title>DokuWiki</title>
        <link>https://wiki.stefans.computer/</link>
        <url>https://wiki.stefans.computer/lib/exe/fetch.php?media=logo.png</url>
    </image>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=bookmark.py&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>bookmark.py</title>
        <link>https://wiki.stefans.computer/doku.php?id=bookmark.py&amp;rev=1728224834&amp;do=diff</link>
        <description>#!/usr/bin/env python3

import requests
from requests.auth import HTTPDigestAuth

siteroot=&quot;http://search.stefans.computer:8090/Crawler_p.html&quot;
username=[USERNAME]
password=[PASSWORD]

qs={}
qs[&#039;countryMustMatchSwitch&#039;]=0
qs[&#039;indexText&#039;]=&#039;on&#039;
qs[&#039;deleteold&#039;]=&#039;off&#039;
qs[&#039;crawlingDepth&#039;]=0 #just index the one page
qs[&#039;directDocByURL&#039;]=&#039;on&#039;
#qs[&#039;ignoreclassname&#039;]
qs[&#039;range&#039;]=&#039;wide&#039;
qs[&#039;agentName&#039;]=&#039;Random Browser&#039;
qs[&#039;snapshotsMaxDepth&#039;] = -1
qs[&#039;cachePolicy&#039;] = &#039;iffresh&#039;
qs[&#039;snapshotsReplaceOld&#039;] = …</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=comparekeys.sh&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>comparekeys.sh</title>
        <link>https://wiki.stefans.computer/doku.php?id=comparekeys.sh&amp;rev=1728224834&amp;do=diff</link>
        <description>#!/bin/bash

## Little script to see if a public key and private key
## match one another. Assumes keys are in ~/.ssh/ directory
## and that the pubkey is &lt;privkey_name&gt;.pub

# usage:  ./compare_keys privkey_name


if [ &quot;$#&quot; -ne 1 ]; then
    echo &quot;Invalid arguments&quot;
    exit
fi

PRIVKEY=$1
PUBKEY=&quot;$PRIVKEY.pub&quot;
OUTPUT=`diff -q &lt;(ssh-keygen -y -e -f ~/.ssh/$PRIVKEY) &lt;( ssh-keygen -y -e -f ~/.ssh/$PUBKEY )`
if [ -z &quot;$OUTPUT&quot; ]; then
    echo &quot;Match&quot;
else
    echo &quot;No Match!!&quot;
fi</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=get-motivated&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>get-motivated</title>
        <link>https://wiki.stefans.computer/doku.php?id=get-motivated&amp;rev=1728224834&amp;do=diff</link>
        <description>Ouch. Sounds like you&#039;re having a tough time max. That sucks. I&#039;ve been there, so I kinda know what you&#039;re talking about. I&#039;ve been in the ever circling vortex of self doubt, frustration, and loathing. It&#039;s no bueno. I know. If you don&#039;t mind lemme tell you a couple things. You can read em if you want, read em again later if you feel like it. But honestly man, if I spend all this time typing this out to you and you don&#039;t let it be a little tinder for your fire, well, you&#039;re just letting us both …</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=install&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>install</title>
        <link>https://wiki.stefans.computer/doku.php?id=install&amp;rev=1728224834&amp;do=diff</link>
        <description>*  Open Audible
	*  Mullvad VPN
	*  Unifi Controller
	*  GPodder
	*  Noson SONOS Controller
	*  Discord
	*  FoundryVTT
	*  Bandwhich
	*  Handbrake
	*  Pulse SMS
	*  Draw.io
	*  YouTube-DL
	*  WhisperAI

Packages

	*  brave-browser/stable
	*  buuf-remix-icons/now
	*  deluge-common/focal
	*  dosbox/focal
	*  ffmpeg/focal-updates
	*  ffmpegthumbnailer/focal
	*  figlet/focal
	*  filezilla/common</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=installs&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>installs</title>
        <link>https://wiki.stefans.computer/doku.php?id=installs&amp;rev=1728224834&amp;do=diff</link>
        <description>*  Mount an S3</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=lpt&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>lpt</title>
        <link>https://wiki.stefans.computer/doku.php?id=lpt&amp;rev=1728224834&amp;do=diff</link>
        <description></description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=mental-models&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>mental-models</title>
        <link>https://wiki.stefans.computer/doku.php?id=mental-models&amp;rev=1728224834&amp;do=diff</link>
        <description>Thanks to: Gabriel Weinberg, @yegg

This is a medium article that originally [appeared here] (https://medium.com/@yegg/mental-models-i-find-repeatedly-useful-936f1cc405d#.5pm6kcftx). All credit to the superior intellect of @yegg !

Mental Models I Find Repeatedly Useful</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=modifyhosts.sh&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>modifyhosts.sh</title>
        <link>https://wiki.stefans.computer/doku.php?id=modifyhosts.sh&amp;rev=1728224834&amp;do=diff</link>
        <description>#!/usr/bin/env bash

# Path to your hosts file
hostsFile=&quot;/etc/hosts&quot;

# Default IP address for host
ip=&quot;127.0.0.1&quot;

# Hostname to add/remove.
hostname=&quot;$2&quot;

yell() { echo &quot;$0: $*&quot; &gt;&amp;2; }
die() { yell &quot;$*&quot;; exit 111; }
try() { &quot;$@&quot; || die &quot;cannot $*&quot;; }

remove() {
    if [ -n &quot;$(grep -p &quot;[[:space:]]$hostname&quot; /etc/hosts)&quot; ]; then
        echo &quot;$hostname found in $hostsFile. Removing now...&quot;;
        try sudo sed -ie &quot;/[[:space:]]$hostname/d&quot; &quot;$hostsFile&quot;;
    else
        yell &quot;$hostname was no…</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=mount-s3&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>mount-s3</title>
        <link>https://wiki.stefans.computer/doku.php?id=mount-s3&amp;rev=1728224834&amp;do=diff</link>
        <description>install base packages


sudo yum install gcc libstdc++-devel gcc-c++ fuse fuse-devel curl-devel libxml2-devel mailcap automake openssl-devel


download and install


cd /usr/local/src
git clone https://github.com/s3fs-fuse/s3fs-fuse
cd s3fs-fuse/
./autogen.sh
./configure --prefix=/usr --with-openssl
make &amp;&amp; make install</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=muses&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>muses</title>
        <link>https://wiki.stefans.computer/doku.php?id=muses&amp;rev=1728224834&amp;do=diff</link>
        <description>*      Calliope (epic poetry)
	*      Clio (history)
	*      Euterpe (flutes and music)
	*      Thalia (comedy and pastoral poetry)
	*      Melpomene (tragedy)
	*      Terpsichore (dance)
	*      Erato (love poetry and lyric poetry)
	*      Polyhymnia (hymns and sacred poetry)</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=programmer-mba&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programmer-mba</title>
        <link>https://wiki.stefans.computer/doku.php?id=programmer-mba&amp;rev=1728224834&amp;do=diff</link>
        <description>I realized Freshman Year that I was pretty smart, but was never going to compete with the truly “smart kids” in Engineering school that were SUPER into their chosen fields. However, I realized that I was one of the only kids that wasn&#039;t afraid to get in front of a class and talk pretty, and I could boil anything down to a high school reading level.</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=quotes&amp;rev=1728225138&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:32:18+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>quotes</title>
        <link>https://wiki.stefans.computer/doku.php?id=quotes&amp;rev=1728225138&amp;do=diff</link>
        <description>You work on things and you have such faith in them while you&#039;re making them that everything feels special in a way.
- Guy Pearce

Power always thinks it has a great soul and vast views beyond the comprehension of the weak.
- John Adams</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=scripts&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>scripts</title>
        <link>https://wiki.stefans.computer/doku.php?id=scripts&amp;rev=1728224834&amp;do=diff</link>
        <description>*  Do pubkey and private key match?
	*  Modify a hosts file
	*  YaCY Bookmarker (Python)</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=snippets&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>snippets</title>
        <link>https://wiki.stefans.computer/doku.php?id=snippets&amp;rev=1728224834&amp;do=diff</link>
        <description>#Linux Sleep command
sudo systemctl suspend



# Full Dig
dig +noall +answer +multiline [DOMAIN] any



#strace to see output of a process
strace -p&lt;procid&gt; -s9999 -e write



#Calculate a fingerprint
ssh-keygen -l -f $1



#Deputtify a key
ssh-keygen -i -f $1 &gt; $1.openssh.pub</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=start&amp;rev=1728224834&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2024-10-06T14:27:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>start</title>
        <link>https://wiki.stefans.computer/doku.php?id=start&amp;rev=1728224834&amp;do=diff</link>
        <description>Linux Packages I Have Known and Loved

[CODE]

	*  Scripts
	*  Snippets
	*  Installations

[CRITICAL THINKING]

	*  
	*  
	*  
	*  

[MOVIES]

[MindF*ck Movies]

[BOOKS]

	*  Bookshelf
	*  Missing Books

[ESSAYS]

	*  Engineers Who Got an MBA
	*  Your Future Self

[GITHUBS]

	*  frotz - Infocom-style interactive fiction player for Unix and DOS
	*  the WOPR - Want to run the WOPR over telnet? This server does just that!</description>
    </item>
    <item rdf:about="https://wiki.stefans.computer/doku.php?id=vocabulary&amp;rev=1757949374&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-09-15T15:16:14+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>vocabulary</title>
        <link>https://wiki.stefans.computer/doku.php?id=vocabulary&amp;rev=1757949374&amp;do=diff</link>
        <description>*  affianced: betrothed, bound to be married
	*  amphigory: a nonsense verse; a rigmarole, with apparent meaning, which on further attention proves to be meaningless
	*  apothegm: pithy bit of wisdom or maxim
	*  arrant: consummate, thoroughgoing, complete</description>
    </item>
</rdf:RDF>
