This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Author: vhanla | |
#Force coloring of git and npm commands | |
$env:TERM = 'cygwin' | |
$env:TERM = 'FRSX' | |
$global:foregroundColor = 'white' | |
$time = Get-Date | |
$psVersion= $host.Version.Major | |
$curUser= (Get-ChildItem Env:\USERNAME).Value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am sareyes on github. | |
* I am areyes_add (https://keybase.io/areyes_add) on keybase. | |
* I have a public key ASA--fdHWVuBovJ-obFrDAvTiE9OnTCdd0i7MtXiuAKJ5wo | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object Main { | |
val l1 = List(1, 8, 2, 15, 6, 7, 8, 12, 12) | |
val l2 = List(1, 8, 2, 15, 6, 7, 8, 12) | |
val l3 = List(1, 8, 2, 15, 6, 7, 8, 12, 12, 12) | |
def evenAndGTFive(i: Int) = i > 5 && i % 2 == 0 | |
def magic(l: List[Int]) = { | |
println( | |
s""" |