Wireless Spectrum Allocation: The Invisible Puzzle https://tedium.co/2017/05/11/wireless-spectrum-allocation-challenges/
Concept-Shaped Holes Can Be Impossible To Notice | Slate Star Codex https://slatestarcodex.com/2017/11/07/concept-shaped-holes-can-be-impossible-to-notice/
Comcast has a lot to lose if municipal broadband takes off | Ars Technica https://arstechnica.com/tech-policy/2017/11/comcast-has-a-lot-to-lose-if-municipal-broadband-takes-off/
Social network tarot cards / Boing Boing https://boingboing.net/2017/11/04/social-network-tarot-cards.html
"Facephenes": Brain Stimulation Creates Phantasmal Faces - Neuroskeptic http://blogs.discovermagazine.com/neuroskeptic/2017/11/04/facephenes-phantasmal-faces/#.WgBm4lf950y
Non-Expert Explanation | Slate Star Codex http://slatestarcodex.com/2017/11/02/non-expert-explanation/
Virgin Cola: Richard Branson‘s Greatest Failure https://tedium.co/2017/11/02/virgin-cola-history/
These glasses trick facial recognition software into thinking you‘re someone else - The Verge https://www.theverge.com/2016/11/3/13507542/facial-recognition-glasses-trick-impersonate-fool
Postmodernism For Rationalists (my attempt) | Slate Star Codex http://slatestarcodex.com/2017/11/01/postmodernism-for-rationalists-my-attempt/
Small-Scale Structures in CYOA | Emily Short‘s Interactive Storytelling https://emshort.blog/2016/11/05/small-scale-structures-in-cyoa/
The Conversations We Can’t Have: – Emmi Bevensee… https://emmibe.wordpress.com/2016/11/25/the-conversations-we-cant-have/
I‘m a woman in computer science. Let me ladysplain the Google memo to you. - Vox https://www.vox.com/the-big-idea/2017/8/11/16130452/google-memo-women-tech-biology-sexism
Why we fell for clean eating | Life and style | The Guardian https://www.theguardian.com/lifeandstyle/2017/aug/11/why-we-fell-for-clean-eating
The Madman and the Bomb - POLITICO Magazine http://www.politico.com/magazine/story/2017/08/11/donald-trump-nuclear-weapons-richard-nixon-215478
The Pull Request Hack - Felix Geisendörfer http://felixge.de/2013/03/11/the-pull-request-hack.html
A linguist on Arrival’s alien language ⌘ http://www.slate.com/blogs/browbeat/2016/11/22/a_linguist_on_arrival_s_alien_language.html
A linguist on Arrival’s alien language ⌘ http://www.slate.com/blogs/browbeat/2016/11/22/a_linguist_on_arrival_s_alien_language.html
tx 11 … quite 59
webi 11 … tx 85
Useless, but neat! http://ahogrammer.com/2016/11/15/deep-learning-enables-you-to-hide-screen-when-your-boss-is-approaching/
Useless, but neat! http://ahogrammer.com/2016/11/15/deep-learning-enables-you-to-hide-screen-when-your-boss-is-approaching/
rtdb.py: Extension for dtuple.py
This is specific to sqlite but could easily be adopted to work with other databases. # # rtdb.py: Extension for dtuple.py # # Written by Dennis T Kaplan . Public Domain. # No Copyright, no Rights Reserved, and no Warranties. class rtdb: def __init__(self, dbname, sql, one = True): self.one = one connection = sqlite3.connect(dbname) […] ⌘ Read more
Search linux bash history
Have you ever executed something on the linux shell and didn’t remember later how it was done? Well if you remember just part of it you can search for it: history | grep -i “” ⌘ Read more