4355 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 91 / 218
Newer►
  • Webdesign-Inspiration.com: Best web designs inspiration gallery
    14 janvier 2015 à 17:13:01 UTC+1 - permalink - archive.org - http://www.webdesign-inspiration.com/
    design inspiration
  • Web design inspiration on Pinterest | 366 Pins
    14 janvier 2015 à 17:12:51 UTC+1 - permalink - archive.org - https://www.pinterest.com/webdesigns/web-design-inspiration/
    design inspiration
  • Best Clean Websites | Web Design Inspiration
    14 janvier 2015 à 17:12:42 UTC+1 - permalink - archive.org - http://www.awwwards.com/websites/clean/
    design inspiration
  • siteInspire - Web Design Inspiration
    14 janvier 2015 à 17:12:33 UTC+1 - permalink - archive.org - http://www.siteinspire.com/
    design inspiration
  • Dribbble - Show and tell for designers
    14 janvier 2015 à 17:10:18 UTC+1 - permalink - archive.org - https://dribbble.com/
    design inspiration
  • Attach a volume to a container while it is running

    via skunnyk

    14 janvier 2015 à 10:58:55 UTC+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

    13 janvier 2015 à 16:27:41 UTC+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

    13 janvier 2015 à 11:09:11 UTC+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

    13 janvier 2015 à 10:44:19 UTC+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

    12 janvier 2015 à 15:31:38 UTC+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

    12 janvier 2015 à 14:40:38 UTC+1 - permalink - archive.org - https://links.infomee.fr/?AJEkkg
    bind dns
  • Generating weighed random numbers in JavaScript

    Algo pour faire du random avec poids

    12 janvier 2015 à 11:26:33 UTC+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

    12 janvier 2015 à 11:08:51 UTC+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

    10 janvier 2015 à 10:45:34 UTC+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..

    9 janvier 2015 à 10:07:04 UTC+1 - permalink - archive.org - https://links.infomee.fr/?os-nRg
    debian php
  • Redactor WYSIWYG html editor
    8 janvier 2015 à 21:55:49 UTC+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'

    8 janvier 2015 à 18:20:33 UTC+1 - permalink - archive.org - https://links.infomee.fr/?9HRSiQ
    ssh
  • Clustering et haute disponibilité sous Linux avec Heartbeat | Application (Linux) | IT-Connect
    7 janvier 2015 à 17:20:09 UTC+1 - permalink - archive.org - http://www.it-connect.fr/clustering-et-haute-disponibilite-sous-linux-avec-heartbeat%EF%BB%BF/
    ha heartbeat
  • Svn status output

    Pour avoir toujours l'output dans le même ordre (trié), ajouter au bashrc :

    function svn() {
    case $* in
    st ) shift 1; command svn status | sort -k 2 ;;

    • ) command svn "$@" ;;
      esac
      }
    7 janvier 2015 à 10:35:15 UTC+1 - permalink - archive.org - https://links.infomee.fr/?nPIw-g
    status svn
  • Pushbullet - Your devices working better together

    ça a l'air bien bien tout ça, à tester

    6 janvier 2015 à 15:18:17 UTC+1 - permalink - archive.org - https://www.pushbullet.com/
    airdroid android
Links per page: 20 50 100
◄Older
page 91 / 218
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation