4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 121 / 217
Newer►
  • Ajenti

    Un panel d'admin dans le même genre que ispconfig ou webmin

    • http://www.ispconfig.org/page/home.html
    • http://www.webmin.com/

    via nico

    February 1, 2014 at 11:19:52 AM GMT+1 - permalink - archive.org - http://ajenti.org/
    admin panel technos
  • Execute local script remotly and get ouput into a local log file

    Cool stuff :

    ssh user@server 'bash -s' < local_script.sh > local_script.log 2>&1

    January 31, 2014 at 3:53:51 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?ORnmyQ
    bash ssh
  • Learn Ruby Programming | Codecademy Online Tutorials

    C'est parti pour un peu de ruby. Pourquoi ? Puppet, Redmine, Ruby inside

    January 31, 2014 at 12:39:36 PM GMT+1 - permalink - archive.org - http://www.codecademy.com/fr/tracks/ruby
    codeacademy ruby
  • Counting & Timing | code.flickr.com

    Un article du tech blog de flickr sur la metrologie (qui a servi d'inspiration à l'écriture de statsd)

    Le combo statsd/graphite a l'air vraiment puissant

    January 31, 2014 at 10:27:48 AM GMT+1 - permalink - archive.org - http://code.flickr.net/2008/10/27/counting-timing/
    graphite statsd
  • github.com/etsy/statsd/

    Repo github de statsd

    January 31, 2014 at 10:26:18 AM GMT+1 - permalink - archive.org - https://github.com/etsy/statsd/
    graphite statsd
  • How to speed up Nginx web server with PageSpeed - Linux FAQ

    à lire

    January 30, 2014 at 6:12:44 PM GMT+1 - permalink - archive.org - http://xmodulo.com/2014/01/speed-nginx-web-server-pagespeed.html
    nginx
  • Pour connaitre depuis combien de temps une socket est ouverte

    On recupere le pid du processus qui a ouvert la socket :
    netstat -laptun
    Puis :
    $ ps -eo pid,etime | grep 8084
    8084 3-02:02:59

    ici 3 jours, 2 heures, 2 minutes...!

    January 30, 2014 at 4:18:38 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?ef8W_g
    ps socket time
  • Coder for Raspberry Pi

    Coder, un projet de chez Google pour transformer son raspberry en plateforme d'apprentissage de code !
    En plus de fournir la plateforme, il y a des projets type exemple ici : http://googlecreativelab.github.io/coder-projects/

    via nico

    January 30, 2014 at 10:09:07 AM GMT+1 - permalink - archive.org - http://googlecreativelab.github.io/coder/
    coder google rasp
  • Monitoring applicatif : Pourquoi et comment ?

    Une présentation chez M6Tech concernant le monitoring (graphite inside)

    January 29, 2014 at 5:28:14 PM GMT+1 - permalink - archive.org - http://fr.slideshare.net/kennydee/monitoring-applicatif-pourquoi-et-comment#btnPrevious
    graphite
  • Github suan/graphite_up

    Une vm vagrant pour tester rapidement Graphite

    January 29, 2014 at 5:27:29 PM GMT+1 - permalink - archive.org - https://github.com/suan/graphite_up
    graphite vagrant
  • Why We Built Marvel | Blog | Elasticsearch

    Marvel, nouveau produit elasticsearch, pour résumer :

    The dashboard displays the essentials metrics you need to know that your cluster is healthy. The dashboard also provides an overview of your nodes and indices, displayed in two clean tables along with the relevant key metrics. These tables serve as an entry point to more details on the Node Statistics and Index Statistics dashboards, where you can see more than 90 different metrics plotted over time. Simply click on a table cell or select multiple nodes/indices to compare and you’ll be transferred to the relevant place in the detailed dashboard.

    January 29, 2014 at 2:30:19 PM GMT+1 - permalink - archive.org - http://www.elasticsearch.org/blog/building-marvel/
    elasticsearch
  • JoeBlog Siege Home

    iege is an http load testing and benchmarking utility. It was designed to let web developers measure their code under duress, to see how it will stand up to load on the internet. Siege supports basic authentication, cookies, HTTP and HTTPS protocols. It lets its user hit a web server with a configurable number of simulated web browsers. Those browsers place the server “under siege.”

    via arnaudb

    January 29, 2014 at 2:09:17 PM GMT+1 - permalink - archive.org - http://www.joedog.org/siege-home/
    bench http load qa siege test
  • vim : map Toggle syntax coloration

    vimrc trick not bad :

    To put this into a mapping, you can use:
    :map <F7> :if exists("g:syntax_on") <Bar>
    \ syntax off <Bar>
    \ else <Bar>
    \ syntax enable <Bar>
    \ endif <CR>

    January 29, 2014 at 11:01:59 AM GMT+1 - permalink - archive.org - http://vimdoc.sourceforge.net/htmldoc/syntax.html
    vim
  • An Introduction to Display Editing with Vi

    via nicolasc

    January 29, 2014 at 9:51:12 AM GMT+1 - permalink - archive.org - http://docs.freebsd.org/44doc/usd/12.vi/paper.html
    vi vim
  • Un graph rapide

    nmon > l > c > n > d

    via arnaudb

    January 28, 2014 at 2:40:58 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?F0oLAQ
    io monitoring nmon
  • DiG HOWTO

    Piqure de rappel, pour avoir des réponses courtes :
    dig A dokuwiki.org +short
    dig -x 46.4.55.201 +short

    January 28, 2014 at 10:31:59 AM GMT+1 - permalink - archive.org - http://www.madboa.com/geek/dig/#how-reverse
    dig dns
  • Déployer en utilisant bitorrent

    ça peut être utile..

    • une autre solution plus légère : https://github.com/russss/Herd

    via Skunnyk

    January 28, 2014 at 9:50:51 AM GMT+1 - permalink - archive.org - https://blog.twitter.com/2010/murder-fast-datacenter-code-deploys-using-bittorrent
    deploy file torrent
  • Creating differential backups with hard links and rsync

    Pour faire du backup sans prendre trop d'espace (à la rsnapshot) on peut utiliser les hardlinks. Le truc cool, c'est que rsync est conscient de ces hardlinks et va créer un nouveau fichier si la destination est un hardlink et que le fichier a changé. Super pratique.

    What most people don’t know is that rsync is an exception to this rule. If you use rsync to sync two files, and it sees that the target file is a hard link, it will create a new target file but only if the contents of the two files are not the same

    January 27, 2014 at 10:24:34 PM GMT+1 - permalink - archive.org - http://earlruby.org/2013/05/creating-differential-backups-with-hard-links-and-rsync/
    hardlink rsync
  • Les expressions dans le serveur HTTP Apache - Serveur Apache HTTP

    Les variables dispo dans la conf d'apache (disponibles ou non suivant l'endroit dans la conf bien sur)

    January 27, 2014 at 2:10:24 PM GMT+1 - permalink - archive.org - http://httpd.apache.org/docs/2.4/fr/expr.html
    apache variable
  • Episodes

    je me mets ça de côté, des screencast/tuto vim

    January 27, 2014 at 9:06:36 AM GMT+1 - permalink - archive.org - http://vimcasts.org/episodes/archive
    cast video vim
Links per page: 20 50 100
◄Older
page 121 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation