Posts tagged with #Software

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.

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.

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 container

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.

Discord SUCKS!!! 😡😡💥

2022-09-17 Reading time 4 min. software technology

I've been a long-time Discord user, but over the past few years, I have come to realize that Discord really sucks.

No end-to-end encryption

Discord does not have any end-to-end encryption and neither will they consider implementing it in the future. This actually becomes more important over the past few years as Discord shifts its focus from gamers to general users. What used to be an app to keep gaming communities connected has now become a platform for any type of online chat.

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.