Webcodespace

the space on the web for code…☄️

What does * mean in CSS

find out the meaning of * in css and how to use it

September 6, 2023 · 4 min · Jima Victor
Cover Image

Introduction to Python

An introduction to programming in Python

August 18, 2023 · 5 min · Jima Victor

How to check if an Object has a specific property in Javascript

Learn how to check whether or not an object has a specific property in Javascript

August 12, 2023 · 3 min · Jima Victor

How to make your Node.js app accessible on a local network

Making your Node.js app accessible on a local network can be very beneficial when it comes to testing and debugging, and also evaluating the overall performance of your application as well. To get started with this process, the first thing you need to do, is to ensure you have Node.js installed on your computer. You can do this by running the following command: > node -v If Node.js is installed properly, you will receive a response indicating the current version of Node....

August 1, 2023 · 2 min · Jima Victor

How to Create a Todo App in javascript

In this tutorial, we’re going to be building a simple todo list app using HTML, CSS, and javascript. This app will enable users to do the following: Add a todo item Display list of items Remove an item from the list Prerequisites This tutorial is not for absolute beginners. It has been written for those who have a basic knowledge of HTML, CSS, and javascript and are looking for something to practice with....

July 18, 2023 · 5 min · Jima Victor

How to cd to a Directory with a name containing space(s) in Command Prompt

Learn how to cd into a directory with space(s) in its name in command prompt.

April 6, 2023 · 2 min · Jima Victor

How to Shut down a Computer using Python

This is how you can shut down your computer using python. import os # Shutdown the computer os.system("shutdown /s /t 1") If you run the above code, your computer will be turned off in a second. Beautiful, isn’t it? I know. With only two lines of code, you can turn off your computer using python. I’d like to see java do that😝 Now let’s talk about how the code works:...

April 5, 2023 · 2 min · Jima Victor