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

    March 12, 2015 at 4:00:56 PM GMT+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

    March 12, 2015 at 11:39:32 AM GMT+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'

    March 12, 2015 at 10:00:13 AM GMT+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

    March 11, 2015 at 3:00:42 PM GMT+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 :)

    March 11, 2015 at 2:53:07 PM GMT+1 - permalink - archive.org - https://screencloud.net/
    screenshot
  • Quel quartier de Barcelone est fait pour vous? Faites votre choix! - Les Bons Plans de Barcelone
    March 7, 2015 at 4:14:32 PM GMT+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 :)

    March 6, 2015 at 3:03:09 PM GMT+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

    March 6, 2015 at 11:06:55 AM GMT+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)

    March 5, 2015 at 5:49:45 PM GMT+1 - permalink - archive.org - https://github.com/taskrabbit/elasticsearch-dump
    backup dump elasticsearch
  • thumbnail
    whyscream/postfix-grok-patterns

    Testé approuvé

    March 4, 2015 at 5:07:40 PM GMT+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

    March 4, 2015 at 2:34:33 PM GMT+1 - permalink - archive.org - http://www.rsyslog.com/doc/rsyslog_reliable_forwarding.html
    rsyslog
  • CiteSeerX — Token buckets for outgoing spam prevention
    March 3, 2015 at 11:47:51 AM GMT+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
    March 2, 2015 at 9:19:00 PM GMT+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 : &

    March 2, 2015 at 4:36:05 PM GMT+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

    March 2, 2015 at 12:03:21 PM GMT+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

    March 2, 2015 at 11:00:43 AM GMT+1 - permalink - archive.org - http://shokunin.co/blog/2015/02/14/collectd_plugins_in_go.html
    collectd go
  • Floodlight OpenFlow Controller -Project Floodlight
    February 28, 2015 at 3:08:10 PM GMT+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

    February 28, 2015 at 12:25:52 PM GMT+1 - permalink - archive.org - https://docs.puppetlabs.com/puppet/latest/reference/environments_classic.html
    environments puppet
  • Instant Raspberry Pi Ad-blocker - Jacob Salmela
    February 26, 2015 at 11:48:56 AM GMT+1 - permalink - archive.org - http://jacobsalmela.com/instant-raspberry-pi-ad-blocker/
    adblock rasp
  • WrapBootstrap - Bootstrap Themes & Templates
    February 24, 2015 at 5:32:03 PM GMT+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