lunes, 28 de diciembre de 2020

Disable towardsdatascience and hbr paywall

...By autopopping an incognito window ...
// ==UserScript==
// @name TowardsDataScience/hbr/medium auto open in incognito
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Raimon Grau
// @match https://towardsdatascience.com/*
// @match https://hbr.org/*
// @match https://medium.com/*
// @match https://*.medium.com/*
// @match https://*.nytimes.com/*
// @grant GM.openInTab
// ==/UserScript==
// updates(?) at: https://puntoblogspot.blogspot.com/2020/12/disable-towardsdatascience-and-hbr.html
(async () => {
const host_paywall = {
"hbr.org": "paywall-overlay-panel" ,
"towardsdatascience.com": "regwall-background-color",
"medium.com": "regwall-background-color",
"nytimes.com": "gateway-content",
}
if (! GM_info.isIncognito && document.getElementById(host_paywall[window.location.host] || "regwall-background-color")) {
const tab = await GM.openInTab(window.location.href, { incognito: true });
}
})();

miércoles, 23 de diciembre de 2020

org, roam, zettelkasten links.

Here we have a couple of links talking about the new wave on PIM, bookmarking, concept-linking.

It used to be the case that each one of us had a smilar but not quite the same system. But it seems that zettelkasten, and roam are getting some gravitational pull so people are joining them.

Usual links are org-roam, zettelkasten, and another link to zettelkasten-in-plain-org

martes, 8 de diciembre de 2020

N Good Javascript Tutorials

There's so much about javascript on the web that it's always been hard (for me) to find good resources.  But I think I found these N tutorials that are pretty good.

Good tutorials are hard to find and keeping the good links is important. I'm keeping also this docker tutorial. I just wish I've had it 3 years ago.