Category: PROGRAMMING & LANGUAGES

Object-oriented programming in PHP: part 2
In the previous part we saw what the object oriented paradigm is, what classes are and what objects are, we…

Object-oriented programming in PHP: part 1
From today we will introduce a mini-series of tutorials to describe object-oriented programming in PHP, the implementation of which was…

Python lists
Lists are part of the predefined types of Python, also called sequences are ordered, iterable, mutable elements. In the language…

Using SQLite with Python
SQLite is a library written in C for the management of a lightweight dbms based on a .sqlite file that…

Introduction to .NET
In this article we will talk about .NET (read dotNET) the framework created by Microsoft for the development of desktop…

Graphical interfaces with Python’s Tkinter
In this article we will talk about the Tkinter toolkit which is simply a link for the Python programming language…

How to add custom fields to the registration form in WordPress?
If we want to learn more about subscribers of our website or if we need to have additional data…

C Language – External functions
The operations for many things, to enter the code: once we rewrite the identical pieces of code, why not…

C Language – Matrices
What are two-dimensional arrays? Two-dimensional arrays are vectors with multiple dimensions, for example a 3-dimensional array can be…

C Language – arrays (vectors)
What are arrays? Think of a train with many cars, each car will contain an element. …

C Language – “While” cycle and “IF” education
The while statement is composed of: i = 0; while (condition type i <10) { here we will write the…