2016.04.21 / Technology research
Ian Harris
KNOWORTH
只有想不到、没有做不到
2025-09-13 / industry
As a big fan of Test Driven Design and Development, I believe creating good tests is one of the single most important things we can do as Java Developers. We write tests for a number of reasons: To shape the design of our system. We know what the input and output should be, but what objects do we need to create to do this? What shape should the code take? Writing tests allows us to understand what our code should be created. To ensure initial and ongoing correctness. It is important our application behaves as expected and is consistently accurate. Tests should do their best to ensure this is t[…]
by Sam Atkinson
2025-09-13 / Industry news
Netflix has open sourced Falcor, a JavaScript library offering a model and asynchronous mechanism for fetching JSON data from multiple sources. Netflix is using Falcor to populate the UI of their web application with JSON data. All the back-end data coming from a memory cache or multiple databases is modeled through a single virtual JSON object. It is called virtual because from the clients perspective the data seems to be in memory, although it can actually reside on local or remote databases. The data is made available through a JSON graph, using the DataSource interface having the following […]
by Abel Avram
2025-09-13 / Technology research
Today were happy to announce the release of TypeScript 1.5. This release took an alpha, a beta, and your help to get here. Its a big one, so lets get started! TypeScript 1.5 is part of the newly released Visual Studio 2015. You can also get a separate download for Visual Studio 2013, npm, and straight from GitHub. ES6 support TypeScript 1.5 - closing the gap on Kangax ES6 support TypeScript 1.5 adds a number of new ES6 features including modules, destructuring, spread, for..of, symbols, computed properties, let/const, and tagged string templates. There is quite a bit of information availabl[…]
by Jonathan Turner