4359 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 107 / 218
Newer►
  • thumbnail
    Increase available disk space by decreasing the reserved blocks in extended filesytems ext2/3/4 using tune2fs | Linuxers

    à lire

    June 4, 2014 at 11:00:21 AM GMT+2 - permalink - archive.org - http://linuxers.org/quick-tips/increase-available-disk-space-decreasing-reserved-blocks-extended-filesytems-ext234-using-tune2fs
    ext disk
  • thumbnail
    Google Online Security Blog: Making end-to-end encryption easier to use

    Cool à première vue mais je trouve ça étrange..
    Si c'est bien fait, Google n'aura donc plus accès au contenu de nos mails et ne pourra plus balancer de la pub ciblée ? Ils sont forcément conscient de ça, alors comment comptent ils équilibrer cette perte ?

    June 4, 2014 at 9:54:25 AM GMT+2 - permalink - archive.org - http://googleonlinesecurity.blogspot.fr/2014/06/making-end-to-end-encryption-easier-to.html
    google pgp
  • thumbnail
    Keep an Eye on SSH Forwarding! | /dev/random

    Quelques pistes pour monitorer le TCPforwarding

    June 3, 2014 at 3:03:36 PM GMT+2 - permalink - archive.org - http://blog.rootshell.be/2009/03/01/keep-an-eye-on-ssh-forwarding/
    ssh tcp forwarding tunnel
  • thumbnail
    Virtualisation légère avec Docker | Le blog de NicoLargo

    Un autre article prise en main

    June 3, 2014 at 12:59:43 PM GMT+2 - permalink - archive.org - http://blog.nicolargo.com/2014/06/virtualisation-legere-docker.html
    docker
  • Performing UDP tunneling through an SSH connection
    • http://www.dest-unreach.org/socat/
    • http://superuser.com/questions/53103/udp-traffic-through-ssh-tunnel
    June 3, 2014 at 9:54:03 AM GMT+2 - permalink - archive.org - http://zarb.org/~gc/html/udp-in-ssh-tunneling.html
    networking udp ssh dns
  • Bay 12 Games: Dwarf Fortress

    Allez, je me promets de m'y mettre avec la nouvelle release!

    June 2, 2014 at 1:23:29 PM GMT+2 - permalink - archive.org - http://www.bay12games.com/dwarves/index.html#2014-06-01
    game
  • thumbnail
    Defensive BASH programming - Say what?

    via arnaudb

    June 2, 2014 at 1:20:25 PM GMT+2 - permalink - archive.org - http://www.kfirlavi.com/blog/2012/11/14/defensive-bash-programming/
    bash
  • logstalgia - website access log visualization - Google Project Hosting

    Logstalgia is a website traffic visualization that replays or streams web-server access logs as a pong-like battle between the web server and an never ending torrent of requests.

    May 27, 2014 at 2:37:51 PM GMT+2 - permalink - archive.org - http://code.google.com/p/logstalgia/
    log pong nginx apache
  • RSS-Bridge

    bridges everywhere

    May 27, 2014 at 8:14:52 AM GMT+2 - permalink - archive.org - http://bridge.suumitsu.eu
    rss bridge
  • thumbnail
    HAProxy - route by domain name | Sean McGary
    May 26, 2014 at 10:36:16 PM GMT+2 - permalink - archive.org - http://seanmcgary.com/posts/haproxy---route-by-domain-name
    haproxy
  • thumbnail
    HAProxy packages for Debian and Ubuntu
    May 26, 2014 at 1:12:07 PM GMT+2 - permalink - archive.org - http://haproxy.debian.net/
    haproxy debian sys
  • thumbnail
    Things I've found useful » Blog Archive » Bash SSH known_hosts tab completion

    This morning a discussion with a friend about various shells lead me to think it would be nice if my bash shell could tab complete hostnames from .ssh/known_hosts when I type ‘ssh <tab>’. I soon found this blog post which nicely documents how to do it. I made a directory in $HOME called .bash.completion and then added this to my .profile, which loops round any files in there, sourcing them individually:

    if [ -d ${HOME}/.bash.completion ]; then
    for file in ${HOME}/.bash.completion/* ; do
    source $file
    done
    fi

    All sorted. However, it wasn’t long before I discovered that ‘ssh user@<tab>’ doesnt work, I tend to use this quite a lot so wanted to see if I could fix up the bash function to support that use case. Bit of hacking around and I’ve got it working, the replacement ssh-completion file is shown below:

    Add bash completion for ssh: it tries to complete the host to which you

    want to connect from the list of the ones contained in ~/.ssh/known_hosts

    __ssh_known_hosts() {
    if [[ -f ~/.ssh/known_hosts ]]; then
    cut -d " " -f1 ~/.ssh/known_hosts | cut -d "," -f1
    fi
    }
    _ssh() {
    local cur known_hosts
    COMPREPLY=()
    cur="${COMP_WORDS[COMP_CWORD]}"
    known_hosts="$(__ssh_known_hosts)"
    if [[ ! ${cur} == - ]] ; then
    if [[ ${cur} ==
    @ ]] ; then
    COMPREPLY=( $(compgen -W "${known_hosts}" -P ${cur/@
    /}@ -- ${cur/*@/}) )
    else
    COMPREPLY=( $(compgen -W "${known_hosts}" -- ${cur}) )
    fi
    fi
    return 0
    }
    complete -o bashdefault -o default -o nospace -F _ssh ssh 2>/dev/null \
    || complete -o default -o nospace -F _ssh ssh

    May 26, 2014 at 10:06:39 AM GMT+2 - permalink - archive.org - http://usefulthings.org.uk/2013/04/bash-ssh-known_hosts-tab-completion/
    ssh autocomplete
  • thumbnail
    https://github.com/capistrano/capistrano
    May 23, 2014 at 3:33:33 PM GMT+2 - permalink - archive.org - https://github.com/capistrano/capistrano
    techno orchestration
  • thumbnail
    Apache Aurora
    • http://mesos.apache.org/

    isolate like docker + service scheduling + health checking

    May 23, 2014 at 3:28:21 PM GMT+2 - permalink - archive.org - http://aurora.incubator.apache.org/
    techno
  • Difference between save and export in Docker | Thomas Uhrig
    May 22, 2014 at 1:52:52 PM GMT+2 - permalink - archive.org - http://tuhrig.de/difference-between-save-and-export-in-docker/
    docker save load export import
  • thumbnail
    Dockerfile Best Practices

    Quelques best practice concernant les Dockerfile
    On peut se servir de Docker de plein de façon différentes, alors quelques repères ça ne fait pas mal

    May 22, 2014 at 10:33:45 AM GMT+2 - permalink - archive.org - http://crosbymichael.com/dockerfile-best-practices.html
    docker
  • thumbnail
    Top 20+ MySQL Best Practices - Tuts+ Code Tutorial
    May 21, 2014 at 2:19:29 PM GMT+2 - permalink - archive.org - http://code.tutsplus.com/tutorials/top-20-mysql-best-practices--net-7855
    mysql
  • thumbnail
    Le fonctionnement de la compression Gzip - Alsacreations

    vraiment bien expliqué!

    via sebsauvage

    May 21, 2014 at 1:36:31 PM GMT+2 - permalink - archive.org - http://www.alsacreations.com/astuce/lire/1627-fonctionnement-compression-gzip.html
    compression gzip zip
  • thumbnail
    Nmap Cheat Sheet: From Discovery to Exploits, Part 2: Advance Port Scanning with Nmap And Custom Idle Scan - InfoSec Institute

    jme garde ça pour plus tard

    • part1 : http://resources.infosecinstitute.com/nmap-cheat-sheet/

    via arnaudb

    May 21, 2014 at 12:56:26 PM GMT+2 - permalink - archive.org - http://resources.infosecinstitute.com/nmap-cheat-sheet-discovery-exploits-part-2-advance-port-scanning-nmap-custom-idle-scan/
    nmap networking
  • thumbnail
    gaudi

    Une surcouche à docker pour organiser ses containers et les liens qu'il y a entre eux

    May 20, 2014 at 6:04:41 PM GMT+2 - permalink - archive.org - http://gaudi.io/
    docker
Links per page: 20 50 100
◄Older
page 107 / 218
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation