Archive for March, 2021
PHP Programming
File Uploading in PHP
There is no doubt that there are countless reasons why you may want to upload files when working online. Sometimes, it is to initiate a file transfer while at other times it is to save the file and the list continues. Did you k...
Python Programming
Matrices and Linear Algebra in Python Using NumPy
Linear algebra is a fantastic field, and immensely useful. There are some great tools out there to help us out with it, a particularly widely known such tool being Matlab. But not all of us have Matlab. And if those of us witho...
Python Programming
Python Threading, Events, Queues and Locks Explained in Detail : What They Are and How to Use Them Properly
What? A long time ago, in a galaxy an indeterminate distance from here, a race of hyper-dimensional mice built a supercomputer – a computer for whom to “calculate the trajectory of every single dust particle through...
PHP Programming
How to Use HTML Forms with PHP
HTML form validation with PHP is another interesting topic that should arouse the attention of every programmer. HTML forms are often used to capture user details via a browser. There are many parts of a HTML form which are val...
C/C++ Programming
How to Program a Simple Calculator in C++
Have you ever though of coding a very simple calculator in C++? It is true that so far, we have learned so much in C++. We have learnt of functions, variables, functions and conditional statements. All that and much more is in...
C/C++ Programming
How to Use Switch Statements in C++
Switch statements are used as a way of carrying out deep conditional statements. Such statement ensure that a given variable is tested for equality in relation to given values. Each of these values is referred to as a case and ...
12