Skip to content

Instantly share code, notes, and snippets.

View grymmjack's full-sized avatar

Rick Christy grymmjack

View GitHub Profile
@grymmjack
grymmjack / github-desktop-vs-git-cli-cheat-sheet.md
Created April 15, 2025 19:59
GitHub Desktop vs. git cli Command Comparisons - Cheat Sheet

🧑‍💻 GitHub Desktop vs Git CLI Cheat Sheet

A quick-reference guide to help you understand what GitHub Desktop is doing behind the scenes — and how to do the same with raw Git commands.


🔄 Syncing & Fetching

| Action in GitHub Desktop | Equivalent Git Command |

🧙‍♂️ Techy Emoji Cheat Sheet (with :emoji: Codes)

Use these in GitHub, Slack, commit messages, or wherever you want to bring a little extra magic to your workflow 🧙‍♀️✨


🧙‍♂️ Dev Wizardry & Tools

Emoji Code Use Case
@grymmjack
grymmjack / ansifilter - convert to html.md
Last active September 15, 2024 04:14
ansifilter can be used to convert ansi to different formats
@grymmjack
grymmjack / guessing-game.rs
Created November 30, 2023 16:09
guessing-game-rick.rs
/*
Guess the Number
----------------
From the Rust Programming Language Book
with modifications by Rick Christy ([email protected])
*/
use rand::Rng;
use std::env;
use std::cmp::Ordering;
@grymmjack
grymmjack / music-grid.bas
Last active June 12, 2023 23:07
PLAY Music Grid example commented from QB64PE Wiki Example
''
' Original example (by JP):
' https://qb64phoenix.com/qb64wiki/index.php/PLAY
'
' YouTube video walkthrough by grymmjack: https://youtu.be/8vCHnr1MAU4
'
' grymmjack's notes:
'
' Changes to make:
' Humble and simple:
@grymmjack
grymmjack / ANSI-color-codes.h
Created October 25, 2022 03:56 — forked from RabaDabaDoba/ANSI-color-codes.h
The entire table of ANSI color codes working in C!
/*
* This is free and unencumbered software released into the public domain.
*
* For more information, please refer to <https://unlicense.org>
*/
//Regular text
#define BLK "\e[0;30m"
#define RED "\e[0;31m"
#define GRN "\e[0;32m"
@grymmjack
grymmjack / ANSI.md
Created September 13, 2022 22:00 — forked from fnky/ANSI.md
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27