Skip to content

Instantly share code, notes, and snippets.

View ju6ge's full-sized avatar
💭
👨‍💻 💪 🚴‍♂️ 🕺 🎉 🌍

Felix Richter ju6ge

💭
👨‍💻 💪 🚴‍♂️ 🕺 🎉 🌍
View GitHub Profile
@ju6ge
ju6ge / PipewireAudioServer.md
Last active October 11, 2022 16:39
Trying to setup a raspberry pi for bidirectional multidevice audio steaming with pipewire.

This gist documents the steps I have tried to setup a Raspberry for audio streaming. It builds on the assumption of running archlinux on the pi

  1. Setup A local area lan for the audio to be sent over. Using WiFi is not recommend due to the latencies involved!!!
  • Using an extra audio vlan between my devices Network: 172.16.128.0/24
  • Raspberry Pi as DHCP Server for network:
    [Match]
    Name=audio
    
@ju6ge
ju6ge / ArchEfisubZFS.md
Last active April 24, 2023 14:12
Arch Install on ZFS … EFISTUB Boot

This file describes the steps required to setup Archlinux with ZFS (fully encrypted). Booting is done by directly loading the kernel via EFISTUB

Setup

  1. Boot Archiso
  2. Bootstrap ZFS using eoli3n/archiso-zfs curl -s https://raw.githubusercontent.com/eoli3n/archiso-zfs/master/init | bash

Preparing Drive

Keybase proof

I hereby claim:

  • I am ju6ge on github.
  • I am felixrichter (https://keybase.io/felixrichter) on keybase.
  • I have a public key whose fingerprint is F216 7A6B 71E9 82A7 C60A 1D4C 8A71 1B0D A100 21ED

To claim this, I am signing this object:

@ju6ge
ju6ge / togethertube_ytplaylistloader.py
Last active November 1, 2017 18:02
A simple python program to load a youtube playlist into a togethertube room
#!/bin/python3
import requests
import sys
import re
import json
import argparse
from random import shuffle
from apiclient.discovery import build
@ju6ge
ju6ge / robustirc-bridge@.service
Created March 16, 2017 18:27
Robustirc Systemd Service
#/etc/systemd/system/robustirc-bridge@.service
[Unit]
Description=Robust IRC Bridge for irc network (%i)
[Service]
Type=simple
ExecStart=/usr/bin/robustirc-bridge -network=%I
[Install]
WantedBy=multi-user.target