Posts

Introduction to Terraria Building: Structure Theory

2025-03-20 Reading time 4 min. gaming Terraria Building Guide

In Terraria, we are limited to a 2D plane, yet the game offers so much freedom in building. Players can create intricate structures, from simple houses to full-fledged cities. In future posts, I will cover the basics of building in Terraria, from the tools you need to the different building styles you can choose from. For now, I will be discussing the theory of what makes building well-structured in Terraria.

Current state of SupaLidlGame (2024-05-11)

2024-05-11 Reading time 3 min. software gaming SupaLidlGame

For the past year and a half, I have been working on a Forsen fan/baj game. The reason why I am writing this is so I can see how far I’ve gone with this project and have some motivation to continue working on it, even if it means forsen will never play this LULE . I have been meaning to write this but I have gotten really lazy (Forsen build) and just worked on the game without bothering.

15:28 forsenSmug

2023-10-20 Reading time 1 min.

I called him every name and every insult under the sun

But never once did I doubt

godot bros

2023-09-14 Reading time 1 min. misc

GODOT BROS WE ARE SO BACK

Do you really need tabs/bufferlines in Neovim?

2023-07-28 Reading time 3 min. software technology

When I was previously using Emacs, one feature I found that was not really implemented was tabs for each buffer. I was extremely used to bufferlines (which is what people usually mean when they refer to “tab”) as I was using Neovim before I switched to Emacs and back to Neovim. As I got used to it, I found out that I was better off with a buffer list than a bufferline.

WHERE ARE THE COMMENTS?? HOW CAN I TYPE "forsen" NOW?? please clarify

2023-07-04 Reading time 1 min. misc

If you’re wondering why there are no comments or why it is broken, my mom temporarily disconnected my Raspberry Pi which is hosting the Remark42 server with all the comments. Yes, it is hosted at her house . And I just can’t tell her which cables go where.

It will be back probably Friday when I finally get there to plug it back in, shirley

10.07.2023 comments are now back

18:10

2023-03-22 Reading time 1 min.

NEVER DOUBT

Batch download music into your Jellyfin server!

2023-01-25 Reading time 1 min. jellyfin software technology

Disclaimer: this guide is only for educational purposes and I do not recommend or condone any of this.

https://cdn.7tv.app/emote/60ae3804259ac5a73e2bff3d/3x.png

Deemix

Docker image

I have no association with this software (educational purposes only).

Docker Compose

Here's my docker-compose.yml that sets up both Deemix and Jellyfin (just an example, I don't actually use this 👍 +500 social credit)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
version: "2.1"
services:
  jellyfin:
    image: lscr.io/linuxserver/jellyfin:latest
    container_name: jellyfin
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=America/Los_Angeles
    volumes:
      - /data/jellyfin/config:/config
      - /data/jellyfin/deemix:/data/deemix-downloads
    ports:
      - 8096:8096
    restart: unless-stopped
  deemix:
    image: registry.gitlab.com/bockiii/deemix-docker
    container_name: Deemix
    volumes:
      - /data/deemix/config:/config
      - /data/jellyfin/deemix:/downloads
    environment:
      - PUID=1000
      - PGID=1000
      - UMASK_SET=022
      - DEEMIX_SINGLE_USER=true
    ports:
      - 6595:6595
    restart: unless-stopped

How use https://cdn.7tv.app/emote/603caa69faf3a00014dff0b1/1x.png

Make sure that the Deemix download directory is mounted to both Deemix and Jellyfin to automate the process.

Hot Take

2022-11-04 Reading time 1 min. misc

Using Chrome in the year of Our Lord 2022 should both be a crime and a punishment

Redesign

2022-10-31 Reading time 1 min. misc

Site has been redesigned to look more simple in terms of colors. More attractive and normandie friendly.

Images

2022-10-22 Reading time 1 min. misc

The Fish and Young Argument

2022-09-09 Reading time 2 min. english language

What is the write way to right?

Stanley Fish argues grammar is structure is essential to English composition. He supports the idea that teaching a correct grammar is essential to teaching composition, and all college composition classes should teach the traditional forms of English grammar for academic writing.

He believes that teaching the "proper" form of English isn't robbing people of whatever dialect of English that they use. Rather, they are learning a new language alongside. This is particularly controversial as it becomes a cultural value.

Software I Use/Recommend

2022-09-05 Reading time 1 min. software emacs

Dotfiles can be viewed here (emacs config in a separate repo).

Terminal Emulator

I mainly use st because it starts up instantly. I occassionally use alacritty since fonts and emojis are currently broken on my build.

Shell

zsh. It's a better interactive shell that isn't fish. I wouldn't use fish because I'm used to writing bash syntax.

Window Manager

I use bspwm. It's very easy to configure, and you can easily script it. I've noticed as more time passes, the more logic I include in my configuration file.