ReactJS - How to create ReactJS components
Introduction In this post, we will talk about basic of how to create components…
June 03, 2018
So, here we are using input variable String[] args without any validation/normalization
Java provides Normalize API. See example below:
String s = java.text.Normalizer.normalize(args[0], java.text.Normalizer.Form.NFKC);
By doing so, you are ensuring that you have normalize the user input, and are not using it directly.
In this case, it suggests you to use canonicalized paths. See example below:
String path = System.getProperty("java.io.tmpdir");
File file = new File(path);
path = file.getCanonicalPath();
Introduction In this post, we will talk about basic of how to create components…
This post is dedicated for cases where we intend to append a variable value in a…
After 2 days, there was my demo. I deployed my nodejs code on lambda function…
I wanted to fetch all image tags from a big html, and wanted to perform some…
Lets implement a command shell by using a command dispatcher. The objective is…
To download this code from git: See: Gyanblog Github
In this post, we will see some of the frequently used concepts/vocabulary in…
System design interview is pretty common these days, specially if you are having…
Introduction You are given an array of integers with size N, and a number K…
Graph Topological Sorting This is a well known problem in graph world…
Problem Statement Given a Binary tree, print out nodes in level order traversal…
Problem Statement Given an array nums of n integers and an integer target, are…