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
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.
My recommended learning resources for web development. (Note this may be a little too much.)
This is over 80 lines of text.
This is a good video:
How to Become a Master Web Developer
https://www.youtube.com/watch?v=0yzRW8yqN4M
2016/2017 MUST-KNOW WEB DEVELOPMENT TECH - Watch this if you want to be a web developer
https://www.youtube.com/watch?v=sBzRwzY7G-k 22:51
// 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 &&