Skip to content

Instantly share code, notes, and snippets.

View sayanchowdhury's full-sized avatar

Sayan Chowdhury sayanchowdhury

View GitHub Profile
@hjertnes
hjertnes / doom.txt
Created April 6, 2018 08:28
Doom Emacs Cheatsheet
SPC
SPC: find file
, switch buffer
. browse files
: MX
; EX
< switch buffer
` eval
u universal arg
x pop up scratch
@Irio
Irio / gist:1974023
Created March 4, 2012 17:33
Setup PostgreSQL on Fedora 16
# install server
[youruser@host]$ sudo yum install postgresql-server
# set password
[youruser@host]$ sudo passwd postgres
# create cluster
[youruser@host]$ sudo mkdir -p /usr/local/pgsql/
[youruser@host]$ sudo chown postgres /usr/local/pgsql/
[youruser@host]$ su postgres