Created Tips & tricks (markdown)

Lucas Cimon 2015-01-15 02:50:58 +01:00
parent 67c7f26db0
commit 97c5d7fa2c

19
Tips-&-tricks.md Normal file

@ -0,0 +1,19 @@
The following `bash` function pretty-print the entire comments DB sorted by insertion date.
get_blog_comments () {
ssh chezsoi.org sqlite3 -line /var/www/lucas/isso/isso.db \
"'SELECT t.uri,c.created,c.modified,c.text,c.author,c.email,c.website \
FROM comments AS c, threads as t WHERE c.tid = t.id;'" \
| perl -wpe '/(created|modified) = ./&&s/= (.*)/"= ".scalar(localtime($1))/e';
}
Example output:
uri = /lucas/blog/2014/12/12/fr-la-tete-dans-le-guidon/
created = Mon Dec 15 13:10:28 2014
modified =
text = Merci ! Je suis très content d'apprendre que cette lecture a pu plaire à quelqu'un
N'hésitez pas à partager vos propres réflexions et astuces dans les commentaires.
author = lucas
email = lucas@chezsoi.org
website = https://chezsoi.org/lucas/blog