(Alex Theedom) The first article in this series presented a high-level introduction to basic features and components of the new Java EE Security API (JSR 375), including the new IdentityStore interface.
Tag: JSON / JAVA / XML
How many lines of code did you write to sort a collection of objects before Java 8 ?
(Semika Kaluge) How many lines of code did you write to sort a collection of objects before Java 8 ? How many, you will need with Java 8 ?
Learn About Components In Angular
(Manoj Kalla) In this article, you will learn in detail about components of Angular.
Design Patterns Explained – Service Locator Pattern with Code Examples
(Thorben Janssen) Want to learn more about using the Service Locator pattern and Dependency Injection patterns in Jakarta EE/ Java EE? Check this out!
Efficiently Dockerize Platform-Agnostic apps with Node.js
(Afzaal Ahmad Zeeshan) In this article, I will show you how to create the Docker images using a Node.js web application that are not dependent on a platform or environment, and can be deployed to other platforms like OpenShift, using examples on Azure platform.
Customizing Node.js Deployments for Azure App Services
(K. Scott Allen) In my Developing with Node.js on Azure course I show how to setup a Git repository in an Azure App Service.
How To Use ngFor Directive In Angular
(Manoj Kalla) ngFor is a directive that is used for iteration on the collection of data. ngFor has inbuilt variables which help to detect Index, First, Last anFirst, Even items at runtime.
Node.js async await vs promise vs callback
(Biswal Tanmaya) Normally, Node.js invokes functions asynchronously. Node.js async await, promise and callback come into the picture when you want to execute one function after completion of another function execution.
How To Build Personal Web API Server Using Raspberry PI And Node.js
(Jeevanatham Subburaj) I have various streaming boxes (Apple TV, Roku, Fire TV, Nexus Player) because I prefer to watch video tutorials on TV rather than watching on my laptop. However, we don’t have apps for all the sites that provide video tutorials.
JDK 9/10/11: Side Effects from += on Java String
(Dustin Marx) The question “Why does `array[i++%n] += i+” “` give different results in Java 8 and Java 10?” was posted earlier this week on StackOverflow.com. It points to a bug in the Java compiler that is present in JDK9 and later, but is not present in JDK8.