Trapper Keeper Content

2026-05-13 23:45:51

By

Matthew Deig

What?

It has been a while for me to post anything on here. I did some updates to the blog engine. I felt like it needed to be updated. I guess I need to answer the what, I been making stuff in blender. That the fediverse has dub trapper keeper content. I just kinda went with the flow and got inspired by 90s 3D renders and I mimic it in blender. I found it to be a great thing to work on while I was laid off from my job.

Images

a hall way with some 90s like carpet with a arch with glass block walls that are letting inside lite in an island floating in front of a pinkish sky with rocks floating around and green metal balls floating on top of the island a sunset scene over waterish and floating diamonds in the sky

CNC Wood Hotel Tags

2021-07-21 19:38:36

By

Matthew Deig

Project

I got a longmill cnc over the covid lock down, and I have been teaching myself how to CAD and woodworking. I did a few practice stuff making a phone holder for my cell phone and a Christmas sign. For my current project I making some keyring tags that look like the old hotel ones. I figure that would give me a chance to practice engraving and carving with the cnc. It turns out it did work out for learning them, the hardest part for me is coming up with items to engrave onto the tags.

Images

Engraved version Batch of tags

Doom Luancher Script

2020-12-17 19:01:22

By

Matthew Deig

#!/usr/bin/env bash

PWADDIR='/home/notptr/doom_stuff/pwad/'
PWADDIR='/home/notptr/doom_stuff/pwad/'
IWADDIR='/home/notptr/doom_stuff/iwad/'
DOOMPORT='/home/notptr/doom_stuff/eternity-bin/eternity'

IWADSEL=$IWADDIR$(ls $IWADDIR | dmenu -l 30 -p "Select Doom Iwad" -i)

CONPWADADD='Yes'
PWADSEL=''
while [ $CONPWADADD = 'Yes' ]
do
    NEWPWAD=$PWADDIR$(ls $PWADDIR | dmenu -l 30 -p "Select Doom Pwad" -i)
    PWADSEL=$PWADSEL' '$NEWPWAD
    CONPWADADD=$(echo -e "Yes\n\nNo" | dmenu -p "Want to add more Doom Pwads?" -i)
done

if [ -z $PWADSEL ]
then
    $DOOMPORT -iwad $IWADSEL
else
    $DOOMPORT -iwad $IWADSEL -file $PWADSEL
fi
exit