Java 8 takeWhile implementation May 29, 2017 New in Java 8 is the Streams API, which processes data in a declarative way (https://www.oracle.com/technetwork/articles/java/ma14-java-se-8-streams-2177646.html). The core concept is that collections store data and streams manipulate data. The Streams...
Seed Database from Excel in Rails May 29, 2017 When working on projects I like to create sample data in Excel and import that data into my database. I prefer this to the default rake db:seed options. Loading from...
API Endpoint Sub-domain and Versioning May 29, 2017 Utilizing a sub-domain for your API is incredibly useful, it allows for utilization of the same domain for a landing page or other web features. For commercial websites you could...