Skip to content

Instantly share code, notes, and snippets.

View aubinlrx's full-sized avatar

Aubin LORIEUX aubinlrx

View GitHub Profile
@aubinlrx
aubinlrx / ..install.sh
Created January 14, 2016 19:36 — forked from NeQuissimus/..install.sh
ArchLinux on MacBook Pro 5,5
# 1. Install from NetInst CD, via Ethernet, minimal set of packages, use syslinux boot loader!
# 2. Initialize Pacman, hit random keys during init
pacman-key --init
pacman-key --populate archlinux
# 3. Install X and Awesome WM
pacman -Sy xorg-server xorg-xinit xorg-utils xorg-server-utils xterm awesome xf86-video-vesa
# 4. Install nvidia drivers
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
@aubinlrx
aubinlrx / install.md
Created July 16, 2015 15:22
Ubuntu Server Installation

Installatin d'un serveur Ubuntu

Ce document vous guide durant l'installation d'un serveur web PHP et Node.JS sur l'OS Ubuntu 14.04.

Dependencies:

  • Apache2 >= 2.4.7
  • PHP5-Cli >= 5.5.9
  • PHP5-FPM >= 5.5.9
  • Mysql >= 5.5.43
#!/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"
@aubinlrx
aubinlrx / 01-readme.md
Last active August 29, 2015 14:16
Brunch

Brunch

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

Directories organization

project
|-- application
|-- assets
@aubinlrx
aubinlrx / 01-Packages.md
Last active August 18, 2019 02:39
Sublime Text Packages
@aubinlrx
aubinlrx / modules.md
Last active August 29, 2015 14:15
Node modules
@aubinlrx
aubinlrx / animation.md
Last active August 29, 2015 14:15
Bookmark
@aubinlrx
aubinlrx / facade.js
Last active November 16, 2015 01:01
Javascript Design Patterns
// Implementations
var facade = (function() {
var _private = {
run: function( speed ) {
console.log('running at speed ' + speed);
},
jump: function( ) {
console.log("I'm jumping !")
}
# Throttled Input event
#
#= provides throttled:input
#
#= require jquery
#
# Delays firing `input` event until user is done typing.
#
# ### Events
#