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

    3 juin 2014 à 15:03:36 UTC+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

    3 juin 2014 à 12:59:43 UTC+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
    3 juin 2014 à 09:54:03 UTC+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!

    2 juin 2014 à 13:23:29 UTC+2 - permalink - archive.org - http://www.bay12games.com/dwarves/index.html#2014-06-01
    game
  • Defensive BASH programming - Say what?

    via arnaudb

    2 juin 2014 à 13:20:25 UTC+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.

    27 mai 2014 à 14:37:51 UTC+2 - permalink - archive.org - http://code.google.com/p/logstalgia/
    apache log nginx pong
  • RSS-Bridge

    bridges everywhere

    27 mai 2014 à 08:14:52 UTC+2 - permalink - archive.org - http://bridge.suumitsu.eu
    bridge rss
  • HAProxy - route by domain name | Sean McGary
    26 mai 2014 à 22:36:16 UTC+2 - permalink - archive.org - http://seanmcgary.com/posts/haproxy---route-by-domain-name
    haproxy
  • HAProxy packages for Debian and Ubuntu
    26 mai 2014 à 13:12:07 UTC+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

    26 mai 2014 à 10:06:39 UTC+2 - permalink - archive.org - http://usefulthings.org.uk/2013/04/bash-ssh-known_hosts-tab-completion/
    autocomplete ssh
  • https://github.com/capistrano/capistrano
    23 mai 2014 à 15:33:33 UTC+2 - permalink - archive.org - https://github.com/capistrano/capistrano
    orchestration techno
  • Apache Aurora
    • http://mesos.apache.org/

    isolate like docker + service scheduling + health checking

    23 mai 2014 à 15:28:21 UTC+2 - permalink - archive.org - http://aurora.incubator.apache.org/
    techno
  • Difference between save and export in Docker | Thomas Uhrig
    22 mai 2014 à 13:52:52 UTC+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

    22 mai 2014 à 10:33:45 UTC+2 - permalink - archive.org - http://crosbymichael.com/dockerfile-best-practices.html
    docker
  • Top 20+ MySQL Best Practices - Tuts+ Code Tutorial
    21 mai 2014 à 14:19:29 UTC+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

    21 mai 2014 à 13:36:31 UTC+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

    21 mai 2014 à 12:56:26 UTC+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

    20 mai 2014 à 18:04:41 UTC+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.

    20 mai 2014 à 13:31:42 UTC+2 - permalink - archive.org - https://github.com/Cakebox/Cakebox-light
    torrent
  • Deis | Your Paas. Your Rules.
    20 mai 2014 à 11:49:18 UTC+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