Skip to content

Instantly share code, notes, and snippets.

@rava-dosa
Last active March 15, 2023 16:40
Show Gist options
  • Save rava-dosa/3a85ec745b38eacef0d34af7445af917 to your computer and use it in GitHub Desktop.
Save rava-dosa/3a85ec745b38eacef0d34af7445af917 to your computer and use it in GitHub Desktop.

Problem

  1. Hackernews app export wasn't working for all my saved article.
  2. So I panicked

Solution

  1. adb shell 'pm list packages -f' | grep mater
  2. adb backup -f ~/backup.ab -noapk io.github.hidroh.materialistic
  3. ( printf "\x1f\x8b\x08\x00\x00\x00\x00\x00" ; tail -c +25 backup.ab ) | tar xfvz -
  4. Go to ~/apps/io.github.hidroh.materialistic/db
  5. sqlite3 Materialistic.db
  6. .headers on
  7. .mode csv
  8. .output data.csv
  9. select _id, url, title from favorite;

Processing

f=open("data.csv","r")
l=f.readlines()
d=[]
for x in l:
    temp=x.replace(",",". ",1)
    temp=temp.replace(",",", ",1)
    d.append(temp)
f=open("try.csv","w")
for x in d:
    f.write(x)
f.close()

Result

  1. https://bofh.org.uk/2019/02/25/baking-with-emacs/, "Running a Bakery on Emacs and PostgreSQL"
  2. https://www.percona.com/blog/2019/02/25/mysql-challenge-100k-connections/, "MySQL Challenge: 100k Connections"
  3. https://usefyi.com/airtable-history/, "Airtable Became a Unicorn by Reinventing the Spreadsheet"
  4. https://docs.google.com/document/d/1xVrPoNutyqTdQ04DXBEZW4ZW4A5RAQW2he7qIpTmG-M/edit, "Reconstructing Twitter's Firehose"
  5. http://sagartewari01.com/c-macro-magic/, "C Macro Magic"
  6. https://cacm.acm.org/magazines/2019/3/234913-lost-in-math/fulltext, "Lost in Math?"
  7. http://immersivemath.com/ila/index.html, "Immersive Linear Algebra (2015-2016)"
  8. http://www.ianbicking.org/blog/2019/03/firefox-experiments-i-would-have-liked.html, "Firefox Experiments I Would Have Liked to Try"
  9. http://www.tomanthony.co.uk/blog/facebook-bug-confirm-user-identities/, "Facebook exploit – Confirm website visitor identities"
  10. http://www.abclinuxu.cz/blog/jenda/2019/2/exploiting-mysql-arbitrary-file-read-a-honeypot-that-kicks, "Exploiting MySQL arbitrary file read: a honeypot that kicks"
  11. https://github.com/seanlaff/simple-streaming-datasource, "Show HN: Grafana Live Streaming Datasource Implementation"
  12. https://www.pentestpartners.com/security-blog/gone-in-six-seconds-exploiting-car-alarms/, "Gone in six seconds? Exploiting car alarms"
  13. https://news.ycombinator.com/item?id=19349676, "Ask HN: How to speak like a leader, not like an engineer?"
  14. https://github.com/marcan/takeover.sh, "Wipe and reinstall a running Linux system via SSH, without rebooting (2017)"
  15. https://v8.dev/blog/jitless, "JIT-Less V8"
  16. http://www.radicle.xyz/, "Radicle: A decentralized alternative to GitHub built on IPFS"
  17. https://www.wezm.net/technical/2019/02/alpine-linux-docker-infrastructure/, "Rebuilding My Personal Infrastructure With Alpine Linux and Docker"
  18. https://skymind.ai/wiki/attention-mechanism-memory-network, "Beginner's Guide to Attention Mechanisms and Memory Networks"
  19. https://habr.com/ru/company/pvs-studio/blog/443400/, "Counting Bugs in Windows Calculator"
  20. https://www.independent.co.uk/life-style/gadgets-and-tech/news/time-reverse-quantum-computer-science-study-moscow-a8820516.html, "Scientists ‘reverse time’ with quantum computer in breakthrough study"
  21. https://wyag.thb.lt/, "Write Yourself a Git"
  22. https://togototo.wordpress.com/, "The ups and downs of porting 50k lines of C++ to Go (2015)"
  23. https://tech.channable.com/posts/2019-03-13-how-we-made-haskell-search-strings-as-fast-as-rust.html, "How we made Haskell search strings as fast as Rust"
  24. https://github.com/michelp/pggraphblas, "Show HN: Graph Processing with Postgres and GraphBLAS"
  25. http://www.craigkerstiens.com/2019/03/13/give-me-back-my-monolith/, "Give Me Back My Monolith"
  26. https://ethanmarcotte.com/wrote/the-web-we-broke/, "The Web We Broke"
  27. https://fastcompression.blogspot.com/2019/03/presenting-xxh3.html, "XXH3 – a new speed-optimized hash algorithm"
  28. https://www.npr.org/sections/deceptivecadence/2015/03/19/393778706/sviatoslav-richter-the-pianist-who-made-the-earth-move, "Sviatoslav Richter: A Pianist Who Made the Earth Move (2015)"
  29. https://www.latimes.com/local/california/la-fi-boeing-max-design-20190315-story.html, "A 50-year-old design came back to haunt Boeing with its troubled 737 Max jet"
  30. https://arduinohistory.github.io/, "The Untold History of Arduino"
  31. https://architecture-database.blogspot.com/, "Database Architecture Blog"
  32. https://chargen.one/high5/moving-back-to-lighttpd, "Moving Back to Lighttpd (Nginx)"
  33. https://www.wired.co.uk/article/avoid-facial-recognition-software, "Hacking your face to dodge the rise of facial recognition tech"
  34. https://cs.nyu.edu/cs/faculty/shasha/papers/tutorial, "K7 Tutorial"
  35. http://web.mit.edu/~simsong/www/ugh.pdf, "The Unix-Haters Handbook (1994) [pdf]"
  36. https://github.com/picotorrent/picotorrent, "Picotorrent: a tiny, hackable BitTorrent client"
  37. https://leandromoreira.com.br/2019/01/25/how-to-build-a-distributed-throttling-system-with-nginx-lua-redis/, "How to build a distributed throttling system with Nginx, Lua, and Redis"
  38. https://github.com/jfcoz/postgresqltuner, "Simple script to analyse your PostgreSQL database config, give tuning advice"
  39. http://jeremymikkola.com/posts/2019_03_19_rules_for_autocomplete.html, "Rules for Autocomplete"
  40. https://www.256kilobytes.com/content/show/4957/what-is-commento-the-open-source-disqus-alternative, "Commento: The Open Source Disqus Alternative"
  41. https://dev.to/davidk01/cloud-management-with-prolog-29d8, "Cloud Management with Prolog"
  42. https://www.pikapkg.com/blog/pika-web-a-future-without-webpack/#, "Pika/web: Web Apps Without the Bundler"
  43. http://pgdash.io/blog/scaling-postgres.html, "Vertically Scaling PostgreSQL"
  44. https://techcrunch.com/2019/03/18/here-are-the-85-startups-that-launched-today-at-y-combinators-w19-demo-day-1/, "Startups that launched at Y Combinator’s W19 Demo Day 1"
  45. https://repl.it/site/blog/gfx?ref=updates, "Repl.it GFX: Native graphics development in the browser"
  46. http://antirez.com/news/128, "Redis streams as a pure data structure"
  47. https://zygoloid.github.io/cppcontest2018.html, "Esoteric C++ Contest 2018"
  48. https://blog.ycombinator.com/yc-interviews-in-india/, "YC Interviews in India"
  49. https://lists.freebsd.org/pipermail/freebsd-current/2010-August/019310.html, "Why GNU grep is fast (2010)"
  50. https://gadgets.ndtv.com/laptops/news/intel-visa-sa-00086-exploit-researchers-computer-data-access-2014854, "Intel VISA Exploit Gives Access to Computer’s Entire Data, Researchers Show"
  51. https://blog.cloudflare.com/1111-warp-better-vpn/, "Warp: Fixing Mobile Internet Performance and Security"
  52. https://github.com/chrisdickinson/git-rs, "Git implemented in Rust"
  53. https://www.win.tue.nl/~aeb/linux/vfs/trail.html, "A small trail through the Linux kernel (2001)"
  54. https://blog.samuelmaddock.com/posts/google-widevine-blocked-my-browser/, "I tried creating a web browser, and Google blocked me"
  55. https://cstack.github.io/db_tutorial/, "Writing a sqlite clone from scratch in C"
  56. https://blog.lawrencejones.dev/building-a-postgresql-load-tester/, "Building a PostgreSQL load tester"
  57. https://sixfortwelve.wordpress.com/2019/04/06/how-to-increase-your-chances-of-finding-a-hidden-camera/, "How to increase your chances of finding a hidden camera"
  58. https://www.netlify.com/products/dev/, "Netlify Dev"
  59. https://www.microsoft.com/en-us/research/publication/a-fork-in-the-road/, "A fork() in the road"
  60. https://www.hackernewspapers.com/, "Show HN: Top PDFs and Papers Submitted to Hacker News"
  61. https://www.nytimes.com/2019/04/12/education/lebron-james-school-ohio.html, "LeBron James school that was considered an experiment is showing promise"
  62. https://googleprojectzero.blogspot.com/2019/04/virtually-unlimited-memory-escaping.html?m=1, "Virtually Unlimited Memory: Escaping the Chrome Sandbox"
  63. http://neuralnetworksanddeeplearning.com/chap4.html, "A visual proof that neural nets can approximate any continuous function"
  64. https://ocw.mit.edu/courses/mathematics/18-s097-applied-category-theory-january-iap-2019/index.htm, "Applied Category Theory"
  65. https://eng.uber.com/employing-quic-protocol/, "Uber's use of QUIC to improve latency over cellular networks"
  66. https://biologicperformance.com/sealed-bottle-terrarium-garden-watered-once-53-years/, "A Sealed Garden That Was Watered Once in 53 Years (2017)"
  67. http://nymag.com/intelligencer/2019/05/group-chats-are-making-the-internet-fun-again.html, "Group Chats Are Making the Internet Fun Again"
  68. https://www.linuxjournal.com/content/without-gui-how-live-entirely-terminal, "Without a GUI: How to Live Entirely in a Terminal"
  69. https://sivers.org/mistake, "My $3.3M Mistake (2009)"
  70. https://gnunet.org/en/#gnunet-0.11.5-release, "GNUnet 0.11.5"
  71. https://nelari.us/post/raytracer_with_rust_and_zig/, "Writing a small ray tracer in Rust and Zig"
  72. https://dustycloud.org/blog/racket-is-an-acceptable-python/, "Racket Is an Acceptable Python"
  73. https://blog.cloudflare.com/details-of-the-cloudflare-outage-on-july-2-2019/, "Details of the Cloudflare outage on July 2, 2019"
  74. https://tinygo.org/, "TinyGo: New Go Compiler Based on LLVM"
  75. http://www.mikemarcin.com/post/coroutine_a_million_stacks/, "Coroutines: A Million Stacks (2017)"
  76. https://www.zdnet.com/article/hackers-breach-fsb-contractor-expose-tor-deanonymization-project/, "Hackers breach FSB contractor, expose Tor deanonymization project"
  77. http://www.openculture.com/2012/08/ieverything_i_knowi_42_hours_of_visionary_buckminster_fuller_lectures_1975.html, "Everything I Know – 1975 Lectures by Buckminster Fuller"
  78. https://blog.trailofbits.com/2019/07/19/understanding-docker-container-escapes/, "Understanding Docker Container Escapes"
  79. http://thume.ca/ray-tracer-site/, "Photorealistic Path Tracer"
  80. https://manybutfinite.com/post/how-computers-boot-up/, "How Computers Boot Up (2008)"
  81. https://entrepreneurshandbook.co/how-we-got-into-y-combinator-a7d0f0183307, "Crucial Keys to Get into Y Combinator"
  82. https://github.com/luwes/sinuous, "Show HN: Sinuous – Small, fast, reactive UI library"
  83. https://lewissbaker.github.io/2017/09/25/coroutine-theory, "Coroutine Theory"
  84. https://warmcat.com/hardware%20design/hdmi/fpga/2015/10/20/hdmi-capture-and-analysis-fpga-project.html, "HDMI Capture and Analysis FPGA Project (2015)"
  85. https://anuschkarees.com/blog/2014/05/01/how-to-assess-the-quality-of-garments-a-beginners-guide-part-i/, "How to assess the quality of garments (2014)"
  86. https://dl.acm.org/citation.cfm?id=3321445, "Unikernels: The Next Stage of Linux's Dominance"
  87. https://ananasanalytics.com/, "Show HN: Ananas – a hackable data tool for beginners"
  88. http://www.nocsdegree.com, "No CS Degree – Interviews with self-taught developers"
  89. https://medium.com/lyftlevel5/unlocking-access-to-self-driving-research-the-lyft-level-5-dataset-and-competition-d487c27b1b6c, "Lyft releases self-driving research dataset"
  90. https://blog.containo.us/announcing-yaegi-263a1e2d070a, "Yaegi – Yet Another Go Interpreter"
  91. https://www.linuxjournal.com/content/extending-kernel-built-kernel-headers, "Extending the Linux Kernel with Built-In Kernel Headers"
  92. https://latacora.micro.blog/2019/07/24/how-not-to.html, "How (not) to sign a JSON object"
  93. https://slate.com/news-and-politics/2009/08/why-we-don-t-use-galileo-s-last-name.html, "Why we don't use Galileo's last name (2009)"
  94. https://www-m.cnn.com/2019/07/27/health/doug-lindsay-invented-surgery-trnd/index.html, "Dropout was bedridden for 11 years. Then he invented a surgery and cured himself"
  95. https://www.quora.com/How-is-China-able-to-provide-enough-food-to-feed-its-population-of-over-1-billion-people-Do-they-import-food-or-are-they-self-sustainable?share=1, "How is China able to provide enough food to feed over 1B people?"
  96. https://www.synacktiv.com/posts/exploit/exploiting-a-no-name-freebsd-kernel-vulnerability.html, "Exploiting a No-Name FreeBSD Kernel Vulnerability"
  97. https://www.coindesk.com/mit-fellow-accuses-facebook-of-lifting-his-ideas-for-libra-cryptocurrency, "MIT Fellow Says Facebook ‘Lifted’ His Ideas for Libra Cryptocurrency"
  98. https://www.wsj.com/articles/more-older-couples-stay-together-because-they-live-apart-11564311602?mod=rsswn, "More Older Couples Stay Together Because They Live Apart"
  99. https://github.com/nanochess/bootOS, "BootOS: Monolithic operating system in 512 bytes of x86 machine code"
  100. https://lkml.org/lkml/2019/7/30/1399, "Implement mechanism to wait on any of several futexes"
  101. https://fuse.wikichip.org/news/2567/tsmc-talks-7nm-5nm-yield-and-next-gen-5g-and-hpc-packaging/, "TSMC Talks 7nm, 5nm, Yield, and Next-Gen 5G and HPC Packaging"
  102. https://news.ycombinator.com/item?id=20584311, "Ask HN: Who is hiring? (August 2019)"
  103. https://www.scottaaronson.com/blog/?p=4229#comment-1815290, "Knuth on Huang's Sensitivity Proof: “I've got the proof down to one page” [pdf]"
  104. https://vimeo.com/341663153, "The Art of Warez [video]"
  105. https://www.sonniesedge.net/posts/real-dark-web/, "The Real Dark Web"
  106. https://drew.ltd/blog/posts/2020-8-2.html, "Building a Programming Language Pt. 3 – Interpreting"
  107. https://blog.blazingdb.com/blazingsql-is-now-open-source-b859d342ec20, "BlazingSQL is Now Open Source"
  108. https://medium.com/@bellmar/all-the-best-engineering-advice-i-stole-from-non-technical-people-eb7f90ca2f5f, "All the best engineering advice I stole from non-technical people"
  109. https://eater.net/vga, "Let's Build a Video Card"
  110. https://solid.inrupt.com/how-it-works, "Tim Berners-Lee's new decentralisation project: Social Linked data(Solid)"
  111. https://unixsheikh.com/articles/package-management-in-openbsd.html, "Package Management in OpenBSD"
  112. https://github.com/kubernetes/community/blob/master/wg-security-audit/findings/Kubernetes%20Final%20Report.pdf, "Kubernetes Security Assessment [pdf]"
  113. https://www.bloomberg.com/news/features/2019-08-08/i-tried-hiding-from-silicon-valley-in-a-pile-of-privacy-gadgets, "I Tried Hiding from Big Tech in a Pile of Privacy Gadgets"
  114. https://www.quora.com/Experienced-programmers-and-computer-scientists-what-are-some-really-old-or-even-nearly-forgotten-books-you-think-every-new-programmer-should-read/answer/Alan-Kay-11?share=1, "Alan Kay's answer to ‘what are some forgotten books programmers should read?’"
  115. https://www.arxiv-vanity.com/papers/cs/0206022/, "The Fastest and Shortest Algorithm for All Well-Defined Problems (2002)"
  116. http://j-core.org/, "J-Core Open Processor"
  117. https://dmarby.se/blog/lorem-picsum/, "Lorem Picsum, death by a million pixel-gigabits"
  118. https://textslashplain.com/2019/08/11/spying-on-https/, "Spying on HTTPS"
  119. https://medium.com/@kitze/github-stars-wont-pay-your-rent-8b348e12baed, "GitHub stars won’t pay your rent"
  120. https://gizmodo.com/the-hp-way-how-bill-hewlett-and-i-built-our-company-5634378, "The HP Way: How Bill Hewlett and I Built Our Company (1960)"
  121. https://victorzhou.com/blog/minify-svgs/, "Minify Your SVGs"
  122. https://github.com/hoanhan101/ultimate-go, "I completed Ultimate Go, took good notes and commented directly on source code"
  123. https://depletionmode.com/uefi-boot.html, "Understanding modern UEFI-based platform boot"
  124. https://www.blender.org/user-stories/japanese-anime-studio-khara-moving-to-blender/, "Japanese anime studio Khara moving to Blender"
  125. https://www.reddit.com/r/algotrading/comments/cr7jey/ive_reproduced_130_research_papers_about/, "I've reproduced 130 research papers about “predicting the stock market”"
  126. https://developer.squareup.com/blog/making-openapi-swagger-bearable-with-your-own-dsl/, "“This is “how I tricked my co-workers” into using Racket.”"
  127. http://seriot.ch/parsing_json.php, "Parsing JSON Is a Minefield (2018)"
  128. https://startyourownisp.com/, "Start Your Own ISP"
  129. https://yangshun.github.io/tech-interview-handbook/, "Tech Interview Handbook"
  130. https://www.sqlite.org/fasterthanfs.html, "35% Faster Than The Filesystem"
  131. https://tmandry.gitlab.io/blog/posts/optimizing-await-1/, "How Rust optimizes async/await"
  132. https://venturebeat.com/2019/08/19/cerebras-systems-unveils-a-record-1-2-trillion-transistor-chip-for-ai/, "Cerebras Systems unveils a record 1.2T transistor chip for AI"
  133. https://developers.google.com/web/updates/2019/02/rendering-on-the-web, "Rendering on the Web"
  134. https://peterhrynkow.com/performance/2019/01/13/blowing-up-images-to-make-them-small.html?hn=1, "Hacking Image Interpolation for Fun and Profit"
  135. https://dev.to/prodopsio/an-8-minute-introduction-to-kubernetes-1oi, "An 8-minute introduction to Kubernetes"
  136. https://lwn.net/SubscriberLink/796687/a7a91ffcc9b7d52a/, "On-disk format robustness requirements for new filesystems"
  137. https://www.institutionalinvestor.com/article/b1gq9tqwk8z108/They-Get-Fired-All-the-Time-And-They-Have-No-Idea-Why, "‘They Get Fired All the Time. And They Have No Idea Why’"
  138. https://openai.com/blog/gpt-2-6-month-follow-up/, "GPT-2: 6-Month Follow-Up"
  139. https://pomax.github.io/bezierinfo/, "A Primer on Bézier Curves (2013)"
  140. https://www.redhat.com/en/blog/security-flaws-caused-compiler-optimizations, "Security flaws caused by compiler optimizations"
  141. https://simonknott.de/articles/Using-TypeScript-with-React.html, "Using TypeScript with React"
  142. http://www.jonathanturner.org/2019/08/introducing-nushell.html, "Introducing nushell"
  143. http://booksmartest.com/best-books-to-learn-about-manufacturing/, "Best books to learn about manufacturing"
  144. https://neilkakkar.com/things-I-learnt-from-a-senior-dev.html, "Things I Learnt from a Senior Software Engineer"
  145. https://multun.net/obscure-c-features.html, "Some Obscure C Features"
  146. https://clojure.org/guides/threading_macros, "Threading Macros Guide"
  147. https://amontalenti.com/2019/08/10/javascript-the-modern-parts, "JavaScript: The Modern Parts"
  148. http://www.math.bas.bg/bantchev/misc/az.pdf, "The A-Z of Programming Languages: Interviews with programming language creators [pdf]"
  149. http://apollo.backplane.com/2019-Zen2Missive.html, "Zen 2 Missives – AMD now delivering efficiencies that are double that of Intel"
  150. http://blog.bityard.net/articles/2019/August/rabbit-holes-the-secret-to-technical-expertise.html, "Rabbit Holes: The Secret to Technical Expertise"
  151. https://shipilev.net/jvm/diy-gc/, "Do It Yourself (OpenJDK) Garbage Collector"
  152. https://kubernetes.academy/, "Kubernetes Academy, a free product-agnostic education platform"
  153. https://publicdomainreview.org/collections/edgar-allan-poes-the-gold-bug-1843/, "Edgar Allan Poe’s “The Gold-Bug” (1843)"
  154. http://ifeanyi.co/posts/linux-namespaces-part-4/, "A deep dive into Linux namespaces, part 4"
  155. https://googleprojectzero.blogspot.com/2019/08/a-very-deep-dive-into-ios-exploit.html, "A deep dive into iOS Exploit chains found in the wild"
  156. https://lkml.org/lkml/2018/3/20/845, "“That is either genius, or a seriously diseased mind.” – Linus Torvalds"
  157. https://unixism.net/2019/08/a-managers-guide-to-kubernetes-adoption/, "A Manager’s Guide to Kubernetes Adoption"
  158. https://www.manuelrigger.at/papers/GCCBuiltins-ESECFSE19-preprint.pdf, "Understanding GCC Builtins to Develop Better Tools [pdf]"
  159. https://www.topgear.com/car-news/bugatti-has-broken-300mph-barrier, "Bugatti has broken the 300mph barrier"
  160. https://arp242.net/stackoverflow.html, "Tired of Stack Overflow"
  161. https://leandromoreira.com.br/2019/08/02/linux-ffmpeg-source-internals-a-good-software-design/, "Good Code Design from Linux"
  162. http://plasmasturm.org/log/453/, "Tree traversal without recursion: the tree as a state machine"
  163. https://github.com/timesler/facenet-pytorch, "SOTA face detection and recognition pytorch (over 2000 FPS on GeForce 2080 Ti)"
  164. https://www.davidschlachter.com/misc/t480-freebsd, "FreeBSD on the Lenovo Thinkpad"
  165. https://github.com/iperov/DeepFaceLab, "DeepFaceLab: A tool that utilizes ML to replace faces in videos"
  166. https://mcla.ug/blog/cpp-is-not-a-superset-of-c.html, "C++ is not a superset of C"
  167. https://www.mail-archive.com/dri-devel@lists.sourceforge.net/msg39091.html, "Linus Torvalds on some good Git development practices"
  168. https://grsecurity.net/teardown_of_a_failed_linux_lts_spectre_fix.php, "Teardown of a Failed Linux LTS Spectre Fix"
  169. https://abe-winter.github.io/2019/09/03/orms-backwards.html, "ORMs Are Backwards"
  170. https://brave.com/google-gdpr-workaround/, "Brave Uncovers Google’s GDPR Workaround"
  171. https://flak.tedunangst.com/post/warning-implicit-backdoor, "Warning: Implicit Backdoor"
  172. https://gist.github.com/rylev/0e3c3895dcb40b6a1c1cf8c427c01b5e, "Rust in Large Organizations (Notes)"
  173. https://randywestergren.com/a-closer-look-at-recent-http-2-vulnerabilities-affecting-k8s-and-other-implementations/, "A closer look at recent HTTP/2 vulnerabilities affecting Kubernetes and others"
  174. https://secushare.org/, "Secushare: A decentralized, secure social network built on GNUnet"
  175. https://github.com/jagregory/abrash-black-book, "Graphics Programming Black Book by Michael Abrash – Markdown source (2001)"
  176. https://awealthofcommonsense.com/2019/09/debunking-the-silly-passive-is-a-bubble-myth/, "Debunking the Silly “Passive [Investing] Is a Bubble” Myth"
  177. https://github.com/mxplusb/cloudflare-sync, "Cloudflare-sync – Tool for using Cloudflare as a dynamic DNS provider"
  178. https://jepsen.io/analyses/yugabyte-db-1.3.1, "Jepsen: YugaByte DB 1.3.1"
  179. https://dave.cheney.net/2019/09/05/dont-force-allocations-on-the-callers-of-your-api, "Don’t force allocations on the callers of your API"
  180. https://www.anandtech.com/show/14839/samsung-announces-standardscompliant-keyvalue-ssd-prototype, "Samsung launching key value SSD"
  181. https://www.sigbus.info/how-i-wrote-a-self-hosting-c-compiler-in-40-days, "I wrote a self-hosting C compiler in 40 days (2015)"
  182. https://www.nature.com/articles/d41586-019-02638-w, "First hint that body’s ‘biological age’ can be reversed"
  183. https://google.github.io/eng-practices/review/reviewer/, "How to do a code review"
  184. https://ai.google/research/pubs/pub48035, "MLIR Primer: A Compiler Infrastructure for the End of Moore’s Law"
  185. https://statmodeling.stat.columbia.edu/wp-content/uploads/2012/07/timeseries06272012.pdf, "I Got More Data, My Model Is More Refined, but My Estimator Is Getting Worse [pdf]"
  186. https://a16z.com/2019/09/06/china-is-cashing-in-on-group-chats/, "How China Is Cashing in on Group Chats"
  187. https://nesslabs.com/jomo, "From FOMO to JOMO: the joy of missing out"
  188. https://onezero.medium.com/almost-everything-about-goodreads-is-broken-662e424244d5, "Goodreads Is Broken"
  189. https://scotthelme.co.uk/csrf-is-really-dead/, "CSRF is really dead"
  190. https://uxdesign.cc/great-products-do-less-things-but-better-5dde0ee3fc76, "Great products do less, but better"
  191. https://christine.website/blog/the-cult-of-kubernetes-2019-09-07, "The Cult of Kubernetes"
  192. https://news.ycombinator.com/item?id=20914236, "Show HN: A Senior Engineer's CheckList"
  193. https://hsivonen.fi/string-length/, "String Lengths in Unicode"
  194. https://golem.ph.utexas.edu/category/2019/09/the_riemann_hypothesis_part_1.html, "The Riemann Hypothesis"
  195. https://github.com/viraptor/reverse-interview, "Questions to ask a company during a job interview"
  196. https://github.com/ltcmelo/psychec#generic-programming, "Generics in C without void* or macros – enabled by psychec"
  197. https://golem.ph.utexas.edu/category/2019/09/the_riemann_hypothesis_part_2.html, "The Riemann Hypothesis (Part 2)"
  198. https://tweetjobs.dev/, "Show HN: Search Engine on the Top of Twitter to Find Jobs"
  199. https://blog.logrocket.com/frustrations-with-react-hooks/, "Frustrations with React Hooks"
  200. https://hackaday.com/2019/09/10/why-ada-is-the-language-you-want-to-be-programming-your-systems-with/, "Why Ada Is the Language You Want to Be Programming Your Systems With"
  201. https://github.com/ixy-languages/ixy-languages/blob/master/Rust-vs-C-performance.md, "Why is Rust slightly slower than C?"
  202. http://www.wilfred.me.uk/blog/2015/02/21/my-first-llvm-compiler/, "My First LLVM Compiler (2015)"
  203. https://www.welcometothejungle.co/fr/articles/btc-deep-learning-clojure-haskell, "The beauty of functional languages in deep learning – Clojure and Haskell"
  204. https://v8.dev/blog/v8-lite, "V8 lite (22% memory savings)"
  205. https://getkerf.wordpress.com/2016/03/30/the-best-algorithm-no-one-knows-about/, "Algorithm No One Knows About (2016)"
  206. https://nanonets.com/blog/attention-ocr-for-text-recogntion/, "Building a license plate reader from scratch with deep learning"
  207. https://lwn.net/SubscriberLink/798230/7f1ea6a77c0c1201/, "Maintaining the Kernel's Web of Trust"
  208. https://medium.com/@gajus/mistake-that-cost-thousands-kubernetes-gke-2212ea663e1f, "A Kubernetes/GKE mistake that cost me thousands of dollars"
  209. https://remotemore.com/, "Show HN: RemoteMore – We connect developers with full-time remote jobs"
  210. https://linuxplumbersconf.org/event/4/contributions/554/, "Reflections on Linux kernel quality, development process and testing"
  211. https://books.substack.com/p/notebook-the-writer-of-the-future, "The Writer of the Future"
  212. http://phk.freebsd.dk/B-Heap/queue.html, "You're doing it wrong: B-heap 10x faster than binary heap (2010)"
  213. https://onezero.medium.com/being-indistractable-will-be-the-skill-of-the-future-a07780cf36f4, "Being ‘Indistractable’ Will Be the Skill of the Future"
  214. https://pqina.nl/doka/image-editor/, "Show HN: I build an online image editor using WebGL and CSS transforms"
  215. https://medium.com/@darklang/unveiling-dark-e0be6f1e0b06, "Show HN: Darklang"
  216. https://broadcast.listennotes.com/the-boring-technology-behind-listen-notes-56697c2e347b, "The boring technology behind a one-person Internet company"
  217. https://vimeo.com/70589461, "UCLA’s 1948 Mechanical Computer [video]"
  218. https://brandur.org/postgres-atomicity, "Postgres Makes Transactions Atomic"
  219. https://www.namebase.io/blog/meet-handshake-decentralizing-dns-to-improve-the-security-of-the-internet/, "Handshake: Decentralizing DNS to Improve the Security of the Internet"
  220. https://bhavaniravi.com/blog/challenges-in-full-text-search, "Challenges in Implementing a Full-Text-Search Engine"
  221. https://tannerchristensen.com/blog/2018/12/30/oh-shit-my-weekend-project-turned-into-an-app-store-best-new-app, "Oh shit, my weekend project turned into an App Store Best New App (2018)"
  222. https://github.com/eon01/kubernetes-workshop, "A Gentle introduction to Kubernetes with more than just the basics"
  223. https://paulcavallaro.com/blog/common-systems-programming-optimizations-tricks/, "Common Systems Programming Optimizations and Tricks"
  224. https://wozniak.ca/blog/2014/08/03/What-ORMs-have-taught-me-just-learn-SQL/, "What ORMs have taught me: just learn SQL (2014)"
  225. https://storyofmathematics.com/16th_tartaglia.html, "Mathematics Duel that led to the solution of the cubic"
  226. http://nautil.us/issue/76/language/this-simple-structure-unites-all-human-languages, "A Simple Structure Unites All Human Languages"
  227. https://jonathanwhiting.com/writing/blog/games_in_c/, "Why I Write Games in C (yes, C)"
  228. https://magcius.github.io/xplain/article/index.html, "Understanding the working of X11 from the ground up (2017)"
  229. https://www.nytimes.com/2019/09/20/sports/football-leaks-rui-pinto.html, "Hacker Who Revealed Soccer Secrets Is Charged with 147 Crimes"
  230. http://www.ocamlpro.com/2019/09/20/a-look-back-on-ocaml/, "A look back on OCaml since 2011"
  231. http://dunkels.com/adam/pt/, "ProtoThreads: Lightweight, Stackless Threads in C"
  232. http://einaregilsson.com/serverless-15-percent-slower-and-eight-times-more-expensive/, "Serverless: 15% slower and 8x more expensive"
  233. https://creekorful.me/building-fast-modern-web-crawler/, "Building a Dark Web Crawler in Go"
  234. https://idea.popcount.org/2019-09-20-when-tcp-sockets-refuse-to-die/, "When TCP sockets refuse to die"
  235. https://bedrockdb.com/, "Bedrock – A modular, WAN-replicated, blockchain-based database"
  236. https://useguard.com, "Show HN: I made a neural net that analyzes privacy policies"
  237. https://yokota.blog/2019/09/23/building-a-relational-database-using-kafka/, "Building a Relational Database Using Kafka"
  238. https://www.stallman.org/articles/microsoft-talk.html, "My Talk at Microsoft"
  239. https://www.nytimes.com/2019/09/21/business/economy/india-economy-trade.html, "From Underwear to Cars, India’s Economy Is Fraying"
  240. https://www.welcometothejungle.co/en/articles/kempf-interview-vlc-videolan, "The one who kept VLC free"
  241. https://blog.acolyer.org/2019/06/26/designing-far-memory-data-structures/, "Designing far memory data structures: think outside the box"
  242. https://www.darkcoding.net/software/a-developer-goes-to-a-devops-conference/, "A developer goes to a DevOps conference"
  243. https://news.ycombinator.com/item?id=21100377, "Ask HN: Who has the best personal website/blog?"
  244. https://codingnest.com/modern-sat-solvers-fast-neat-and-underused-part-1-5-of-n/, "Modern SAT solvers: fast, neat and underused"
  245. https://www.reddit.com/r/rust/comments/d9zfa6/how_come_php_seems_so_much_faster_than_rust/, "How come PHP seems so much faster than Rust?"
  246. https://www.erlang-solutions.com/blog/which-companies-are-using-erlang-and-why-mytopdogstatus.html, "Which companies are using Erlang, and why?"
  247. http://trevorjim.com/python-is-not-context-free/, "Python is not context free (2012)"
  248. http://oleg.fi/gists/posts/2019-09-26-write-a-compiler.html, "Do you have a problem? Write a compiler"
  249. https://events.a16z.com/cryptostartupschool/, "A16Z announces free crypto startup school"
  250. https://memos.org/hn, "Show HN: Memos – Search engine for your screenshots and photos"
  251. https://www.phoronix.com/scan.php?page=news_item&px=Google-KCSAN-Sanitizer, "Google Is Uncovering Hundreds of Race Conditions Within the Linux Kernel"
  252. https://queue.acm.org/detail.cfm?id=2903468, "Statistics for Engineers: Applying statistical techniques to operations (2016)"
  253. https://kevinlynagh.com/notes/pricing-niche-products/, "Pricing niche products"
  254. https://www.bloomberg.com/news/articles/2019-10-01/tether-not-bitcoin-likely-the-world-s-most-used-cryptocurrency, "The World’s Most-Used Cryptocurrency Isn’t Bitcoin"
  255. https://evilmartians.com/chronicles/images-done-right-web-graphics-good-to-the-last-byte-optimization-techniques, "Web Graphics Done Right"
  256. https://docs.keydb.dev/blog/2019/10/07/blog-post/, "A multithreaded fork of Redis that is faster"
  257. https://blog.jayway.com/2015/04/13/600k-concurrent-websocket-connections-on-aws-using-node-js/, "600k concurrent websocket connections on AWS using Node.js"
  258. https://gizmodo.com/why-these-social-networks-failed-so-badly-1836996164, "Social Networks That Failed"
  259. https://www.walknsqualk.com/post/014-tiny-fpga-bx/, "FPGA Design for Software Engineers"
  260. https://veed.io/blog/rejected-from-yc#update, "Rejected from YC (Again)"
  261. https://tobyrush.com/theorypages/index.html, "Music Theory for Musicians and Normal People"
  262. https://programmersatwork.wordpress.com/toru-iwatani-1986-pacman-designer/, "Toru Iwatani, 1986 Pac-Man Designer"
  263. http://everydayastronaut.com/aerospikes/, "Are Aerospike Engines Better Than Traditional Rocket Engines?"
  264. https://factorio.com/blog/post/fff-317, "New pathfinding algorithm"
  265. https://www.publishersweekly.com/pw/by-topic/industry-news/publisher-news/article/81473-number-of-self-published-titles-jumped-40-in-2018.html, "Number of Self-Published Titles Jumped 40% in 2018"
  266. https://www.cybertec-postgresql.com/en/prewarming-postgresql-i-o-caches/, "Prewarming PostgreSQL I/O caches"
  267. https://www.perell.com/blog/boeing-737-max, "Boeing Engineers Lost Control of the Company"
  268. https://www.thanassis.space/myowncpu.html, "Compiling my own SPARC CPU inside a cheap FPGA"
  269. https://randomascii.wordpress.com/2019/10/20/63-cores-blocked-by-seven-instructions/, "63 Cores Blocked by Seven Instructions"
  270. https://mozillagfx.wordpress.com/2019/10/22/dramatically-reduced-power-usage-in-firefox-70-on-macos-with-core-animation/, "Dramatically reduced power usage in Firefox 70 on macOS with Core Animation"
  271. https://datadome.co/store-50-million-event-per-second-in-elasticsearch/, "Storing 50M events per second in Elasticsearch"
  272. https://towardsdatascience.com/generating-beatles-lyrics-with-machine-learning-1355635d5c4e, "Finetuning GPT-2 to Generate Beatles Lyrics"
  273. https://cpdos.org/, "Cache Poisoned DoS Attack: Shutdown any CDN Website with One HTTP Request"
  274. http://adventures.michaelfbryan.com/posts/how-not-to-riir/, "How Not to Rewrite It in Rust"
  275. https://eng.lyft.com/how-to-solve-a-linear-optimization-problem-on-incentive-allocation-5a8fb5d04db1, "Solving a linear optimization problem on incentive allocation"
  276. https://medium.com/netflix-techblog/open-sourcing-polynote-an-ide-inspired-polyglot-notebook-7f929d3f447, "Netflix open-sources Polynote, an IDE-inspired polyglot notebook"
  277. https://futhark-lang.org/blog/2019-10-25-beating-c-with-futhark-on-gpu.html, "Beating C with Futhark Running on GPU"
  278. https://words.steveklabnik.com/c-is-not-how-the-computer-works-can-lead-to-inefficient-code, "“C is not how the computer works” can lead to inefficient code"
  279. https://imo-grand-challenge.github.io, "IMO Grand Challenge"
  280. https://www.infoq.com/articles/containers-hypervisors-2019/, "Containers in 2019: They're Calling It a Hypervisor Comeback"
  281. https://blog.cloudflare.com/public-keys-are-not-enough-for-ssh-security/, "Public keys are not enough for SSH security"
  282. https://news.ycombinator.com/item?id=21367151, "Ask HN: How do B2B startups sell to corporations?"
  283. http://gamearchitect.net/Articles/SoftwareIsHard.html, "Software Is Hard (2007)"
  284. http://smallcultfollowing.com/babysteps/blog/2019/10/26/async-fn-in-traits-are-hard/, "Why async fn in traits are hard"
  285. https://archpaper.com/2019/10/unity-reflect-open-source-tool/, "Unity creates new open source tool just for architects with Reflect"
  286. https://doist.com/blog/mental-health-and-remote-work/, "What Most Remote Companies Don’t Tell You About Remote Work"
  287. https://sivers.org/pg2, "PostgreSQL example of self-contained stored procedures"
  288. https://threatpost.com/un-unicef-red-cross-mobile-attack/149556/, "U.N., Unicef, Red Cross Under Ongoing Mobile Attack"
  289. https://www.nytimes.com/2019/10/04/smarter-living/10-tips-internet-privacy-crowdwise.html, "10 Tips to Avoid Leaving Tracks Around the Internet"
  290. https://en.wikipedia.org/wiki/Duck_curve, "Duck Curve"
  291. https://news.ycombinator.com/item?id=21373852, "Ask HN: What is the most beautiful piece of code you've ever read?"
  292. https://www.newyorker.com/magazine/2019/11/04/a-cybersecurity-firms-sharp-rise-and-stunning-collapse, "A Cybersecurity Firm’s Sharp Rise and Stunning Collapse"
  293. https://ai.google/research/pubs/pub48630/, "Snap: A Microkernel Approach to Host Networking"
  294. https://www.nytimes.com/2019/10/27/smarter-living/career-advice-overcome-setback.html, "Early-Career Setbacks Can Set You Up for Success"
  295. https://github.com/mgartner/pg_flame, "Show HN: pg_flame – flamegraph visualizations of PostgreSQL query plans"
  296. https://medium.com/@bellmar/heroes-and-juniors-increasing-engineering-team-velocity-97ce6a59103e, "Heroes and Juniors: Increasing Engineering Team Velocity"
  297. https://github.com/neex/phuip-fpizdam, "PHP-FPM remote code execution bug exploited in the wild"
  298. https://pando.com/2019/10/23/we-sold-pando/, "We Sold Pando"
  299. https://quoteinvestigator.com/2013/03/06/artists-steal/, "Good Artists Copy; Great Artists Steal"
  300. https://www.gkogan.co/blog/big-cloud/, "When AWS, Azure, or GCP Becomes the Competition"
  301. http://www.jerrydallal.com/LHSP/LHSP.htm, "The Little Handbook of Statistical Practice (2012)"
  302. https://news.ycombinator.com/item?id=21382709, "Ask HN: I just wrote an O(N) diffing algorithm – what am I missing?"
  303. https://sarunw.com/posts/dark-color/, "Dark color: Things to know about color when adopting dark mode"
  304. https://review.chicagobooth.edu/entrepreneurship/2019/article/startups-forget-about-technology, "Startups, Forget about the Technology"
  305. https://spectrum.ieee.org/aerospace/space-flight/the-worlds-largest-3d-metal-printer-is-churning-out-rockets, "The World’s Largest 3D Metal Printer Is Churning Out Rockets"
  306. https://www.putorius.net/cluster-ssh.html, "Cluster SSH – Manage Multiple Linux Servers Simultaneously"
  307. https://www.theatlantic.com/magazine/archive/2015/05/bank-of-the-underworld/389555/, "Bank of the Underworld (2015)"
  308. https://ai.facebook.com/blog/pushing-state-of-the-art-in-3d-content-understanding/, "Recent advances in 3D content understanding"
  309. https://arstechnica.com/gadgets/2019/10/how-a-months-old-amd-microcode-bug-destroyed-my-weekend/, "A months-old AMD microcode bug destroyed my weekend"
  310. https://fivebooks.com/best-books/napoleon-andrew-roberts/, "Books on Napoleon"
  311. https://github.com/whitequark/unfork/blob/master/README.md, Unfork()
  312. https://blog.dropbox.com/topics/company/thank-you--guido, "Thank You, Guido"
  313. https://peteris.rocks/blog/htop/, "Htop Explained"
  314. https://github.com/mosuka/bayard, "Bayard is a full-text search and indexing server written in Rust"
  315. https://www.techrepublic.com/article/linus-torvalds-git-proved-i-could-be-more-than-a-one-hit-wonder/, "Linus Torvalds: Git proved I could be more than a one-hit wonder"
  316. https://www.dazeddigital.com/music/article/35465/1/midori-takada-through-the-looking-glass-interview, "YouTube autoplay gave a lost Japanese classic new life (2017)"
  317. https://securelist.com/chrome-0-day-exploit-cve-2019-13720-used-in-operation-wizardopium/94866/, "Chrome 0-day exploit used in Operation WizardOpium"
  318. https://www.nytimes.com/2019/11/02/business/adam-neumann-wework-exit-package.html, "Adam Neumann and the Art of Failing Up"
  319. https://www.jefftk.com/p/shared-cache-is-going-away, "Shared Cache Is Going Away"
  320. https://www.eff.org/deeplinks/2019/11/why-adding-client-side-scanning-breaks-end-end-encryption, "Why Adding Client-Side Scanning Breaks End-to-End Encryption"
  321. https://github.com/kexecboot/kexecboot/wiki, "Kexecboot: Linux-As-a-Bootloader implementation based on kexec"
  322. https://github.com/atlassian/localstack, "LocalStack – A fully-functional local AWS cloud stack"
  323. https://link.springer.com/article/10.1007/s00778-019-00581-w, "In-memory database acceleration on FPGAs: a survey"
  324. https://blog.cloudflare.com/the-project-jengo-saga-how-cloudflare-stood-up-to-a-patent-troll-and-won/, "We Stood Up to a Patent Troll and Won"
  325. http://osblog.stephenmarz.com/ch3.2.html, "RISC-V OS Using Rust: Memory Management Unit"
  326. https://github.com/danistefanovic/build-your-own-x, "Build Your Own X"
  327. https://www.youtube.com/watch?v=oBklltKXtDE, "Andrej Karpathy talks about how Tesla's NNs are structured and trained [video]"
  328. https://blog.checklyhq.com/just-did-the-ycombinator-interview-here-are-my-notes/, "Just did the Y Combinator interview: here are my notes"
  329. https://stratechery.com/2019/the-google-squeeze/, "The Google Squeeze"
  330. https://devblogs.nvidia.com/grcuda-a-polyglot-language-binding-for-cuda-in-graalvm/, "GrCUDA: A Polyglot Language Binding for CUDA in GraalVM"
  331. https://github.com/jgraph/drawio, "Draw.io: Online Diagramming Website"
  332. https://gist.github.com/chanks/7585810, "Turning PostgreSQL into a queue serving 10k jobs per second (2013)"
  333. https://mirailabs.io/blog/multiarch-docker-with-buildx/, "Using multi-arch Docker images to support apps on any architecture"
  334. https://about.gitlab.com/blog/2019/11/08/the-consul-outage-that-never-happened/, "The Consul outage that never happened"
  335. https://tlu.tarilabs.com/preface/introduction.html, "Tari labs blockchain tech curriculum"
  336. https://medium.com/cantors-paradise/the-unparalleled-genius-of-john-von-neumann-791bb9f42a2d, "The Unparalleled Genius of John von Neumann"
  337. https://pomb.us/build-your-own-react/, "Build Your Own React"
  338. https://github.com/Bloomberg-Beta/Manual, "Operating Manual for VC Firm Bloomberg Beta"
  339. https://terrytao.wordpress.com/2019/08/13/eigenvectors-from-eigenvalues/, "Eigenvectors from eigenvalues"
  340. https://www.zdnet.com/article/wikipedias-jimmy-wales-has-quietly-launched-a-facebook-rival-social-network/, " Jimmy Wales has quietly launched a Facebook rival"
  341. https://lwn.net/SubscriberLink/804143/62a4315bd4931e9d/, "Emulated Iopl()"
  342. https://blog.metaobject.com/2019/11/what-alan-kay-got-wrong-about-objects.html, """What Alan Kay Got Wrong About Objects"""
  343. https://slate.com/technology/2019/02/norbert-wiener-cybernetics-human-use-artificial-intelligence.html, "What Would the Father of Cybernetics Think About A.I. Today?"
  344. https://jvns.ca/blog/2019/11/18/how-containers-work--overlayfs/, "How Containers Work: Overlayfs"
  345. https://www.joshbassett.info/sdram-controller/, "Using SDRAM in FPGA Designs"
  346. https://www.improveyoursocialskills.com/basic-social-skills-guide, "Basic Social Skills Guide (2012)"
  347. https://github.com/cantaro86/Financial-Models-Numerical-Methods, "Collection of Jupyter notebooks for quantitative finance"
  348. https://medium.com/nextdns/cname-cloaking-the-dangerous-disguise-of-third-party-trackers-195205dc522a, "Cname cloaking, a disguise of third-party trackers"
  349. https://www.linuxfoundation.org/press-release/2019/11/kicad-joins-linux-foundation-to-advance-electronic-design-automation/, "KiCad Joins Linux Foundation to Advance Electronic Design Automation"
  350. https://www.pietroalbini.org/blog/shipping-a-compiler-every-six-weeks/, "Shipping a compiler every six weeks"
  351. https://interpreterbook.com/, "Writing an Interpreter in Go – Thorsten Ball"
  352. https://lwn.net/SubscriberLink/804658/8eaf9fdc5477865e/, "Keeping Memory Contents Secret"
  353. https://www.washingtonpost.com/lifestyle/2019/11/25/dating-foreigner-america-everyone-thinks-im-just-looking-green-card/, "Dating as a foreigner in America: Everyone thinks I’m looking for a green card"
  354. https://bellard.org/jslinux/, "Jslinux (2018)"
  355. http://www.k2.t.u-tokyo.ac.jp/vision/DPM/, "1000fps image projection on deforming non-rigid surface"
  356. https://imgz.org/, "Show HN: Tired of all the shady alternatives, I made a no-bullshit image host"
  357. https://cs007.blog/, "CS 007: Personal Finance for Engineers – Stanford University 2017-20"
  358. https://news.ycombinator.com/item?id=21624284, "Ask HN: How would you bootstrap a space company?"
  359. https://juliacomputing.com/blog/2019/11/22/encrypted-machine-learning.html?hn, "Machine Learning on Encrypted Data Without Decrypting It"
  360. https://www.tradientblog.com/2019/11/lessons-learned-building-an-ml-trading-system-that-turned-5k-into-200k/, "Lessons learned building an ML trading system"
  361. https://zwischenzugs.com/2019/11/27/the-first-non-bullshit-book-about-culture-ive-read/, "A Non-Bullshit Book on Culture"
  362. https://almond.stanford.edu/, "Almond: The Open, Privacy-Preserving Virtual Assistant"
  363. https://cforall.uwaterloo.ca/, "C-for-all: Extending C with modern safety and productivity features"
  364. https://erthalion.info/2019/12/06/postgresql-stay-curious/, "PostgreSQL at low level: stay curious"
  365. https://github.com/Croteam-official/Serious-Engine, "Serious Engine – Serious Sam open-source engine (2016)"
  366. https://www.alignmentforum.org/posts/FRv7ryoqtvSuqBxuT/understanding-deep-double-descent, "Understanding “Deep Double Descent”"
  367. https://practicalai.me/, "PracticalAI 2.0: A New Platform to Learn ML Using Python, Keras and Tensorflow"
  368. http://muratbuffalo.blogspot.com/2019/11/sosp19-file-systems-unfit-as.html, "File systems unfit as distributed storage back ends: 10 years of Ceph"
  369. https://www.theverge.com/2019/12/3/20984028/playstation-supercomputer-ps3-umass-dartmouth-astrophysics-25th-anniversary, "The rise and fall of the PlayStation supercomputers"
  370. https://github.com/0vercl0k/CVE-2019-11708, "Exploit chain for Firefox (on Windows) that gets RCE and escape the sandbox"
  371. https://www.javaadvent.com/2019/12/smalltalk-with-the-graalvm.html, "Smalltalk with the GraalVM"
  372. https://notably.cc/#/?v=1, "Show HN: Notably – a simple tool for sharing markdown notes"
  373. https://blog.pragmaticengineer.com/the-product-minded-engineer/, "The Product-Minded Software Engineer"
  374. https://utcc.utoronto.ca/~cks/space/blog/programming/GoSchedulerAndSyscalls, "The Go runtime scheduler's clever way of dealing with system calls"
  375. https://arxiv.org/abs/1911.13288, "Financial Time Series Forecasting with Deep Learning: A Literature Review"
  376. https://www.vitavonni.de/blog/201503/2015031201-the-sad-state-of-sysadmin-in-the-age-of-containers.html, "The sad state of sysadmin in the age of containers (2015)"
  377. https://en.wikipedia.org/wiki/Transputer, Transputer
  378. http://jpkoning.blogspot.com/2019/12/a-way-to-make-anonymous-online-donations.html, "A way to make anonymous online donations"
  379. https://medium.com/against-surveillance-capitalism/how-a-chinese-company-built-a-250-million-search-hijacking-empire-35f957566852, "How a Chinese Company Built a $250M Search Hijacking Empire"
  380. https://github.com/Risk3sixty-Labs/geoapi, "Show HN: Tiny, fast, and free API to geolocate IP addresses"
  381. https://news.ycombinator.com/item?id=21743302, "Ask HN: We are shutting down our startup, I get our code. What now?"
  382. https://dottedsquirrel.com/everything-else/2020-reading-list-for-developers/, "2020: Things You Should Read to Become a Better Human and Developer"
  383. https://github.com/zubairq/pilot, "Show HN: Yazz Pilot – Self Service Apps Without the IT Department"
  384. https://github.com/docker-slim/docker-slim, "Docker-slim: Minify your Docker container image without changing anything"
  385. http://pixlr.com/e, "Founder came back after 8 years to rewrite Flash photo editor in Canvas/WebGL"
  386. https://openlayers.org/, OpenLayers
  387. https://news.mit.edu/2019/object-recognition-dataset-stumped-worlds-best-computer-vision-models-1210, "Object-recognition dataset stumped the world’s best computer vision models"
  388. https://colatkinson.site/macos/fuse/2019/09/29/osxfuse/, "FUSE for macOS is no longer open source"
  389. https://wfh.substack.com/p/why-the-next-professional-network, "Why the next professional network will look nothing like LinkedIn"
  390. https://github.com/yandex/odyssey, "Odyssey: Scalable PostgreSQL Connection Pooler"
  391. https://github.com/jeremycw/httpserver.h, "Httpserver.h: Single header library for writing non-blocking HTTP servers in C"
  392. https://www.atlasobscura.com/articles/gandhara-scroll-library-of-congress, "How the Library of Congress Unrolled a 2000-Year-Old Buddhist Scroll"
  393. https://www.forbes.com/sites/thomasbrewster/2019/12/11/google-gives-feds-1500-leads-to-arsonist-smartphones-in-unprecedented-geofence-search/#7e36570827dc, "Google Gives Feds 1,500 Phone Locations in Unprecedented ‘Geofence’ Search"
  394. http://blog.nuclearsecrecy.com/2019/12/13/why-nukemap-isnt-on-google-maps-anymore/, "Why Nukemap Isn't on Google Maps Anymore"
  395. https://twitter.com/_taylorswope/status/1205252714680045568, "The Outer Worlds: Fixing the “game thinks my companion is dead” bug"
  396. https://groups.google.com/forum/#!topic/golang-dev/6M4dmZWpFaI, "Rob Pike on good commit messages (2014)"
  397. https://lemire.me/blog/2019/12/19/xor-filters-faster-and-smaller-than-bloom-filters/, "Xor Filters: Faster and Smaller Than Bloom Filters"
  398. https://github.com/mkirchner/gc, "Show HN: A simple garbage collector for C"
  399. https://www.scotthyoung.com/blog/2019/06/07/apprenticeships/, "Apprenticeships Beat Classrooms"
  400. http://lists.squeakfoundation.org/pipermail/squeak-dev/1998-October/017019.html, "Alan Kay: Smalltalk is not about objects, it’s about messaging (1998)"
  401. https://david-abel.github.io/notes/neurips_2019.pdf, "NeurIPS 2019 Notes [pdf]"
  402. https://twitter.com/mcfunley/status/1194713711337852928, "Scaling Etsy"
  403. http://www.shingarov.com/IWST2014/IWST2014.pdf, "Modern Problems for the Smalltalk VM (2014) [pdf]"
  404. https://www.forbes.com/sites/antoinegara/2019/12/17/the-forbes-investigation-inside-the-secret-bank-behind-the-fintech-boom/#e384e423c10c, "The Bank Behind the Fintech Boom"
  405. https://blog.athrunen.dev/learning-hardware-programming-as-a-software-engineer/, "Learning hardware programming as a software engineer"
  406. https://24ways.org/2019/zs-still-not-dead-baby-zs-still-not-dead/, "Z’s Still Not Dead Baby, Z’s Still Not Dead"
  407. https://github.com/rotisserie/eris/tree/v0.1.0, "Eris – A better way to handle, trace, and log errors in Go"
  408. https://www.includeos.org/, "IncludeOS – Run your application with zero overhead"
  409. https://news.ycombinator.com/item?id=21924298, "Ask HN: Full-on machine learning for 2020, what are the best resources?"
  410. https://anthony.som.codes/blog/2019-12-30-jvm-hackery-noverify/, "Circumventing the JVM's Bytecode Verifier"
  411. http://cliffle.com/blog/m4vga-in-rust/, "Rewriting M4vgalib in Rust"
  412. http://craftinginterpreters.com/classes-and-instances.html, "Crafting Interpreters: Classes and Instances"
  413. http://paulgraham.com/vwplan.html, "Viaweb's First Business Plan (1995)"
  414. http://fabiensanglard.net/another_world_polygons/index.html, "The Polygons of Another World"
  415. https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c, "Show HN: Pure C WebRTC implementation for embedded devices"
  416. https://eng.lyft.com/introducing-flyte-cloud-native-machine-learning-and-data-processing-platform-fb2bb3046a59, "Flyte: A Cloud Native Machine Learning and Data Processing Platform"
  417. https://kilianvalkhof.com/2020/css-html/using-easing-for-more-than-just-css-transitions/, "Using easing for more than just CSS transitions"
  418. http://gregorygundersen.com/blog/2020/01/12/why-research-blog/, "Why I Keep a Research Blog"
  419. https://www.3dbuzz.com/, "3D Buzz is shutting down"
  420. https://ai.facebook.com/blog/online-speech-recognition-with-wav2letteranywhere/, "Online speech recognition with wav2letter anywhere"
  421. https://news.ycombinator.com/item?id=22033129, "Show HN: I wrote a book for engineers that want to become engineering managers"
  422. https://github.com/0xZ0F/Z0FCourse_ReverseEngineering, "Reverse Engineering Course by Z0F"
  423. http://kcall.co.uk/ssd/index.html, "Everything I Know About SSDs"
  424. https://www.cslab.pepperdine.edu/warford/math221/How-Amazon-Web-Services-Uses-Formal-Methods.pdf, "How Amazon Web Services Uses Formal Methods (2015) [pdf]"
  425. https://www.deprocrastination.co/blog/3-tricks-to-start-working-despite-not-feeling-like-it, "Tricks to start working despite not feeling like it"
  426. https://colab.research.google.com/drive/1iHcQ8_K0cfRE3v8QX6FMKAzdSSGtf5IX, "Show HN: Train a language model to talk like you"
  427. https://github.com/Kels316/DIY-Air-Purifier, "A small DIY air purifier"
  428. https://blog.floydhub.com/emils-story-as-a-self-taught-ai-researcher/, "My story as a self-taught AI researcher"
  429. https://www.sqlite.org/howtocorrupt.html, "How to Corrupt a SQLite Database File"
  430. https://github.com/justinamiller/SoftwareArchitect, "The Path to a Software Architect"
  431. https://www.unixsheikh.com/articles/freebsd-is-an-amazing-operating-system.html, "FreeBSD is an amazing operating system"
  432. http://teetotality.blog/posts/why-ipfs/, "Why build this blog, or anything, on IPFS?"
  433. http://www.svilentodorov.xyz/blog/gpt-15b-chat-finetune/, "Talking to myself: how I trained GPT2-1.5b for rubber ducking using my chat data"
  434. https://news.mit.edu/2019/model-beats-wall-street-forecasts-business-sales-1219, "Model beats Wall Street analysts in forecasting business financials"
  435. https://github.com/arjun024/mkeykernel, "Learn to write a simple OS kernel with keyboard/screen support (2014)"
  436. https://ieftimov.com/post/make-resilient-golang-net-http-servers-using-timeouts-deadlines-context-cancellation/, "Make resilient Go servers using timeouts, deadlines and context cancellation"
  437. https://www.whonix.org/wiki/Linux_Kernel_Runtime_Guard_LKRG, "Linux Kernel Runtime Guard (LKRG) – Kills Whole Classes of Kernel Exploits"
  438. https://f-droid.org/en/2020/02/03/openpush-talk.html, "OpenPush: A Free, Decentralized Push Messaging Framework for Android"
  439. https://assets.amazon.science/c4/11/de2606884b63bf4d95190a3c2390/millions-of-tiny-databases.pdf, "Millions of Tiny Databases [pdf]"
  440. https://liam-on-linux.livejournal.com/69433.html, "Apple's long processor journey"
  441. https://slate.com/technology/2020/02/three-decades-internet-freedom-activism.html, "Did the early internet activists blow it?"
  442. https://bitbucket.org/blog/scaling-bitbuckets-database, "Scaling Bitbucket’s Database"
  443. https://www.bloomberg.com/news/articles/2020-02-13/inside-the-firings-at-softbank-s-robot-pizza-startup, "SoftBank’s $375M bet on pizza went bad fast"
  444. https://www.openshot.org/blog/2020/02/08/openshot-250-released-video-editing-hardware-acceleration/, "OpenShot 2.5.0: Video Editing and Hardware Acceleration"
  445. https://www.npmjs.com/package/micro-aws-lambda, "A 7KB AWS lambda Node.js library with zero runtime dependencies"
  446. https://praxis.fortelabs.co/how-to-take-smart-notes/, "How to Take Smart Notes: 10 Principles to Revolutionize Your Note-Taking"
  447. https://plus.maths.org/content/ramanujan, "Ramanujan Surprises Again (2015)"
  448. https://www.zdnet.com/article/google-to-samsung-stop-messing-with-linux-kernel-code-its-hurting-android-security/, "Google to Samsung: Stop messing with Linux kernel code. It's hurting Android"
  449. https://blog.gibson.sh/2015/07/18/comparing-png-compression-ratios-of-stb_image_write-lodepng-miniz-and-libpng/, "Comparing PNG compression ratios (2015)"
  450. http://reasonablypolymorphic.com/book/preface, "How These Things Work – A book about CS from first principles (2016)"
  451. https://sanderknape.com/2020/02/building-a-static-serverless-website-using-s3-cloudfront/, "Building a static serverless website using S3 and CloudFront"
  452. https://github.com/jasonmayes/Real-Time-Person-Removal, "Real Time Person Removal from Complex Video"
  453. https://thehftguy.com/2020/02/18/jwt-is-awesome-heres-why/, "JWT is Awesome"
  454. https://atilaoncode.blog/2020/02/19/want-to-call-c-from-python-use-d/, "Want to call C from Python? Use D"
  455. https://en.wikipedia.org/wiki/Bert_Sutherland, "Bert Sutherland Has Died"
  456. https://news.ycombinator.com/item?id=22361282, "Larry Tesler Has Died"
  457. http://blog.leahhanson.us/post/recursecenter2016/haiku_icons.html, "500 Byte Images: The Haiku Vector Icon Format"
  458. https://godottutorials.pro/fps-godot-tutorial/, "Create a First-Person Shooter In Godot"
  459. https://uxdesign.cc/7-principles-of-icon-design-e7187539e4a2, "Principles of Icon Design"
  460. https://www.neilwithdata.com/mathematics-self-learner, "Mathematics for the Adventurous Self-Learner"
  461. https://rachelbythebay.com/w/2014/08/19/fork/, "Fork() can fail: this is important (2014)"
  462. https://blog.cloudflare.com/when-bloom-filters-dont-bloom/, "When Bloom filters don't bloom"
  463. https://github.com/freebsd/freebsd/commit/52fcc2c3146b5875a1ec0fb7460dd382ab0e5b3b, "FreeBSD Has Removed GCC"
  464. https://www.law.nyu.edu/centers/engelberg/news/2020-03-04-youtube-takedown, "Explaining copyright broke the YouTube copyright system"
  465. https://techcrunch.com/2020/03/04/twitter-starts-testing-its-own-version-of-stories-called-fleets-which-disappear-after-24-hours/, "Twitter starts testing 'Fleets,' its version of Stories"
  466. https://feltrac.co/environment/2020/01/18/build-your-own-shell-completion.html, "Hacking up your own shell completion"
  467. https://www.cbc.ca/news/canada/hamilton/basic-income-mcmaster-report-1.5485729, "People kept working, became healthier while on basic income: report"
  468. https://affectionate-minsky-072f4c.netlify.com, "Show HN: First person 3D environment using CSS 3D Transforms for rendering"
  469. https://eli.thegreenplace.net/2020/implementing-raft-part-3-persistence-and-optimizations/, "Implementing Raft, Part 3: Persistence and Optimizations"
  470. https://www.bitlog.com/2020/03/06/duckduckgo-is-good-enough-for-regular-use/, "DuckDuckGo is good enough for regular use"
  471. https://www.nextplatform.com/2020/03/06/amd-is-determined-to-gets-its-rightful-datacenter-share/, "AMD Is Determined to Gets Its Rightful Datacenter Share"
  472. https://greydanus.github.io/2020/03/10/lagrangian-nns/, "Lagrangian Neural Networks"
  473. https://news.ycombinator.com/item?id=22573204, "Ask HN: Book recommendations for understanding financial systems?"
  474. http://www.csszengarden.com/, "CSS Zen Garden"
  475. https://ogma.ai/2020/03/beating-atari-pong-on-a-raspberry-pi-without-backpropagation/, "Beating Atari Pong on a Raspberry Pi without backpropagation"
  476. https://github.com/izabera/zeromaps, "Show HN: A “living” Linux process with no memory"
  477. https://musl.libc.org/about.html, "About Musl"
  478. https://www2.eecs.berkeley.edu/Pubs/TechRpts/1986/CSD-86-287.pdf, "The Design and Evaluation of a High Performance Smalltalk System [pdf]"
  479. https://news.ycombinator.com/item?id=22718592, "Ask HN: Great fiction books that have had a positive impact on your life?"
  480. https://humanreadablemag.com/issues/2/articles/theres-a-mathematician-in-your-compiler, "There's a mathematician in your compiler"
  481. https://github.com/veeral-patel/awesome-risk-quantification, "Collection of awesome projects, blog posts, books, and talks on quantifying risk"
  482. https://blog.darksky.net/dark-sky-has-a-new-home/, "Apple acquires Dark Sky"
  483. https://github.com/microsoft/nlp-recipes/releases/tag/2.2.0, "Recipes for automatic text summarization using Google BERT and Microsoft UniLM"
  484. http://smyachenkov.com/posts/cognitive-biases-software-development/, "Cognitive Biases in Software Development"
  485. https://os.phil-opp.com/async-await/, "Writing an OS in Rust: Async/Await"
  486. https://webrtchacks.com/you-dont-have-end-to-end-encryption-e2ee/, "Does your video call have End-to-End Encryption? Probably not"
  487. https://www.bloomberg.com/news/articles/2020-04-01/palantir-in-talks-with-germany-france-for-virus-fighting-tool, "Palantir in Talks with Germany, France for Virus-Fighting Tool"
  488. https://tailscale.com/blog/tailscale-launch/, "Tailscale has reached general availability"
  489. https://krebsonsecurity.com/2020/04/war-dialing-tool-exposes-zooms-password-problems/, "‘War Dialing’ Tool Exposes Zoom’s Password Problems"
  490. https://increment.com/programming-languages/crash-course-in-compilers/, "A crash course in compilers (2018)"
  491. https://dl.acm.org/doi/book/10.1145/3335772, "ACM has made 'Concurrency: the Works of Leslie Lamport' free to download"
  492. https://mediasoup.org/, "Mediasoup – WebRTC Video Conferencing"
  493. https://grafana.com/blog/2020/04/02/cortex-v1.0-released-the-highly-scalable-fast-prometheus-implementation-is-generally-available-for-production-use/, "CNCF's Cortex v1.0: scalable, fast Prometheus implementation"
  494. https://rancher.com/blog/2020/fleet-management-kubernetes/, "Fleet Management for Kubernetes Is Here"
  495. https://reperiendi.wordpress.com/2020/04/03/how-i-recovered-over-300k-of-bitcoin/, "How we recovered $300k of Bitcoin"
  496. https://medium.com/@rbranson/10-things-i-hate-about-postgresql-20dbab8c2791, "PostgreSQL's Imperfections"
  497. https://www.acsh.org/news/2020/03/26/problem-remdesivir-making-it-14665, "We Made One Gram Of Remdesivir"
  498. https://lihautan.com/the-svelte-compiler-handbook/, "The Svelte Compiler Handbook"
  499. https://github.com/rxi/fe, "Fe: A tiny, embeddable language implemented in ANSI C"
  500. https://thegradient.pub/a-speech-to-text-practitioners-criticisms-of-industry-and-academia/, "A speech-to-text practitioner’s criticisms of industry and academia"
  501. https://matrix.org/blog/2020/04/06/running-your-own-secure-communication-service-with-matrix-and-jitsi, "Running your own secure communication service with Matrix and Jitsi"
  502. https://github.com/caoscott/SReC, "Lossless Image Compression Through Super-Resolution"
  503. https://krebsonsecurity.com/2020/04/microsoft-buys-corp-com-so-bad-guys-cant/, "Microsoft Buys Corp.com So Bad Guys Can’t"
  504. https://landing.google.com/sre/books/, "New Google SRE book: Building Secure and Reliable Systems"
  505. https://notes.eatonphil.com/database-basics.html, "Writing a SQL database from scratch in Go"
  506. https://nav.al/build-a-team-that-ships, "Build a Team that Ships (2012)"
  507. https://dropbox.tech/infrastructure/-testing-our-new-sync-engine, "Testing Sync at Dropbox"
  508. https://www.bloomberg.com/news/articles/2015-11-03/that-time-i-tried-to-buy-some-crude-oil, "I tried to buy an actual barrel of crude oil (2015)"
  509. https://github.com/mithi/hexapod-robot-simulator, "A simple browser-based hexapod robot simulator built from first principles"
  510. https://thume.ca/2020/04/18/telefork-forking-a-process-onto-a-different-computer/, "Teleforking a Process onto a Different Computer"
  511. https://shachaf.net/w/b-trees, "Let’s Invent B(+)-Trees"
  512. https://geekgonecrazy.com/2020/04/28/de-googling-my-progress/, "De-Googling: My Progress"
  513. https://tara.ai/, "Show HN: Tara – A smart and free alternative to Jira"
  514. http://antirez.com/news/132, "Redis 6.0 GA"
  515. https://libreboot.org/faq.html#intel, "Why is the latest Intel hardware unsupported in libreboot?"
  516. https://www.sequoiacap.com/article/pricing-your-product/, "Pricing Your Product"
  517. https://msrc-blog.microsoft.com/2020/04/29/the-safety-boat-kubernetes-and-rust/, "The Safety Boat: Kubernetes and Rust"
  518. https://www.ctrl.blog/entry/restore-lost-email-from-ram.html, "How I recovered a lost email from my email client’s memory"
  519. https://philippegroarke.com/posts/2020/constexpr_fsm/, "I Accidentaly Wrote a Compile-Time Executable State Machine"
  520. http://popcornlinux.org/, "Popcorn Linux"
  521. https://www.christianfscott.com/making-rust-as-fast-as-go/, "Making Rust as Fast as Go"
  522. https://blog.darknedgy.net/technology/2020/05/02/0/, "Systemd, 10 years later: a historical and technical retrospective"
  523. https://arxiv.org/abs/2004.14545, "Explainable Deep Learning: A Field Guide for the Uninitiated"
  524. https://phys.org/news/2020-05-water-splitting-module-source-perpetual-energy.html, "'Artificial leaf' concept inspires research into solar-powered fuel production"
  525. https://leerob.io/blog/how-stripe-designs-beautiful-websites, "How Stripe Designs Websites (2017)"
  526. https://ocw.mit.edu/resources/res-18-010-a-2020-vision-of-linear-algebra-spring-2020/index.htm, "A 2020 Vision of Linear Algebra"
  527. http://www.righto.com/2017/04/reverse-engineering-76477-space.html?m=1, "Reverse engineering the 76477 “Space Invaders” sound chip from die photos (2017)"
  528. https://blog.hypercore-protocol.org/posts/announcing-hyperdrive-10/, "Announcing Hyperdrive v10 – a peer-to-peer filesystem"
  529. https://eng.uber.com/go-monorepo-bazel/, "Building Uber’s Go Monorepo with Bazel"
  530. https://www.johndcook.com/blog/2020/05/15/pretending-oop-never-happened/, "Pretending OOP Never Happened"
  531. https://mgz.me/?scene=TheLightCycles, "Show HN: A WebGL Tribute to Tron, the movie that made me fall in love with CGI"
  532. https://www.taloflow.ai/blog/reducing-aws-costs, "We reduced the AWS costs of our streaming data pipeline"
  533. https://github.com/free5gc/free5gc, "Open source 5G core network"
  534. https://thomaspark.co/2020/06/the-mad-magazine-fold-in-effect-in-css/, "The Al Jaffee / Mad Magazine Fold-In Effect in CSS"
  535. https://nodesign.dev/, "NoDesign.dev – Tools and resources for non artistic developers"
  536. https://fabiensanglard.net/discret11/index.html, "Discret 11, the French TV encryption of the 80s"
  537. https://www.cs.virginia.edu/~evans/cs655/readings/smalltalk.html, "Design Principles Behind Smalltalk (1981)"
  538. https://blog.roboflow.ai/yolov4-versus-yolov5/, "Responding to the Controversy about YOLOv5"
  539. https://jlongster.com/how-one-word-postgresql-performance, "One word in PostgreSQL unlocked a 9x performance improvement"
  540. https://ulx3s.github.io/, "ULX3S: Hackable FPGA that runs Linux on RISC-V"
  541. https://www.ekioh.com/devblog/acid, "Flow browser passes the Acid tests"
  542. https://www.nybooks.com/articles/2020/07/02/just-use-your-thinking-pump/, "Just Use Your Thinking Pump"

Processing

f=open("mte.txt")
l=f.readlines()
d=[]
for x in range(0,len(l),4):
    temp="{}. [{}]({})".format(x/4+1,l[x],l[x+1]).replace("\n","")+"\n"
    d.append(temp)
f=open("mte.csv","w")
for x in d:
    f.write(x)
f.close()

From a time when i was able to export

  1. Ask HN: Can you recommend a modern, accessible P2P framework/library?
  2. Robert Langlands: The Greatest Mathematician You’ve Never Heard Of?
  3. Thinking About Thinking (1999)
  4. Show HN: Power point slide builder with handwriting
  5. Advanced web security topics
  6. Compiling machine learning programs via high-level tracing [pdf]
  7. Secure Boot in the Era of the T2
  8. Fundamental Algorithms of Machine Learning
  9. Ask HN: What is a good book to learn about the network stack?
  10. Silent and Simple Ion Engine Powers a Plane with No Moving Parts
  11. This JavaScript can snoop on other browser tabs to work out what you're visiting
  12. How does a GPU shader core work? [pdf]
  13. Reverse Engineering Pokémon Go Plus
  14. Container Linux on the Desktop [slides]
  15. D compilation is too slow and I am forking the compiler
  16. Concurrency Glossary
  17. Karl Friston: a neuroscientist who might hold the key to true AI
  18. Mini-Internet using LXC
  19. Use make to save time
  20. You might not need Kubernetes
  21. Build and deploy WebAssembly code to Fastly CDN
  22. Getting Started with Qt for WebAssembly
  23. The Facebook Era Is Over
  24. Make vs. Tup (2016)
  25. Show HN: SkillUpper – practice coding interview questions step-by-step
  26. How to Acquire Your First 100 Customers
  27. Show HN: Self-Driving Pi Car
  28. The Flask Mega-Tutorial (2012)
  29. Paint16b: A 16 byte paint program written in 12 lines
  30. Don't code your UI, draw it
  31. SIM Card Forces All of Your Mobile Data Through Tor
  32. Unscii – a bitmapped Unicode font for blocky graphics
  33. Building your own shell using Rust
  34. Rust and SPARK: Software Reliability for Everyone
  35. Show HN: Hundreds of founders launching startups on Twitch right now
  36. Learn languages by reading
  37. SPARK by Example
  38. Ask HN: What's the hardest problem you've ever solved?
  39. Turning the CPU-GPU Hybrid System on Its Head
  40. Show HN: RTCTunnel, build network tunnels over WebRTC
  41. Big List of Naughty Strings
  42. Why we rolled our own consensus algorithm
  43. Night Sight: Seeing in the Dark on Pixel Phones
  44. A book list for OS kernel developers and device driver writers (2006)
  45. Shumway: Flash implementation in JavaScript
  46. Show HN: Smallest Node.js Docker images
  47. There’s a Hole in the Bottom of the C: Effectiveness of Allocation Protection [pdf]
  48. C library system-call wrappers, or the lack thereof
  49. Redox – A Unix-Like Operating System Written in Rust
  50. IP Geolocation Through Reverse DNS
  51. The Ethereum-blockchain size has exceeded 1TB, and yes, it’s an issue
  52. Things I Wish I'd Known About Spark When I Started
  53. Distributed consistency at scale: Spanner vs. Calvin (2017)
  54. Internet Vulnerability Takes Down Google
  55. Show HN: HomelabOS – Ansible scripts to deploy self hosted cloud services
  56. About Database Connection Pool Sizing
  57. Show HN: WebRTTY – Share a terminal session over WebRTC
  58. New Algorithm Solves Cake-Cutting Problem (2016)
  59. How to self-publish a book: A handy list of resources
  60. Redner – A differentiable Monte Carlo path tracer
  61. Differentiable Monte Carlo Ray Tracing Through Edge Sampling
  62. Web Writable Files API: Simplifying Local File Access
  63. Post-quantum cryptography
  64. The Lie Behind the Lie Detector
  65. C2x: the next real revision of the C standard
  66. Transitioning from Video to Physical Game Development: An Education (2014)
  67. TL;DR: No, Telegram is not secure
  68. Things Rust doesn't let you do
  69. The ELF Virus Writing Howto (2003)
  70. EXploit X: “Give Me Root” – Get root access on many Linux systems [video]
  71. Should you use www or not in your domain? (2017)
  72. How Rust Helps Keep Kentik’s Performance on High
  73. Gogs – A simple, stable and extensible self-hosted Git service
  74. Cross shard transactions at 10M requests per second
  75. An OpenStack Crime Story solved by tcpdump, sysdig, and iostat (2014)
  76. Exploiting Coroutines to Attack the “Killer Nanoseconds” [pdf]
  77. Building real-time messaging server in Go
  78. Rob Pike's Introduction to Quantum Computation and Quantum Communication [pdf]
  79. Introspected REST: An Alternative to REST and GraphQL
  80. Zig: software should be perfect
  81. Why do all websites look the same?
  82. Building your color palette
  83. A Google Brain engineer’s guide to entering AI
  84. Badger: A fast key-value store written purely in Golang (2017)
  85. Why Pharo Might be the Future of Software Development (2017)
  86. Making floating point math highly efficient for AI hardware
  87. How to Design Software Good
  88. Application-Layer DDoS Attack Protection with HAProxy
  89. Optimal Shard Placement in a Petabyte Scale Elasticsearch Cluster
  90. Cloud Computing Without Containers at Cloudflare
  91. Verifying Concurrent Programs Using Contracts (2017) [pdf]
  92. Learning Concepts with Energy Functions
  93. Spectre.css – A Lightweight, Responsive and Modern CSS Framework
  94. Writing Network Drivers in Go [pdf]
  95. Writing Network Drivers in Rust [pdf]
  96. Deadlines, lies and videotape: The tale of a gRPC bug
  97. GoCity – Code City metaphor for visualizing Go source code
  98. 6502 Language Implementation Approaches
  99. The art of Virtual Analog filter design [pdf]
  100. Using parallel sequential scan in PostgreSQL
  101. Clojure at Netflix (2013) [slides]
  102. Cache Modeling and Optimization Using Miniature Simulations [pdf]
  103. ZGC: A Scalable Low-Latency Garbage Collector [video]
  104. Uber’s Secret Restaurant Empire
  105. Teach Yourself Computer Science
  106. How to beat LinkedIn: The Game
  107. Debugging with intelligence via probabilistic inference
  108. Bootstrapping An Online Fabric Shop and Growing to $20K/mo
  109. Why you should learn just a little Awk (2010)
  110. Twitter meets TensorFlow
  111. Caching Beyond RAM: The Case for NVMe
  112. GitLab Web IDE
  113. JavaScript Engine Fundamentals: Shapes and Inline Caches
  114. Guide to Angel Investing
  115. Strapdown.js – Instant and elegant Markdown documents
  116. Tools for Exploring .NET Internals
  117. Eric S. Raymond on Keeping the Bazaar Secure and Functional
  118. SOD: An Embedded OpenCV Alternative
  119. The End of Video Coding?
  120. Datasets for Machine Learning
  121. The Hardest Program I've Ever Written (2015)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment