Skip to content

Instantly share code, notes, and snippets.

View pixelastic's full-sized avatar

Tim Carry pixelastic

View GitHub Profile
@pixelastic
pixelastic / test gist
Created November 29, 2010 13:34
test
test
@pixelastic
pixelastic / test
Created November 29, 2010 14:40
test
test
@pixelastic
pixelastic / .gitignore
Last active December 22, 2015 15:49
Téléchargement de toutes les conférences Paris Web 2012 au format audio. A écouter sans modération.
tmp
*part
*mp4
*m4a
function() {
var test="ok";
// Should be correctly highlighted as a string
var test2="<div>{{value}}</div>";
// Should be foldable
function inner() {
console.log("test");
};
app.controller('controllerSearchClientCreateCataloguePromotions', function ($scope, $http) {
var defaultCode = {code:''};
$scope.defaultPromoCode = defaultCode;
// Default values
$scope.promoCodes = [{code:''}, {code:''}, {code:''}];
});
@pixelastic
pixelastic / keybase.md
Created June 26, 2014 14:27
keybase.md

Keybase proof

I hereby claim:

  • I am pixelastic on github.
  • I am pixelastic (https://keybase.io/pixelastic) on keybase.
  • I have a public key whose fingerprint is 8AC4 79D9 0D09 88CC 7425 6DDD 5816 3955 1AF2 CB92

To claim this, I am signing this object:

Sed - An Introduction and Tutorial by Bruce Barnett

How to use sed, a special editor for modifying files automatically. If you want to write a program to make changes in a file, sed is the tool to use.

There are a few programs that are the real workhorse in the UNIX toolbox. These programs are simple to use for simple applications, yet have a rich set of commands for performing complex actions. Don't let the complex potential of

Rédaction

Table of Contents

    1. Intro
    1. Why do an API in Node?
    1. Hapi et Express en principe
    • 3.1. Express
      • 3.1.1. Philosophie
  • 3.1.2. Historique
@pixelastic
pixelastic / 0_reuse_code.js
Last active August 29, 2015 14:25
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@pixelastic
pixelastic / javascript_resources.md
Last active August 29, 2015 14:25 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage