Tagged In wealthfront engineering :
Don’t block our alleyway! But if you do…
Marty McFly: Doc, we better back up. We don’t have enough road to get up to 88. Dr. Emmett Brown: Roads? Where we’re going, we don’t need roads.
Business up front, party in the back
At Wealthfront the engineers wear many hats.
Fun puzzle from Cryptography Research
We got a package from our friends at Cryptography Research today. It was a puzzle inside a puzzle, worthy of being a significant plot device in a Dan Brown novel. It took us several minutes to open, then the real fun began in cracking the cryptography. Date: Wed, Dec 22, 2010 at 2:08 PMSubject: Re:… Read more
dev2ops Video Q&A: Continuous Deployment requires great testing
Thanks to Damon Edwards for the great questions during our interview at Yahoo! Large Scale Production Engineering Meetup.
If you ever write a varags method…
In some specific cases, methods with a variable argument list might greatly improve the usability of an API. However, it is very easy to overuse or misuse this language feature, leading to cumbersome APIs. Varags methods shine when the programmer knows how many arguments must be passed to a specific invocation of the method when… Read more
Practical Scala/Java interoperability by small examples
If you try to combine Java code with Scala in your application, everything seems to go fine until you bump into big differences between Java collections and Scala collections. A Scala Traversable is not Java Iterable and vice versa; maps are different, etc. So, in practice, you have to do conversion. Fortunately, there are pretty… Read more