(K. Scott Allen) ASP.NET Core might not use a complicated hierarchy of XML configuration files anymore, but if you host under IIS, then IIS and web.config are still the best of friends.
Tag: JSON / JAVA / XML
Deserializing JSON to Object Without Creating Custom Class
(Kanivalan Raju) Usually, we create custom classes to store the deserialized data from json. These custom classes were no more required if we use dynamic type which is introduced in C# 4.0.
The JVM Architecture Explained
(Jackson Joseraj) Every Java developer knows that byte code will be executed by JRE (Java Runtime Environment). But many doesn’t know the fact that JRE is the implementation of Java Virtual Machine (JVM), which analyses the byte code, interprets the code, and executes it.
5 great Java performance optimization tricks
(Dr. Michael J. Garbade) Optimizing your Java code requires an understanding of how the different elements in Java interact, and how it interacts with the operating system that is it running on. Use these five tips and resources to start learning how to analyze and optimize your code.
The Troubles with JavaScript Arrow Functions
(K. Scott Allen) Over the summer I gave a talk titled “The New Dragons of JavaScript”. The idea was to provide, like the cartographers of the Old World, a map of where the dragons and sea serpents live in the new JavaScript feature landscape.
JavaScript: Attach Generic Event Handler
(Michael Griffiths) In this article you will learn about Attaching Generic Event Handler in JavaScript.
Single Page Apps with jQuery Routing
(Arkaprava Majumder) Single page apps are becoming the hot cake in the web industry, Everyone wants to build SPA or Single page apps. In this article, we will do a quick rundown SPA using jQuery and without using any MV* frameworks like React, Angular, Vue etc.
Hierarchy of categories and classifying Wikipedia articles using XML dump
(Ilia Reznik and Vladimir Shatalov) A hierarchical object is built from relationships between categories and their parents. It is used in a classifier, detecting if an article belongs to possibly far parent category.
Understanding Concurrency
(G. Blake Meike) In this sample chapter from Android Concurrency, author G. Blake Meike explains how concurrent programs are used in software and hardware, introduces threads for executing sequential instructions in concurrent orders, and discusses the Java memory model used to connect the work of a
Convert Generic List Into XML In ASP.NET MVC
(Vithal Wadje) In this article we will learn how to convert generic list which is created from model class Into XML In ASP.NET MVC