Blog Header

A List of Essential Git Queries

Code

A List of Essential Git Queries
1) How to submit a pull request? A) Fork the Repository Go to the repository where you want to contribute. Click on the fork button at the top right corner to fork the repository. This will create a copy of that repository under your GitHub user account. B) Clone the Repository to your system After you fork the repo you... Read More

Meta Tags for SEO: A Simple Guide

Code

So what are meta tags? Meta tags are basically tags that enclose meta data that are used in the HTML of a webpage. As i said it is basically a meta data so that means what ever you enclose within a meta tag will not appear on the webpage itself but will be used by the search engines and social medias like a meta data for the webpage. Why are they Important for SEO? They are very important for SEO because the data enclosed within different types of these meta tags determine your webpage's rank in the search engines. Well definitely there are other factors that counts in the SEO of a webpage like the content itself and then the page speed, security, Domain age, URL, Links, etc. But as a developer your part in the improvement of SEO would be to be give perfect and proper meta tags. So today i bring to you these essential meta tags that you should know and use in order to improve the SEO of your webpage. Lets see:
Lets have a look -
1) meta charset="character_set"Read More

Important Linux Commands: Linux Commands You Must Know

Code

In 1991 when Linus Torvalds for the first time publicly shared his newly made kernel completely free from minix code, then even he was not aware of its capabilities in bringing the revolution in the software industry at that time. The open source we hear today was not much popular back then, not until linux was founded. You see, Git a very popular VCS(Version Control System) was founded by the same guy to maintain the linux kernel. People loved this operating system not just because it was free but because it brought freedom to the computer and software industry. Linux can be customized for specific users and for specific hardware requirements. According to a survey by w3techs.com in 2020, Almost 29.7% of the websites uses linux operating system. Around 49% of all the developers uses linux as their daily drive for development purpose according to survey from 2018-20 by statista.com. Linux is a popular choice among developers and tech enthusiasts. So today i bring to you these essential linux commands that you should know no matter you are an experienced developer or a newbie.
Lets have a look -
1) ls [OPTION]... [FILE]... ... Read More

WiFi Hacking: Beginners Guide

Code

Every problem brings together a solution, every solution brings together an invention and every invention open ways for problems and there becomes a loop that goes on and on and on. When WiFi was first invented, we certainly were not so concerned about the privacy risks it brings together not until WEP(Wired Equivalent Privacy) was created. From WEP privacy remained a topic of discussion over the use of wifi devices. Although its not all a risk while using wifi but we will go through here a quick demo of a wifi router being hacked.
WARNING: Before proceeding i want this to be crystal clear that this is strictly for educational purpose. You are not supposed to perform this anywhere without any prior permission. Your only motive while performing this should be to learn, understand and find ways to overcome this vulnerability.... Read More

Important Git Commands: Git Commands You Must Know

Code

Git is a very popular and widely used distributed version control system that helps developers manage their code efficiently by keeping a track record of the changes committed to the code-base by time. A VCS or version control system as it sounds is simply a tracker of content(usually code) that tracks changes to code-base and helps developers to simultaneously work on the same project by managing repositories. Git is a distributed version control system(DVCS) which simply means that Git stores code-base on a repository in a Server and simultaneously distribute it to the local repository(usually in Developer's Computer) of each developer. So, No matter if you are new to development or have ample amount of experience in the development field, these are the essential git commands you must know.
Lets have a look:
Git Commands
1) git config [ options ]... Read More