Mastering the Python Print Function

Python print introduction Python, a versatile and powerful programming language, is known for its simplicity and readability. Its vast library of built-in functions makes it a favorite among both beginners and experienced programmers. One such function, which often serves as the first stepping stone for newbies in Python programming, is the print() function. This article aims to 

Continue Reading…

Managing postgresql database using SQLAlchemy ORM in Python

Introduction to SQLAlchemy in Python SQLAlchemy is a framework that helps you to create connection between your object oriented classes written in Python language and tables represented by your databases. In this article I want to show how to realize standard operations with ORM like SQLAlchemy using Python and postgresql database: However updating schemas for 

Continue Reading…

Python Excel Tutorial with Pandas Library

Using Python Pandas library to READ and Write data in Excel XLSX files Your programming skills in python sometimes might be needed for making data analysis. In the market lots of people use Excel for manipulating different data starting from simple formulas, going through statistical analysis and finishing into advanced financial spreadsheets. The python community 

Continue Reading…

Learn how to install python on Windows

Why installing python? Answer for the question why you need to install python is very simple. Among all mostly known language like C#, Java, PHP, Perl, NodeJs the Python language has one of the biggest number of IT enthusiasts. You can verify this looking into github statistics prepared by Ben Frederickson under the article https://www.benfrederickson.com/ranking-programming-languages-by-github-users/ 

Continue Reading…

How to download Visual Studio Code

Brief introduction into Microsoft Visual Studio Code In 2015 Microsoft start announced new editor for coding in different languages across all most know operating systems like Microsoft Windows, Apple iOS or Linux. More or less it was the same time when Microsoft start growing its cloud environment. They understood that the world was mostly changed 

Continue Reading…

Help to build common voice datasets with Mozilla

Growing market of smart phone vs voice recognition The development of mobile devices and in particular smart phones started to grow totally new dynamic interactions between device and human like voice interactions. A technology called voice recognition is an inseparable part of these interactions. Huge market of devices grows rapidaly and in 2019 was worth 

Continue Reading…

How to install Ubuntu 18.04 from USB pendrive

Before we start Ubuntu 18.04 installation This article is entirely devoted to the topic of installing the Ubuntu operating system from USB stick. It is worth to have any distribution of linux on one of your stick. You don’t know time when something will be crashed in your current system and you may need to 

Continue Reading…

Design REST API for booking system – part 1

General scope for REST API in Laravel 5.4 This series of articles should help you easily design REST API in PHP Laravel framework using minimum effort and saving your development time. Skills for building quickly any kind of API are especially now very important when everything is decentralized. At the beginning will will focus on 

Continue Reading…

PHP Artisan commands list with Laravel 5.4

Working with Laravel without PHP Artisan would be no so efficient. Laravel delivers us list of mostly used commands by daily developer’s activities. You need to know this list and use the commands to speed up your efficiency in coding. Some of the php artisan commands are shown in action in my laravel project where 

Continue Reading…