ramesh-kunwar.hashnode.devGetting Started With cURLWhat is cURL cURL is a tool that lets you talk to the server from the terminal. You don't need a browser or postman like app or any other UI to talk to the server. You can do that by using cURL from your terminal. You can just use commands from you...Jan 28·3 min read
ramesh-kunwar.hashnode.devWhy Version Control Exists: The Pendrive ProblemImagine you are working on your startup. Your startup is a web app that tracks users daily habit and let the user journal their daily activity. If you need to add extra feature on top of that project and you don't know how to write the code for that ...Jan 2·3 min read
ramesh-kunwar.hashnode.devArrays In JavascriptWhat Is An Array ? An arrays is simply a data structure which helps to store collection of items or multiple values in a single variable. In other programming languages like C, C++ or Java. Array can store items which are of similar data type. But i...Aug 27, 2022·3 min read
ramesh-kunwar.hashnode.devCSS Position Property With ExampleCSS position property defines how an element is positioned in a document or a page. There are 5 position values: Static Fixed Relative Absolute Sticky 1. Static It is the easiest property to understand. By default HTML elements are positioned to st...Jul 21, 2022·5 min read
ramesh-kunwar.hashnode.devCSS SelectorsWhat Are CSS Selectors ? CSS Selectors helps to select HTML elements and apply custom styles. Some common CSS Selectors are Element selector id selector class selector pseudo selector attribute selector Element Selector The element selector selec...Jul 18, 2022·2 min read