Skip to content

Instantly share code, notes, and snippets.

View MikaelElkiaer's full-sized avatar

Mikael Elkiaer MikaelElkiaer

View GitHub Profile
! "Enabled modi" Set from: Default
! rofi.modi: window,run,ssh
! "Window opacity" Set from: Default
! rofi.opacity: 100
! "Window width" Set from: File
rofi.width: 20
! "Number of lines" Set from: Default
! rofi.lines: 15
! "Number of columns" Set from: Default
! rofi.columns: 1
@davialexandre
davialexandre / gruvbox_dark.json
Created June 23, 2019 18:09
Gruvbox Dark color scheme for the new Windows Terminal
{
"background" : "#282828",
"black" : "#282828",
"blue" : "#458588",
"brightBlack" : "#928374",
"brightBlue" : "#83A598",
"brightCyan" : "#8EC07C",
"brightGreen" : "#B8BB26",
"brightPurple" : "#D3869B",
"brightRed" : "#FB4934",
@akhenakh
akhenakh / traefik2.yaml
Created October 7, 2019 17:40
Traefik2 Kubernetes example config
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: traefik
name: traefik
namespace: default
spec:
replicas: 1
selector:
@triangletodd
triangletodd / README.md
Last active September 11, 2025 14:20
k3s in LXC on Proxmox

On the host

Ensure these modules are loaded

cat /proc/sys/net/bridge/bridge-nf-call-iptables

Disable swap

sysctl vm.swappiness=0
swapoff -a
@Makeshift
Makeshift / tutorial.md
Last active November 2, 2025 06:34
Tutorial for automatically syncing an Obsidian vault with Git on an Android device

How to sync Obsidian with Git on Android

Limitations

  • If Termux is closed in the background by Android, the cron service will stop updating your repository and you must open Termux again. Refer to instructions for your device model to disable the killing of certain background applications.
  • This may negatively affect your devices battery life. I'm not entirely sure yet.

Setup

@sipsma
sipsma / main.go
Created April 9, 2023 23:13
example of running kind inside dagger
package main
import (
"context"
"fmt"
"net"
"os"
"dagger.io/dagger"
k8smeta "k8s.io/apimachinery/pkg/apis/meta/v1"