4359 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 168 / 218
Newer►
  • thumbnail
    Kaazing Real-Time Web Communication
    August 1, 2012 at 12:15:28 PM GMT+2 - permalink - archive.org - http://demo.kaazing.com/livefeed//
    websocket
  • thumbnail
    Per-site custom CSS in Firefox | corey gilmore's blog
    August 1, 2012 at 10:24:17 AM GMT+2 - permalink - archive.org - http://coreygilmore.com/blog/2008/10/23/per-site-custom-css-in-firefox/
    css
  • thumbnail
    VMware KB: A virtual machine cannot be powered on and shows as unknown
    August 1, 2012 at 10:24:10 AM GMT+2 - permalink - archive.org - http://kb.vmware.com/selfservice/microsites/search.do?cmd=displayKC&docType=kc&docTypeID=DT_KB_1_1&externalId=1008752
    vmware
  • thumbnail
    VMware KB: Inaccessible virtual machines are named as Unknown VM
    August 1, 2012 at 10:24:04 AM GMT+2 - permalink - archive.org - http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2172
    vmware
  • 4727441_700b.jpg (Image JPEG, 497x380 pixels)
    July 27, 2012 at 1:16:53 PM GMT+2 - permalink - archive.org - http://d24w6bsrhbeh9d.cloudfront.net/photo/4727441_700b.jpg
    question meme
  • thumbnail
    Remmina - The GTK+ Remote Desktop Client
    July 26, 2012 at 2:13:49 PM GMT+2 - permalink - archive.org - http://remmina.sourceforge.net/
    ssh linux
  • thumbnail
    PAC Manager | Free software downloads at SourceForge.net
    July 26, 2012 at 2:13:38 PM GMT+2 - permalink - archive.org - http://sourceforge.net/projects/pacmanager/
    ssh linux
  • thumbnail
    Get/Set - PHP Getters/Setters PHP, Java, Linux, JBOSS Seam | icurtain
    July 24, 2012 at 9:29:35 PM GMT+2 - permalink - archive.org - http://www.icurtain.co.uk/getset.php
    php generate
  • Sed - An Introduction and Tutorial
    July 23, 2012 at 3:28:07 PM GMT+2 - permalink - archive.org - http://www.grymoire.com/Unix/Sed.html
    sed
  • thumbnail
    Rechercher et remplacer en ligne de commande bash shell en utilisant sed | Stratégies, solutions, design et développement Internet 2.0

    bash# sed -i ’s/[texte_recherché]/[texte_de_remplacement]/’ monfichier.txt

    Pour l’exercice nous allons dire que monfichier.txt comporte une liste d’anciennes adresses email @wanadoo.fr et que nous désirons les mettre à jour en @orange.fr .

    bash# cat monfichier.txt
    toto@wanadoo.fr
    toto@wanadoo.fr
    toto@wanadoo.fr
    etc.

    Donc dans ce cas, cela nous donnera :

    bash# sed -i ’s/wanadoo/orange/g’ monfichier.txt

    Voilà en détail l’explication :

    On passe à la commande sed le paramètre “-i” pour l’édition du fichier monfichier.txt
    Le paramètre “-s” (substituer) qui définit l’action de rechercher / remplacer,
    l’expression régulière (REGEX),
    puis le ‘g’ (action global) à la suite pour la modification de toutes les instances de la chaîne de caractères remplacer dans le fichier.
    Dans le cas où on voudrait ne remplacer que la première qui aurait été trouvée, il faudra modifier comme suit : ‘s/texte1/texte2/’

    Bon, cela fonctionne sur un fichier, maintenant dans le cas de plusieurs fichiers, voici la commande ‘find’ qui va compléter l’astuce.

    bash# find . -maxdepth 1 -name “*.txt” -type f -exec sed -i ’s/wanadoo/orange/g’ {} \

    En détail cela nous donne:

    Nous utilisons la commande ‘find’ pour récupérer la liste des fichiers ‘.txt’ à traiter,
    dans le dossier courant ‘.’ et de ne pas aller plus bas ‘-maxdepth 1′,
    puis donc de lister les fichiers dont le nom finit par “*.txt” :  ‘-name “*.txt” -type f’.
    on utilise alors l’option ‘-exec’ pour dire à ‘find’ d’utiliser la commande qui suit sur les fichiers trouvés.

    Et voilà, simple non ?

    July 23, 2012 at 3:24:06 PM GMT+2 - permalink - archive.org - http://supersonique.net/administration/rechercher-et-remplacer-en-ligne-de-commande-bash-shell-sed/
    sed bash linux rechercher remplacer
  • thumbnail
    Every day JSON work: comparing JSON documents for equality ("are these JSONS same?")
    July 19, 2012 at 5:13:35 PM GMT+2 - permalink - archive.org - http://www.cowtowncoder.com/blog/archives/2010/07/entry_406.html
    json java
  • InterfaceLIFT Wallpaper: Mac Is Greater
    July 19, 2012 at 10:50:15 AM GMT+2 - permalink - archive.org - http://interfacelift.com/wallpaper/details/1924/mac_is_greater.html
    mac pc wallpaper
  • windows-seven.org: Cacher une partition avec Windows 7
    July 18, 2012 at 7:42:52 PM GMT+2 - permalink - archive.org - http://www.windows-seven.org/2010/05/cacher-une-partition-avec-windows-7.html
    windows
  • Linux in My Box: Logging Shell Commands in Linux

    Comment logger toutes les commandes tappées par tous les utilisateurs sur linux

    July 18, 2012 at 4:34:44 PM GMT+2 - permalink - archive.org - http://blog.kxr.me/2012/01/logging-shell-commands-in-linux.html
    linux log
  • Rotate PDF permanently, online, for free
    July 18, 2012 at 10:24:04 AM GMT+2 - permalink - archive.org - http://www.rotatepdf.net/
    pdf rotate online tools
  • thumbnail
    Windows : Créer une clé USB d'installation
    July 17, 2012 at 7:04:32 PM GMT+2 - permalink - archive.org - http://www.commentcamarche.net/faq/21013-windows-creer-une-cle-usb-d-installation
    iso windows boot
  • thumbnail
    Java current Timestamp example - how to create a "current timestamp" | Java timestamp now | devdaily.com

    Comment créer un timestamp de l'heure actuelle en Java

    July 17, 2012 at 3:14:36 PM GMT+2 - permalink - archive.org - http://www.devdaily.com/java/java-timestamp-example-current-time-now
    timestamp java
  • thumbnail
    http://www.siteduzero.com/tutoriel-3-34590-procedure-stockee.html
    July 17, 2012 at 11:51:08 AM GMT+2 - permalink - archive.org - http://www.siteduzero.com/tutoriel-3-34590-procedure-stockee.html
    ps mysql db bdd databse
  • PHP: Requêtes préparées et procédures stockées - Manual
    July 17, 2012 at 11:50:35 AM GMT+2 - permalink - archive.org - http://php.net/manual/fr/pdo.prepared-statements.php
    ps mysql db bdd database
  • thumbnail
    Bateau école Lyon - Code et permis bateau en Rhône Alpes
    July 16, 2012 at 5:35:26 PM GMT+2 - permalink - archive.org - http://www.littoral-nautic.fr/
    bateau permis
Links per page: 20 50 100
◄Older
page 168 / 218
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation