Skip to content

Instantly share code, notes, and snippets.

@itsprdp
itsprdp / tv_series.md
Last active September 20, 2017 02:40
TV Series I have watched till date

Completed

24
Band of Brothers
Breaking Bad
Dexter
Golaith
Friends
HIMYM

@itsprdp
itsprdp / setup
Last active November 10, 2015 10:00
Create postgres superuser with no password for login
####################################################
# WARNING: Don't use this on production environments
####################################################
# Login to psql terminal with postgres user
psql -U postgres
DROP ROLE root; # Run this if role root already exists
CREATE ROLE root WITH SUPERUSER LOGIN PASSWORD NULL;
createdb root;