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

    5 février 2015 à 17:26:17 UTC+1 - permalink - archive.org - http://css-tricks.com/gooey-effect/
    css design menu
  • Ou on arrive enfin elasticsearch | Karlesnine
    4 février 2015 à 14:24:00 UTC+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

    3 février 2015 à 18:21:10 UTC+1 - permalink - archive.org - http://www.commitstrip.com/fr/2015/02/02/is-your-company-ready-for-devops/
    devops
  • Les devops chez OVH.com
    3 février 2015 à 15:43:16 UTC+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
    2 février 2015 à 17:53:52 UTC+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

    27 janvier 2015 à 16:55:11 UTC+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
    27 janvier 2015 à 14:13:31 UTC+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

    26 janvier 2015 à 10:33:47 UTC+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.

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

    23 janvier 2015 à 15:05:30 UTC+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
    23 janvier 2015 à 14:51:45 UTC+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

    21 janvier 2015 à 17:01:39 UTC+1 - permalink - archive.org - http://www.inetdoc.net:8080/guides/lartc/lartc.qdisc.html
    tc
  • fish shell

    Sympa l'auto completion de ce shell

    20 janvier 2015 à 15:09:07 UTC+1 - permalink - archive.org - http://fishshell.com/
    shell
  • 25 Tips for Intermediate Git Users
    18 janvier 2015 à 14:49:24 UTC+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

    18 janvier 2015 à 14:48:58 UTC+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
    18 janvier 2015 à 14:48:35 UTC+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
    18 janvier 2015 à 14:47:54 UTC+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

    18 janvier 2015 à 14:47:30 UTC+1 - permalink - archive.org - http://www.lazysystemadmin.com/2010/09/get-rid-of-deleted-open-files-linux.html
    lsof
  • Mosh: the mobile shell
    18 janvier 2015 à 14:47:04 UTC+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

    18 janvier 2015 à 14:45:25 UTC+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