Shaare your links...
3394 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 75 / 170
Newer►
  • patdavid.net: Getting Around in GIMP - G'MIC Inpainting (Content Aware Fill)
    permalink -
    - http://blog.patdavid.net/2014/02/getting-around-in-gimp-gmic-inpainting.html
    g'mic gimp inpaint
  • YouTube thumbnail
    Les masques de calques avec Gimp - YouTube
    permalink -
    - https://www.youtube.com/watch?v=VccoWTIdX3g
    gimp
  • Guía de los mejores restaurantes de Madrid, Barcelona - eltenedor.es
    La fourchette en espagne
    permalink -
    - http://www.eltenedor.es/
    spain
  • Confused by python file mode "w+" - Stack Overflow
    permalink -
    - https://stackoverflow.com/questions/16208206/confused-by-python-file-mode-w
    python
  • 3. Le Masque rapide
    permalink -
    - http://docs.gimp.org/fr/gimp-image-window-qmask-button.html
    gimp
  • Python pip: Upgrade Packages Command Under Unix or Linux
    pip install PackageNameHere --upgrade
    permalink -
    - http://www.cyberciti.biz/faq/unix-linux-python-pip-upgrading-installed-packages/
    pip python
  • 3. Quick Start — Picamera 1.6 documentation
    permalink -
    - http://picamera.readthedocs.org/en/release-1.6/quickstart.html
    picamera raspberry
  • xmlrpclib – Client-side library for XML-RPC communication - Python Module of the Week
    permalink -
    - http://pymotw.com/2/xmlrpclib/
    pymotw python xmlrpc
  • javascript - Refresh image with a new one at the same url - Stack Overflow
    Try adding a cachebreaker at the end of the url:

    newImage.src = "http://localhost/image.jpg?"; + new Date().getTime();

    This will append the current timestamp automatically when you are creating the image, and it will make the browser look again for the image instead of retrieving the one in the cache.
    permalink -
    - https://stackoverflow.com/questions/1077041/refresh-image-with-a-new-one-at-the-same-url
    html memo
  • Javascript - Wait 5 seconds before executing next line - Stack Overflow
    wait...
    if (newState == -1) {
               alert('VIDEO HAS STOPPED');
           }
       }, 5000);
    permalink -
    - https://stackoverflow.com/questions/14226803/javascript-wait-5-seconds-before-executing-next-line
    javascript
  • Native JavaScript Equivalents of jQuery Methods: the DOM and Forms
    permalink -
    - http://www.sitepoint.com/jquery-vs-raw-javascript-1-dom-forms/
    javascript nojquery
  • Initiation au positionnement CSS : 3. position absolue et fixe | Openweb.eu.org
    permalink -
    - http://openweb.eu.org/articles/initiation_absolue
    css memo
  • Testing Multiple Pi Camera Options With Python | Raspberry Pi Spy
    Contrôler la picamera avec python
    et aussi :
    http://www.raspberryconnect.com/hardware-add-ons/item/137-raspberry-pi-camera-module
    permalink -
    - http://www.raspberrypi-spy.co.uk/2013/06/testing-multiple-pi-camera-options-with-python/
    picamera python raspberry
  • php - Perrmission to run specific command by sudo as www-data users without password - Super User
    voir aussi :
    http://blogmotion.fr/systeme/executer-un-script-shell-avec-permission-root-en-php-1312
    permalink -
    - https://superuser.com/questions/464971/perrmission-to-run-specific-command-by-sudo-as-www-data-users-without-password
    linux sudo
  • [Python] Lancer une appli via python [Résolu]
    Pour passer des paramètre, il suffit de les donner sous forme de liste à popen.

    Exemple: Je lance le programme compress et je lui passe 2 options:
    -V et un nom de fichier:

    p = subprocess.Popen(args=["compress","-V",nomdefichier], stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
    outputlines = p.stdout.readlines()
    p.wait()
    print outputlines
    permalink -
    - http://www.commentcamarche.net/forum/affich-2231600-python-lancer-une-appli-via-python
    memo python
  • Gérer les profils de réseau sans fil - Aide de Windows
    permalink -
    - http://windows.microsoft.com/fr-fr/windows-8/manage-wireless-network-profiles
    wifi windows
  • G'MIC - GREYC's Magic for Image Computing: An Open and Full-Featured Framework for Image Processing
    voir aussi :
       http://doc.ubuntu-fr.org/gmic

    et là pour les dernières avancées du projet :
       http://linuxfr.org/news/g-mic-1-5-8-3-quelques-avancees-supplementaires-pour-le-traitement-d-image-libre

    et pour débuter :
       http://sourceforge.net/p/gmic/wiki/Initiation%20%C3%A0%20la%20ligne%20de%20commande%20G%27mic/
       http://gmic.sourceforge.net/tutorial/basics.shtml
    permalink -
    - http://gmic.sourceforge.net/
    cli g'mic gimp image imagemagick
  • Ouvrir un port sur un serveur avec Iptables | Sam & Max: Python, Django, Git et du cul
    Dans la série “les commandes dont je me souviens jamais”, voici la commande qui permet d’ouvrir un port sur le firewall iptable de son serveur (il faut les droits admin) :

    iptables -A INPUT -p tcp -m tcp --dport 7777 -j ACCEPT # ouvrir le port 777
    iptables -D INPUT -p tcp -m tcp --dport 7777 -j ACCEPT # annuler l'ouverture
    iptables -L # regarder ce qui est ouvert et ce qui l'est pas

    service iptables save # pour conserver les règles... sinon elles n'existeront plus au prochain démarrage !

    et sinon :
    Dans /etc/init.d/firewall:
    http://pastebin.com/zSa6UHGw

    Dans /etc/firewall/firewall-start.sh:
    http://pastebin.com/Ekhai1hU

    Dans /etc/firewall/firewall-stop.sh:
    http://pastebin.com/wBNsmEWd

    Usage:
    service firewall {start/stop/restart}
    OU
    /etc/init.d/firewall {start/stop/restart}

    Ne pas oublier les droits, on peut aussi lancer le script “firewall-start.sh”, etc.
    permalink -
    - http://sametmax.com/ouvrir-un-port-sur-un-server-avec-iptables/
    iptables
  • Set -e for the win | Sam & Max: Python, Django, Git et du cul
    set -e marche avec tous les shells mais a des limites, notamment pour les subshells et les pipes.

    Avec bash, on peut aller un peu plus loin :
    set -o posix # les sous-shells héritent de ces options
    set -o errexit # équivalent long de set -e
    set -o pipefail # intercepte les erreurs de commandes suivies d’un pipe
    permalink -
    - http://sametmax.com/set-e-for-the-win/
    bash linux
  • Loli Cries! - FAQ
    How do I extract my favorite loli shout?
       If you are running Linux, it's quite easy. Just use the following command: ffmpeg -i My-great-anime.avi -vn -ss 14:22.4 -t 00:00:03.230 -aq 7 -ac 2 -acodec libvorbis -y out.ogg and that's all. -ss and -t are timestamps following the hh:mm:ss.ms format.
       You can use whichever method you like (or can use) as soon as you ouput an Ogg/Vorbis file.
       Note: if the video has multiple audio streams and the japanese one isn't selected, what you're searching for is certainly the -map option.
    How do I extract my favorite loli pic?
       On Linux – yeah, again – it's quite easy. You can use: ffmpeg -i My-great-anime.avi -ss 1094.1 -r 1 -f image2 My-great-anime.png
    How do I convert my loli pic to the right resolution?
       Linux answer, use ImageMagick: mogrify -resize 300x200 My-great-anime.png
    permalink -
    - http://lolicri.es/faq.html
    ffmpeg linux memo
Links per page: 20 50 100
◄Older
page 75 / 170
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.