Code de gestion des ascenseurs pour le projet elevato.rs d'@oncletom.
Réalisé au cours d'un atelier à Paris Web 2014 par @Nazcange, @Nico3333fr et @nhoizey.
Code de gestion des ascenseurs pour le projet elevato.rs d'@oncletom.
Réalisé au cours d'un atelier à Paris Web 2014 par @Nazcange, @Nico3333fr et @nhoizey.
Run download-nightly.sh
to download the nightly build of Firefox OS for the Geeksphone Keon.
A Node.js script that generates an HTML file from your Firefox open tabs. Useful when Firefox crashes upon restoration.
sessionstore.js
file from your Firefox profilenode ./extractsession.js > session-`date +"%Y%m%d-%H%M"`.html
to generate an HTML file with a list links for every open tabThanks to @clochix for the initial script.
Tentative de découvrir quelle est la meilleure méthode pour masquer du contenu dans Internet Explorer versions 7 et inférieures en utilisant les downlevel-revealed conditional comments
Source : http://msdn.microsoft.com/en-us/library/ms537512.aspx
Following this coderwall protip and its comments, here is my own attempt at providing a simple way to edit a text in the browser.
/* | |
* Takes provided URL passed as argument and make screenshots of this page with several viewport sizes. | |
* These viewport sizes are arbitrary, taken from iPhone & iPad specs, modify the array as needed | |
* | |
* Usage: | |
* $ casperjs screenshots.js http://example.com | |
*/ | |
var casper = require("casper").create(); |
<!-- Live demo : http://bl.ocks.org/2874547 --> | |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title><use> of an <image></title> | |
</head> | |
<body> | |
<svg version="1.1" baseProfile="basic" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="board" viewBox="0 0 320 460" width="100%" height="100%" preserveAspectRatio="xMidYMid meet"> |
<!-- Live demo : http://bl.ocks.org/1213727 --> | |
<html> | |
<head> | |
<title>Un affichage de numéro vert avec Microformat et mise en forme en CSS</title> | |
<link rel="stylesheet" media="all" href="numero_vert.css" type="text/css" /> | |
</head> | |
<body> | |
<span class="vcard numerovert"> | |
<span class="fn">Nom de la société</span> |
#!/usr/bin/env python | |
# | |
# FlickrTouchr - a simple python script to grab all your photos from flickr, | |
# dump into a directory - organised into folders by set - | |
# along with any favourites you have saved. | |
# | |
# You can then sync the photos to an iPod touch. | |
# | |
# Version: 1.1 |