Shaare your links...
3386 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 136 / 170
Newer►
  • Serveur PHP local
    php -S localhost:80

    glané dans les commentaires chez sam&max
    merci :-)
    permalink -
    - ?z9bxRg
    php
  • Sept petites libs qui changent la vie d’un dev Python | Sam & Max: Python, Django, Git et du cul
    clize, dateutil, requests, bottle, peewee, beautiful soup, paramiko
    permalink -
    - http://sametmax.com/sept-petites-libs-qui-changent-la-vie-dun-dev-python/
    lib python
  • [Python] Classer un liste d'objets en fct d'un attribut
    Après avoir fait un "import operator", il suffit de faire:
       taListe.sort(key=operator.attrgetter('nom_de_ton_attribut'))

    "taListe" étant une simple liste d'objets de ta classe contenant les attributs "nom_de_ton_attribut".

    voir aussi :
        http://doughellmann.com/2008/04/pymotw-operator.html
    permalink -
    - http://www.tomsguide.fr/forum/id-554150/python-classer-liste-objets-fct-attribut.html
    python
  • PC Astuces - Créer instantanément un nouveau dossier - Windows 7
    raccourci clavier Créer Nouveau Dossier : Crtl + Shift (Maj) + "n"
    permalink -
    - http://www.pcastuces.com/pratique/astuces/2591.htm
    astuce windows
  • setuid on shell scripts
    Solutions pour exécuter un script avec les droits root (sans passer par un sudo)
    permalink -
    - http://www.tuxation.com/setuid-on-shell-scripts.html
    linux script shell
  • RPi Powered USB Hubs - eLinux.org
    Liste des Hub USB compatibles avec Raspi
    permalink -
    - http://elinux.org/RPi_Powered_USB_Hubs
    raspberry
  • Shell - Lea Linux
    Quelques commandes utiles dans le shell linux
    permalink -
    - http://lea-linux.org/documentations/Shell
    linux
  • Google présente la mise à jour majeure de son application YouTube sur Android et iOS, découvrez ses nouvelles fonctionnalités
    permalink -
    - http://www.developpez.com/actu/60156/Google-presente-la-mise-a-jour-majeure-de-son-application-YouTube-sur-Android-et-iOS-decouvrez-ses-nouvelles-fonctionnalites/
    android application youtube
  • Arch Linux ARM • View topic - PPv4: Why isn't .bashrc being executed
    Je me demandais pourquoi sur le raspberry sous Arch, mon .bashrc ne se lançait pas au login depuis putty : il y a un .bashrc "global" (/etc/bash.bashrc)
    permalink -
    - http://archlinuxarm.org/forum/viewtopic.php?f=18&t=4978
    archlinux bash linux raspberry
  • Beginner’s Guide to Arch Linux on the Raspberry Pi – Part 2 | Rants & Raves – The Blog! - My blogspace for rants and raves about anything I like! (or don't like!)
    Wifi sous arch :
    sudo wifi-menu -o

    that's it !!!
    permalink -
    - http://qdosmsq.dunbar-it.co.uk/blog/2013/06/beginners-guide-to-arch-linux-on-the-raspberry-pi-part-2/
    archlinux raspi wifi
  • poche, open source self hosted read-it-later web app
    Nicolas Lœuillet créée un clone de read-it later (readability), instapaper et pocket,  open source pour de l'auto hébergé . Accepte les migrations depuis ses grands frères. A tester, voire à lier avec shaarli ?
    permalink -
    - http://www.inthepoche.com/?post/poche-1.0-beta-1
    autohebergement web
  • Yahoo! aurait dépassé Google aux Etats-Unis en juillet - Actualites - Programmez.com
    permalink -
    - http://www.programmez.com/actualites.php?id_actu=13736&xtor=EPR-144
    internet
  • Le gouvernement allemand considère Windows 8 comme un outil potentiel d'espionnage - Actualites - Programmez.com
    permalink -
    - http://www.programmez.com/actualites.php?id_actu=13737&xtor=EPR-144
    windows8
  • PRISM : la NSA aurait versé des millions aux géants d'Internet - Actualites - Programmez.com
    permalink -
    - http://www.programmez.com/actualites.php?id_actu=13754&xtor=EPR-144
    PRISM
  • Top 10 des gestes qu’il ne faut pas faire à l’étranger | Topito
    via nono : http://shaarli.m0le.net/?Om-iBA
    permalink -
    - http://www.topito.com/top-gestes-insultants-etranger
    fun
  • Mailpile - taking e-mail back | Indiegogo
    lancement avec crowdfunding d'un nouveau client  mail open source orienté protection de la vie privée (GPG).
    voir : http://neosting.net/logiciels/mailpile-indiegogo.html
    permalink -
    - http://www.indiegogo.com/projects/mailpile-taking-e-mail-back
    crypt mail opensource software
  • The Earth’s Seasonal “Heartbeat” as Seen from Space | Colossal
    permalink -
    - http://www.thisiscolossal.com/2013/08/breathing-earth/
  • How To Install Python, pip, and virtualenv on Windows with PowerShell : Tyler Butler
    permalink -
    - http://www.tylerbutler.com/2012/05/how-to-install-python-pip-and-virtualenv-on-windows-with-powershell/
    lib powershell python virtualenv windows
  • present/about_poderosa - Terminal Emulator Poderosa
    terminal pour windows à la Putty, kitty, mobaXterm,...
    Des onglets pour différentes session  :-)
    Config moins poussée que pour putty...
    permalink -
    - http://en.poderosa.org/present/about_poderosa.html
    software ssh
  • pyexiv2, a python binding to exiv2
    lib pour manipuler les données EXIF des appareils photos.
    cf. http://tilloy.net/dev/pyexiv2/tutorial.html

    import pyexiv2
    metadata = pyexiv2.ImageMetadata('test.jpg')
    metadata.read()

    metadata.exif_keys # liste de toutes les entrées EXIF
    tag = metadata['Exif.Image.DateTime']
    tag.raw_value
    #'2004-07-13T21:23:44Z'
    tag.value
    #datetime.datetime(2004, 7, 13, 21, 23, 44)
    tag.value.strftime('%A %d %B %Y, %H:%M:%S')
    #'Tuesday 13 July 2004, 21:23:44'

    Now let’s modify the value of the tag and write it back to the file:

    >>> import datetime
    >>> tag.value = datetime.datetime.today()

    >>> metadata.write()
    permalink -
    - http://tilloy.net/dev/pyexiv2/
    exif lib photo python
Links per page: 20 50 100
◄Older
page 136 / 170
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.