Machine Learning Core Concepts

Did you know machine learning powers everything from your Netflix recommendations to fraud detection? It's a big deal! Machine learning (ML) is about teaching computers to learn from data without expl...
0 Read More

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