Skip to content

Instantly share code, notes, and snippets.

@lmika
lmika / main.go
Created January 9, 2025 06:15
Obsidian Kanban board to HTML
package main
import (
"bufio"
"bytes"
"fmt"
"os"
"regexp"
"strings"
"unicode"
@lmika
lmika / backup-bootstack.sh
Last active February 26, 2022 05:55
BookStack backup script
#!/bin/bash
#
BOOTSTACK_SOURCE=/var/www/bookstack
DB_USER=root
DB_NAME=bookstack
# ---------------------------------------------------------------------
#
@lmika
lmika / detrend-twitter.tampermonkey.js
Last active June 5, 2021 00:32
Hides trending topics and recommendations from Twitter
// ==UserScript==
// @name De-trend Twitter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Hide trending topics from Twitter
// @author Leon Mika
// @match https://twitter.com/*
// @grant none
// ==/UserScript==