(Sayem Ahmed) In my previous article I wrote about an input validation design which replaces hard-to-maintain-and-test if-else blocks. However, as some readers pointed out, it has a drawback – if the input data has more than one validation errors, then the user will have to submit the request multip
Tag: JSON / JAVA / XML
Creating Azure WebJob To Access SharePoint Using Typescript And Node.js
(Sumit Kanchan) Today I have brought a post to guide how we can create a web job in Azure to access SharePoint online. We can use different tools to create the web job, but I will use Visual Studio Code to develop it.
Creating Angular2 Application with ASP.NET Core Template Pack in VS 2015
(HHerzl) Let’s create a Web Application with ASP.NET Core Template Pack in VS 2015, this template includes all configurations to work with Angular2 and ASP.NET Core
Java Command-Line Interfaces (Part 27): CLI Parser
(Dustin Marx) In this post, we take a look at a command-line parser for your Java project: cli-parser. While this library has been around for a long while, it’s worth checking out.
Introducing The Terminology Of Angular
(Deeksha Pandit) Before I start introducing the terminology of Angular 2, I would like to say we should never state it as “Angular 2”, it is just Angular. There is a big debate going on in community groups. Angular is the most sought framework for web development in the software development industry
Understanding Dynamic Websites and HTML5 Applications
(Julie C. Meloni) Use client-side scripting and Document Object Model (DOM) to make elements on a web page respond to user interactions. Although they are simple in their construction, these types of interactions are some of the basic JavaScript-based interactions that form the foundation of web app
Beginning ReactJS with TypeScript – Part III. Setting Up Local Workspace from GitHub Repo
(ManishHPatil) This is the third part in the series, which will show how to setup the development environment for ReactJS with Typescript. This part will focus on creating a local workspace by cloning the GitHub public repository – react-typescript, created in the second part of the series.
Using JDK 10’s Local Variable Type Inference with jOOQ
(lukaseder) After the successful release of JDK 9, we can already look forward, and play around with early access releases of JDK 10. The list of JEPs currently targeted for JDK 10 is quite manageable so far.
Java: The Strategy Pattern
(Justin Albano) This deep dive into the classic Strategy pattern covers how it works, example usage, and deciding how and when to use it in your projects.
Disabling Controls During AJAX Calls
(Yogi S) When there is an AJAX call going through, you should disable the control that makes the AJAX call and also the controls whose contents will be updated by the AJAX call. In this tutorial, I will show how to disable the controls during AJAX calls.