4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 86 / 217
Newer►
  • Multi-RBL Check | The Anti-Abuse Project

    via arnaudb

    12 mars 2015 à 16:00:56 UTC+1 - permalink - archive.org - http://www.anti-abuse.org/multi-rbl-check/
    blacklist mail
  • thumbnail
    CtrlP root markers

    J'utilisais jusqu'à présent aucun plugin vim.. mais l'ouverture de fichier et le switch entre les différents buffers est pénible quand on passe beaucoup de temps dans Vim..

    Du coup je teste ctrlP qui est plutot bien une fois configuré !

    J'utilise pathogen pour gérer mes plugins, donc dans l'ordre :

    • il faut installer pathogen
    • ensuite installer ctrlp

    Dans le vimrc :

    "" CtrlP
    map <c-b> :CtrlPBuffer<CR>
    map <c-p> :CtrlP<CR>

    on a ctrl+B pour naviguer entre les buffers et ctrl+P pour lancer une recherche et ouvrir un fichier

    La root de la recherche peut être modifié (par défaut c'est le dossier du fichier ouvert en cours)

    On peut lui dire par exemple de remonter jusqu'au .git ou au .svn

    Dans mon cas, encore en svn 1.6, il y a un .svn à tous les niveaux... la solution, définir un root marker dans son vimrc :

    let g:ctrlp_root_markers = ['.ctrlp']

    et ensuite créer ce marker là ou on veut que la recherche se base

    $ touch .ctrlp

    12 mars 2015 à 11:39:32 UTC+1 - permalink - archive.org - https://coderwall.com/p/5xv7sq/ctrlp-root-markers
    ctrlp vim
  • Debian apt, lister les paquets à upgrade

    Pratique pour avoir un aperçu de l'état de son parc

    /usr/bin/apt-get -qq update && /usr/bin/apt-get -q -y --ignore-hold --allow-unauthenticated -s dist-upgrade | grep ^Inst | /usr/bin/cut -d\ -f2 | /usr/bin/sort
    (pris dans le script apticron)

    Pour avoir une liste avec 3 colonnes : nom du paquet / version actuelle / version dispo

    /usr/bin/apt-get -qq update && /usr/bin/apt-get -q -y --ignore-hold --allow-unauthenticated -s dist-upgrade | grep ^Inst | awk '{print $2 " " $3 " " $4}'|sed -r 's/([|]|()//g'

    12 mars 2015 à 10:00:13 UTC+1 - permalink - archive.org - https://links.infomee.fr/?kVZ8QA
    apt apt-get aptitude debian upgrade
  • PDF viewer de firefox

    Vous pouvez passer dans l'url un #23 pour aller à la page 23 directement !
    Pratique pour bookmark là ou on en est

    11 mars 2015 à 15:00:42 UTC+1 - permalink - archive.org - https://links.infomee.fr/?AyqbVg
    firefox js pdf
  • ScreenCloud | Home

    Vraiment bien ce petit screencloud, configuré pour droper les screenshots en sftp avec un nom random c'est parfait :)

    11 mars 2015 à 14:53:07 UTC+1 - permalink - archive.org - https://screencloud.net/
    screenshot
  • Quel quartier de Barcelone est fait pour vous? Faites votre choix! - Les Bons Plans de Barcelone
    7 mars 2015 à 16:14:32 UTC+1 - permalink - archive.org - http://les-bons-plans-de-barcelone.com/quel-quartier-de-barcelone-est-fait-pour-vous-faites-votre-choix/
    barcelone
  • thumbnail
    Écoutez gratuitement des radios, des webradios, des radio sur Internet et de la musique en ligne | radio.fr

    radio.fr fournisseur officiel d'url de stream :D
    allez sur la page d'une radio, view source, et cherchez "streamurl"

    Et voilà l'url pour écouter la radio dans vlc ou mplayer :)

    6 mars 2015 à 15:03:09 UTC+1 - permalink - archive.org - http://www.radio.fr/
    mplayer radio stream url vlc
  • getent(1) - Linux manual page

    commande qui peut être bien utile et puis getent passwd c'est toujours plus rapide que cat /etc/passwd

    6 mars 2015 à 11:06:55 UTC+1 - permalink - archive.org - http://man7.org/linux/man-pages/man1/getent.1.html
    aliases getent group passwd services
  • thumbnail
    taskrabbit/elasticsearch-dump

    Pratique pour dump de petits indexes importants comme le .kibana (définition des dashboards)

    5 mars 2015 à 17:49:45 UTC+1 - permalink - archive.org - https://github.com/taskrabbit/elasticsearch-dump
    backup dump elasticsearch
  • thumbnail
    whyscream/postfix-grok-patterns

    Testé approuvé

    4 mars 2015 à 17:07:40 UTC+1 - permalink - archive.org - https://github.com/whyscream/postfix-grok-patterns
    logstash postfix
  • thumbnail
    Reliable Forwarding of syslog Messages (via plain TCP syslog)

    Pour bufferiser au niveau applicatif avec syslog coté client si le serveur n'est plus up

    4 mars 2015 à 14:34:33 UTC+1 - permalink - archive.org - http://www.rsyslog.com/doc/rsyslog_reliable_forwarding.html
    rsyslog
  • CiteSeerX — Token buckets for outgoing spam prevention
    3 mars 2015 à 11:47:51 UTC+1 - permalink - archive.org - http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.90.6282
    bucket mail token
  • Les câbles ou cordons de démarrage, un poème - Technologie - Mécanique / Électronique - FORUM Technique
    2 mars 2015 à 21:19:00 UTC+1 - permalink - archive.org - http://www.forum-auto.com/pole-technique/mecanique-electronique/sujet468241.htm
    batterie voiture
  • The UNIX School: Insert a line before or after a pattern

    ce qui est catch avec sed peut être utilisé dans le pattern de remplacement : &

    2 mars 2015 à 16:36:05 UTC+1 - permalink - archive.org - http://www.theunixschool.com/2012/06/insert-line-before-or-after-pattern.html
    sed
  • Tester sa conf logstash

    /opt/logstash/bin/logstash -f ma.conf --configtest

    /opt/logstash/bin/logstash -f /etc/logstash/conf.d/ --configtest

    2 mars 2015 à 12:03:21 UTC+1 - permalink - archive.org - https://links.infomee.fr/?2aJmWQ
    config logstash test
  • Writing Collectd Plugins in Go |

    Comment écrire un plugin en Go

    Sinon ya python c'est bien et moins compliqué :p

    2 mars 2015 à 11:00:43 UTC+1 - permalink - archive.org - http://shokunin.co/blog/2015/02/14/collectd_plugins_in_go.html
    collectd go
  • Floodlight OpenFlow Controller -Project Floodlight
    28 février 2015 à 15:08:10 UTC+1 - permalink - archive.org - http://www.projectfloodlight.org/floodlight/
    floodlight sdn
  • Config File Environments Are Deprecated

    Petit menage sur mon serveur au niveau de Puppet : donc maintenant on ne peut plus mettre certaines variable dans le puppet.conf

    à la place il faut définir deux variables : envrionmentpath qui définir ou sont situés les "environment" et une variable "environment" pour définir lequel utiliser.

    ça peut être pratique quand on veut tester quelquechose : on duplique l'environnement de base et on pointe dessus temporairement

    28 février 2015 à 12:25:52 UTC+1 - permalink - archive.org - https://docs.puppetlabs.com/puppet/latest/reference/environments_classic.html
    environments puppet
  • Instant Raspberry Pi Ad-blocker - Jacob Salmela
    26 février 2015 à 11:48:56 UTC+1 - permalink - archive.org - http://jacobsalmela.com/instant-raspberry-pi-ad-blocker/
    adblock rasp
  • WrapBootstrap - Bootstrap Themes & Templates
    24 février 2015 à 17:32:03 UTC+1 - permalink - archive.org - https://wrapbootstrap.com/?ref=bsw
    bootstreap css design
Links per page: 20 50 100
◄Older
page 86 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation