4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 164 / 217
Newer►
  • Les certificats SSL ne suffisent plus - sebsauvage.net - Les trucs qui m'énervent -
    October 7, 2012 at 2:00:45 PM GMT+2 - permalink - archive.org - http://sebsauvage.net/rhaa/index.php?2010/03/26/12/03/17-les-certificats-ssl-ne-suffisent-plus
    https ssl
  • Je suis content d'utiliser CertPatrol - sebsauvage.net - Les trucs qui m'énervent -
    October 7, 2012 at 2:00:34 PM GMT+2 - permalink - archive.org - http://sebsauvage.net/rhaa/index.php?2010/11/08/19/54/41-je-suis-content-d-utiliser-certpatrol
    https ssl
  • Wordpress + PHP + MySQL + Apache VPS Configuration, 512MB RAM - Web Hosting Talk

    Comment configurer apache pour prendre moins de RAM
    http://www.google.com/webhp?sourceid=chrome-instant&ie=UTF-8&ion=1&nord=1#hl=en&safe=off&nord=1&site=webhp&sa=X&ei=5cCDTc3KEYiL0QGTlaXeAQ&ved=0CBQQvwUoAQ&q=fine+tuning+apache&spell=1&fp=1&ion=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&cad=b

    http://kb.mediatemple.net/questions/246/%28dv%29+HOWTO%3A+Basic+Apache+performance+tuning+%28httpd%29#dv_40

    October 5, 2012 at 1:16:06 PM GMT+2 - permalink - archive.org - http://www.webhostingtalk.com/showthread.php?t=1017392
    apache mysql tuning vps
  • D-LAN - Un logiciel de partage de fichiers en LAN
    October 5, 2012 at 1:07:11 PM GMT+2 - permalink - archive.org - http://www.d-lan.net/
    fichier lan transfert
  • Dukto: Transfert de fichier simple en réseau local - sebsauvage.net - Les trucs qui m'énervent -
    October 5, 2012 at 1:07:01 PM GMT+2 - permalink - archive.org - http://sebsauvage.net/rhaa/index.php?2012/08/28/10/30/54-dukto-transfert-de-fichier-simple-en-reseau-local
    fichier lan transfert
  • Créer un raccourcis gnome shell

    [09:18:59] amm@lynch:/usr/share/applications$ cat eclipse.desktop

    [Desktop Entry]
    Encoding=UTF-8
    Name=Eclipsee
    GenericName=Eclipsee
    Exec=/home/amm/bin/ecl_launch.sh
    Icon=/home/amm/bin/eclipse/icon.xpm
    Terminal=false
    Type=Application
    Categories=Application;Development;

    une fois qu'on a fait ça, l'application est accessible dans les menus et aussi accessible pour créer un launcher

    October 5, 2012 at 9:21:20 AM GMT+2 - permalink - archive.org - https://links.infomee.fr/?c7Rijg
    eclipse gnome launcher linux
  • Un serveur web "light" sur microVKS : lighttpd + php - sorrodje.alter-it.org
    September 27, 2012 at 8:12:19 AM GMT+2 - permalink - archive.org - http://sorrodje.alter-it.org/index.php?article26/serveur-web-light-sur-microvks-lighttpd
    install kimsufi procedure web
  • Préparation d'un vKS OVH avec Debian 6.0 - sorrodje.alter-it.org
    September 27, 2012 at 8:11:58 AM GMT+2 - permalink - archive.org - http://sorrodje.alter-it.org/index.php?article14/preparation-d-un-vks-ovh-avec-debian-6-0
    debian install kimsufi procedure
  • Utiliser vim pour voir les diff de svn diff

    $svndiffx .classpath

    cat ~/bin/svndiffx

    !/bin/bash

    svn diff --diff-cmd "/home/amm/bin/svnvimdiff" $1

    $cat /home/amm/bin/svnvimdiff

    !/bin/bash

    vim -d $6 $7

    September 26, 2012 at 1:56:35 PM GMT+2 - permalink - archive.org - https://links.infomee.fr/?Fhxz-A
    diff memo svn
  • Configure vim-diff to show different colors when using it for svn-diff - Stack Overflow

    [13:53:36] amm@lynch:~/workspace/configObjectConsole$ cat ~/.vimrc
    :highlight DiffAdd ctermbg=white

    September 26, 2012 at 1:55:56 PM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/4757799/configure-vim-diff-to-show-different-colors-when-using-it-for-svn-diff
    couleur vim
  • LESS « The Dynamic Stylesheet language
    September 26, 2012 at 9:20:42 AM GMT+2 - permalink - archive.org - http://lesscss.org/
    css framework
  • Twitter Bootstrap
    September 26, 2012 at 9:18:14 AM GMT+2 - permalink - archive.org - http://twitter.github.com/bootstrap/
    css framework html techno web
  • Tester le débit réseau entre deux machines Linux - Tux-planet
    September 22, 2012 at 9:23:18 PM GMT+2 - permalink - archive.org - http://www.tux-planet.fr/tester-le-debit-reseau-entre-deux-machines-linux/
    debit network scp ssh test
  • Airtime 2 for Broadcasters
    September 22, 2012 at 4:48:43 PM GMT+2 - permalink - archive.org - http://en.flossmanuals.net/airtime-en-2-0/stream-player-for-your-website/
    dev jplayer son
  • Code 18: Renommer des fichiers en lot sous Linux

    Une fois les fichiers transférés sur mon laptop Linux, je n'ai eu qu'à utiliser la commande rename pour remplacer par des tirets tous les espaces contenus dans les fichiers. Mais avant de procéder à des remplacements en lot et risquer une gaffe, mieux vaut utiliser l'option -n pour avoir une prévisualisation des changements qui seront appliqués.

    rename -n 's/ /-/g' *.jpg

    image petit format.jpg renamed as image-petit-format.jpg

    Après le dernier /, le "g" signifie global, pour remplacer tous les espaces et pas seulement le premier trouvé.

    Une fois certain du remplacement dans la liste des fichiers, on peut appliquer le changement :

    rename 's/ /-/g' .jpg
    rename 's/ /-/g'
    .pdf

    Morale de l'histoire : c'est pratique avoir un ami qui travaille dans les Interwebs.

    September 22, 2012 at 2:55:40 PM GMT+2 - permalink - archive.org - http://code18.blogspot.fr/2011/03/renommer-des-fichiers-en-lot-sous-linux.html
    espace linux rename
  • Un codec pour les dominer tous - sebsauvage.net - Les trucs qui m'énervent -
    September 20, 2012 at 7:56:41 AM GMT+2 - permalink - archive.org - http://sebsauvage.net/rhaa/index.php?2012/09/12/08/30/48-un-codec-pour-les-dominer-tous
    audio mp3 son
  • Format de fichier audio - Wikipédia
    September 20, 2012 at 7:55:54 AM GMT+2 - permalink - archive.org - http://fr.wikipedia.org/wiki/Format_de_fichier_audio#Caract.C3.A9ristiques_des_codages_audio
    audio mp3 son
  • Davidt's - 367133.18 - Boite à bijoux - Femme: Amazon.fr: Bijoux
    September 17, 2012 at 1:30:02 PM GMT+2 - permalink - archive.org - http://www.amazon.fr/Davidts-367133-18-Boite-bijoux-Femme/dp/B0046W8S98/ref=sr_1_4?s=jewelry&ie=UTF8&qid=1347875728&sr=1-4
    cadeau
  • How to Create and store a Symfony2 Project in Subversion (2.0) - Symfony
    September 15, 2012 at 2:12:10 PM GMT+2 - permalink - archive.org - http://symfony.com/doc/2.0/cookbook/workflow/new_project_svn.html
    symfony
  • [Bash] install spotify on fedora 17 - Pastebin.com

    #run as root, if not on amd64, replace accordingly
    yum install qtwebkit binutils libpng-compat
    wget http://repository.spotify.com/pool/non-free/s/spotify/spotify-client_0.8.3.278.g21c7566.632-1_amd64.deb
    ar x spotify-client_0.8.3.278.g21c7566.632-1_amd64.deb
    tar xzvf data.tar.gz
    mv usr/share/spotify /usr/share/
    mv usr/share/pixmaps/spotify-linux-512x512.png /usr/share/pixmaps/
    mv usr/share/applications/spotify.desktop /usr/share/applications/
    mv usr/share/doc/spotify-client/ /usr/share/doc/
    mv usr/bin/spotify /usr/bin/
    cd /usr/lib64
    ln -s libssl.so.10 libssl.so.0.9.8
    ln -s libcrypto.so.10 libcrypto.so.0.9.8
    ln -s libnss3.so libnss3.so.1d
    ln -s libnssutil3.so libnssutil3.so.1d
    ln -s libsmime3.so libsmime3.so.1d
    ln -s libplc4.so libplc4.so.0d
    ln -s libnspr4.so libnspr4.so.0d
    spotify

    September 13, 2012 at 12:17:26 PM GMT+2 - permalink - archive.org - http://pastebin.com/jpYypBkM
    fedora spotify
Links per page: 20 50 100
◄Older
page 164 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation