4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 88 / 217
Newer►
  • thumbnail
    The Gooey Effect | CSS-Tricks

    woah

    February 5, 2015 at 5:26:17 PM GMT+1 - permalink - archive.org - http://css-tricks.com/gooey-effect/
    css design menu
  • Ou on arrive enfin elasticsearch | Karlesnine
    February 4, 2015 at 2:24:00 PM GMT+1 - permalink - archive.org - https://www.karlesnine.com/2015/02/04/ou-on-arrive-enfin-elasticsearch/
    elasticsearch elk kibana logstash
  • Comment savoir si votre entreprise est DevOps | CommitStrip - Blog relating the daily life of web agencies developers

    ahahahah

    via doo

    February 3, 2015 at 6:21:10 PM GMT+1 - permalink - archive.org - http://www.commitstrip.com/fr/2015/02/02/is-your-company-ready-for-devops/
    devops
  • Les devops chez OVH.com
    February 3, 2015 at 3:43:16 PM GMT+1 - permalink - archive.org - https://www.ovh.com/fr/a1075.devops-profil-pointu-poste-ovh
    devops sysadmin
  • Postfix rate limiting - Politeness goes a long way - steam.io
    February 2, 2015 at 5:53:52 PM GMT+1 - permalink - archive.org - http://steam.io/2013/04/01/postfix-rate-limiting/
    limit mail postfix rate
  • Find out which process uses an old lib and needs a restart after a system update | commandlinefu.com

    lsof | grep 'DEL.lib'
    lsof | grep 'DEL.
    lib' | sort -k1,1 -u

    pour la libc : lsof | grep 'DEL'|grep libc-2.13.so|sort -k1,1 -u

    January 27, 2015 at 4:55:11 PM GMT+1 - permalink - archive.org - http://www.commandlinefu.com/commands/view/8579/find-out-which-process-uses-an-old-lib-and-needs-a-restart-after-a-system-update
    lib process
  • Next generation development with Docker and Fig
    January 27, 2015 at 2:13:31 PM GMT+1 - permalink - archive.org - http://blog.stxnext.com/posts/2015/01/development-with-docker-and-fig/
    docker fig
  • THIS IS VERY IMPORTANT - Imgur

    :D:D

    January 26, 2015 at 10:33:47 AM GMT+1 - permalink - archive.org - http://imgur.com/gallery/Cpi2g
    cat gif
  • QoS (traffic control) under linux with tc

    Problème assez simple : lorsque je télécharge des vidéos de vacances sur mon serveur, la connexion est saturée et je ne peux plus rien faire sans latence (ssh, web, jeux..)

    Pour résoudre ce problème, j'ai limité l'upload de mon serveur de façon basique le temps de mieux comprendre tc (et sa partie classful) :
    tc qdisc add dev eth0 root tbf rate 6000kbit latency 50ms burst 10000

    Et ça marche bien :-) Je limite l'upload à 6000kbit/s soit la moitié de
    Sans cette politique je dl à 12Mbit/s depuis chez moi soit environ 1,5MBytes/s (1,5Moctets/s)
    Une fois la qdisc appliquée je chute de moitié. Un peu violent, mais au moins personne n'est pénalisé lorsque quelqu'un télécharge ^^ Je vais tenter d'augmenter un peu cette limite pour voir jusqu'où je peux aller.

    Ce n'est cependant pas parfait, ce workaround ne fonctionne que lorsqu'on télécharge sur mon serveur, il faudrait avoir un routeur à la maison (ex : raspberry) et le faire dessus avec des qdisc classful pour limiter suivant le type de flux

    PS :

    Pour voir et supprimer cette politique :
    tc qdisc show dev eth0
    tc qdisc del dev eth0 root

    Choix de la valeur de 'burst' :
    C'est la taille en bytes du bucket. Elle doit être un minimum de : rate/HZ. Pour trouver son HZ :

    egrep '^CONFIGHZ[0-9]+' /boot/config-uname -r

    CONFIG_HZ_250=y

    Donc pour un rate de 6000kbit/sec = 6 000 000 bit/sec, on a :
    burst_mini = 6 000 000 / 250 = 24000 bits = 3000 bytes

    Et pour le burst maximum, on prend le rate max du server : 100Mbps = 100 000 000 bit
    burst_max = 100 000 000 / 250 = 400 000 bits = 50 000 bytes

    Il faut choisir une valeur dans cet intervalle, c'est la "réserve" qui sera disponible quand on commencera un téléchargement.
    50 000bytes, ça fait 50Mo, donc les 50 premiers Mo du téléchargement ne seront pas limités ce qui fait un peu trop.

    January 25, 2015 at 1:10:00 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?ETbYCQ
    tc
  • 'Re: exception in thread? in Net::SSH::Multi' - MARC

    errs = []
    def test_server(errs, server)
    lambda do |options|
    begin
    server =~ /(.+)@(.+)/
    server_name, user = $2, $1
    puts server_name
    s = Net::SSH.start(server_name, user)
    s.close
    s = server
    rescue Errno::EHOSTUNREACH, SocketError
    puts "echec connexion #{server} : #{$!}"
    errs << server
    s = nil
    end

        return s
    end

    end

    Net::SSH::Multi.start(:on_error => :warn) do |session|

    define the servers we want to use

    session.use &test_server(errs, 'root@srv-04')
    session.use &test_server(errs, 'root@srv-07')
    session.use &test_server(errs, 'root@srv-08')
    session.use &test_server(errs, 'root@fail-08.local')

    execute commands on all servers

    session.exec( "hostname" )

    run the aggregated event loop

    session.loop
    end

    unless errs.empty?
    puts "The command failed on #{errs.size} hosts"
    end

    January 23, 2015 at 3:05:30 PM GMT+1 - permalink - archive.org - http://marc.info/?l=ruby-talk&m=122278906522776&w=2
    multissh ruby ssh
  • MySQL Query Performance Statistics In The Performance Schema - VividCortex
    January 23, 2015 at 2:51:45 PM GMT+1 - permalink - archive.org - https://vividcortex.com/blog/2014/11/03/mysql-query-performance-statistics-in-the-performance-schema/
    mysql stat
  • lartc | inetdoc.net

    traffic control

    January 21, 2015 at 5:01:39 PM GMT+1 - permalink - archive.org - http://www.inetdoc.net:8080/guides/lartc/lartc.qdisc.html
    tc
  • fish shell

    Sympa l'auto completion de ce shell

    January 20, 2015 at 3:09:07 PM GMT+1 - permalink - archive.org - http://fishshell.com/
    shell
  • 25 Tips for Intermediate Git Users
    January 18, 2015 at 2:49:24 PM GMT+1 - permalink - archive.org - https://www.andyjeffries.co.uk/25-tips-for-intermediate-git-users/
    git
  • Utiliser sa ChromeCast en ligne de commande - Korben

    Je me mets ça au chaud

    January 18, 2015 at 2:48:58 PM GMT+1 - permalink - archive.org - http://korben.info/castnow-chromecast-ligne-de-commande.html
    chromecast
  • Linux / Unix: Test Internet Connection Speed From Console Over SSH Command Line
    January 18, 2015 at 2:48:35 PM GMT+1 - permalink - archive.org - http://www.cyberciti.biz/faq/linux-unix-test-internet-connection-download-upload-speed/
    connection speed speedtest test
  • thumbnail
    Why aren’t we using SSH for everything? — Medium
    January 18, 2015 at 2:47:54 PM GMT+1 - permalink - archive.org - https://medium.com/@shazow/ssh-how-does-it-even-9e43586e4ffc
    ssh
  • Get Rid of Deleted Open Files - Linux Quick HOWTO

    lsof|grep deleted

    January 18, 2015 at 2:47:30 PM GMT+1 - permalink - archive.org - http://www.lazysystemadmin.com/2010/09/get-rid-of-deleted-open-files-linux.html
    lsof
  • Mosh: the mobile shell
    January 18, 2015 at 2:47:04 PM GMT+1 - permalink - archive.org - https://mosh.mit.edu/
    client lag mobile ssh
  • ferd.ca -> Awk in 20 Minutes

    Ce tuto est bien fait
    Mais j'ai un peu de mal avec awk : pour des tâches simple je m'en sors avec cut, et pour des tâches plus complexes je passe à un vrai langage de scripting comme python

    January 18, 2015 at 2:45:25 PM GMT+1 - permalink - archive.org - http://ferd.ca/awk-in-20-minutes.html
    awk
Links per page: 20 50 100
◄Older
page 88 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation