Chapter 03: HTML- Creating a page layoutWhen we use the right tag in the right place, it results in a better page layout, better indexing by the search engine, and a better user experience. A typical page layout would look something like this: <header> : It contains the <nav> tag. <main> <...Jan 10, 2023·2 min read
Common Interview Questions on Shell Scripting you cannot ignore in your upcoming interviewDec 27, 2022·3 min read
OSI(Open Systems Interconnection) modelIntroduction A computer network is a collection of various computing devices. The purpose of a computer network is sharing of data among computing devices. In a computer network, put simply, we have a sender and a receiver. The sender and receiver ca...Dec 22, 2022·5 min read
Linux: Commands and FilesystemsIn this article, we will look into what are some of the basic commands used in the Linux system and what are the different types of filesystems that are there in it. What are some of the basic commands used in Linux? a. whoami: prints username. b. pw...Dec 1, 2022·5 min read
Linux: File types in LinuxHey guys, let's dive deeper into Linux with understanding the file types in Linux today. The table below illustrates the different types of files in Linux file system. Why is it necessary to understand different file types when they are already colo...Nov 24, 2022·4 min read
Linux - The beginningWe begin this series of Linux with this article as its first blog-post. In this article, we will start with the basics on Linux kernel and not dive deep into the commands aspect of Linux. So, sit back, relax and enjoy the article. Linux History: Befo...Nov 23, 2022·3 min read
GIT and Github in one blogpostWhat follows next is my understanding of how GIT and Github works and how it helps the entire developer fraternity. I am indebted to Shubham Londhe, who is a Youtube creator, for his compelling explanations regarding GIT as a tool and Github as a wa...Nov 19, 2022·6 min read
List & Tuple in PythonPython lists and list functions Lists are containers to store a set of values of any data type. F = [ “apple”, “akash”, 7, 7.33, False] Where, “apple” is string, 7 is an integer, 7.33 is a floating point number, and False is a Boolean. We print the ...Nov 15, 2022·2 min read