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 80 / 170
Newer►
  • Référence Arduino français Main/Materiel Uno
    permalink -
    - http://www.mon-club-elec.fr/pmwiki_reference_arduino/pmwiki.php?n=Main.MaterielUno
    arduino
  • Comment le savon lave-t-il ? | Kidi'science
    via sebsauvage
    permalink -
    - http://kidiscience.cafe-sciences.org/articles/comment-le-savon-lave-t-il/
    fun science
  • Root Wiko Cink Peax 2 - Petit Site Malfaisant
    permalink -
    - http://www.petitetremalfaisant.eu/index.php?root-wiko-cink-peax-2.php
    root
  • Thinking Inside The Box With Vanilla JavaScript | Smashing Magazine
    Méthodes natives en javascript :
    insertAdjacentHTML()
    getBoundingClientRect()
    The <table> API

    et encore ... https://developer.mozilla.org/en-US/docs/Web/API
    permalink -
    - http://www.smashingmagazine.com/2013/10/06/inside-the-box-with-vanilla-javascript/
    javascript
  • You Might Not Need jQuery
    permalink -
    - http://youmightnotneedjquery.com/
    javascript
  • Getting Started with the JavaScript Version of the GreenSock Animation Platform (GSAP) « GreenSock
    Faire des animations en javascript :
    - peut-être plus rapide et plus de contrôle qu'en CSS : http://css-tricks.com/myth-busting-css-animations-vs-javascript/
    permalink -
    - http://www.greensock.com/get-started-js/
    animation javascript
  • Un backdoor dans le script c99Shell « Korben
    Le "fameux" script c99 qui permet de mettre en place un shell sur un serveur exécutant php, utilisé d'abord pour laisser une backdoor sur un serveur web piraté a aussi été utilisé à des fins perso... mais il y a possibilité de bypasser l'authentification, so... Il y a des centaines de serveurs qui traînent donc avec une grosse porte ouverte !
    permalink -
    - http://korben.info/c99-php-backdoor.html
    php sécurité
  • G'MIC 1.5.9.3 : Poisson Blending, Seamcarving, OpenMP, et autres joyeusetés ! - LinuxFr.org
    et Hop ajouté à GIMP !
    (sinon dispo en ligne de commande, API,...)

    via sebsauvage : http://sebsauvage.net/links/?LhEWFQ
    permalink -
    - http://linuxfr.org/news/g-mic-1-5-9-3-poisson-blending-seamcarving-openmp-et-autres-joyeusetes-927af284-0801-4d12-b836-3a47ac450a01#8-ascii-art
    image
  • Créer une fenêtre modale avec CSS 3
    Utilisation des pseudo-classes css3 :target et :checked.
    :target modifiera l'url de la page (après l'ancre #)
    inconvénient que n'aura pas :checked mais qui impose une structure plus figée...

    sinon : javascript/jquery
    -> http://sohtanaka.developpez.com/tutoriels/javascript/creez-fenetre-modale-avec-css-et-jquery/
    permalink -
    - http://dmouronval.developpez.com/tutoriels/css/fenetre-modale-css3/
    css
  • Supprimez les shellbags sous Windows pour plus de confidentialité « Korben
    permalink -
    - http://korben.info/shellbags.html
    optimisation viePrivée
  • HTTPS Everywhere Rulesets | Electronic Frontier Foundation
    personnaliser les redirections https avec https everywhere
    permalink -
    - https://www.eff.org/https-everywhere/rulesets
    addon firefox sécurité
  • Rearranging Web Page Items with HTML5 Drag and Drop | Syntaxxx
    drag'n drop list items : no jQuery.

    expliqué pas à pas.

    sinon : http://jqueryui.com/sortable/
    permalink -
    - http://www.syntaxxx.com/rearranging-web-page-items-with-html5-drag-and-drop/
    javascript
  • Replacing jQuery with Vanilla JavaScript | Flippin' Awesome
    Encore un exemple de comment se passer de jQuery : ici en implémentant un bouton qui fait varier la classe d'un élément cible.

    function activeState(trigger) {
     var targetName = trigger.getAttribute('href').replace('#', '');
     var target = document.getElementById(targetName);
     
     if (!target) {
       return;
     }
     
     trigger.classList.toggle('active');
     target.classList.toggle('active');
    }

    //

    var trigger = document.getElementById('trigger');
    trigger.addEventListener('click', function(event) {
     // abort the link's default action.
     event.preventDefault();
     event.stopImmediatePropagation();
     
     activeState(this);
    }, true);
    permalink -
    - http://flippinawesome.org/2014/05/05/replacing-jquery-with-vanilla-javascript/
    javascript
  • YouTube thumbnail
    ▶ The Worlds Greatest - Bonnie Prince Billy - YouTube
    Entendu à la radio... un peu par hasard. Bonnie Prince Billy aka Willa Oldham aka Palace, Palace Music, Palace Brothers,... reprend "the words greatest" de R Kelly tiré du film sur un grand boxer interprété par Will Smith s:-0
    permalink -
    - https://www.youtube.com/watch?v=ugVdiUhlOBk
    music
  • Prime charbon, prime pour absence de prime… les légendes urbaines de la SNCF
    permalink -
    - http://www.lemonde.fr/les-decodeurs/article/2014/06/18/prime-charbon-prime-pour-absence-de-prime-les-legendes-urbaines-de-la-sncf_4439497_4355770.html
    société
  • Envoyer un SMS depuis wget, avec l'opérateur Free - sbgodin.fr
    wget -O- 'https://smsapi.free-mobile.fr/sendmsg?user=USER&pass=PASS&msg=ping'

    via sebsauvage (http://sebsauvage.net/links/?hmKByw)
    détails ici : http://www.universfreebox.com/article/26337/Nouveau-Free-Mobile-lance-un-systeme-de-notification-SMS-pour-vos-appareils-connectes

    A tester ....
    permalink -
    - http://shaarli.sbgodin.fr/?X2lMHQ
    sms
  • Raspberry Pi
    Raspberry + picamera + PIR (Passive Infrared) Sensor !
    permalink -
    - http://www.raspberrypi.org/learning/parent-detector/
    picamera PIR raspberry
  • ModMyPi | Raspberry Pi GPIO Sensing: Motion Detection
    permalink -
    - https://www.modmypi.com/blog/raspberry-pi-gpio-sensing-motion-detection
    PIR
  • Direct Network Connection between Windows PC and Raspberry Pi
    Mettre une Ip fixe sur le port ethernet du pc portable
    installer un serveur DHCP sur le pc portable (http://www.dhcpserver.de/)
    brancher !
    permalink -
    - http://www.instructables.com/id/Direct-Network-Connection-between-Windows-PC-and-R/
    DHCP raspberry
  • Pratiques avancées et méconnues en Python
    générateurs (yield) et co-routines
    +++
    permalink -
    - http://fr.openclassrooms.com/informatique/cours/pratiques-avancees-et-meconnues-en-python
    python
Links per page: 20 50 100
◄Older
page 80 / 170
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.