How to Create Social Media Share Buttons
A good social media share button has to be aesthetically pleasing and really accessible — you have to make your users want to click the buttons and share your content (a good hover effect with a clean...
View ArticleTop 10 Code Snippets With CSS Animations
A great thing about CSS is that it allows you to animate your creations. CSS animations are typically smooth and add some sense of movement and dimension to your projects. Best of all, they’re fairly...
View ArticleMy Experience With Newor Media
Where there is code, there is usually some sort of monetization along with it. For many of us on the web that means digital advertising, which has gotten a bad reputation from pretty much it’s...
View ArticleHow to script ffmpeg for Python hackers, second part
The Python computer programming language makes a perfect tool for scripting, especially when it comes to wrapping functionalities of already existing software. Being an FFMpeg user for quiet some time...
View ArticleHow to convert a video with Python and FFMpeg
The FFMpeg multimedia framework offers many builtin utilities which can be used to process different types of media files, such as audio, images and videos. Having some practical experience with the...
View ArticleIntroduction to Python generator function with a real world example
As a junior Python coder, there are many advanced concepts which I am trying to master. One of these concepts is the generator object. Although there are many articles and tutorials on the Internet...
View ArticleIntroduction to the Python os.walk function with a practical example
Being rich in features, the Python computer programming language offers to the coder many utilities which they can make use of to automate almost any kind of task in their operating system. Although...
View ArticleHow to create a simple logger in Python, first part
The Python computer programming language offers a builtin module which can be utilized to log applications. Being a junior developer, lately I have started to realize the importance of logging. Before...
View ArticleHow to create a simple logger in Python, second part
As I explained in the first part of ‘How to create a simple logger’ in Python series, logging is a very important aspect of software development, especially for the professional software developer....
View ArticleHow to access the elements of a generator object in Python
A generator object in the Python computer programming language is totally different from a normal function, as it returns multiple values one by one through the yield statement. As you may already...
View ArticleA practical case of an error class in Python
Many beginners of the Python computer programming language have a difficulty in understanding custom error classes; especially when they want to make use of them in their projects. I am writing this...
View ArticleHow to write a wrapper for ffmpeg with the help of Python, first part
The Python computer programming language is very handy when it comes to automating stuff, especially prototyping. Easy to read and write, the Python computer technology offers rapid development. It is...
View ArticleHow to create a package in Python
When the Python coder has to deal with real world projects, they need to have knowledge about the modules and packages. As I have mentioned in my previous articles about the Python computer programming...
View ArticleHow to add a watermark with Python and FFmpeg on your video
The FFmpeg multimedia framework offers many utilities which can be used to process video files. Having used such tools myself for some time now, I find the framework truly useful, especially when I...
View ArticleTen Unix commands you should periodically try on your terminal application
Those who are familiar with the terminal application part of Unix based systems, have probably done some work with the help of it. Being a terminal user for some time now, I automate a lot of stuff on...
View ArticleWhat is the main difference between an absolute and a relative path on Unix...
Those who have made use of the cd command through a terminal application on their own operating system, have probably made use of a relative path, an absolute one or both of them. Based on my personal...
View ArticleHow to read and write csv files with the help of Python programming language
When one starts their computer programming journey, there are many already builtin libraries and functions they need to explore with the main purpose of stepping their coding skills to the next level....
View ArticleHow to automatically zip your files with Python
People make use of zip files to store data on their computers and even transmit files over the Internet. Zipping data through different applications available out there, helps to pack a group of files...
View ArticleHow to check CPU information through command line in Unix based operating...
Sometimes you need to find information about your CPU on your Linux machine and there are many ways to do it. So in this tutorial I will teach you how to find details about your CPU such as processor,...
View ArticleHow to write a Python script to grab banners for network geeks
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 you guys. This script is written in pure python and it can be...
View Article