GSGaurav Singhingauravnumber.hashnode.dev·Jan 7, 2022 · 1 min readUpvote Downvote your postSimple website for upvoting, downvoting. Take a look00
GSGaurav Singhingauravnumber.hashnode.dev·Feb 6, 2021 · 1 min readI created my own small javascript function that can solve more than 20 digits addition, multiplication and substraction.This project is three years old. demo That time I'm using. I don't know about programming so that's simple.00
GSGaurav Singhingauravnumber.hashnode.dev·Feb 2, 2021 · 1 min readYou can write whole website in just single web page.I'm using :target for creating this repo CSS section { display: none; } section:target { display: block; } HTML <a href="#home">Home</a> <a href="#about">About</a> <section id="home"> You can create whole website just in single page. </section>...00
GSGaurav Singhingauravnumber.hashnode.dev·Dec 14, 2020 · 1 min readWhat is lodash?Lodash is a modern JavaScript utility library delivering modularity, performance & extras. It provide common utility functions for common programming tasks. You can use lodash in browser and NodeJS. In browser <script src="lodash.js"></script> In Nod...00
GSGaurav Singhingauravnumber.hashnode.dev·Dec 10, 2020 · 2 min readHow to connect github using ssh?Step 1: Generate SSH key ssh-keygen -t rsa -b 4096 -C "your_email_id@example.com" Step 2: Add SSH key to SSH agent eval "$(ssh-agent -s)" if you are window user so this command run with the help of cygwin Step 3: Copy the public key clip < ~/.ssh/i...00