In Mac OSX, you can use the “open” command to open almost all kinds of files which equals to double-click the file icon in GUI. Is there an equivalent thing in Linux?
Git Large File Storage
Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
Sublime Text
Now Sublime Text 3 supports official “apt” source installation. From here.
Export Web Page to PDF with Headless Google Chrome
Headless browsers provide automated control of a web page in an environment similar to popular web browsers, but are executed via a command-line interface or using network communication. They are particularly useful for testing web pages as they are able to render and understand HTML the same way a browser would, including styling elements such as page layout, colour, font selection and execution of JavaScript and AJAX which are usually not available when using other testing methods.
Login Shell & Non Login Shell
In “gnome-terminal” profile, there is an option “Run command as a login shell”. You can enable/disable it. But what is the difference?
Flat Terminal Theme
Flat UI colors is a set of beautiful colors for UI. Here is a program which can create a new color profile into “gnome-terminal” to make it use the flat colors in Ubuntu terminal.
GraphQL
Google Translate API for Python & Node.js
There are libraries with which you can invoke Google Translate API. For Python, there is “googletrans“; for Node, there is “google-translate-api“.
Python Doc for pip Packges
Remove Dependencies with Package Using Python pip
When running “pip uninstall ppp” to remove a Python pip package, unlike “apt-get remove uuu”, it seems it removes the package only without its useless depending packages, which will leave unused files there. How to improve it?