Skip to content

Instantly share code, notes, and snippets.

View alepee's full-sized avatar

Antoine Lépée alepee

View GitHub Profile
// Node.js CheatSheet.
// Download the Node.js source code or a pre-built installer for your platform, and start developing today.
// Download: http://nodejs.org/download/
// More: http://nodejs.org/api/all.html
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html
@alepee
alepee / langformat.yml
Created July 18, 2014 15:19
format.yml
fr:
activemodel:
errors:
format: '%{attribute} %{message}'
messages: &id001
accepted: doit être accepté(e)
blank: doit être rempli(e)
confirmation: ne concorde pas avec la confirmation
empty: doit être rempli(e)
@alepee
alepee / sublimetext-preference.sublime-settings
Last active August 29, 2015 14:00
SublimeText preferences
{
"auto_complete": true,
"auto_complete_commit_on_tab": true,
"auto_complete_delay": 50,
"auto_complete_selector": "source - comment",
"auto_complete_size_limit": 4194304,
"auto_complete_triggers":
[
{
"characters": "<",
@alepee
alepee / sublimetext-keyboard-shortcuts.sublime-keymap
Last active November 9, 2022 22:17
SublimeText shortcuts for Mac French keyboard (azerty)
[
// Square brackets aren't that usable in azerty.
// Replaces [ with ù and ] with $, closest usable combination to the American qwerty
{ "keys": ["super+shift+ù"], "command": "prev_view" },
{ "keys": ["super+shift+$"], "command": "next_view" },
{ "keys": ["super+ù"], "command": "unindent" },
{ "keys": ["super+$"], "command": "indent" },
{ "keys": ["super+alt+ù"], "command": "fold" },