131 private links
How Donald Knuth’s 1978 typesetting program became one of the oldest still-active open-source projects and revolutionized technical publishing along the way.
Technology reshapes the workplace in much subtler ways than simply robots stealing jobs.
Drill is a new file search utility that uses "clever crawling" instead of indexing, for Linux, Windows and macOS.
Super-high-speed camera produces a film consisting of 60 consecutive frames.
Dockly is a TUI (text user interface) utility to manage Docker containers and services from the Terminal in Unix-like systems.
PyRadio is a command line internet radio player written in the Python programming language. There's support for playlists, and uses popular media players.
Tips for acquiring Git super powers.
Elegant music player for LINUX .
GitHub Gist: instantly share code, notes, and snippets.
Vim 8.1 was released about a year ago, in May 2018. The “main new feature” was official support for running a terminal within vim. Along with this came a built-in debugger plugin, termd…
This tutorial describes 3 different command-line image viewers to display images in Terminal itself in Unix-like operating systems.
System design interview for IT companies. Contribute to checkcheckzz/system-design-interview development by creating an account on GitHub.
Official blog of Keybase
Store files in Google Docs without counting against your quota.
Features
- Upload files to Google Drive without using storage space
- Download any stored files to your computer
Logic
- Google Docs take up 0 bytes of quota in your Google Drive
- Split up binary files into Google Docs, with base64 encoded text
- Size of the encoded file is always larger than the original. Base64 encodes binary data to a ratio of about 4:3.
- A single google doc can store about a million characters. This is around 710KB of base64 encoded data.
- Some experiments with multi-threading the uploads, but there was no significant performance increase.