-
Leonard Koren - Wabi-Sabi: for Artists, Designers, Poets & Philosophers.
-
=> Henri Michaux - Poteaux d'angles <3
-
Tractate on Japanese Aesthetics de Donald Richie (http://www.tropiques-japonaises.fr/2008/02/09/le-wabi-sabisme-nest-pas-un-humanisme-comme-lunivers/)
-
V. Papanek - Design For The Real World: Human Ecology and Social Change ? ou un autre ?
-
Bruno Munari - L’Art du design, Pyramyd, 2012.
-
Dieter Rams - As Little Design as Possible
-
A.Camus
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
@CHARSET "ISO-8859-1"; | |
/* | |
Cette feuille de style est la brique de base : | |
Elle est composee : | |
- d'un reset CSS (normalisation cross browser des styles par defaut) | |
- un premier niveau de stylage minimal et générique (couleurs, marges, tailles et fontes) | |
- un ensemble de classes utilitaires destinees a etre reutilisees dans les differents developpements | |
- quelques classes spécifiques aux principaux plugins utilises sur stores.com (que nous vous invitons à supprimer si aucun besoin sur ce sujet) | |
*/ |
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
CYGWIN : | |
======== | |
Lister les fichiers png d'un rep. par date de modif, les cracher dans un fichier texte, avec retour chariot windows (un fichier par ligne) : | |
ls -t -1 *.png | sed 's/$/\r/' > toto.txt | |
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
<!-- | |
These two following tasks are intended to be called via Maven. If you want to call these from Ant directly | |
you will have to manage dependencies (especially for the css_process task): | |
args4j-2.0.9.jar | |
commons-io-1.4.jar | |
commons-lang-2.3.jar | |
commons-math-1.1.jar | |
google-collections-1.0.jar | |
smartsprites-0.2.8.jar | |
--> |
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
javascript:(function(){ | |
var txtAlert=''; | |
txtAlert+='Browser : '+window.navigator.appName+' '+window.navigator.appVersion+'\nUser-Agent : '+window.navigator.userAgent+'\nDocumentMode : '+document.documentMode+'\nCompatMode : '+document.compatMode; | |
//console.log(txtAlert); | |
alert(txtAlert); | |
})() |
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
function eventsShow(selecteur, eventType) { | |
var jElements = jQuery(selecteur); | |
console.groupCollapsed("Gestionnaires d'évènements pour les éléments correspondant à jQuery(\"%s\");",selecteur); | |
//on boucle sur les éléments | |
for (var j = 0; j < jElements.length; j++) { | |
var element = jElements.get(j); |
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
# The following lines were added by compinstall | |
zstyle :compinstall filename '/home/10071495/.zshrc' | |
autoload -Uz compinit | |
compinit | |
# End of lines added by compinstall | |
# prompt extensions | |
autoload -U promptinit && promptinit |
Inventory of solutions to modularize grunt configuration for large project & (legacy) codebases
- https://gist.github.com/Integralist/7463783
- see the oncletom's response below
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
module.exports = function(grunt, env) { | |
var defaults = config = { | |
//Write here your configuration , grunt style, in the standard way | |
//Extract informations from package.json | |
pkg: grunt.file.readJSON('package.json'), | |
//Define a global banner |
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
#!/usr/bin/env node | |
//module.exports = function(){ | |
var http = require("http"); | |
var optimist = require("optimist"); | |
var cheerio = require("cheerio"); | |
var path = require("path"); | |
var uglifyjs = require('uglifyjs'); | |
var uglifycss = require('uglifycss'); | |
var url = require('url'); |
OlderNewer