All links of one day
in a single page.
<Previous day - Next day>

rss_feedDaily RSS Feed
floral_left The Daily Shaarli floral_right
——————————— March 19, 2014 - Wednesday 19, March 2014 ———————————
tmp - bash - mktemp - tweetit -

Pratique pour l'écriture de script en bash lorsqu'on a besoin d'un fichier temporaire :

#Creation
tmpfile=$(mktemp)

#Utilisation...

#Clean
if [ -e "$tmpfile" ]
then
rm -f $tmpfile
fi

diff - bash - list - comm -
thumbnail

Pour obtenir la diff des éléments entre deux listes :

To get the lines only in the old file:
comm -23 <(sort /tmp/oldList) <(sort /tmp/newList)

To get the lines only in the new file:
comm -13 <(sort /tmp/oldList) <(sort /tmp/newList)

comm -23 <(sort /tmp/1) <(sort /tmp/2)
comm -13 <(sort /tmp/1) <(sort /tmp/2)

todo - software - cli - done - standup - dar - war -

Un todo en cli dans le meme genre que http://todotxt.com/

network - elearning -

Des certifs qui peuvent être passées online : sécurité, réseau..

-