Menu
TAG

tutorial

For Loop - Python Programming
Learn Python 2 min read

For Loop - Python Programming

We have already discussed the while loop in our previous article. In this article, we will be covering the for loop. The for loop is one of the most widely used loops in programming. As you begin writing real code, you will find that you will almost always use for loop instead of while loop. Let us now have a look at it. Printing numbers up to 10 We are going to solve the same old problem, let us see how for loop can be used to print numbers from 1 to 10. You know the drill, re-cre

Learn PythonNewUncategorized
Control Raspberry Pi & IOT Devices From Cloud Using Cloud4RPi
Linux Tutorials 3 min read

Control Raspberry Pi & IOT Devices From Cloud Using Cloud4RPi

Raspberry Pi is one of the best inventions of our times. We can use this low-cost device to make something really cool and useful. In this article, I will show you how you can control your Raspberry Pi and send instructions to the devices connected to your RPi from anywhere in the world. What is Cloud4RPi? Cloud4RPi is a very simple web control panel for accessing your Raspberry Pi devices. Configuring it takes not more than 2 minutes and you can access your Raspberry Pi anywhere i

Linux TutorialsNewUncategorized
Number Systems Used In Computing
news 3 min read

Number Systems Used In Computing

What are the numbers? Are they some physical entity? Some phenomena? No, they are just objects used for measuring a quantity. You must already be aware of the decimal number system that we use. It has the digits from 0-9(0,1,2,3,4,5,6,7,8,9). But this isn’t the only number system use in the computing world. Computers often have requirements different from us human and they may require a different number system. So let us have a look at some of the number systems used in computing.  

newsUncategorizedtutorial
While Loop, Break & Continue - Python Programming
Learn Python 4 min read

While Loop, Break & Continue - Python Programming

Looping is one of the most important core concepts when learning to program. I often see a lot of people get confused with looping. So let us quickly have a look at how loops work. There are various types of loops like the while, do while and for loops. However, we will only focus on the While loop in this article. We will learn about the other loops later in this series. Follow full series – Learn Linux What is a Loop A loop is something that repeats itself. In computer prog

Learn PythonUncategorizedtutorial
What Is Server Side Rendering? Is It Still Useful?
Linux Tutorials 2 min read

What Is Server Side Rendering? Is It Still Useful?

The past few years have seen a hoard of new JavaScript frameworks taking over web development. Skills with Single Page Applications and Progressive Web Apps are the new things that every new developer wants on their resume. Most of the web services are migrating towards Client Side Rendering with JavaScript frameworks. However, Server-side rendering has not lost its charm. What is Server Side Rendering? In modern JavaScript frameworks like angular, react and vue, JavaScript code is

Linux TutorialsUncategorizedtutorial
Python Programming - if, else and elif
Learn Python 3 min read

Python Programming - if, else and elif

If you have the time, you can read this article else you can do something else. Sounds logical, doesn’t it? Well, That’s programming for you in a nutshell. Programming is all about writing code that will give different outputs depending upon the state of various variables at the moment. Follow the full series – Learn Python The IF Else Clause The IF Else clause is very useful when it comes to making changes in program execution. The syntax for an if-else clause is as follows.

Learn PythonUncategorizedtutorial
Working With Variables - Python Programming
Learn Python 4 min read

Working With Variables - Python Programming

We are on our quest to learn python programming and this brings us to one of the most fundamental topics. Variables are everywhere, every programming language has variables at its core. We will learn about variables and also see some basic operations and applications of variables in python. What are Variables? Variables are elements that store program data. This program data has its scope limited to the life cycle of the program. For example, let us say we are writing a program tha

Learn PythonUncategorizedtutorial
Overview and Installation - Python Programming
Learn Python 3 min read

Overview and Installation - Python Programming

Python is a general-purpose programming language that is very high in demand. It is one of the most sought after programming languages with limitless applications. Programming in Python is very easy to learn. Since it is a very flexible language. So let us begin on our quest to learning Python. A Quick Overview Python is a high-level programming language that was created in 1991. Python has picked up popularity in the last few years. Python can be used to make desktop, web and even

Learn PythonUncategorizedtutorial
Ethical Hacking With Kali Linux
Hacking with Kali Linux 2 min read

Ethical Hacking With Kali Linux

Today I am going to start a very interesting series of topics, Hacking with Kali Linux. In this series, I will start from the basics of hacking with Kali Linux and go advance. I will not beat around the bush or discuss crap that’s spammed all around the internet but will share real-life scenarios of hacking. Who is this series for? Before I talk about the series that I am going to start, let us briefly talk about who should follow this series. I know there are so many people o

Hacking with Kali LinuxUncategorizedtutorial
Create Games With Godot Game Engine
Games 3 min read

Create Games With Godot Game Engine

Are you considering creating a game in your free spare time or as a full-time game developer? You should check out Godot if you want a FOSS game engine on your Linux machine. There are tons of open source game engines and of course including those proprietary ones that most people use and talk about (for instance, Unity). Godot is fairly new but that doesn’t mean it’s poor in features. It’s the opposite! Read on below to learn more about this awesome game engine. Install Godot

GamesUncategorizedtutorial
GSConnect Integrate Android Phone With Linux Computer
Linux Tutorials 3 min read

GSConnect Integrate Android Phone With Linux Computer

GSConnect is the complete reimplementation of KDE Connect for GNOME desktop environment. KDE Connect is a cool application for integrating your Android phone with a Linux desktop computer. The app allows you to control, share files, read notifications, etc between the two devices. For instance, you can read Android notifications on your desktop computer without touching your phone at all. Unfortunately, a GNOME user wanting to install KDE Connect on her computer also has to install some

Linux TutorialsUncategorizedtutorial
Desktop Workspaces In Linux
Linux Tutorials 2 min read

Desktop Workspaces In Linux

Have you ever come across the term “desktop workspaces” around the Linux community? If you haven’t and are curious about what desktop workspaces are, then, you are at the right place reading this article 🙂 I’ll guide you on what workspaces are on Linux and how you can utilize them to increase your computing productivity. Desktop workspaces Desktop workspaces on Linux are like having a multi-monitor system on your single computer. Developers, artists, audio engineers, etc. would ca

Linux TutorialsUncategorizedtutorial