- echo
- cat
- date
- ls
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var casper = require("casper").create({ | |
pageSettings: { | |
loadImages: false, | |
loadPlugins: false | |
} | |
}); | |
var checked = []; | |
var currentLink = 0; | |
var fs = require('fs'); | |
var upTo = ~~casper.cli.get('max-depth') || 100; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* An URI datatype. Based upon examples in RFC3986. | |
* | |
* TODO %-escaping | |
* TODO split apart authority | |
* TODO split apart query_string (on demand, anyway) | |
* | |
* @(#) $Id$ | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Optionel s'il s'agit d'un *.epub déjà zipé avec un mac | |
unzip YOURePubNAME.epub | |
# Aller dans le dossier epub | |
# Première étape: | |
zip -X YOURePubNAME.epub mimetype | |
# Ajouter à l'archive le dossier META-INF en ignorant les fichiers .DS_Store mac. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// for an image with all the stacked pictograms | |
$HeaderSelector: "name", | |
"other-name", | |
"other-name", | |
"other-name", | |
"other-name", | |
"other-name"; | |
// Loop for sprite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var tableauMenu = []; | |
Y.all('.humania-main-menu-section').each(function(node){ | |
var unMenu = new Y.Toggler( | |
{ | |
animated: true, | |
container: '.humania-main-menu', | |
header: node.one('.humania-main-menu-header'), | |
content: node.one('.humania-main-menu-list'), | |
expanded: false, | |
transition: { |