Skip to content

Instantly share code, notes, and snippets.

#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
{"styx-static/styx":{"17457":{"size":5298,"stargazers_count":32,"watchers_count":32,"forks_count":1,"open_issues_count":2,"forks":1,"open_issues":2,"watchers":32,"network_count":1,"subscribers_count":8}},"christophercliff/flatmarket":{"17457":{"size":2069,"stargazers_count":715,"watchers_count":715,"forks_count":69,"open_issues_count":6,"forks":69,"open_issues":6,"watchers":715,"network_count":69,"subscribers_count":30}},"middleman/middleman":{"17457":{"size":22525,"stargazers_count":6029,"watchers_count":6029,"forks_count":635,"open_issues_count":106,"forks":635,"open_issues":106,"watchers":6029,"network_count":635,"subscribers_count":198}},"jldec/pub-server":{"17457":{"size":4125,"stargazers_count":59,"watchers_count":59,"forks_count":7,"open_issues_count":4,"forks":7,"open_issues":4,"watchers":59,"network_count":7,"subscribers_count":8}},"creationix/wheat":{"17457":{"size":250,"stargazers_count":1371,"watchers_count":1371,"forks_count":140,"open_issues_count":22,"forks":140,"open_issues":22,"watchers":1371
@fgallaire
fgallaire / ext4_vs_XFS.csv
Last active May 7, 2018 22:44
ext4 vs XFS
Commande ext4 XFS ext4/XFS
du -hsc legi 3'08" 0'53" 3,5
find legi -type d | wc -l 3'06" 0'56" 3,3
find . -name "*.xml" | wc -l 2'54" 0'51" 3,4
tar xzf Freemium_legi_global.tar.gz 2'26" 1'18" 1,9
Nom Archéo Lex legi.py Legi Display Legit.jl legifrance-go Codes Droit.org
Auteur Seb35 Changaco SedLex eraviart (Etalab) Steeve Habett
Origine des données LEGI LEGI LEGI LEGI Légifrance puis LEGI Légifrance puis LEGI
Production Dépôts Git Test des données Plugin WordPress Dépôts Git Dépôt Git PDF et ePub
Langage Python Python PHP Julia Go Perl
SGBD SQLite (Peewee) SQLite MySQL - - -
Licence WTFPL CC0 GPL MIT GPL Propriétaire
@fgallaire
fgallaire / micro-frameworks.csv
Last active May 7, 2018 22:57
Micro-frameworks
Nom Newf djng importd Itty Bottle Flask Tornado Pyramid Django
wc -l 150 328 791 958 4 179 6 469 2 327 22 641 122 675
sloccount 114 230 533 632 2 721 2 725 11 535 11 312 77 514
Fichiers Python 1 14 2 1 1 21 81 193 853
Étoiles GitHub 50 123 454 374 3 878 22 007 11 903 2 059 20 717
PyPI (millions) - - 0,1 0,05 2 14 11 2 23
@fgallaire
fgallaire / sintel.csv
Last active May 9, 2018 13:55
Sintel
Logiciel Langage Licence
Blender C, C++ et Python GPL
GIMP C GPL (application) LGPL (librairies)
Inkscape C++ GPL (application) LGPL (librairies)
MyPaint Python (application) Python et C++ (librairies) GPL (application et librairies) LGPL (brushlib)
Alchemy Java GPL
Desktop Shell Graphisme Gestionnaire de fenêtres Lib. graphiques Langages Dév. actif Licence
Netbook Remix Launcher 3D Mutter Clutter + CluTK C Non GNU GPLv3
Netbook Launcher EFL 2D Metacity EFL + GTK C Non GNU GPLv3
Unity v1 (branche 0.2) 3D Mutter Clutter + CluTK C et Vala Non GNU GPLv3
Unity v2 (branche 3.0) 3D Compiz Nux C++ et Vala Oui GNU GPLv3
Unity 2D 2D Metacity Qt C++ et QML Oui GNU GPLv3
@fgallaire
fgallaire / main.erl
Last active April 29, 2019 14:30 — forked from hamidreza-s/main.erl
How to use Parse Transform feature in Erlang for meta-programming.
-module(main).
-export([hi/0, bye/0, hey/1]).
-compile({parse_transform, main_pt}).
hi() -> io:format("Hi there!~n").
bye() -> io:format("Bye there!~n").
hey(foo) -> io:format("Hey foo!~n");
hey(bar) -> io:format("Hey bar!~n").
#!/usr/bin/env escript
main([]) -> io:format("script 0.1\n");
main([Arg]) -> io:format("Argument : ~s\n", [Arg]);
main([Head|_Tail]) -> io:format("Attention : script ne prend en charge qu'un seul argument.\n"),
main([Head]).
#!/usr/bin/env escript
main([]) -> io:format("script 0.1\n");
main([Arg]) -> io:format("Argument : ~s\n", [Arg]);
main(_) -> io:format("Erreur : script ne prend en charge qu'un seul argument.\n").