Skip to content

Instantly share code, notes, and snippets.

View radkris-git's full-sized avatar
🎯
Focusing

Radhakrishnan Venkataramani radkris-git

🎯
Focusing
  • Facebook Inc
  • Mountain View, CA
View GitHub Profile
@radkris-git
radkris-git / gist:566f66692fb8a20c2f98
Created August 5, 2015 02:35
Phsu installation error log
Build log ( /Users/radvenkataramani/.cabal/logs/Phsu-0.1.0.1.log ):
Configuring Phsu-0.1.0.1...
Building Phsu-0.1.0.1...
Preprocessing executable 'Phsu' for Phsu-0.1.0.1...
src/Search.hs:16:8:
Could not find module ‘Network.URI’
It is a member of the hidden package ‘network-uri-2.6.0.3@netwo_3JAOEpW88h5BN8vFzJEU7V’.
Perhaps you need to add ‘network-uri’ to the build-depends in your .cabal file.
Use -v to see a list of the files searched for.
@radkris-git
radkris-git / gist:89d892e8458686007e39
Created July 21, 2015 19:34
Git flow for new fork mechanism
1. Fork a git repo
2. How to sync master to my fork?
1. git add remote original git@github.com
2. git pull --rebase original master
3. git push origin master
3. git checkout -b <tmp-branch>
1. git push origin tmp-branch
2. Merge Pull request.
3. git pull --rebase original master