TIL: curl has a config file?

I was last week days old when I discovered that curl can use configuration files.So for now I have created a basic one. Placed in a default place for consumption on all uses. $XDG_CONFIG_HOME/.curlrc...
0 Read More

Personal Dev Portfolio

Personal Dev Portfolio
Face it! Every one of us has started a portfolio or a side project and setup everything just to not touch it for the next couple of months.And then one day out of the blue, you remember that you had s...
0 Read More

HashMap in java

Java HashMap Example import java.util.*; public class HashMapExample1{ public static void main(String args[]){ HashMap map=new HashMap();//Creating HashMap. map.put(1,"Mango"); //Put elements in Ma...
0 Read More

Database Normalization Summary

Normalization The process of structuring data in a way to curb redundancy and ensure data integrity 1NF Using row order to convey information violates 1NF, e.g., arranging numbers fr...
0 Read More