-
WCAG 101: Understanding the Web Content Accessibility Guidelines 2024-10-09
-
Accessibility | MDN - (often abbreviated to A11y) in web development means enabling as many people as possible to use websites, even when those people's abilities are limited in some way.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const removeQueryParam = (key: string) => { | |
const existingValue = getFromQuery(key) | |
if (existingValue === null) { | |
return; | |
} | |
const url = new URL(window.location as any); | |
url.searchParams.delete(key); | |
history.pushState({}, '', url); |
GIT_SSH_COMMAND='ssh -i PATH/TO/KEY/FILE -o IdentitiesOnly=yes' git clone [email protected]:OWNER/REPOSITORY
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
code to get the channel id the youtube video page | |
the output in case of susscess will open on a new | |
browser tab the youtube channel feed as JSON | |
initially based on | |
https://paperless.blog/youtube-channel-web-feed-bookmarklet | |
but I got some edge cases where that doesn't work, so I reworked it |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://jsfiddle.net/erkobridee/56nwr3d2/1/ | |
/* | |
references | |
Digital Root | Math is Fun | |
https://www.mathsisfun.com/numbers/digital-root.html | |
Digital Root Calculator | Omni Calculator | |
https://www.omnicalculator.com/math/digital-root |
NewerOlder