4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 90 / 217
Newer►
  • 7 Rules for Creating Gorgeous UI (Part 2) — Medium
    January 15, 2015 at 4:36:28 PM GMT+1 - permalink - archive.org - https://medium.com/@erikdkennedy/7-rules-for-creating-gorgeous-ui-part-2-430de537ba96
    design
  • 7 Rules for Creating Gorgeous UI (Part 1) — Medium
    January 15, 2015 at 4:36:19 PM GMT+1 - permalink - archive.org - https://medium.com/@erikdkennedy/7-rules-for-creating-gorgeous-ui-part-1-559d4e805cda
    design
  • Webdesign-Inspiration.com: Best web designs inspiration gallery
    January 14, 2015 at 5:13:01 PM GMT+1 - permalink - archive.org - http://www.webdesign-inspiration.com/
    design inspiration
  • Web design inspiration on Pinterest | 366 Pins
    January 14, 2015 at 5:12:51 PM GMT+1 - permalink - archive.org - https://www.pinterest.com/webdesigns/web-design-inspiration/
    design inspiration
  • Best Clean Websites | Web Design Inspiration
    January 14, 2015 at 5:12:42 PM GMT+1 - permalink - archive.org - http://www.awwwards.com/websites/clean/
    design inspiration
  • siteInspire - Web Design Inspiration
    January 14, 2015 at 5:12:33 PM GMT+1 - permalink - archive.org - http://www.siteinspire.com/
    design inspiration
  • Dribbble - Show and tell for designers
    January 14, 2015 at 5:10:18 PM GMT+1 - permalink - archive.org - https://dribbble.com/
    design inspiration
  • Attach a volume to a container while it is running

    via skunnyk

    January 14, 2015 at 10:58:55 AM GMT+1 - permalink - archive.org - http://jpetazzo.github.io/2015/01/13/docker-mount-dynamic-volumes/
    docker
  • rsync -a

    -a, --archive archive mode; equals -rlptgoD (no -H,-A,-X)

    -r, --recursive recurse into directories
    -l, --links copy symlinks as symlinks
    -p, --perms preserve permissions
    -t, --times preserve modification times
    -g, --group preserve group
    -o, --owner preserve owner (super-user only)
    -D same as --devices --specials

    --devices preserve device files (super-user only)
    --specials preserve special files

    January 13, 2015 at 4:27:41 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?7C99iw
    rsync
  • Gotham 7.5K by Vincent Laforet (Storehouse)

    superbes photos de new york de nuit et en altitude

    January 13, 2015 at 11:09:11 AM GMT+1 - permalink - archive.org - https://www.storehouse.co/stories/r3rcy-gotham-7-5k
    ny photo
  • abh1nav/cassandra Repository | Docker Hub Registry - Repositories of Docker Images

    docker <3

    January 13, 2015 at 10:44:19 AM GMT+1 - permalink - archive.org - https://registry.hub.docker.com/u/abh1nav/cassandra/
    cassandra docker
  • sitaramc/gitolite User and repo management (cli)

    Testé et approuvé

    via Skunnyk

    January 12, 2015 at 3:31:38 PM GMT+1 - permalink - archive.org - https://github.com/sitaramc/gitolite
    git
  • Bind et transfert de zone

    Lorsqu'on édite une zone sur le master, il faut bien penser à incrémenter le serial pour que le slave sache qu'un transfert de zone est nécessaire.
    Si on veut accélérer ce transfert, on peut aller sur le slave et faire :

    sur le slave :

    rndc retransfer ma.zone.local

    January 12, 2015 at 2:40:38 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?AJEkkg
    bind dns
  • Generating weighed random numbers in JavaScript

    Algo pour faire du random avec poids

    January 12, 2015 at 11:26:33 AM GMT+1 - permalink - archive.org - http://www.javascriptkit.com/javatutors/weighrandom2.shtml
    algo random weight
  • rubber/collectd-cassandra.conf at master · rubber/rubber

    Un exemple de conf pour remonter les data de la JMX cassandra via collectd

    January 12, 2015 at 11:08:51 AM GMT+1 - permalink - archive.org - https://github.com/rubber/rubber/blob/master/templates/cassandra/config/rubber/role/cassandra/collectd-cassandra.conf
    cassandra collectd
  • What are useful command-line network monitors on Linux - Xmodulo

    plein d'outils network linux

    • nload

    via arnaub

    January 10, 2015 at 10:45:34 AM GMT+1 - permalink - archive.org - http://xmodulo.com/useful-command-line-network-monitors-linux.html
    linux network
  • PHP gc_maxlifetime

    Sur une debian wheezy, php va "nettoyer" régulièrement le dossier qui contient les fichiers de sessions grâce à un cron dans /etc/cron.d/

    Toutes les 30 minutes il va vérifier qu'aucun fichier n'est plus vieux que le gc_maxlifetime (php.ini) qui par défaut est de 24 minutes.

    24 minutes !! Ne vous étonnez pas si vous de restez pas connecté à vos applications même en ayant coché la petite case car avec ce comportement par défaut, si votre session n'est pas accédée dans un délai de 24 minutes, elle sera supprimée par le prochain passage du cron..

    January 9, 2015 at 10:07:04 AM GMT+1 - permalink - archive.org - https://links.infomee.fr/?os-nRg
    debian php
  • Redactor WYSIWYG html editor
    January 8, 2015 at 9:55:49 PM GMT+1 - permalink - archive.org - http://imperavi.com/redactor/
    editor WYSIWYG
  • Sessions ssh en cours

    Trouver tous les pid des sessions ssh en cours :
    ss -tnp|grep ':22'
    ss -tp|grep ':22'|grep -Eo ',[0-9]+,'|grep -Eo '[0-9]+'

    Trouver depuis quand ces process sont démarrés :

    ps -eo pid,etimes|grep 26205

    26205 329840

    echo "$(date +%s) - 329743"|bc

    1419103787

    date -d@$(echo "$(date +%s) - 329743"|bc)

    Sat Dec 20 20:31:42 CET 2014

    One liner :

    start time

    for pid in $(ss -tp|grep ':22'|grep -Eo ',[0-9]+,'|grep -Eo '[0-9]+'); do date -d@$(echo "$(date +%s) - $(ps -o etimes -p $pid --no-headers)"|bc); done

    pid + start time

    for pid in $(ss -tp|grep ':22'|grep -Eo ',[0-9]+,'|grep -Eo '[0-9]+'); do echo -n "$pid : " && date -d@$(echo "$(date +%s) - $(ps -o etimes -p $pid --no-headers)"|bc); done

    Si le log level de ssh est en VERBOSE, on peut chercher dans auth.log le fingerprint de la clé publique correspondant à la date à laquelle une session ssh a démarré :

    zgrep sshd /var/log/auth.log*|grep Accepted|grep 'Dec 20'

    January 8, 2015 at 6:20:33 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?9HRSiQ
    ssh
  • Clustering et haute disponibilité sous Linux avec Heartbeat | Application (Linux) | IT-Connect
    January 7, 2015 at 5:20:09 PM GMT+1 - permalink - archive.org - http://www.it-connect.fr/clustering-et-haute-disponibilite-sous-linux-avec-heartbeat%EF%BB%BF/
    ha heartbeat
Links per page: 20 50 100
◄Older
page 90 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation