Shaare your links…
408 links
Liens · Devenet Home Login RSS feed Tags cloud
◄ older
4 of 5
newer ►
83 results for tags ressource x
  • Mettre à jour son Raspberry Pi (raspbian et rpi-update) - Leeroy Brun - Leeroy Brun → http://www.leeroy.me/mettre-a-jour-son-raspberry-pi-raspbian/
    Un apt-get install rpi-update pour installer le paquet si pas encore présent, puis un rpi-update suivi d'un redémarrage et le tour est joué, le firmware est à jour.
    Fri May 2 12:44:14 2014 – #permalink
    mémo rbpi ressource shell
  • Organized Gmail Inbox → http://jgthms.com/organized-gmail-inbox.html
    Exemples de labels pour bien organiser sa boite e-mail.

    "I set up a simple rule to follow: Every incoming mail must hold one of the predefined labels."
    Tue Apr 29 14:33:14 2014 – #permalink
    astuce ressource
  • Tout comprendre sur votre fiche de paie → http://www.lemonde.fr/les-decodeurs/article/2014/04/29/tout-comprendre-sur-votre-fiche-de-paie_4408809_4355770.html
    Comprendre les différents intitulés de sa fiche de paye.
    Tue Apr 29 14:23:11 2014 – #permalink
    ressource work
  • Colo syntaxique du blog - Yosko.net → http://www.yosko.net/article15/colo-syntaxique-du-blog
    Fichiers templates de coloration syntaxiques, pour notamment Sublime Text : https://github.com/daylerees/colour-schemes/
    Wed Apr 23 14:01:13 2014 – #permalink
    développement ressource
  • PHP - Best Practises → http://thisinterestsme.com/php-best-practises/
    Petite liste des bonnes pratiques PHP à respecter.
    Bon, pas de grosses nouveautés (*never trust user input* oh really?).

    function calculateAge($dateOfBirth){
       $birthday = new DateTime($dateOfBirth);
       $interval = $birthday->diff(new DateTime);
       return $interval->y;
    }
    Fri Apr 11 13:33:32 2014 – #permalink
    astuce php ressource
  • Table des caractères Unicode (2000-2FFF) — Wikipédia → http://fr.wikipedia.org/wiki/Table_des_caract%C3%A8res_Unicode_(2000-2FFF)
    Tables des caractères (spéciaux) HTML pour afficher sur une page web.

    Edit : il y a aussi http://character-code.com/ !
    Mon Apr 7 23:04:20 2014 – #permalink
    html ressource
  • 7 lines JavaScript library for calling asynchronous functions → http://krasimirtsonev.com/blog/article/7-lines-JavaScript-library-for-calling-asynchronous-functions
    M'ouais sinon y'a http://stackoverflow.com/questions/899102/how-do-i-store-javascript-functions-in-a-queue-for-them-to-be-executed-eventuall

    // Function wrapping code.
    // fn - reference to function.
    // context - what you want "this" to be.
    // params - array of parameters to pass to function.
    var wrapFunction = function(fn, context, params) {
       return function() {
           fn.apply(context, params);
       };
    }


    // Create my function to be wrapped
    var sayStuff = function(str) {
       alert(str);
    }

    // Wrap the function.  Make sure that the params are an array.
    var fun1 = wrapFunction(sayStuff, this, ["Hello, world!"]);
    var fun2 = wrapFunction(sayStuff, this, ["Goodbye, cruel world!"]);

    // Create an array and append your functions to them
    var funqueue = [];
    funqueue.push(fun1);
    funqueue.push(fun2);

    // Remove and execute all items in the array
    while (funqueue.length > 0) {
       (funqueue.shift())();  
    }
    Mon Apr 7 22:29:54 2014 – #permalink
    javascript ressource
  • I can have your IP → http://icanhazip.com/
    Petit site web qui renvoie l'IP du demandeur, et uniquement l'IP sans fioriture !
    Tue Mar 25 16:51:51 2014 – #permalink
    astuce internet ip ressource
  • OS X Mavericks: Pas à pas pour faire une installation propre (Clean Install) ou une mise à jour et tout ce qu'il faut savoir pour passer à Mavericks • Actualité Apple, Mac, iPhone, iPad, App Store avec Ohmymac → http://www.ohmymac.fr/os-x-mavericks-pas-a-pas-pour-faire-une-installation-propre-clean-install-ou-une-mise-a-jour-et-tout-ce-quil-faut-savoir-pour-passer-a-mavericks/
    Comment faire une installation propre de Mavericks : pas juste une upgrade, création d'un DVD d'installation pour “formatage”.
    Mon Nov 25 14:18:40 2013 – #permalink
    apple mac mémo ressource
  • Scarab : dictionnaire de Scrabble → http://www.kurokatta.org/hacks/scarab-fr
    Un petit site web pour trouver des anagrammes et autres joyeusetés :)
    Fri Oct 4 17:47:43 2013 – #permalink
    astuce ressource scrabble
  • Keypress: A Javascript library for capturing input → http://dmauro.github.io/Keypress/
    Une petite librairie JavaScript (apparemment sans dépendance apparament) pour écouter les touches tapées sur le clavier d'un internaute dans une page Web. Ça a l'air intéressant et très pratique, et plus c'est sur github :)
    Tue Oct 1 17:44:27 2013 – #permalink
    développement javascript ressource
  • yourTinyTodo | Simple way to manage your todo list in AJAX style → http://www.yourtinytodo.net/
    Petit utilitaire bien pratique pour gérer différentes tâches à faire.
    Sun Sep 22 02:41:53 2013 – #permalink
    gestion php ressource
  • How to make a DIY home alarm system with a raspberry pi and a webcam → https://medium.com/p/2d5a2d61da3d
    Tuto qui a l'air complet pour l'installation d'une webcam et du logiciel motion pour détecter les mouvements dans une pièce et faire de la vidéo surveillance.
    Thu Sep 19 22:15:47 2013 – #permalink
    rbpi ressource unix webcam
  • Create a icalendar/vcalendar event file online → http://www.pratie.com/lab/icalendar/
    Web application pour générer en ligne très facilement un évènement iCalendar
    Wed Sep 18 15:43:46 2013 – #permalink
    astuce event ressource web
  • Syncing a fork → https://help.github.com/articles/syncing-a-fork
    Comment mettre à jour la branche upstream d'un fork :
    1. Vérifier que les branches d'origine sont bien présentes : git remote -v
    2. Sinon on les ajoute : git remote add upstream https://github.com/otheruser/repo.git
    3. On met à jour les branches d'origine : git fetch upstream
    4. On sélectionne la branche locale : git checkout master
    5. On peut merger : git merge upstream/master
    Sun Sep 8 19:38:20 2013 – #permalink
    développement git mémo ressource
  • Linux: Kill multiple processes with one single command → http://www.oracleflash.com/20/How-to-kill-all-processes-with-one-command-in-Linux.html
    Comment supprimer tous les processus ayant un nom de commande commun :
    kill -9 `ps -ef | grep NOM_COMMANDE | grep -v grep | awk '{print $2}'`

    Note : nettoyer/purger les fichiers logs
    1. les afficher par taille : du /var/logs -akhx  | sort -nr
    2. pruger les plus gros : cat /dev/null > /var/logs/kernel.log
    Sun Sep 8 14:20:12 2013 – #permalink
    astuce rbpi ressource shell unix
  • Apt : gestion facile des paquets sous Debian → http://grawok.wordpress.com/2012/02/12/apt-gestion-facile-des-paquets-sous-debian/
    Rappel des principales fonctions pour gérer les paquets sous debian, tels que apt-get update, etc
    Sat Sep 7 23:21:21 2013 – #permalink
    astuce mémo rbpi ressource unix
  • Unix : Le Korn Shell → http://www.shellunix.com/ksh.html
    Mémo de quelques syntaxes du Shell
    Sat Sep 7 17:35:02 2013 – #permalink
    développement mémo ressource shell unix
  • Comment transformer votre Raspberry Pi en serveur webcam ? → http://www.epingle.info/?p=2682
    Liste de quelques utilitaires pour utiliser sa webcam en mode capture d'image ou vidéo.

    Autres articles intéressants :
    - Guide pratique des webcams http://www.tldp.org/pub/Linux/docs/HOWTO/translations/fr/html-1page/Webcam-HOWTO.html#framegrabbers
    - Enregistrer un flux vidéo avec une webcam http://coagul.org/drupal/publication/enregistrer-flux-vid%C3%A9o-webcam

    Ajout du 8/4/2014 :
    - Time-lapse Setup Using a USB webcam : http://www.raspberrypi.org/learning/webcam-timelapse-setup/
    - Using a standard USB webcam : https://github.com/raspberrypi/documentation/blob/master/usage/webcams.md
    Thu Sep 5 00:44:54 2013 – #permalink
    rbpi ressource webcam
  • Gestion sémantique de version → http://semver.org/lang/fr/
    Comment gérer ses numéros de version.
    Tue Sep 3 18:14:05 2013 – #permalink
    développement git ressource
◄ older
4 of 5
newer ►
Shaarli by sebsauvage
Shaarli-Theme by Nicolas based on idleman theme