Category: Code
VIDEO: Coding the FrostWire search filters UI
Get in the zone with me for a good 15 minutes, maybe you’ll catch a few eclipse tricks and you’ll…
#SCALA #NOTES Difference between list.foreach() and list.map()
[scala]val l = List(1,2,3,4,5) val lAfterForEach = l.foreach(x => x * 10) val lAfterMap = l.map(x => x * 10)…
My Git Cheat-sheet
I don’t know if it’s the crazy syntax, but for the life of me, I always need to come back…