Skip to content

Instantly share code, notes, and snippets.

View steelegem's full-sized avatar
🤷‍♂️
...sorta clueless but learning

Travis steelegem

🤷‍♂️
...sorta clueless but learning
  • desert, usa
View GitHub Profile
@camilajenny
camilajenny / install-appimage.sh
Last active July 31, 2025 14:54
Create a desktop entry and extract an icon from an AppImage file 🗃️
#!/bin/bash
# Usage: ./install-appimage.sh /path/to/MyApp.AppImage
set -e
APPIMAGE_PATH="$1"
if [[ -z "$APPIMAGE_PATH" || ! -f "$APPIMAGE_PATH" ]]; then
echo "Usage: $0 /path/to/AppImage"
@nickcernis
nickcernis / update-zig.sh
Last active January 1, 2026 18:43
Zig install/upgrade script, latest from master
#!/bin/bash
# Updates zig to the latest master version using the official binary,
# no compilation required.
#
# - Edit the ARCHITECTURE string to match your system.
# - Requires jq. `brew install jq` (macOS) or get it at https://jqlang.github.io/jq/.
# - Put the script in the directory you want zig to be installed below, such as ~/zig/bin.
# - Then run: chmod +x update-zig.sh && ./update-zig.sh
# - Zig will live in a subfolder named zig-master-latest.
# - Add that dir to your path, for example:
@jrhemstad
jrhemstad / ninja_instructions.md
Last active December 8, 2025 20:55
How to build with Ninja

How to Use Ninja

  1. Install Ninja
sudo apt install ninja-build
  1. Configure CMake to create Ninja build files
mkdir build && cd build
@JBlond
JBlond / bash-colors.md
Last active March 21, 2026 13:10 — forked from iamnewton/bash-colors.md
The entire table of ANSI color codes.

Regular Colors

Value Color
\e[0;30m Black
\e[0;31m Red
\e[0;32m Green
\e[0;33m Yellow
\e[0;34m Blue
\e[0;35m Purple