Skip to content

Instantly share code, notes, and snippets.

View ErichDonGubler's full-sized avatar

Erich Gubler ErichDonGubler

View GitHub Profile
@ErichDonGubler
ErichDonGubler / git_svn_shallow_clone.sh
Last active August 10, 2022 14:28
Shallow-cloning an SVN repository in Git
function git_svn_shallow_clone() {
# Shallowly clones an SVN repository using `git svn`.
#
# Example: Clone directly into the CWD.
# Note: if your connection fails midway through the cloning, you can pick up from
# where you left off by simply invoking the clone function again. Neat, right?
# $ git_svn_shallow_clone <url> .
#
# You may need to run this in your cloned folder if you need to resume cloning from
# an interrupted connection.
This file has been truncated, but you can view the full file.
[
"https://www.example.com/",
"http://www.example.com/basket.php",
"http://www.example.org/airport?account=branch&account=alarm",
"http://example.com/?bottle=arch&birth=art",
"https://www.example.com/adjustment/bee.html",
"http://www.example.com/",
"http://example.com/bomb/bear?bone=behavior&arm=ball",
"http://www.example.com/",
"https://example.com/bubble",
@ErichDonGubler
ErichDonGubler / CopyGitHubPROrIssueTitleAsMarkdownLink.user.js
Last active March 26, 2025 21:10
User scripts for various things Erich uses for his work on Firefox's WebGPU implementation
@ErichDonGubler
ErichDonGubler / .gitignore
Last active April 9, 2025 22:19
Analysis of `webgpu-apps`' current blockers
cache/
@ErichDonGubler
ErichDonGubler / loadAllDifferentialPatchFiles.js
Created February 28, 2025 02:51
Load all files in a Differential revision (Phabricator)
document.querySelectorAll('[data-sigil="differential-load"]').forEach(el => el.click())