Skip to content

Instantly share code, notes, and snippets.

View baleen37's full-sized avatar
🎯
Focusing

jito(지토) baleen37

🎯
Focusing
View GitHub Profile

Project Zomboid Dedicated Server Guide

Ubuntu Server 20.04 LTS (64-bit)

1. Install steamcmd

 sudo add-apt-repository multiverse
 sudo dpkg --add-architecture i386
 sudo apt update
 sudo apt install lib32gcc1 steamcmd 
@benevidesh
benevidesh / zn
Last active March 12, 2024 16:10
Zettelkasten Workflow (WIP)
#!/usr/bin/bash
# zn - as zettell
# new export variables EDITOR for your editor and
#+ NOTES for your notes folder.
main () {
note_id=$(date +'%Y%m%d%H%M%S')
$EDITOR $NOTES/"$note_id".md
}
@Makeshift
Makeshift / tutorial.md
Last active March 1, 2025 22:58
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

Title

Status (Draft / Under Review / Approved / Deployed)
Targets (Backend / Frontend)
Author(s) Names of the people writing the RFC
Developer(s) Names of the people responsible for the implementation of the RFC
Reviewer(s) Names of the people verifying the RFC
Updated YYYY-MM-DD
@kepano
kepano / obsidian-web-clipper.js
Last active March 31, 2025 04:35
Obsidian Web Clipper Bookmarklet to save articles and pages from the web (for Safari, Chrome, Firefox, and mobile browsers)
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{
default: Turndown
}, {
default: Readability
}]) => {
/* Optional vault name */
const vault = "";
/* Optional folder name such as "Clippings/" */
@GavinRay97
GavinRay97 / extensions.json
Created June 7, 2021 18:21
VS Code "clangd" base config, with: CMake Tools extension, MS C/C++ extension (debugging), vcpkg integration
{
"recommendations": [
"twxs.cmake",
"ms-vscode.cpptools",
"ms-vscode.cmake-tools",
"llvm-vs-code-extensions.vscode-clangd"
]
}
@rikka0w0
rikka0w0 / ipxe_build.md
Last active March 28, 2025 12:06
Build IPXE

1. Install tools and config IPXE

# Install compiler and dependencies
sudo apt-get install -y git gcc make liblzma-dev

# Grab the source code
git clone https://github.com/ipxe/ipxe.git
cd ipxe/src

# Enable NFS support
@Chainso
Chainso / league-of-legends-install.yml
Created May 19, 2019 23:25
League of Legends Lutris Install
name: "League of Legends"
runner: "wine"
version: "Installer"
slug: "league of legends"
game_slug: "league of legends"
script:
files:
- lol_installer: https://riotgamespatcher-a.akamaihd.net/releases/live/installer/deploy/League%20of%20Legends%20installer%20NA.exe
game:
exe: drive_c/Riot Games/League of Legends/LeagueClient.exe
@olveirap
olveirap / bochs_macos.txt
Last active July 3, 2019 16:13
How to compile bochs for MacOS
Modify iodev/hdimage/cdrom_osx.cc:194 for line: if ((devname = (char *) strrchr(devpath, '/')) != NULL) {
brew install sdl pkg-config
./configure --with-sdl
change Makefile: prefix = ~/bochs
do mkdir ~/bochs before doing make install