Using lazy evaluation functions in varargs - by Jonhnny Weslley What is wrong is the following method? def someMethod(funcs: = Option[String]*) = { ... } Read the article
Bash script if statements - by Jonhnny Weslley In Bash script, what is the difference between the following snippets? 1) Using single brackets: if [ "$1" = VALUE ] ; then # code fi 2) Using double brackets: if [[ "$1" = VALUE ]] ; then # code fi Read the article