The Quest for Computer Vision in Rust

I have been learning Rust on and off for a while now. I usually build small projects to get comfortable with the syntax and the compiler. Those are great for le

Read Article
How do I search for an available Python package using pip?

How do I search for an available Python package using pip?

If you search for packages using pip, you may encounter this error. This is because, after December 2020, the pip search functionality was discontinued due to a

Read Article

Dice roll in Python

Python is a fun language, the syntax is what feels so nice about it and how the indents are used to format the code, after using Jade and Sass, this comes very

Read Article

How to create a sketch app in JavaScript using P5.JS

I have been learning p5.js for a while now and thought it would be nice to share the process and progress in the form of a tutorial. This will motivate me to co

Read Article

PHP: 301 Redirect

In PHP, you can use the built-in header() function to set up a permanent 301 redirect. Here is the modern, streamlined snippet to get it done: Just place this

Read Article

Why comment your code?

It lets other know why that piece of code needs to be there in the first place. While learning programming most of us forget how important it is to comment as

Read Article