(Raphael Mun) Here we look at: Setting up TensorFlow.js, creating training data, defining the neural network model, and training the AI.
Tag: JSON / JAVA / XML
Jackson, JSON and the Proper Handling of Unknown Fields in APIs
(Gilvan Filho) How to proper deserialize json to java objects without facing UnrecognizedPropertyException when getting unkown fields or properties when consuming rest API.
Let’s Develop an Angular Application – Angular Forms Introduction
(Shervin Cyril) After reading this article, we will have an overall idea of Angular forms.
JavaScript in SVGs
(David Walsh) SVGs are such an amazing tool for creating custom fonts, animations, size-reduced graphics, and more. They’re part HTML, part image, and all awesome.
Wheel of Fortune in Java
(Marijan Nikic) A class that draws a fully animated rotatable wheel with sections containing strings. The wheel once spun, rotates for a certain period and stops at a random point, which gives the selected string.
Packages and static imports in Java
(Jeff Friesen) In my previous Java 101 tutorial, you learned how to better organize your code by declaring reference types (also known as classes and interfaces) as members of other reference types and blocks.
How To Highlight Selected Row In ngFor In Angular 9
(Sanwar Ranwa) In this article, we will learn how to highlight a selected row in ngFor in Angular.
Exploring Proxy to Achieve DOM Intellisense with TypeScript for Element Binding, Two Way Data Binding, Events, and More
(Marc Clifton) I have found it a useful exploration of how to leverage the Proxy type to bind class properties to HTML elements, achieve two way binding, subscribe to UI events, and so forth, all using actual “edit-time” types for type safety and Intellisense support – as in, eliminate literal strin
How To: ‘Private’ In JavaScript (ES6) Classes
(Sean Franklin) While using JavaScript, you might be dearly missing our friend “private” from statically-typed languages like C#, C++, and Java. Using a little finesse, we can actually achieve true encapsulation using local variables in vanilla JavaScript (ES6) classes.
Build Reactive REST APIs with Spring WebFlux – Part2
(Siva Janapati) In continuation of the last post, in this article, we will see the reactive streams specification and one of its implementation called Project Reactor.