Skip to content

Instantly share code, notes, and snippets.

View charukiewicz's full-sized avatar
Probably waiting for something to compile

Christian Charukiewicz charukiewicz

Probably waiting for something to compile
View GitHub Profile

Keybase proof

I hereby claim:

  • I am charukiewicz on github.
  • I am charukiewicz (https://keybase.io/charukiewicz) on keybase.
  • I have a public key ASAMwlzJ87N3JzBcyWwQZHjemTHigiNEZ0OdbcgVC00UHQo

To claim this, I am signing this object:

How to install latest GHC 7.10.1 + cabal 1.22.3.0 from source on ubuntu

for your convinience these instuction is available as:
gist
git repo

ghc

ubuntu prerequisites

Keybase proof

I hereby claim:

  • I am charukiewicz on github.
  • I am charukiewicz (https://keybase.io/charukiewicz) on keybase.
  • I have a public key whose fingerprint is 3DAD E129 26DE 1040 91BB 9F88 1732 F7D6 0F1C 273C

To claim this, I am signing this object:

@charukiewicz
charukiewicz / reverse.py
Last active August 29, 2015 14:07
Reverse list
def reverse(input):
n = len(input)
reversed = []
for i in range(1,n+1):
reversed.append(input[n-i])
return reversed