Pages
(Move to ...)
Home
Info
HowTo
Code
Publications
Finance
Links
Legal
▼
14/09/2020
Tesla Model 3 1000km test review
›
I was considering buying an electric car and Tesla is an obvious choice, so I decided to rent a Model 3 for a weekend and drove it about 100...
15/07/2020
[bash] Extract all distinct lines from file
›
Using a combination of cut and uniq , it is possible to extract all distinct lines from a given file: cut -d\; -f1 file.txt | uniq It is op...
[bash] Extract characters before marker from all lines in a file with sed
›
Using sed, it is possible to quickly extract all characters before a given marker from all lines in a file with: sed 's/MARKER.*//' ...
27/05/2020
[C++] Graph adjacency list shortest path BFS
›
Here is a simple graph model using adjacency lists . The edges are undirected and we will also track edge weights, but ignore them at this t...
29/04/2020
[Docker] Move docker directory to different location on NTFS filesystem
›
The default location of docker files (images, volumes, networks, etc) on most distributions is /var/lib/docker This can be easily changed ...
28/04/2020
[GNOME] Create application shortcut that can be added to favorites
›
Some applications you install come as archives that you extract in a desired location. However, not all come with an installer that takes ca...
[Linux] Find WM_CLASS value for an application
›
In order to group application windows together, the WMClass and WMInstance attributes have been specified in the Inter-Client Communicatio...
‹
›
Home
View web version