Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts and experience preferred (super rare at this point).
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
{ | |
"a": ["\ud835\udf70", "a", "\uff41", "\ud835\udc4e", "\ud835\uddee", "\ud835\udd52", "\ud835\udd86", "\ud835\udcea", "\ud835\ude8a", "\ud835\udfaa", "\u0430", "\u0251", "\u03b1", "\ud835\udd1e", "\ud835\udc82", "\ud835\ude22", "\ud835\udec2", "\u237a", "\ud835\udcb6", "\ud835\ude56", "\ud835\udf36", "\ud835\udefc", "\ud835\udc1a", "\ud835\uddba"], | |
"A": ["\ud835\ude70", "A", "\ud835\udc34", "\u15c5", "\ud835\udc68", "\ud835\udea8", "\ud835\udd6c", "\ud835\udda0", "\u0410", "\u0391", "\ud835\udee2", "\ud835\udf56", "\ud835\udc9c", "\ud835\udf1c", "\ud81b\udf40", "\ud835\udcd0", "\ud835\udf90", "\uff21", "\ud835\uddd4", "\ud835\ude08", "\u13aa", "\ua4ee", "\ud835\udc00", "\ud835\udd04", "\ud835\udd38", "\ud800\udea0", "\ud835\ude3c"], | |
"b": ["\ud835\udc4f", "\ud835\uddef", "b", "\u0184", "\ud835\udd53", "\ud835\udd87", "\u042c", "\ud835\udceb", "\ud835\ude8b", "\u13cf", "\u15af", "\ud835\udd1f", "\u1472", "\ud835\udc83", "\ud835\ude23", "\ud835\udcb7", "\ud835\ude57", "\ud835\udc1b", "\ud835\uddbb"] |
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
// Linkifies the specified text content, replaces candidate links with html links | |
function linkify(text) | |
{ | |
if(!text || 0 === text.length) | |
{ | |
return text; | |
} | |
// Find http, https and ftp links and replace them with hyper links | |
var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi; |
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
# use yarn trunk | |
# https://yarnpkg.com/getting-started/install#updating-the-global-yarn-version | |
corepack enable | |
corepack prepare yarn@<version> --activate | |
# reinstall yarn classic after installing yarn latest | |
# https://classic.yarnpkg.com/en/docs/install | |
npm i -g yarn |
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
detectportal.firefox.com/canonical.html | |
//bugs.chromium.org/ | |
\Warchive\. | |
//(uc.appengine|drive|safebrowsing|lens|transparencyreport|calendar).google.com/ | |
//downforeveryoneorjustme.com/ | |
calendar/render | |
//outlook.office.com/ | |
//www.facebook.com/sharer/ | |
//twitter.com/intent/ | |
//www.linkedin.com/cws/ |
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://web.archive.org/web/20150421052738/https://www.cnblogs.com/wz19860913/archive/2010/04/29/1723586.html | |
var spans = document.getElementsByTagName('span'); | |
for (var span of spans) { | |
style = span.attributes.style; | |
if (style && (style.textContent == "color: #008080" || style.textContent == "color: rgba(0, 128, 128, 1)")) | |
span.remove(); | |
} |
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://askubuntu.com/questions/1075050/how-to-remove-uninstalled-snaps-from-cache | |
sudo find /var/lib/snapd/cache/ -exec rm -v {} \; |
layout | permalink |
---|---|
plaintext |
.well-known/acme-challenge/<TOKEN_URL> |
.
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
chrome.tabs.create({ | |
url: tabUrl, | |
index: tab.index + 1, | |
active: false | |
}, | |
function (tab) { | |
const m = navigator.userAgent.match(/Chrome\/([\d]+)/); | |
/* attempt to workaround issue introduced in Chrome 94+ | |
https://bugs.chromium.org/p/chromium/issues/detail?id=1245803 |
NewerOlder