Skip to content

Instantly share code, notes, and snippets.

View igl's full-sized avatar
🐬
I like Dolphins

Richard CMK igl

🐬
I like Dolphins
View GitHub Profile
@igl
igl / Keybase.md
Last active October 5, 2017 06:09

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

# Auto detect text files and perform LF normalization
* text eol=lf
# Denote all files that are truly binary and should not be modified.
# images
*.psd binary
*.psb binary
*.ai binary
*.png binary
*.jpg binary
@igl
igl / ls.ls
Created January 13, 2016 17:13
livescript in a nutshell
# declarative code
function add1 n => n + 1
function mul2 n => n * 2
# pipes
alert(
1
|> add1
|> mul2
)