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 72 / 170
Newer►
  • patdavid.net: Getting Around in GIMP - Skin Retouching (Wavelet Decompose)
    permalink -
    - http://blog.patdavid.net/2011/12/getting-around-in-gimp-skin-retouching.html
    gimp
  • Installing Seafile on Raspberry Pi - draptik
    permalink -
    - https://draptik.github.io/blog/2014/04/21/installing-seafile-on-raspberry-pi/
    cloud seafile
  • python - XML-RPC Javascript Unsupported method ('OPTIONS') - Stack Overflow
    Bon...
    Voilà un petit moment que je me frotte à un problème de CORS (Cross-Origin Resource Sharing pas de cors au pieds !)
    lire ceci : http://www.nczonline.net/blog/2010/05/25/cross-domain-ajax-with-cross-origin-resource-sharing/

    Mon navigateur refuse de me donner la réponse à une requête xmlrpc (via mimic.js) car le serveur à qui il fait la requête n'est pas celui qui héberge ma page :(
    Le problème semble venir de mon serveur xmlrpc qui utilise SimpleXMLRPCServer (python)...
    "The problem is that python's XMLRPC server does not include CORS headers (nor respond HTTP OPTIONS request) in the XML-RPC request."

    Il va falloir que j'ajoute un RequestHandler :
    class RequestHandler(SimpleXMLRPCRequestHandler):
       rpc_paths = ('/RPC2',)

       def do_OPTIONS(self):
           self.send_response(200)
           self.end_headers()

       # Add these headers to all responses
       def end_headers(self):
           self.send_header("Access-Control-Allow-Headers",
                            "Origin, X-Requested-With, Content-Type, Accept")
           self.send_header("Access-Control-Allow-Origin", "*")
           SimpleXMLRPCRequestHandler.end_headers(self)

    voir aussi ceci (doc python) :https://docs.python.org/2/library/simplexmlrpcserver.html#simplexmlrpcserver-example
    et tester pour voir si ça marche !
    permalink -
    - https://stackoverflow.com/questions/3248320/xml-rpc-javascript-unsupported-method-options
    cors python sop xmlrpc
  • CSS Masking - HTML5 Rocks
    permalink -
    - http://www.html5rocks.com/en/tutorials/masking/adobe/
    css svg
  • SVG, le dessin vectoriel pour le web - Alsacreations
    permalink -
    - http://www.alsacreations.com/tuto/lire/1421-svg-initiation-syntaxe-outils.html
    svg
  • SVG Gradients - Linear
    permalink -
    - http://www.w3schools.com/svg/svg_grad_linear.asp
    svg
  • How to create a XMLRPC Server and a XMLRPC Client for PHP Code Example - Runnable
    la doc : http://php.net/manual/fr/ref.xmlrpc.php
    permalink -
    - http://runnable.com/UnEjkT04_CBwAAB4/how-to-create-a-xmlrpc-server-and-a-xmlrpc-client-for-php
    php xmlrpc
  • csss by lea Verou
    Générateur de présentation en HTML/CSS : TOP !
    permalink -
    - https://github.com/LeaVerou/CSSS
    présentation
  • psutil lib for python
    permalink -
    - https://github.com/giampaolo/psutil
    python
  • Arm
    permalink -
    - http://www.overlooksoft.com/getfing4arm
    fing raspberry
  • firewall - How to Unban an IP properly with Fail2Ban - Server Fault
    http://www.commandlinefu.com/commands/view/13016/remove-specific-entries-from-iptables
    permalink -
    - http://serverfault.com/questions/285256/how-to-unban-an-ip-properly-with-fail2ban
    fail2ban iptables
  • Un générateur d'interface graphique pour vos scripts Python « Korben
    permalink -
    - http://korben.info/generateur-dinterface-graphique-vos-scripts-python.html
    python
  • Mesure de température 1-wire DS18B20 avec le Raspberry Pi | Framboise 314, le Raspberry Pi à la sauce française….
    permalink -
    - http://www.framboise314.fr/mesure-de-temperature-1-wire-ds18b20-avec-le-raspberry-pi/
    domotique ds18b20 gpio raspberry
  • Canalc2 : Jonathan Schemoul - PyconFR'13 (26/10/2013)
    pyconfr 2013
    permalink -
    - http://www.canalc2.tv/video.asp?idvideo=12320
    conf python
  • Build Podcast | 041 Vim
    permalink -
    - http://build-podcast.com/vim/
    tuto vim
  • 37 photographies de l’Islande qui vous donneront envie de parcourir ce pays magnifique | Daily Geek Show
    permalink -
    - http://dailygeekshow.com/2014/05/23/islande-decouverte-voyage-photographies/
    islande photo
  • memo-linux.com » Astuce: modifier un fichier système avec VI sans être root
    :w !sudo tee %
    permalink -
    - http://memo-linux.com/astuce-modifier-un-fichier-systeme-avec-vi-sans-etre-root/
    linux memo vim
  • GIMP : Comment enflammer son texte ?
    permalink -
    - http://sosa.forumactif.com/t2053-gimp-comment-enflammer-son-texte
    gimp
  • PickyPaste
    email + 0bin
    permalink -
    - http://www.olissea.com/PP/PP.php
    crypt mail
  • SimpleXMLRPCServer – Implements an XML-RPC server. - Python Module of the Week
    permalink -
    - http://pymotw.com/2/SimpleXMLRPCServer/
    pymotw python xmlrpc
Links per page: 20 50 100
◄Older
page 72 / 170
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.