Ce document a pour utilité de recenser différentes ressources sur l'animation.
This file contains hidden or 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
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; } | |
| body > *:first-child { |
This file contains hidden or 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
| # Throttled Input event | |
| # | |
| #= provides throttled:input | |
| # | |
| #= require jquery | |
| # | |
| # Delays firing `input` event until user is done typing. | |
| # | |
| # ### Events | |
| # |
This file contains hidden or 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
| // Implementations | |
| var facade = (function() { | |
| var _private = { | |
| run: function( speed ) { | |
| console.log('running at speed ' + speed); | |
| }, | |
| jump: function( ) { | |
| console.log("I'm jumping !") | |
| } |
This document intend to list nice modules for Node.JS
This gist intend to explain my brunch workflow. Brunch is a build tool like Grunt or Gulp but faster and with no large script or config file. It will, i hope, soon be part of my little node framework : darjeeling #WIP
project
|-- application
|-- assets
This file contains hidden or 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
| #!/bin/sh | |
| if [ $# != 2 ]; then | |
| echo "\nchris k's git update automater sh script. Edit to put a bunch of \`git add blah'" | |
| echo "lines in the body then evoke with the branch name and commit description\n" | |
| echo "Usage: $0 <branch_name> <\"Description of update\">\n" | |
| echo " branch_name: the name of the git branch to be created" | |
| echo " Description: Text for: git commit -m \"Description of update\"" | |
| echo "" | |
| echo "Example:" | |
| BRANCH="core_override" |
This file contains hidden or 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 Dispatcher = require('the-dispatcher'), | |
| Immutable = require('immutable'), | |
| NotificationConstants = require('../constants/notification_constants'), | |
| UserConstants = require('../constants/user_constants'), | |
| UploadConstants = require('../constants/upload_constants'), | |
| StylesheetConstants = require('../constants/stylesheet_constants'), | |
| makeStore = require('makestore'); | |
| /** | |
| * The Notification Store does nothing but store recent actions |
OlderNewer