4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 130 / 217
Newer►
  • AnsibleWorks | Radically simple IT orchestration
    December 1, 2013 at 1:36:08 PM GMT+1 - permalink - archive.org - http://www.ansibleworks.com/
    sys tools
  • Fruits et légumes : calendrier pratique des fruits et légumes de saison
    December 1, 2013 at 9:11:41 AM GMT+1 - permalink - archive.org - http://www.fruits-legumes.org/mois/
    calendrier fruit legume saison
  • XBMC Skins - RaspberryP.com

    Des skins pour xbmc. Les moins gourmands seraient slik et quartz

    November 30, 2013 at 9:20:01 PM GMT+1 - permalink - archive.org - http://www.raspberryp.com/xbmc-skins.html
    skin xbmc
  • [solved] amixer output differs from alsamixer? (Page 1) / Newbie Corner / Arch Linux Forums

    Valeur différentes retournées par amixer et alsamixer, l'explication :

    No, both are correct.  You are dreaming too much on the world unified
    percentage representation smile
    
    The percentage in amixer has nothing to do with dB level.
    It's just the percentage of the raw value range of that mixer
    element.  Thus showing 89% is correct.  It's 10% down from 100%
    (1% is because of the resolution of the raw values).
    
    Now, alsamixer shows the percentage in a different way.  It's
    explained well in the source code (alsamixer/volume_mapping.c), but
    not mentioned in the man page, unfortunately.
    
    * The mapping is designed so that the position in the interval is proportional
    * to the volume as a human ear would perceive it (i.e., the position is the
    * cubic root of the linear sample multiplication factor).  For controls with
    * a small range (24 dB or less), the mapping is linear in the dB values so
    * that each step has the same size visually.  Only for controls without dB
    * information, a linear mapping of the hardware volume register values is used
    * (this is the same algorithm as used in the old alsamixer).
    
    The percentage representation in alsamixer corresponds to this
    mapping, thus it's neither dB nor linear percent.

    EDIT : + https://gitorious.org/alsa/alsa-utils/source/34bb514b5fd1d6f91ba9a7b3a70b0ea0c6014250:alsamixer/volume_mapping.c#L64

    November 30, 2013 at 3:01:58 PM GMT+1 - permalink - archive.org - https://bbs.archlinux.org/viewtopic.php?pid=1217759
    alsamixer rasp sound
  • Sound configuration on Raspberry Pi with ALSA | Stephen C Phillips

    Un autre article sur la gestion du son du raspberry avec amixer. J'ai pu améliorer ma lib (https://github.com/arnaudmm/rasp-utils/blob/master/picsound.sh) pour le projet piclodio2 (https://github.com/Sispheor/Piclodio2/)

    November 30, 2013 at 2:02:43 PM GMT+1 - permalink - archive.org - http://blog.scphillips.com/2013/01/sound-configuration-on-raspberry-pi-with-alsa/
    rasp sound
  • Warning: Skipping the data of table mysql.event. | Linux BrigadeWarning: Skipping the data of table mysql.event. - Linux Brigade

    Todo sur mon dump pour ne plus avoir le warning

    November 30, 2013 at 8:11:05 AM GMT+1 - permalink - archive.org - http://www.linuxbrigade.com/warning-skipping-data-table-mysql-event/#more-135
    dump mysql
  • thumbnail
    python-crontab 1.5.1 : Python Package Index

    Librairie python qui va nous servir pour piclodio2 (https://github.com/Sispheor/Piclodio2)

    Chaque réveil est en fait une ligne dans le cron, avec un commentaire dans lequel on retrouve son id.. Du coup avec cette lib, l'interaction avec le cron va être + simple :-)

    via Nico

    November 29, 2013 at 12:12:00 PM GMT+1 - permalink - archive.org - https://pypi.python.org/pypi/python-crontab
    cron piclodio python
  • Faster Grepping in Vim

    Parait que ça va plus vite que ack
    à tester

    November 28, 2013 at 11:34:13 AM GMT+1 - permalink - archive.org - http://robots.thoughtbot.com/faster-grepping-in-vim/
    ack grep linux vim
  • InterfaceLIFT Wallpaper: Manarola Night

    joli

    November 27, 2013 at 3:30:30 PM GMT+1 - permalink - archive.org - http://interfacelift.com/wallpaper/details/3328/manarola_night.html
    wallpaper
  • Moves - Activity Tracker for iPhone and Android

    Hier j'ai eu droit à la maj android 4.4 "KitKat". Parmi les nouvelles features, on retrouve le "podometre like" exploitable avec l'application Moves par exemple.

    Je trouve le concept super sympa, l'application compte les pas, detecte lorsqu'on a pris un transport, lorsqu'on s'est arrêté et fait des petits graphs de la journée.

    Au niveau de la vie privée je ne sais pas ce que ça donne.. surement pas top, donc je ne vais la laisser tourner longtemps.

    A quand une app open source qui fait ça ? et qui envoie les données vers son propre server... avec génération de map openstreetmap..!

    November 27, 2013 at 2:59:16 PM GMT+1 - permalink - archive.org - http://www.moves-app.com/
    android app dev map
  • Topic: Tutorial to get wiimotes with classic controllers to work with RetroPie | petRockBlog

    Comment utiliser une ou plusieurs wiimote avec le rasp. C'est qui qui va rejouer à la nes/snes ? :):)

    November 27, 2013 at 8:38:01 AM GMT+1 - permalink - archive.org - http://blog.petrockblock.com/forums/topic/tutorial-to-get-wiimotes-with-classic-controllers-to-work-with-retropie/
    controller rasp retropie wii
  • Raspberry Pi • View topic - Reduce XBMC UI rendering CPU usage

    Je viens de remarquer que même en idle, XBMC mange pas mal de CPU.. Une solution pourrait être de l'arrêter/le démarrer à la demande comme Nico a fait (https://github.com/Sispheor/StartXBMC), mais j'ai trouvé ce petit script qui est bien sexy. Grâce à une commande (tvservice) on peut savoir si la TV est allumé ou non!
    à tester donc

    !/bin/bash

    on_mode="0x120009"
    while [ 1 ]
    do
    status=tvservice -s | awk {'print $2'}
    if [ $status == $on_mode ]
    then
    echo "Detected hdmi signal - Starting xbmc . . ."
    sudo service xbmc start
    fi
    sleep 1
    done

    Edit : ça ne marche pas avec ma TV :-( le code reste inchangé, tant pis. Du coup j'ai créé une page web toute simple qui, lorsque je la visite, permet de lancer xbmc.

    November 26, 2013 at 9:20:15 PM GMT+1 - permalink - archive.org - http://www.raspberrypi.org/phpBB3/viewtopic.php?t=34241&p=344642
    rasp xbmc
  • thumbnail
    CodeCombat

    Apprendre le javascript en jouant :D
    Le jeu nous place dans la peau d'un magicien qui contrôle les unités grâce à du code javascript qu'il faut écrire..

    November 26, 2013 at 6:02:28 PM GMT+1 - permalink - archive.org - http://codecombat.com/play/level/munchkin-masher#
    dev game javascript js
  • Ncdu Manual

    Outils en ligne de commande pour trouver ce qui occupe de la place, bien pratique

    November 26, 2013 at 5:55:40 PM GMT+1 - permalink - archive.org - http://dev.yorhel.nl/ncdu/man
    backup file files linux space tools
  • nmon for Linux | Main / HomePage

    Tools de monitoring à tester

    via ArnaudB

    November 26, 2013 at 3:36:51 PM GMT+1 - permalink - archive.org - http://nmon.sourceforge.net/pmwiki.php
    linux monitoring
  • PHP, FastCGI, FPM et Apache - Lolart.net
    November 26, 2013 at 3:34:25 PM GMT+1 - permalink - archive.org - http://www.lolart.net/blog/ez-publish/php-fastcgi-fpm-et-apache
    fpm php
  • PHP: FastCGI Process Manager (FPM) - Manual

    FPM (FastCGI Process Manager) est une implémentation alternative à PHP FastCGI avec quelques fonctionnalités additionnelles particulièrement utiles pour les environnements à haute charge.

    Ces fonctionnalités incluent :

    November 26, 2013 at 3:27:24 PM GMT+1 - permalink - archive.org - http://php.net/manual/fr/install.fpm.php
    php
  • ModMyPi | Raspberry Pi Camera Board (5MP, 1080p, v1.3)
    • https://www.modmypi.com/raspberry-pi-camera/pibow-raspberry-pi-camera-mount
    November 26, 2013 at 1:02:47 PM GMT+1 - permalink - archive.org - https://www.modmypi.com/raspberry-pi-camera/raspberry-pi-camera-board
    rasp
  • ModMyPi | Adafruit Electret Microphone Amplifier

    Ajouter un micro au rasp.. ça pourrait être cool pour le controler :o

    November 26, 2013 at 1:02:14 PM GMT+1 - permalink - archive.org - https://www.modmypi.com/adafruit-electret-microphone-amplifier&filter_name=microphon
    rasp
  • thumbnail
    ▶ [Ep#5] Speed Nimp' du 13/04/2013 - Super Mario 64 - YouTube

    Incroyable ce speed run

    November 25, 2013 at 10:51:45 PM GMT+1 - permalink - archive.org - http://www.youtube.com/watch?v=6eHdOH0j2Sc&feature=c4-overview-vl&list=PLMU7YrnzE4gLIcKqM448aUh79q2hAWJQF
    game mario run speed
Links per page: 20 50 100
◄Older
page 130 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation