Skip to content

Instantly share code, notes, and snippets.

View revisualize's full-sized avatar

Joseph revisualize

  • Seattle, Washington, USAmerica, North America, Terra, Sol, Local Interstellar Cloud, Local Bubble, Gould Belt, Orion-Cygnus Arm, Milky Way, Milky Way Subgroup, Local Galactic Group, Virgo Supercluster, Laniakea Supercluster, Observable Universe, Universe
View GitHub Profile
@revisualize
revisualize / clone_all_github.sh
Created May 6, 2018 07:51
Complete clone of all Github repos
ORGANIZATION=xxx
USERSORGS=[users|orgs]
curl -s https://api.github.com/$USERSORGS/$ORGANIZATION/repos?per_page=300 | grep clone_url | awk -F '"' '{print $4}' | xargs -n 1 -P 4 git clone
Within the Dwarven Kingdom there holds a sacred pact that transcends beyond bloodlines, clan, house, and even beyond Dwarven Tides of War. There is a group derived from volunteer applicants that are designated in aiding any Dwarf that ventures too high on the peaks or too far below the depths. The group's focus is on getting every Dwarf (or anyone for that matter) that calls for aid to safety. Much like a group of special forces team members that train in peak or depth rescue.
Dvom’s focus was on frozen peak rescue and escorting noble clans leaders into adjacent Kingdoms. From his travels he had grown a desire to fly and travel the world.
// Turn all HTML <a> elements into client-side router links, no special framework-specific <Link> component necessary!
function useLinkHandler() {
function handleClick(e) {
const link = e.target.closest('a');
const isAnchorLink = link && link.href && link.href.startsWith('#');
// Check if the clicked element is a valid <a> tag and meets the navigation criteria
if (
link &&