Skip to content

Instantly share code, notes, and snippets.

View ZGorlock's full-sized avatar

ZGorlock

View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active May 15, 2026 15:27
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@cfreshman
cfreshman / wordle-answers-alphabetical.txt
Last active May 15, 2026 11:14
Original Wordle answers from source code in alphabetical order. And if you write a solver, here's a leaderboard! https://freshman.dev/wordle/leaderboard Additional allowed guesses: https://gist.github.com/cfreshman/cdcdf777450c5b5301e439061d29694c
aback
abase
abate
abbey
abbot
abhor
abide
abled
abode
abort
@fnky
fnky / ANSI.md
Last active May 15, 2026 08:29
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
@dsample
dsample / README.md
Last active May 13, 2026 11:49
ASCII art diagrams

ASCI art characters for creating diagrams

Characters:

Single line

  • ASCII code 191 = ┐ ( Box drawing character single line upper right corner )
  • ASCII code 192 = └ ( Box drawing character single line lower left corner )
  • ASCII code 193 = ┴ ( Box drawing character single line horizontal and up )
  • ASCII code 194 = ┬ ( Box drawing character single line horizontal down )
aahed
aalii
aapas
aargh
aarti
abaca
abaci
aback
abacs
abaft
@ChuckMichael
ChuckMichael / vcredistr.md
Last active May 9, 2026 17:22
Visual C++ Redistributable Packages
@tayvano
tayvano / gist:6e2d456a9897f55025e25035478a3a50
Created February 19, 2017 05:29
complete list of ffmpeg flags / commands
Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options
This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full.
usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}…
Getting help:
-h — print basic options
-h long — print more options
-h full — print all options (including all format and codec specific options, very long)
@skyrising
skyrising / mojang-meta-urls.md
Last active May 1, 2026 10:16
Mojang Meta URLs
@marshyyyy
marshyyyy / YouTubeSubdomains
Last active April 30, 2026 18:29
YouTube Subdomain & IP List
Subdomain IP Address
host.youtube.com 198.105.244.63
host.youtube.com 198.105.254.63
mx.youtube.com 216.58.192.206
mx.youtube.com 216.58.192.238
mx.youtube.com 172.217.0.14
mx.youtube.com 172.217.6.14
mx.youtube.com 172.217.9.46
mx.youtube.com 216.58.192.174
mx.youtube.com 172.217.6.110
@ChuckMichael
ChuckMichael / vc_redistr.md
Last active April 28, 2026 16:51
Install all Visual C++ Redistributables using only one command!

Warning

App Installer must be installed on Win10/11.

CMD

Tip

You can save it and run as batch file (.bat).

winget install --id=Microsoft.VCRedist.2005.x86 -e  && winget install --id=Microsoft.VCRedist.2005.x64 -e  && winget install --id=Microsoft.VCRedist.2008.x86 -e  && winget install --id=Microsoft.VCRedist.2008.x64 -e  && winget install --id=Microsoft.VCRedist.2010.x86 -e  && winget install --id=Microsoft.VCRedist.2010.x64 -e  && winget install --id=Microsoft.VCRedist.2012.x86 -e  && winget install --id=Microsoft.VCRedist.2012.x64 -e  && winget install --id=Microsoft.VCRedist.2013.x86 -e  && winget install --id=Microsoft.VCRedist.2013.x64 -e  && winget install --id=Microsoft.VCRedist.2015+.x86 -e  && winget install --id=Microsoft.VCRedist.2015+.x64 -e