Thoughts

September 4th, 2023

Let us cultivate our garden

Voltaire's Candide is one of the most important books ever written. The ending is usually seen as a stoic or caustic response to irrational optimism.

What if it can be more than that? Besides the personal benefits, what if cultivating our metaphorical garden is the best way that cultural progress occurs? If so, then choosing what we plant and how it's grown may have more profound importance.

August 22nd, 2023

What if to hotl to thoit?

I love that feeling in the shower when I'm freezing cold and hot water hits me. The joy flies through into an orgasmic eye twitch and deep sigh. I thought I'd see what OpenAI's DALL·E would create for the prompt:

cold person involuntarily feeling good when hot water hits them

This was the least weird one, and I didn't crop it or add that text!

August 12th, 2023

Dedication

FedEx just delivered a package that shipped nearly 1 and ½ years ago I always assumed that if delivery services find a package that they accidentally dropped behind some closet or something and it's more than a few months old, that then some worker would just take it home because of the embarrassment of delivering something after a few months, let alone years!

But no, FedEx were asked to get a package to me and nothing would stop them from delivering on their promise! Not rain, nor sleet, nor hail, and certainly not egregious incompetence! It's strangely endearing. Maybe this is some sort of 4D marketing chess?

Building brand loyalty through unconventional means

August 4th, 2023

Neocities!

I forgot how fun Geocities was:

It's amazing that Neocities is free and you can edit your website in a browser editor (or through a folder on your computer).

It's fascinating how much of a mental straightjacket all the other cookie-cutter sites, apps, and social media put us in. Our creativity and our thoughts are transformed and squozen by the container we put ourselves in, like water.

This doesn't apply to just our internet personality, but we're straight-jacketed by political banter, social media posts, internet videos, memes, advertisements, propaganda, and just about anything entering our ears and eyes. How often do you select the topic of conversation? Even when you do, how often are you just parroting and sneezing on a mind virus from someone else, without even realizing?

Ostensibly, pictures and words have an ephemeral character. They don't physically touch us. In that is their power. Often, they penetrate deeper than a knife, into our subconscious, without us much realizing. Like a magic spell.

Our own, personally-curated and controlled website allows us to take back some of the power of pictures and words.

I ended up here because I was playing with Spacehey and I hit a straightjacket moment. Spacehey is quirky and nostalgic and it's great that you can edit and share CSS templates like Myspace; but, ultimately, it heavily restricts you. I don't even remember how I ended up finding Neocities but I'm so glad I did.

RSS

RSS feed generated with feed.sh:

sh feed.sh

FURTHERMORE

Profile

Seeking 
  Kevin    Woman 
Age   20s to early 30s
Status Single, Monogamous   Ditto
Location Austin/TX   Earth
Traits Independent thinker   Ditto
Height 6'0"  

Random

Images & etc.

 all
 88x31
 animals
 art
 backgrounds
 badges
 blinkies
 bumperstickers
 buttons
 containers
 cursors
 dividers
 doors
 emojis
 favicons
 fonts
 gifs
 images
 memes
 midis
 minis
 mp3s
 pictures
 stamps
 svgs
 tiles
 trees
 videos
 words

Directory listings generated with listings.sh (only tested on Linux):

sh listings.sh

Guestbook

Quotes

Allusions & Aphorisms

Tech Stuff

GIF editing

Use the gifsicle command line program (or ezgif.com).

Video editing

Use the ffmpeg command line program.

Mount Neocities on Linux

Mount using davfs2.

  1. Install davfs2. Example:
    sudo dnf install -y davfs2
  2. Add your user to the davfs2 group. Example:
    sudo -E usermod -a -G davfs2 $USER
  3. Log out and log back in (or reboot)
  4. Make the mount directory somewhere. Example:
    sudo mkdir /mnt/neocities
  5. Set the ownership of the mount directory. Example:
    sudo chown davfs2:davfs2 /mnt/neocities
  6. Add the user name and password for Neocities. Example:
    echo "https://neocities.org/webdav $USER $PASSWORD" | sudo tee -a /etc/davfs2/secrets
  7. Add some performance tuning in davfs2.conf. Examples:
    echo "cache_size 500" | sudo tee -a /etc/davfs2/
    echo "table_size 16384" | sudo tee -a /etc/davfs2/davfs2.conf
    echo "delay_upload 2" | sudo tee -a /etc/davfs2/davfs2.conf
  8. Add the mount point configuration. Example:
    echo "https://neocities.org/webdav /mnt/neocities/ davfs rw,user,uid=$USER 0 0" | sudo tee -a /etc/fstab
  9. Reload systemd configuration:
    sudo systemctl daemon-reload
  10. Peform the mount (this will be done automatically on subsequent reboots if network is available). Example:
    mount /mnt/neocities
  11. Then do periodic backups using backup.sh:
    sh backup.sh ~/neocities