Daily Shaarli
January 14, 2020
(feed de Riduidel)
Les applications sur ordiphone siphonnent illégalement les données des utilisateurs. Notamment Tinder, Grindr,
(via Sebsauvage)
Quicknotes :
Five 9s : 99.999% uptime [where are they now ?, AN]
Avoid loss of capabilities
Robustness is declining
Productivity is declining [not sure about that..., AN]
The argument that software is advancing is obviously false
Techonology, by itself, will degrade
We must simplify by itself, at every level:
- the hardware
- the OS
- the libraries
- the application code
- the communication systems (e.g. internet)
- how we compile
- how we debug
- how we distribute
- how people interface with software
Surviving as a developper : removing complexity is the right short-term play, even if it doesn't seem so.
Interactive cheatsheet with remise, working directory, index, local repository and remote repository columns
(from sebsauvage)
Print the duration of each video passed as argument
#!/bin/bash
for video in "$@"
do
duration=$(mediainfo "$video" |grep "Duration" |head -n 1 |cut -d':' -f 2)
echo "$duration ― $video"
done
Need the mediainfo command (install with apt)
Some shortcuts with netrw
A list of designed cheasheets