Shaare your links...
410 links
peacecoLiens Home Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Voir tous les commentaires(24)
Links per page: 20 50 100
◄Older
page 1 / 5
  • traffic surprise
    Me lançant dans un fougueux ménage de mes ftps, me voila errant sur ma page perso free.
    Par pur curiosité je m'en vais regarder les stats. oO !!!
    une centaine de visiteur journalier en moyenne. Mais c'est énorme !!
    Bon je ne sais pas si ce sont des robots, des abonnés au flux rss, ou des erreurs, mais c'est fun.
    Bon le premier "visiteur" il semblerait que cela soit shaarli.fr (que je ne connaissais pas d'ailleurs)
    Bref bonne surprise pour moi :)

    Aller à peluche
    Wed 26 Aug 2015 01:34:05 AM UTC - permalink -
    - ?ALWkVw
    note traffic

    Commentaires(0)













  • Heu... comment dire...
    Je ne viens plus souvent par ici, mais je songe a "rebooter".
    Trop le bordel mon shaarli et surtout je suis pas vraiment rigoureux dans mon "taggage".
    A voir...
    Et puis free quoi...
    Tue 20 May 2014 11:32:57 AM UTC - permalink -
    - ?DdPCkA
    Note

    Commentaires(0)













  • Dealabs.com : Le laboratoire des bons plans !
    De bonne affaires!
    Thu 26 Sep 2013 08:28:18 PM UTC - permalink -
    - http://www.dealabs.com/hot.html
    commerce

    Commentaires(0)













  • Installer BitTorrent Sync proprement | La vache libre
    Propre  et net :)
    Sun 22 Sep 2013 04:14:07 PM UTC - permalink -
    - http://la-vache-libre.org/bittorrent-sync-proprement/
    bittorent_sync tuto

    Commentaires(0)













  • blog:2013:04:12:boinc_client [ReLoad]
    Installer boinc sur un serveur
    Sun 22 Sep 2013 11:57:09 AM UTC - permalink -
    - http://reload.eez.fr/blog:2013:04:12:boinc_client#readmore_blog_2013_04_12_boinc_client
    boinc serveur tuto

    Commentaires(0)













  • Differential backup using 7-zip cli for linux/windows | a32.Blog
    Faire du backup diffrentiel avec 7zip
    Sat 21 Sep 2013 10:21:43 PM UTC - permalink -
    - http://a32.me/2010/08/7zip-differential-backup-linux-windows/
    7zip

    Commentaires(0)













  • Mount remote ftp directory host locally into linux filesystem
    1. Installation

    First install curlftpfs package. On Debian or Ubuntu it would simple as:

    apt-get install curlftpfs

    2. Mount ftp directory

    What needs to be done next is to create a mount point:

    # mkdir /mnt/my_ftp

    next use curlftpfs to mount your remote ftp site. Suppose my access credentials are as follows:

       username: ftp-user
       password: ftp-pass
       host/IP: my-ftp-location.local

    the actual curlftpfs mount command would be:

    # curlftpfs ftp-user:
    ftp-pass@my-ftp-location.local /mnt/my_ftp/

    Caution:

    ftp uses unencrypted passwords so anyone can intercept your password without much effort. Therefore use curlftpfs in combination with SSL certificates if your are not mounting some local LAN ftp server.

    On Debian you can mount ftp using curlftpfs as a root and this allows only root user to access ftp mount. No other users are allowed since by default only users that mounts has and access to mount directory. When mounting ftp as a non-root user you may get a following error message:

    fuse: failed to open /dev/fuse: Permission denied

    Rather that changing permissions of /dev/fuse you can allow other users to access ftp mount directory with an curlftpfs's option allow_other. The command will look similar to the one below:

    # curlftpfs -o allow_other ftp-user:
    ftp-pass@my-ftp-location.local /mnt/my_ftp/

    3. Mount ftp with curlftpfs using /etc/fstab

    Since we do not want put any passwords to /etc/fstab file we will first create a /root/.netrc file with a ftp username and password using this format:

    machine my-ftp-location.local
    login ftp-user
    password ftp-pass

    Now change permissions of this file to 600:

    # chmod 600 /root/.netrc

    Check uid and gid of your non-root user. This user will have a access to ftp mount directory:

    $ id

    In the next step add a following line to your /etc/fstab file ( change credentials for your ftp user ):

    curlftpfs#my-ftp-location.local /mnt/my_ftp fuse allow_other,uid=1000,gid=1000,umask=0022 0 0

    Now mount ftp with:

    mount -a
    Thu 19 Sep 2013 09:19:29 PM UTC - permalink -
    - http://linuxconfig.org/mount-remote-ftp-directory-host-locally-into-linux-filesystem
    curlftpfs ftp

    Commentaires(0)













  • Litterature audio.com | Livres audio gratuits à écouter et télécharger
    Je me demande si c possible d'écouter ('lire?') en voiture :)
    Thu 19 Sep 2013 08:47:46 PM UTC - permalink -
    - http://www.litteratureaudio.com/
    litterature audio

    Commentaires(0)













  • Quelques limites de l'utilisation des données
    Les données ça veut tout dire et rien dire...
    Tue 17 Sep 2013 05:45:18 PM UTC - permalink -
    - http://blog.m0le.net/2013/08/01/quelques-limites-de-lutilisation-des-donnees/
    données information

    Commentaires(0)













  • Effectuer vos sauvegardes avec Duply
    Effectuer vos sauvegardes avec Duply

    written on Monday, September 17, 2012

    Duply est un frontal pour l’outil Duplicity, il permet d’effectuer des backups incrémental vers des serveurs de type FTP, SFTP, IMAP, Amazon S3, etc …, les sauvegardes peuvent être cryptées.

    Création d’un profil

    duply nom_profil create

    Cette commande crée un profil dans le répertoire /root/.duply/nom_profil/

    Paramétrage du profil

    Nous allons modifier le profil qui comprendra 3 fichiers de configuration:

       conf: Configuration du profil
       exclude: Fichiers à exclure lors de la sauvegarde
       pre: Tâche à exécuter avant de débuter la sauvegarde

    Contenu du fichier conf

    GPG_PW='clef_a_definir'
    TARGET='ftp://ftp.cendreo.com/duply'
    TARGET_USER='user'
    TARGET_PASS='userpass'
    SOURCE='/'
    MAX_FULL_BACKUPS=2

    Contenu du fichier exclude

    /bin
    /boot
    /dev
    /lib
    /lost+found
    /media
    /mnt
    /opt
    /proc
    /sbin
    /srv
    /sys
    /tmp
    /usr
    /var
    /data/nobackup
    /lib64
    /run

    Contenu du fichier pre

    Le fichier pre est un lien symbolique sur un exécutable que l’on désire exécuter avant de lancer le backup. Nous utilisons ici le script jsl-mysqlbackup.sh qui permet d’effectuer les backups MySQL.

    Planification des sauvegardes

    avec la commande crontab -e nous allons ajouter les lignes suivantes pour effectuer une sauvegarde incrémentale en semaine et une complète le Samedi.

    0 3 * * 0-5 duply mon_profil backup_purge_status --force
    0 3 * * 6 duply nom_profil pre_full_purge-full_status --force

    Vérification des sauvegardes

    root@w1:~/.duply/mon_profil# duply mon_profil status
    Start duply v1.5.2.3, time is 2012-09-17 19:38:40.
    Using profile '/root/.duply/mon_profil'.
    Using installed duplicity version 0.6.08b, gpg 1.4.10 (Home: ~/.gnupg)
    Test - Encryption with passphrase (OK)
    Test - Decryption with passphrase(OK)
    Test - Compare Original w/ Decryption (OK)
    Cleanup - Delete '/tmp/duply.18426.1347503520_*'(OK)

    --- Start running command STATUS at 19:38:41.055 ---
    NcFTP version is 3.2.4
    Local and Remote metadata are synchronized, no sync needed.
    Last full backup date: Sat Sep 15 03:11:08 2012
    Collection Status
    -----------------
    Connecting with backend: FTPBackend
    Archive dir: /root/.cache/duplicity/duply_mon_profil

    Found 1 secondary backup chain.
    Secondary chain 1 of 1:
    -------------------------
    Chain start time: Sat Sep  8 03:10:59 2012
    Chain end time: Fri Sep 14 03:11:06 2012
    Number of contained backup sets: 7
    Total number of contained volumes: 1904
    Type of backup set:                            Time:      Num volumes:
    Full         Sat Sep  8 03:10:59 2012              1768
    Incremental         Sun Sep  9 03:10:49 2012                46
    Incremental         Mon Sep 10 03:12:05 2012                21
    Incremental         Tue Sep 11 03:11:11 2012                26
    Incremental         Wed Sep 12 03:11:04 2012                14
    Incremental         Thu Sep 13 03:11:04 2012                14
    Incremental         Fri Sep 14 03:11:06 2012                15
    -------------------------


    Found primary backup chain with matching signature chain:
    -------------------------
    Chain start time: Sat Sep 15 03:11:08 2012
    Chain end time: Mon Sep 17 03:12:16 2012
    Number of contained backup sets: 3
    Total number of contained volumes: 1866
    Type of backup set:                            Time:      Num volumes:
    Full         Sat Sep 15 03:11:08 2012              1795
    Incremental         Sun Sep 16 03:11:06 2012                47
    Incremental         Mon Sep 17 03:12:16 2012                24
    -------------------------
    No orphaned or incomplete backup sets found.
    --- Finished state OK at 19:38:43.006 - Runtime 00:00:01.950 ---

    Restauration # Restaure le dernier backup

    duply mon_profil restore /destination_dir

    # Restaure le backup effectué il y'a 4 jours

    duply mon_profil restore /destination_dir 4D

    # Restaure le dernier fichier rep/fichier

    duply mon_profil fetch rep/fichier /destination_dir

    # Restaure le fichier rep/fichier d'il y'a 4 jours

    duply mon_profil fetch rep/fichier /destination_dir 4D

    Note 1: Concernant la commande fetch, si vous désirez restaurer un fichier, le fichier de destination doit être également indiqué sinon le répertoire (si il est vide) sera remplacé par le fichier à restaurer. Note 2: Concernant la commande fetch, dans le cas d’un répertoire, le répertoire de destination doit être vide, sinon la restauration sera interrompu.

    Ce billet est taggé avec Anti-Virus, Linux and planet-libre
    Sat 14 Sep 2013 05:37:20 AM UTC - permalink -
    - http://blog.cendreo.com/2012/09/17/effectuer-vos-sauvegardes-avec-duply/
    duply sauvegarde duplicity ftp

    Commentaires(0)













  • YouTube thumbnail
    Coyote Kisses - Acid Wolfpack - YouTube
    Musique style jeux video
    Sun 08 Sep 2013 06:20:35 PM UTC - permalink -
    - http://www.youtube.com/watch?v=SyORw8bee4o
    musique youtube

    Commentaires(0)













  • YouTube thumbnail
    ▶ TIME - Hans Zimmer - YouTube
    No comment
    Sun 08 Sep 2013 06:19:37 PM UTC - permalink -
    - https://www.youtube.com/watch?v=XO3246dik14
    Musique youtube inception

    Commentaires(0)













  • Linux - Commandes - Mémento [Netensis - TechniNotes]
    Archives - tar, 7z
    tar

    Création d'une archive :

       sans compression :

       tar -cvf CHEMIN_ARCHIVE.tar FICHIERS_ET_OU_REPERTOIRES_A_STOCKER

       avec compression gzip :

       tar -cvzf CHEMIN_ARCHIVE.tar.gz FICHIERS_ET_OU_REPERTOIRES_A_STOCKER

    Lister le contenu d'une archive :

    tar -tvf CHEMIN_ARCHIVE.tar
    tar -tvf CHEMIN_ARCHIVE.tar.gz

    Décompresser le contenu d'une archive (dans le répertoire courant) :

       archive sans compression :

       tar -xvf CHEMIN_ARCHIVE.tar

       archive avec compression gzip :

       tar -xvzf CHEMIN_ARCHIVE.tar.gz

    7z

       Archive 7-Zip avec compression maximale (-mx=9 : niveau de compression de 0 = aucun à 9 = maximum, le standard est 5), contenu et entêtes chiffrés par mot de passe (-mhe=on -p) :

       7z a -ms=on -mx=9 -mhe=on -p ARCHIVE FICHIERS_ET_OU_REPERTOIRES
       
       # Exemple
       7z a -ms=on -mx=9 -mhe=on -p ~/backup/confidentiel.7z ~/Documents ~/.evolution

       Archive au format zip au lieu de 7z :

       7z a -tzip ARCHIVE.zip FICHIERS_ET_OU_REPERTOIRES
       
       # Exemple
       7z a -tzip ~/backup/images.zip ~/Images

       Chiffrer/déchiffrer du texte avec 7z (AES 256 Bits) :

       # Chiffrage
       echo -n "Texte" | 7z a -si -mx=9 -ms=on -mhe=on -pMOT_DE_PASSE ARCHIVE.7z
       
       # Déchiffrage sur la sortie standard, la redirection de stderr est obligatoire
       7z e -so -pMOT_DE_PASSE ARCHIVE.7z 2>/dev/null

    tar et 7z combinés

    7-Zip n'est pas adapté seul à la sauvegarde de tous les attributs des fichiers Linux. On peut combiner tar et 7-Zip (pour remplacer la compression gzip).

    Création d'une archive "tar.7z" :

    # "-si" compresse l'entrée standard (stdin)
    tar -c FICHIERS_ET_OU_REPERTOIRES 2>/dev/null | 7z a -si OPTIONS_7Z ARCHIVE.tar.7z

    Décompression d'une archive "tar.7z" :

    7z x -so ARCHIVE.tar.7z | tar xf -
    Sat 07 Sep 2013 09:10:39 PM UTC - permalink -
    - http://netensis.net/linux:commandes:memento
    7zip astuce

    Commentaires(0)













  • SSH Troubleshooting - Metawerx Java Wiki
    Failed to add the host to the list of known hosts (/home/USERNAME/.ssh/known_hosts)
    Connection works, but the following warning is issued

    Failed to add the host to the list of known hosts (/home/USERNAME/.ssh/known_hosts)

    This error occurs when:

       The user's HOME folder has incorrect permissions
       The user's HOME/.ssh folder or HOME/.ssh/known_hosts file has incorrect permissions (such as when the folder has been copied into location by root, or permissions have been manually set incorrectly)

    To fix, execute these commands (as root) to reset the permissions to their correct values (replace USERNAME with the appropriate username)

    cd ~
    chown USERNAME /home/username
    chown USERNAME -R /home/username/.ssh
    chmod 700 /home/USERNAME/.ssh
    chmod 600 /home/USERNAME/.ssh/*
    Tue 03 Sep 2013 07:08:29 AM UTC - permalink -
    - http://wiki.metawerx.net/wiki/SSHTunnelTroubleshooting
    ssh astuce

    Commentaires(0)













  • Sickbeard | Raspberry-at-home.com – Your ultimate source of Raspberry Pi tutorials (WiFi, 3G, XBMC, Subtitles, VoD, TVN Player, IPLA, TVP, Squeezeslave, Logitech Media Server, Sickbeard, Webcam, Torrent, DLNA)
    SickBeard sur le raspberry

    SickBeard me sert uniquement pour le renommage et le classement des épisodes de séries, mais il peut bien plus :)
    Sun 01 Sep 2013 02:22:39 PM UTC - permalink -
    - http://raspberry-at-home.com/sickbeard/
    sickbeard raspberry

    Commentaires(0)













  • locale configuration
    edit: ça ne fonctionne plus... je ne sais pas pourquoi. mais après un  sudo dpkg-reconfigure locales  et un reboot ça a fonctionné.

    Pour avoir les accents sur mon raspberry pi, avec raspbmc j'ai du faire cette manip:

    add it in /etc/profile
    export LANG=fr_FR.utf-8
    export LC_ALL=fr_FR.utf-8
    export LC_CTYPE=fr_FR.utf-8
    export LANGUAGE=fr_FR

    reboot.

    run locale.
    voilá!
    Sun 01 Sep 2013 01:22:39 PM UTC - permalink -
    - http://forum.stmlabs.com/showthread.php?tid=5612
    raspberry astuce

    Commentaires(0)













  • Raspberry Pi: How to install PyLoad downloadmanager » Jan Karres
    Installer pyload sur son raspberry

    Raspberry Pi: How to install PyLoad downloadmanager
    Geschrieben von Elias Porcio in Raspberry Pi/ 7 Kommentare
    19 Jun

    I have already published some instructions on how to set up Raspbian. Now follows the most used program on my Raspberry Pi. It is called pyLoad and is a, in Python written, downloadmanager with webinterface. How to get it on the Raspberry Pi will be explained hereinafter. We will istall the version of pyLoad without graphical user interface but with webinterface.

    Requires Raspbian or a similar Debian-distribut

    Step 1

    In order to be able to install all packages in step 2 we have to extend the sources.list. We can do so with the editor nano. Just insert the line after the nano command into the end of the file. You can save by pressing CTRL + X (which ends the programm), whereupon you are asked if you want to save before closing.

    sudo nano /etc/apt/sources.list

    deb-src http://mirrordirector.raspbian.org/raspbian/ wheezy main contrib non-free rpi

    At last we update apt.

    sudo apt-get update

    Step 2

    First we need some Packages, so we can install PyLoad. We are mainly talking about Python (already Preinstalled) with some extensions and programs, that are used to unpack downloaded files.

    sudo apt-get -y install liblept3
    sudo apt-get -y install python python-crypto python-pycurl python-imaging tesseract-ocr python-qt4 spidermonkey-bin zip unzip
    sudo apt-get -y build-dep rar unrar-nonfree

    Step 3

    Afterwards we download the latest .DEB-file of Python of the version cli. As I wrote this tutorial, the version 0.4.9 was up to date. You can get the latest download link at http://pyload.org/download

    wget http://download.pyload.org/pyload-cli-v0.4.9-all.deb

    Step 4

    Now we install PyLoad using dpkg and delete the DEB-file afterwards.

    sudo dpkg -i pyload-cli-v0.4.9-all.deb
    rm pyload-cli-v0.4.9-all.deb

    Step 5

    Next, we launch PyLoad for the first time. Some questions to the set up will be asked.

    cd /usr/share/pyload
    ./pyLoadCore.py

    Step 6 (optional)

    We can start PyLoad as Deamon, so we do not always have to leave the terminal open to run the downloadmanager.

    pyLoadCore --daemon

    Step 7 (optional; start on boot)

    If we want to make PyLoad start together with the Raspberry Pi, we will create a crontab entry for the start of the Deamon. We insert the following line into the end of the file and save using CTRL + X and the confirmation, that we want to save.

    crontab -e

    @reboot pyLoadCore --daemon

    Done! The PyLoad downloadmanager has been installed and is now set up. If you have activated the webinterface during the installation, you will be able to open IP:8000 (IP has to be replaced by the IP of the Raspberry Pi) in your browser and you can start downloading!
    Wed 28 Aug 2013 10:04:15 PM UTC - permalink -
    - http://jankarres.de/2013/06/raspberry-pi-how-to-install-pyload-downloadmanager/
    raspberry pyload

    Commentaires(0)













  • Running cron jobs on Raspberry Pi in Raspbmc | wexoo.net
    Comment activer cron jobs sous raspbmc

    Running cron jobs on Raspberry Pi in Raspbmc
    Posted on April 6, 2013 by wexoo

    Here’s another little tutorial especially for people new to raspberry pi or linux in general (such as myself). Cron jobs are used to execute specific actions at pre-configured times. These actions can be executing scripts, writing data to a file, etc. (would be glad to hear of stuff you do with cron jobs in the comment section ;) )

    In my specific case I needed a script to map my changing external ip address at home to the domain I specified for my raspberry to have access to it when I’m away. Big thanks for all the help to my good friend Thomas for domain hosting and tipps on how to get this to work! Now let’s get to it!

       Activate cron jobs in Raspbmc
       Per default running cron jobs is deactivated in Raspbmc and there are two ways to activate them.
       - In the Raspbmc GUI under Programs Raspbmc Settings -> System Configuration -> Service Management -> Cronjob Scheduler
       - Via SSH/FTP by modifying sys.service.cron value to “true” the settings file under /home/<your_username>/.xbmc/userdata/addon_data/script.raspbmc.settings/settings.xml – for more infos on changing settings via SSH / FTP, check my
    Wed 28 Aug 2013 10:03:08 PM UTC - permalink -
    - http://www.wexoo.net/20130406/running-cron-jobs-on-raspberry-pi-in-raspbmc
    raspberry cron

    Commentaires(0)













  • Une extension VLC pour récupérer facilement des sous titres
    Faudra que je teste ça !
    Tue 06 Aug 2013 07:07:14 AM UTC - permalink -
    - http://korben.info/sous-titres-vlc.html
    vlc sous-titre

    Commentaires(0)













  • Apprendre les mises en page CSS
    Tout est dans le titre.
    Cela dit le site à l'air clair et bien expliqué.
    Tue 06 Aug 2013 07:06:19 AM UTC - permalink -
    - http://fr.learnlayout.com/
    css tuto

    Commentaires(0)













  • YouTube thumbnail
    Two Steps From Hell / Starvation - YouTube
    Un bon air de film d'aventure :)
    Tue 06 Aug 2013 06:58:05 AM UTC - permalink -
    - https://www.youtube.com/watch?v=_PF4e-CAqCs
    musique

    Commentaires(0)













  • Blog Salem Harrache - sshuttle
    Forwarder sa connexion par ssh facilement grâce a sshuttle!
    Thu 01 Aug 2013 12:06:10 AM UTC - permalink -
    - http://salem.harrache.info/tag/sshuttle.html
    sshuttle ssh

    Commentaires(0)













  • No...
    Des news sur node.js

    Je m'y mettrai peut- être un jour.
    Sun 28 Jul 2013 05:06:54 AM UTC - permalink -
    - http://www.scoop.it/t/node-js
    javascript node.js

    Commentaires(0)













  • Brython
    Une implémentation de python pour remplacer javascript. A tester
    Sun 28 Jul 2013 05:06:04 AM UTC - permalink -
    - http://www.brython.info/
    python javascript brython

    Commentaires(0)













  • Développer une application web en quelques minutes (+démo) | Atinux
    A essayer.
    Sun 28 Jul 2013 05:04:57 AM UTC - permalink -
    - http://www.atinux.fr/2012/08/04/developper-une-application-web-en-quelques-minutes/
    javascript node.js

    Commentaires(0)













  • CalDAV + CardDAV lightweight server: Baïkal
    Un serveur CalDav + CardDav, peut être le remplaçant de celui de  owncloud !
    Wed 24 Jul 2013 07:50:01 AM UTC - permalink -
    - http://baikal-server.com/
    calDav serveur cardDav

    Commentaires(0)













  • Top Bar · HTML & CSS Code Snippet
    Sun 21 Jul 2013 06:15:33 AM UTC - permalink -
    - http://www.cssflow.com/snippets/top-bar
    css

    Commentaires(0)













  • 29 Menús desplegables en HTML5 y CSS3 gratuitos
    Sun 21 Jul 2013 04:48:06 AM UTC - permalink -
    - http://extremisimo.com/29-menus-desplegables-en-html5-y-css3-gratuitos/
    css

    Commentaires(0)













  • 39 Powerful CSS Tools And Generators To Automate Your Workflow | Web Resources | Nacodes
    Sun 21 Jul 2013 04:47:54 AM UTC - permalink -
    - http://www.nacodes.com/2013/06/28/39-Powerful-CSS-Tools-And-Generators-To-Automate-Your-Workflow
    css

    Commentaires(0)













  • Creating an image slider using only CSS3 / HTML & CSS / Textile / Programming languages / Articles / Home - BASICuse - the home of the best guides and tutorials for every day
    Sun 21 Jul 2013 04:47:43 AM UTC - permalink -
    - http://basicuse.net/articles/pl/textile/html_css/creating_an_image_slider_using_only_css3
    css

    Commentaires(0)













  • thumbnail
    image - 421x632px
    Sun 21 Jul 2013 04:47:19 AM UTC - permalink -
    - https://lh4.googleusercontent.com/-5hzKkPgobvE/Ud_5kja7cfI/AAAAAAAAAMs/r3w2Cqq3STo/w421-h632-no/76215_10151089292332675_1479946408_n.jpeg
    fun image

    Commentaires(0)













  • La dictée impossible
    Sun 21 Jul 2013 04:47:07 AM UTC - permalink -
    - http://secouchermoinsbete.fr/22695-la-dictee-impossible
    insolite

    Commentaires(0)













  • CSS3, un truc à éviter - Le Hollandais Volant
    Sun 21 Jul 2013 04:46:47 AM UTC - permalink -
    - http://lehollandaisvolant.net/index.php?d=2012/03/22/21/48/48-css3-un-truc-a-eviter
    css

    Commentaires(0)













  • Note CSS3 : redimentionner une image automatiquement - Le Hollandais Volant
    Sun 21 Jul 2013 04:35:24 AM UTC - permalink -
    - http://lehollandaisvolant.net/?mode=links&id=20130718014626
    css

    Commentaires(0)













  • Les 8 types de nuages les plus spectaculaires qui flottent au-dessus de votre tête | Daily Geek Show
    assez impressionnant
    Sun 21 Jul 2013 04:35:03 AM UTC - permalink -
    - http://dailygeekshow.com/2013/07/17/les-8-types-de-nuages-les-plus-spectaculaires-qui-flottent-au-dessus-de-votre-tete/
    fun insolite

    Commentaires(0)













  • Crawler un site Web avec wget
    ça me servira sûrement un jour!
    Sun 21 Jul 2013 04:33:35 AM UTC - permalink -
    - http://quack1.me/wget_website.html
    astuce wget

    Commentaires(0)













  • Achat de billets de train en moins d’une minute - Capitaine Train
    ça à l'air bien pratique!

    via sebsauvage
    Sun 21 Jul 2013 04:31:56 AM UTC - permalink -
    - http://www.capitainetrain.com/
    astuce sncf billet

    Commentaires(0)













  • Viré
    Tellement vrai!
    Sun 21 Jul 2013 04:29:15 AM UTC - permalink -
    - https://lh3.googleusercontent.com/-atQEqjHapMA/UePzoykipQI/AAAAAAAAhcI/P-ZdcK4Dxd4/w742-h635-no/2013%20-%201
    fun images

    Commentaires(0)













  • Les 100 bonnes idées à importer en France : 1 à 10 | Rue89
    De bonne idées dans l'ensemble :)
    A partager
    Sat 13 Jul 2013 10:24:36 PM UTC - permalink -
    - http://www.rue89.com/2013/07/07/les-100-bonnes-idees-a-importer-france-1-a-10-244010
    fun insolite utile

    Commentaires(0)













  • La révolte des rebelles apatrides | ploum.net
    A partager!
    Sat 13 Jul 2013 12:00:51 AM UTC - permalink -
    - http://ploum.net/post/la-revolte-des-rebelles-apatrides
    ploum humeur

    Commentaires(1)
    Ff: 06/03/21 - 23:31
    ff













  • Logiciels de sauvegarde - Wiki de la GUILDE
    Des scripts , et une gestion intéressante de sauvegarde tournée autour de areca un logiciel de backup via http://linuxfr.org/news/areca-backup-la-sauvegarde-graphique-pour-la-menagere-de-moins-de-50-ans

    A voir.
    Fri 12 Jul 2013 10:37:16 PM UTC - permalink -
    - http://guilde.asso.fr/wiki/Logiciels_de_sauvegarde#Cas_concret_:_sauvegarde_de_portable
    sauvegarde logiciel

    Commentaires(0)













  • Viscera Cleanup Detail - Debut alpha gameplay - YouTube - Liens en vrac de sebsauvage
    Tout simplement :D
    Fri 12 Jul 2013 10:21:29 PM UTC - permalink -
    - http://sebsauvage.net/links/?Ya4l7w
    fun insolite jeu

    Commentaires(0)













  • Bootchart – Analysez le démarrage de votre système GNU/Linux | La vache libre
    Faudra que je teste sa sur mon Raspbmc
    Fri 12 Jul 2013 10:14:10 PM UTC - permalink -
    - http://la-vache-libre.org/bootchart-analysez-les-processus-en-cours-au-demarrage-sous-gnulinux/#more-16648
    linux cheat

    Commentaires(0)













  • CloudUSB - CloudUSB Computer
    Une distribution pour son "cloud personnel" sur une clé usb.
    A tester
    Thu 11 Jul 2013 07:28:55 PM UTC - permalink -
    - http://cloudusb.net/?CloudUSB_Computer
    cloud application usb

    Commentaires(0)













  • Nifty Modal Window Effects
    Sympa pour des effets modals en css

    via sebsauvage
    Thu 27 Jun 2013 11:54:26 AM UTC - permalink -
    - http://tympanus.net/Development/ModalWindowEffects/
    css html5 modal

    Commentaires(0)













  • imgur.com thumbnail
    Science - Imgur
    Une série d'expérience impressionnante.
    Via le hollandaisvolant
    Sat 22 Jun 2013 05:46:10 AM UTC - permalink -
    - http://imgur.com/gallery/yIHdU
    fun insolite science

    Commentaires(0)













  • Roundup: 10 DIY Garage Organization Ideas » Curbly | DIY Design Community
    Quelques idées bien sympa pour ranger ses outils dans son garage.

    Via tontof
    Thu 20 Jun 2013 12:13:21 AM UTC - permalink -
    - http://www.curbly.com/users/diy-maven/posts/15010-round-up-10-diy-garage-organization-ideas
    insolite astuce

    Commentaires(0)













  • Le Fossoyeur de Films - YouTube
    De très bonne critique cinéma !
    Fri 07 Jun 2013 09:37:58 PM UTC - permalink -
    - https://www.youtube.com/user/deadwattsofficiel/featured
    fun

    Commentaires(0)













  • YouTube thumbnail
    Incredible Gravity Ruler Trick! - YouTube
    Les joies de la gravité appliqué sur une règle avec un marteau !
    Fri 07 Jun 2013 09:33:24 PM UTC - permalink -
    - http://www.youtube.com/watch?v=Hj-NX0xtcVY
    fun insolite science

    Commentaires(0)













  • pdf2htmlEX
    ça peut servir, un convertisseur pdf 2 html
    Sat 18 May 2013 06:14:52 PM UTC - permalink -
    - https://github.com/coolwanglu/pdf2htmlEX
    application

    Commentaires(0)













  • YouTube thumbnail
    Consignes de securité sur Kulula Airways - YouTube
    Un peu d'humour avant le décollage ça ne fais pas de mal :)
    Sat 18 May 2013 05:03:45 PM UTC - permalink -
    - https://www.youtube.com/watch?v=NhtpwPW8txQ
    fun youtube

    Commentaires(0)













  • YouTube thumbnail
    Miyoko Shida Rigolo 1 - YouTube
    Beau
    Sat 18 May 2013 04:59:34 PM UTC - permalink -
    - https://www.youtube.com/watch?v=dnDeo0yhIws
    Fun youtube

    Commentaires(0)













  • Catch-up TV Downloaders - Actus, tutos et annuaires des meilleures ressources gratuites du Web
    Pour télécharger les replays TV
    Tue 14 May 2013 10:52:46 PM UTC - permalink -
    - http://www.portail-de-la-gratuite.com/chroniques/catch-up-tv-downloaders/
    application tv

    Commentaires(0)













  • USA: Monsanto l'emporte devant la Cour suprême face à un petit fermier
    inadmissible !!!
    Tue 14 May 2013 10:37:52 PM UTC - permalink -
    - http://www.romandie.com/news/n/_USA_Monsanto_l_emporte_devant_la_Cour_supreme_face_a_un_petit_fermier49130520132030.asp
    insolite honte

    Commentaires(0)













  • Les paroles s'envolent... pas les écrits: Quand les mots ont une vraie valeur
    Pas besoin de commentaires, lisez !
    Tue 14 May 2013 10:34:15 PM UTC - permalink -
    - http://jefaispeuralafoule.blogspot.fr/2012/11/quand-les-mots-ont-une-vraie-valeur.html
    insolite

    Commentaires(0)













  • Free Online Backup Service – Start with 10 GB Free Cloud Storage – Symform
    Un concept original de cloud , au lieu de payer en argent, vous payez en donnant un peu de votre disque dur, un peu dans le concept de freenet d'une certaine façon, mais réservé au stockage.
    Original, mais maintenant à voir niveau sécurité de ses données :)
    Tue 14 May 2013 09:40:26 PM UTC - permalink -
    - http://www.symform.com/
    cloud stockage

    Commentaires(0)













  • [SOLVED] how to secure webUI with password on linux? - BitTorrent Sync - BitTorrent Forums
    Configurer un mot de pass pour l'interface de bittorrent sync :)
    Tue 14 May 2013 09:27:17 PM UTC - permalink -
    - http://forum.bittorrent.com/topic/18954-solved-how-to-secure-webui-with-password-on-linux/
    bittorrent_sync

    Commentaires(0)













  • thumbnail
    photo.jpg (Image JPEG, 415x403 pixels)
    Toujours impressionnant les capacité de notre cerveau à s'adapter non ? !:)
    Tue 14 May 2013 12:20:36 AM UTC - permalink -
    - https://lh5.googleusercontent.com/-TXBseE_T0Mc/UY_LrwqNyiI/AAAAAAAAOIU/jYojwd84ncM/w415-h403-no/photo.jpg
    fun insolite

    Commentaires(0)













  • HDD-Installation des fun_plug 0.7 auf NAS-Geräten « Leben des wolf-u.li
    Tuto pour fun_plug
    Sat 11 May 2013 05:01:38 PM UTC - permalink -
    - http://wolf-u.li/4523/hdd-installation-des-fun_plug-auf-nas-geraeten/
    dlink fun_plug

    Commentaires(0)













  • Il serait temps de mettre la France au télétravail
    C'est une bonne idée :)
    Fri 10 May 2013 08:30:06 PM UTC - permalink -
    - http://korben.info/mettre-la-france-au-teletravail.html
    idée

    Commentaires(0)













  • Programmer en javascript directement sur votre Raspberry Pi
    Fri 10 May 2013 08:29:46 PM UTC - permalink -
    - http://korben.info/js-raspberry-pijs.html
    raspberry

    Commentaires(0)













  • Télécharger des applications gratuites sans prendre de risque
    ça peut servir
    Fri 10 May 2013 08:29:17 PM UTC - permalink -
    - http://korben.info/ddownloads.html
    application

    Commentaires(0)













  • Paperwork : besoin de testeurs - LinuxFr.org
    Ranger ses papiers, le rève, à surveiller
    Fri 10 May 2013 08:22:31 PM UTC - permalink -
    - http://linuxfr.org/news/paperwork-besoin-de-testeurs
    insolite programme

    Commentaires(0)













  • Raspberry Pi - Faire un backup de sa carte SD | Le blog de NicoLargo
    Thu 09 May 2013 08:24:59 PM UTC - permalink -
    - http://blog.nicolargo.com/2013/04/raspberry-pi-faire-un-backup-de-sa-carte-sd.html
    raspberry

    Commentaires(0)













  • Dilandau - Télécharger de la musique MP3 gratuitement
    A essayer
    Wed 08 May 2013 03:04:56 PM UTC - permalink -
    - http://fr.dilandau.eu/
    musique téléchargement

    Commentaires(0)













  • Silk road - Wikipédia - Shaarli | Orangina Rouge
    Le genre de site planqué du net.
    Une place de marché au fin fond de tor :)
    Wed 08 May 2013 03:02:45 PM UTC - permalink -
    - http://orangina-rouge.org/shaarli/?uBbMxw
    insolite

    Commentaires(0)













  • How It's Made : Science Channel
    ça peut être intéressant. Comment sont fabriquer les choses.
    Wed 08 May 2013 02:52:47 PM UTC - permalink -
    - http://science.discovery.com/tv-shows/how-its-made
    fun insolite

    Commentaires(0)













  • Nono's Vrac 92
    Comme toujours une très bonne liste de liens, merci nono :)
    Wed 08 May 2013 02:19:20 PM UTC - permalink -
    - http://blog.m0le.net/2013/05/05/nonos-vrac-92/
    nono

    Commentaires(0)













  • Nouvel essai de dégooglisation - cd /etc /etera
    Je l'aurai un jour, je l'aurai ! :)
    Wed 08 May 2013 02:17:29 PM UTC - permalink -
    - http://www.cdetc.fr/nouvel-essai-de-degooglisation.html
    auto-hébergement

    Commentaires(0)













  • Turb(l)o(g) » Fabriquer son internet
    Peut être un jour
    Wed 08 May 2013 02:12:34 PM UTC - permalink -
    - http://blog.spyou.org/wordpress-mu/2013/03/20/fabriquer-son-internet/
    internet auto-herbergement

    Commentaires(0)













  • Installation d'un serveur Sparkleshare sur Debian et d'un client Sparkleshare sur Ubuntu - Génération Linux
    Faudra que je regarde plus e détail ce Sparkleshare
    Wed 08 May 2013 02:11:53 PM UTC - permalink -
    - http://www.generation-linux.fr/index.php?post/2013/03/20/Installation-d-un-serveur-Sparkleshare-sur-Debian-et-d-un-client-Sparkleshare-sur-Ubuntu
    synchronisation

    Commentaires(0)













  • Cogimix
    Difficile de ne pas trouver un morceau avec ce site, il va cherché sur youtube, grooveshark, jamendo, etc
    Wed 08 May 2013 02:05:43 PM UTC - permalink -
    - https://www.cogimix.com/
    musique lecteur

    Commentaires(0)













  • Top 10 CSS Generators | Webpop
    Pour les programmeurs web
    Wed 08 May 2013 02:05:05 PM UTC - permalink -
    - http://www.webpop.com/blog/2013/04/23/css-generators
    web html5 générateur

    Commentaires(0)













  • imgur.com thumbnail
    A repost no doubt, but the best and simplest way I have ever seen this explained. - Imgur
    J'adore !
    Wed 08 May 2013 02:03:03 PM UTC - permalink -
    - http://imgur.com/lYcnND6
    fun

    Commentaires(0)













  • Neoflow.fr
    à garder sous le coude
    +de 400 tuto informatique !
    Wed 08 May 2013 02:01:45 PM UTC - permalink -
    - http://www.neoflow.fr/
    tutoriel

    Commentaires(0)













  • APLOMB: Quand vous recevez une « relance » par un huissier, envoyez lui systématiquement cette lettre pour la sauvegarde de vos droits.
    A savoir!
    Wed 08 May 2013 01:57:27 PM UTC - permalink -
    - http://antibanque.blogspot.fr/2012/10/quand-vous-recevez-une-relance-par-un.html
    huissier

    Commentaires(0)













  • Using YouTube For File Storage - Slashdot
    Un concept intéressant pour stocker des fichiers avec youtube
    Wed 08 May 2013 01:54:11 PM UTC - permalink -
    - http://news.slashdot.org/story/13/05/07/1634245/using-youtube-for-file-storage
    insolite stockage youtube

    Commentaires(0)













  • Raspberry Pi – Comment mettre à jour le firmware ?
    Wed 08 May 2013 01:51:55 PM UTC - permalink -
    - http://korben.info/raspberry-pi-comment-mettre-a-jour-le-firmware.html
    raspberry

    Commentaires(0)













  • Un bon petit service de proxymité
    Une liste de proxy
    Wed 08 May 2013 01:47:17 PM UTC - permalink -
    - http://korben.info/adresse-proxy.html
    proxy

    Commentaires(0)













  • Télécharger des VDI pour VirtualBox
    Wed 08 May 2013 01:44:10 PM UTC - permalink -
    - http://korben.info/telecharger-des-vdi-pour-virtualbox.html
    virtualbox

    Commentaires(0)













  • Les films VS la vraie vie
    Juste énorme !! surtout la dernière avec l'explosion!
    Wed 08 May 2013 01:41:14 PM UTC - permalink -
    - http://korben.info/les-films-vs-la-vraie-vie.html
    fun korben

    Commentaires(0)













  • Dans une galaxie très très lointaine, il y avait de la pub
    Plutot très très Fun :D
    Wed 08 May 2013 01:33:02 PM UTC - permalink -
    - http://korben.info/pubs-starwars.html
    fun starwars

    Commentaires(0)













  • Bdrive - Your social cloud
    Un concurent de btsync ? ou owncloud ? :)
    Tue 07 May 2013 09:28:23 PM UTC - permalink -
    - http://www.bdrive.com/en/index.html
    cloud programme

    Commentaires(0)













  • Dimio's Tools
    Plein de petit logiciel sympa, interface un peu bof, mais à regarder :)
    Tue 07 May 2013 09:19:47 PM UTC - permalink -
    - http://dimio.altervista.org/eng/
    programme

    Commentaires(0)













  • Arrêt automatique de votre ordinateur lorsque qu'une application se ferme ou lorsqu'il ne joue plus de son | FlecheInThePeche.fr
    Un jour ça servira peut être :)
    Tue 07 May 2013 09:05:19 PM UTC - permalink -
    - http://www.flecheinthepeche.fr/blog/windows/arret-automatique-de-votre-ordinateur-lorsque-quune-application-se-ferme-ou-lorsquil-ne-joue-plus-de-son.html
    éteindre automatique

    Commentaires(0)













  • Partager votre écran facilement avec Screenleap | FlecheInThePeche.fr
    A tester
    Tue 07 May 2013 08:57:51 PM UTC - permalink -
    - http://www.flecheinthepeche.fr/blog/web-service/partager-votre-ecran-facilement-avec-screenleap.html
    écran partage

    Commentaires(0)













  • 50 lieux abandonnés et villes fantômes incroyables !
    Impressionnant
    Mon 06 May 2013 08:42:50 PM UTC - permalink -
    - http://blog.jettours.com/lieux-abandonnes/
    insolite fun

    Commentaires(0)













  • Des tunnels d’arbres spectaculaires - Le blog de voyage Jettours
    C'est beau :)
    Mon 06 May 2013 08:39:27 PM UTC - permalink -
    - http://blog.jettours.com/des-tunnels-darbres-spectaculaires/
    arbre fun art

    Commentaires(0)













  • xStudio » Activer l’url rewriting sur lighttpd
    Pour mon raspberry
    Sun 05 May 2013 08:46:41 PM UTC - permalink -
    - http://xstyled.net/wordpress/2010/08/28/activer-lurl-rewriting-sur-lighttpd/
    lighttpd raspberry urlrewritting

    Commentaires(0)













  • raspbmc changer le port ssh de dropbear
    Pour changer le port ssh de drop bear sur raspbmc
    Le port par défaut est le 22, donc pas très sur...

    Cet exemple le changera en 26

    sudo nano /etc/xinetd.d/ssh

    remplacer:

    server_args = -i

    par

    server_args = -i -p 26

    ensuite
    sudo nano /etc/services

    remplacer par:
    ssh         22/tcp
    ssh         22/udp

    Par

    ssh         26/tcp
    ssh         26/udp

    Ensuite reboot le pi :)
    Mon 29 Apr 2013 08:17:15 PM UTC - permalink -
    - ?DIfMGg
    raspberry ssh dropbear

    Commentaires(0)













  • Tout-electromenager.fr - Informations & depannage electromenager
    Tout pour dépanner son électroménager
    Le genre de site indispensable mais que l'on ne connais pas.
    via sebsauvage
    Mon 29 Apr 2013 12:03:05 PM UTC - permalink -
    - http://www.tout-electromenager.fr/
    electromenager dépannage

    Commentaires(0)













  • Pombo
    Un logiciel pour retrouver un pc voler
    Mon 29 Apr 2013 12:01:00 PM UTC - permalink -
    - http://sebsauvage.net/pombo/index.fr.html
    pombo protection pc application

    Commentaires(0)













  • 66 Behind the Scenes Pics from THE EMPIRE STRIKES BACK - Imgur
    des images du tournage de starwars :)
    via sebsauvage
    Mon 29 Apr 2013 11:40:23 AM UTC - permalink -
    - http://imgur.com/a/HGtG0
    fun starwars images

    Commentaires(0)













  • Télécharger Synergy - Contrôler tous vos postes avec un seul duo clavier/souris : gratuit
    ça peut servir :)
    Mon 29 Apr 2013 09:58:06 AM UTC - permalink -
    - http://www.clubic.com/telecharger-fiche406176-synergy.html
    controle souris synergy

    Commentaires(0)













  • Serveur web à la maison : Raspberry Pi : Trucs et Astuces
    Sat 20 Apr 2013 01:52:47 AM UTC - permalink -
    - https://www.debian-fr.org/serveur-web-a-la-maison-raspberry-pi-t41969.html
    readitlater

    Commentaires(0)













  • jsPDF
    On va bientot pouvoir tout faire dans son navigateur, abusé.
    Une librairie javascript pour générer du pdf.
    via sebsauvage
    Fri 19 Apr 2013 07:57:23 PM UTC - permalink -
    - https://github.com/MrRio/jsPDF
    pdf javascript

    Commentaires(0)













  • Pure HTML5+JS dynamic field autocomplete
    Fri 19 Apr 2013 07:47:16 PM UTC - permalink -
    - http://lehollandaisvolant.net/files/datalist-2.html
    readitlater

    Commentaires(0)













  • Raspberry Pi – Comment ajouter un bouton RESET
    Fri 19 Apr 2013 07:24:07 PM UTC - permalink -
    - http://korben.info/bouton-reset-raspberry-pi.html
    raspberrypi

    Commentaires(0)













  • Les ondes agiraient sur le sommeil et la température corporelle
    Fri 19 Apr 2013 07:20:35 PM UTC - permalink -
    - http://www.numerama.com/magazine/25594-les-ondes-agiraient-sur-le-sommeil-et-la-temperature-corporelle.html
    readitlater

    Commentaires(0)













  • Create a new Fiddle - jsFiddle
    Pour partager du code html/css/js
    via lehollandais
    Mon 15 Apr 2013 10:07:11 PM UTC - permalink -
    - http://jsfiddle.net/
    programmation partage

    Commentaires(0)













Links per page: 20 50 100
◄Older
page 1 / 5
Shaarli 0.0.40 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.