Skip to content

Instantly share code, notes, and snippets.

View gabldotink's full-sized avatar
👓

gabldotink gabldotink

👓
View GitHub Profile
@gabldotink
gabldotink / readme.md
Last active September 10, 2023 03:11
Wayback Machine exclusions and Save Page Now blocklist (very, very incomplete)

This gist (permanent link) contains an incomplete, unofficial list of web pages that are either:

  1. excluded from the Wayback Machine — that is, not publicly visible
  2. on the blocklist for the Wayback Machine’s Save Page Now service

wayback_exclusions

Pages that this file represents are prohibited from viewing in the Wayback Machine. Attempting to view captures from these pages will display an error message:

Moved to https://github.com/pukkandan/yt-dlp-returnyoutubedislike
@MatthewRalston
MatthewRalston / roflcopter.md
Created February 14, 2018 19:03
ROFLcopter ASCII text art

ROFLcopter ASCII

If you hear SOI SOI SOI, you better RUN RUN RUN ’cause the ROFLCOPTER ASCII army is coming for you!

THE ORIGINAL ROFLCOPTER

 ROFL:ROFL:ROFL:ROFL
         _^___
 L __/ [] \
@rodrigoborgesdeoliveira
rodrigoborgesdeoliveira / ActiveYouTubeURLFormats.txt
Last active May 23, 2024 10:17 — forked from ScottCooper92/gist:ea11b690ba4b1278e049
Example of the YouTube videos URL formats
http://www.youtube.com/watch?v=-wtIMTCHWuI
http://youtube.com/watch?v=-wtIMTCHWuI
http://m.youtube.com/watch?v=-wtIMTCHWuI
https://www.youtube.com/watch?v=lalOy8Mbfdc
https://youtube.com/watch?v=lalOy8Mbfdc
https://m.youtube.com/watch?v=lalOy8Mbfdc
http://www.youtube.com/watch?v=yZv2daTWRZU&feature=em-uploademail
http://youtube.com/watch?v=yZv2daTWRZU&feature=em-uploademail
http://m.youtube.com/watch?v=yZv2daTWRZU&feature=em-uploademail
@egmontkob
egmontkob / Hyperlinks_in_Terminal_Emulators.md
Last active May 24, 2024 08:00
Hyperlinks in Terminal Emulators
@karlhorky
karlhorky / pr.md
Last active November 2, 2023 13:44 — forked from piscisaureus/pr.md
Fetch all GitHub pull requests to local tracking branches

NOTE

You may not need local branches for all pull requests in a repo.

To fetch only the ref of a single pull request that you need, use this:

git fetch origin pull/7324/head:pr-7324
git checkout pr-7324
# ...
@alexpchin
alexpchin / Add_Existing_Project_To_Git.md
Created June 1, 2014 20:14
Add Existing Project To Git Repo

#Adding an existing project to GitHub using the command line

Simple steps to add existing project to Github.

1. Create a new repository on GitHub.

In Terminal, change the current working directory to your local project.

##2. Initialize the local directory as a Git repository.

git init
@beccasaurus
beccasaurus / goto-branch.sh
Last active January 5, 2023 15:34
Quick hack for checkout git branches into different directories (for when I'm actively working on different branches and want different working directories)
# Working on lots of different branches of different repos
# has been a pain lately, especially when trying to address
# issues in multiple branches at once.
GOTO_BRANCH_DIR="$HOME/.goto-branch"
GOTO_BRANCH_REPOS="$GOTO_BRANCH_DIR/repos"
GOTO_BRANCH_BRANCHES="$GOTO_BRANCH_DIR/branches"
_goto-branch_usage() {
echo "Usage: goto-branch repo-name [branch-name | master]"