Skip to content

Instantly share code, notes, and snippets.

View Daxtor134's full-sized avatar
πŸ™ƒ
Rewriting the universe in C99.

James Wesley Daxtor134

πŸ™ƒ
Rewriting the universe in C99.
View GitHub Profile
@OlivierLDff
OlivierLDff / Readme.md
Last active November 28, 2024 18:35
πŸš€ Git Bash Emojis (Windows)

Open git bash with admin privilege.

cd "C:/Program Files/Git/usr/share/mintty"
mkdir -p emojis
cd emojis
curl https://raw.githubusercontent.com/wiki/mintty/mintty/getemojis > getemojis
./getemojis -d
@bradtraversy
bradtraversy / myscript.sh
Last active June 18, 2025 20:35
Basic Shell Scripting
#! /bin/bash
# ECHO COMMAND
# echo Hello World!
# VARIABLES
# Uppercase by convention
# Letters, numbers, underscores
NAME="Bob"
# echo "My name is $NAME"