this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

README

alice eed30e55 12ad0c19

+19 -2
+2 -1
.gitignore
··· 1 1 * 2 2 !app.py 3 3 !config.py 4 - !Pipfile* 4 + !Pipfile* 5 + !README.md
+17
README.md
··· 1 + [SSC](https://slatestarcodex.com/archives/): 2 + ``` 3 + var articles = []; for (article of document.querySelectorAll('div.sya_postcontent > a')) { if (!article.href.toString().includes('open-thread')) { articles.push(article.href.toString()); }; } copy(articles); 4 + ``` 5 + 6 + [ACX](https://astralcodexten.substack.com/archive): 7 + ``` 8 + var articles = []; for (article of document.querySelectorAll('div.post-preview-content > a.post-preview-title')) { if (!article.href.toString().includes('hidden')) { articles.push(article.href.toString()); }; } copy(articles); 9 + ``` 10 + 11 + Further filtering: 12 + ``` 13 + grep -v "open-thread" 14 + grep -vP "\/ot\d+" 15 + grep -vP "links-for" 16 + grep -vP "links-\d+" 17 + ```
-1
app.py
··· 722 722 "https://slatestarcodex.com/2015/10/27/contra-huemer-on-morals/", 723 723 "https://slatestarcodex.com/2015/10/23/a-whiter-shade-of-candidate/", 724 724 "https://slatestarcodex.com/2015/10/21/contra-simler-on-prestige/", 725 - "https://slatestarcodex.com/2015/10/18/ot-30-comment-knowledge/", 726 725 "https://slatestarcodex.com/2015/10/15/it-was-you-who-made-my-blue-eyes-blue/", 727 726 "https://slatestarcodex.com/2015/10/12/against-against-autism-cures/", 728 727 "https://slatestarcodex.com/2015/10/07/contra-caplan-on-mental-illness/",