Skip to main content

Operating System Basics

Welcome back! So far we have covered HTML and CSS, and up next this we are meant to cover JavaScript, however, I ended up deciding to take a little break from our web development series to cover other topics. So in this blog, we will be going through some of the basics of Operating Systems. So without further ado, let's jump right in!



  Introduction  






  Remote Connection and SSH  














Comments

  1. Keep writing.. Its now taking a shape.. 👍

    ReplyDelete

Post a Comment

Popular posts from this blog

Data Analytics Essentials

 This article aims at foundational knowledge of Data Analytics. After reading this article, you will be able to explain what Data Analytics actually is, list the key tools and technologies within the data ecosystem, look at the different roles associated with the modern data ecosystem, and will have a conceptual understanding of the data analysis lifecycle. Modern Data Ecosystem A modern data ecosystem includes a whole network of interconnected, independent, and continually evolving entities.  It includes data that has to be integrated from disparate sources, analyze to generate insights, and finally collaborate with the active stakeholders to present and act on the insights hence obtained. Let’s start with the  data sources . Data is available in a variety of structured and unstructured datasets, residing in text, images, videos, user conversations, social media platforms, the Internet of things (IoT devices), real-time events that stream data, legacy databases, and data...

CSS basics for absolute beginners

If you are here, I'm going to assume that you have already visited my previous blog on HTML basics for absolute beginners. If not click here and have a glance at it ASAP!!! What is CSS? CSS stands for Cascading Style Sheets, where HTML defines the structure of the web-page and CSS helps us to change the appearance of the HTML. HTML without CSS is ugly, therefore HTML and CSS go hand in hand. The version of CSS that we are gonna use here is known as the CSS3 (like HTML5). Apart from the structure and appearance, if you want to add functionality to the webpage, then we need something known as the Javascript which will be the topic for another blog, so now without further ado, let us dive into CSS3. Why CSS? The best thing about CSS is that it allows you to make global changes throughout your website thereby maintaining a consistent appearance. It means that you don't have to change each and every page individually, instead,  CSS helps you to change every instance of a particula...