Skip to content

Instantly share code, notes, and snippets.

View mymirai-nikki's full-sized avatar

mymirai-nikki

View GitHub Profile
@DumplingSociety
DumplingSociety / Svn_Cheatsheet.md
Last active May 12, 2026 16:43
GDB cheat sheet

svn merginfo

####show you what needs to be merged, next you need to svn merge each of those revisions

svn mergeinfo --show-revs eligible https://xxsubver/svn/path .

for each revision run with --dry-run as above and if no conflicts you can take the --dry-run out to perform the

The --dry-run option doesn't actually apply any local changes to the working copy. It shows only status codes that would be printed in a real merge. It's useful for getting a “high-level” preview of the potential merge, for those times when running svn diff gives too much detail.

@LindaLawton
LindaLawton / GoogleAuthenticationCurl.sh
Last active April 16, 2026 23:15
Curl bash script for getting a Google Oauth2 Access token
# Tutorial https://www.daimto.com/how-to-get-a-google-access-token-with-curl/
# YouTube video https://youtu.be/hBC_tVJIx5w
# Client id from Google Developer console
# Client Secret from Google Developer console
# Scope this is a space seprated list of the scopes of access you are requesting.
# Authorization link. Place this in a browser and copy the code that is returned after you accept the scopes.
https://accounts.google.com/o/oauth2/auth?client_id=[Application Client Id]&redirect_uri=http://127.0.0.1&scope=[Scopes]&response_type=code
# Exchange Authorization code for an access token and a refresh token.