Skip to content

Instantly share code, notes, and snippets.

View Dexyne's full-sized avatar

Aurélien Léger Dexyne

View GitHub Profile
@Dexyne
Dexyne / .gitconfig
Last active August 28, 2019 09:00
My .gitconfig
[user]
name =
email =
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[alias]
co = checkout
@Dexyne
Dexyne / Create user + database -> assign database to user in PostgreSQL
Created January 16, 2014 01:14
"Post-it" for create user + database and assign database to user in PostgreSQL.
- terminal:
createuser -P user_name
- Answer questions:
enter password for new role:
Enter it again:
Shall the new role be a superuser? (y/n) n
Shall the new role be allowed to create databases? (y/n) n
Shall the new role be allowed to create more new roles? (y/n) n
@Dexyne
Dexyne / My Sublime Text Preferences
Last active December 19, 2015 10:49
My Sublime Text Preferences.
{
"bold_folder_labels": true,
"color_scheme": "Packages/Theme - Flatland/Flatland Monokai.tmTheme",
"detect_slow_plugins": false,
"ensure_newline_at_eof_on_save": true,
"fallback_encoding": "UTF-8",
"flatland_square_tabs": true,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages":
@Dexyne
Dexyne / Haskell on Ubuntu 13.04.md
Last active December 1, 2023 09:39
Install Haskell (haskell-plateform-2013.2.0.0 + GHC 7.6.3) on Ubuntu 13.04.