(David Walsh) It’s been two years since I was heavily involved with WebVR at Mozilla but, despite not contributing every day, I can see VR making leaps and bounds, from Firefox making an increased effort to Chrome pushing VR and Oculus and HTC (Vive) improving their offerings.
Tag: JSON / JAVA / XML
Java Challengers #2: String comparisons
(Rafael Chinelato Del Nero) In Java, the String class encapsulates an array of char. Put simply, String is an array of characters used to compose words, sentences, or any other data you want.
Get to Know Custom De/Serializers: JSON Binding Overview Series
(Alex Theedom) The most advanced way to customize JSON Binding is with custom serializers and deserializers.
Java & Struct/Value Type Benefits & How to Obtain Them
(Member 13797506) If you are familiar with structs (value types), you may have wondererd why Java does not support them yet. While objects in Java are great for common usage, in those cases where performance and memory really matters, structs would be ideal.
New Methods on Java Strings With JDK 11
(Dustin Marx) JDK 11 will probably be bringing a few new methods to the String class! Most of them focus on redefining white space for a more consistent approach.
Create Components In Angular 5
(Rupesh Kahane) We have already seen how to create your first Angular application in my previous article, i.e., Getting started with Angular 5. Now, in this article, we will learn what a component is and how to create components.
Vertically Centering with Flexbox
(David Walsh) Vertically centering sibling child contents is a task we’ve long needed on the web but has always seemed way more difficult than it should be.
AngularJS and REST API: Part 3
(charles922) In AngularJS and REST API, Part 2 I created a database table of airports and demonstrated the AngularJS md-autocomplete directive which displays a drop-down of all matches to a query of airport names.
Single Page Application Using ASP.NET Core – Angular
(Shashangka Shekhar) In this post, we are going to create a Single Page Application (SPA) with AngularJS and ASP.Net Core. We will use Angular-UI-Router for our application routing instead of MVC routing.
Why Do We Need 4 Classes for Atomic Updates in Java?
(Thomas Krieger) Java has made atomic updates a bit confusing. Let’s run through the four classes up for consideration and cover their ideal use cases for clarity.