Programming

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,...

A Simple Banner Grabbing Script In Python To Network Admins

Lately i haven't posted much because i have been busy working on some programming projects, but today i will share a python script with...

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...

systemd on Gentoo

This tutorial is a guide to help setting up systemd on Gentoo. systemd is a modern sysvinit and RC replacement for Linux systems. This article...

Hex binary decimal conversion tutorial

Take this number:  343 What’s this number? You think it’s decimal by default, right? However, the truth is, we can’t be sure. We can say...

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...

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...

Networking in Python, Sockets

The key to networking in Python is the socket module, which provides a library for making network connections using Python. The socket module is used...

Rock-paper-scissors-lizard-Spock in Python

Rock-paper-scissors-lizard-Spock is an expansion of the classic selection method game rock-paper-scissors. It operates on the same basic principle, but includes two additional weapons: the...

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...

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...

How Secure is Your Password? Create a Strong Password and Sleep...

Our on-line content, bank accounts, shopping accounts and social network accounts are as safe as our passwords are. Most people don't  consider password security...

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 ...

Sandboxed Gentoo

Introduction This article is a guide on installing Gentoo in another Linux distribution (Arch, in this case). Look at it like a BSD Jail. It's...

Haiku: Package Manager – Doing Things Right

The Haiku community is living a very peculiar moment these days.  They are witnessing the creation of its Package Manager. Generally considered as the...

Open-Source Software Licenses

To some people’s surprise, even open-source software has a license attached to it. And with that license comes a description and agreement for what...

Understand programming