4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 106 / 217
Newer►
  • 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/
    forwarding ssh tcp tunnel
  • 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
    dns networking ssh udp
  • 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
  • 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/
    apache log nginx pong
  • RSS-Bridge

    bridges everywhere

    May 27, 2014 at 8:14:52 AM GMT+2 - permalink - archive.org - http://bridge.suumitsu.eu
    bridge rss
  • 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
  • HAProxy packages for Debian and Ubuntu
    May 26, 2014 at 1:12:07 PM GMT+2 - permalink - archive.org - http://haproxy.debian.net/
    debian haproxy sys
  • 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/
    autocomplete ssh
  • https://github.com/capistrano/capistrano
    May 23, 2014 at 3:33:33 PM GMT+2 - permalink - archive.org - https://github.com/capistrano/capistrano
    orchestration techno
  • 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 export import load save
  • 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
  • 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
  • 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
  • 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/
    networking nmap
  • 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
  • thumbnail
    https://github.com/Cakebox/Cakebox-light

    à tester pour voir.. si ça ne fait que du listing de dir, autant utiliser l'autoindex d'apache.

    May 20, 2014 at 1:31:42 PM GMT+2 - permalink - archive.org - https://github.com/Cakebox/Cakebox-light
    torrent
  • Deis | Your Paas. Your Rules.
    May 20, 2014 at 11:49:18 AM GMT+2 - permalink - archive.org - http://deis.io/
    docker techno
Links per page: 20 50 100
◄Older
page 106 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation