How to Install Python from command line and Docker on Windows
Introduction We will see how we can install Python 3.7 on Windows without UI. i…
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 We will see how we can install Python 3.7 on Windows without UI. i…
Introduction You have a view with 4-5 fields to display. Suppose, there are two…
Introduction Drupal is an awesome CMS. Drupal content type form, allows you to…
I have been using drupal 7 from a long time, and setting up a dev environment…
The problem comes while using FTPS. When developer uses login method of this…
Introduction Javascript is not a strict type language. We can use a variable to…
Introduction This post has the complete code to send email through smtp server…
Introduction In a normal email sending code from python, I’m getting following…
Introduction In one of my app, I was using to talk to . I have used some event…
Introduction So you have a Django project, and want to run it using docker image…
Introduction It is very important to introduce few process so that your code and…
Introduction In this post, we will see a sample Jenkin Pipeline Groovy script…