Programming

What is Linear Programming?

Introduction Linear programming is a method for determining the best solution to a linear function. Making a few simple assumptions is the best technique for...

Top 10 Benefits of Linux for App Development

Linux appeared in 1991 and remained one of the top systems for developing practical solutions. It is one of the best-loved bases for app...

Top 5 Programming Languages for Developing Linux Desktop Applications

The IT industry is the quickest developing industry. It is befuddling to choose the one appropriate and useful choice as it has bunches of...

Here are a few Python coding tips for every beginner coding...

Everyday is a new opportunity to progress with your coding skills. There are many good resources available on the world wide web teaching best...

Pytube: How to Download Youtube Videos with this Python Tool

Introduction pytube is a python package written for the main purpose of downloading videos from the famous video website Youtube. According to the official documentation...

How to install Visual Studio Code and .NET Core on RHEL...

Introduction It was November 2014 when Microsoft announced the open sourcing of .NET with a project named .NET Core. It was announced as a smaller...

Install Grunt and Grunt-cli on Ubuntu 16.04

Introduction Grunt is a JavaScript task runner, which helps in performing repetitive tasks like minification, compilation, unit testing, and linting. This means that a developer...

Install and configure Jenkins on Ubuntu 16.04

Introduction Jenkins is an automation server written in Java, as a fork of the Hudson project. It helps to automate part of the software development...

Install Redmine 3 on CentOS 7 with Nginx as web server

Introduction Redmine is a web application for project management, written entirely using Ruby on Rails, and released under the terms of GPLv2. Some of its features...

Sexy MF says things related to game programming on Linux, and...

OK, first things first – you should go to www.worldofspectrum.org , and search out Exolon in the “Infoseek” search engine that they have there,...

Most Popular Programming Languages In The IT industry

Programmers are always in high demand these days for jobs, especially if they have fluency in coding language. Learning programming in various languages for...

Introduction To Python *args and **kwargs For Beginners – Part 2

In the first part I explained to you guys the purpose of *args in python programming language through some simple practical examples. In this...

Introduction To Python *args and **kwargs For Beginners – Part 1

Many new python geeks have a hard time figuring out the *args and **kwargs magic variables when working with them for the first time,...

How To Log In Python, A Simple Tutorial

In this tutorial, you will learn how to create a simple python script that makes use of the logging python standard library in order...

Dictionaries vs List data structures In Python

Suppose you have a following list: >>> list = >>> list Booboo has 10, Orestis has 5, Homer has 7 and last but not least Asterix...

Expressions, Statements, Variables, Data Types in Python [must read]

Expressions The most common expressions in Python are numerical, string and boolean.  All of them are considered as data items or d-item. For example, this is a numerical expression: 1 or another more complex...

Use Special Characters In Python

Sometimes, we want to add some extra space between two words, like pressing Tab key (which is identical up to 4x space-button length). In Python...

How to print in the same line using end=’ ‘ argument

The print statement prints by default a newline character in Python. Look this example: print("Hello") print("world") The output is going to be in two separated lines: Hello ...