Skip to content

Instantly share code, notes, and snippets.

@upepo
Last active August 29, 2015 14:07
Show Gist options
  • Save upepo/00cc3e702e5808342329 to your computer and use it in GitHub Desktop.
Save upepo/00cc3e702e5808342329 to your computer and use it in GitHub Desktop.
전시

Terms

Youtube

bash

find . -name .svn -exec rm -rf {} \;
Before running a command like that, I often like to run this first:

find . -name .svn -exec ls {} \;
#!/bin/sh 
for d in $(seq -f "%02g" 1 10 )
  do
    echo $d
  done

scala

scala 
- First-class function
- closure


- trait 
http://stackoverflow.com/questions/1991042/scala-traits-vs-abstract-classes
http://stackoverflow.com/questions/2005681/difference-between-abstract-class-and-trait

http://www.artima.com/pins1ed/traits.html#12.7

- method vs function
http://stackoverflow.com/questions/2529184/difference-between-method-and-function-in-scala
http://stackoverflow.com/questions/4839537/functions-vs-methods-in-scala
http://jim-mcbeath.blogspot.kr/2009/05/scala-functions-vs-methods.html

https://groups.google.com/forum/#!topic/scala-korea/dfkcfM5yM9M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment