How to convert video to gif with Python

2 min readIt’s often that I need to convert videos of screen recordings to GIFs, while authoring this blog. Therefore, I’d like to explore how to convert video to gif with Python. Python comes with lots of libraries. To convert video to gif, the MoviePy simply comes in handy, which you can have it done in just […]
How to work with threads in Python

2 min readThread lets different parts of program run concurrently. Usually when you have a part of execution in your program that takes longer than usual to run, it’s better let it run in a thread without blocking the main program to handle the user’s interactions or other executions etc.
How to create a custom popup view with SwiftUI

3 min readThere are a number of situations that your iOS app needs to present the users with custom popup views. For example a popup view with choices of selection (without the need to navigate to another view or view controller) or a popup view that shows some important information to alert the users.
A first look at SwiftUI stacks, VStack, HStack, ZStack and build some combined views

3 min readSwiftUI is the new way of designing and developing your UIs which has been introduced by Apple since iOS 13. It’s a new framework which allows you to write less code when developing the user interfaces of your iOS apps.
Develop GUI application with Python Tkinter

3 min readThere are at least two reasons that you should develop GUI-based application with Python. GUI applications developed with Python are cross-platform, which you can run them on Mac, Linux and Windows and Python is easy to learn with much simpler syntax than any other programming languages.
Create charts and graphs using Python Matplotlib

3 min readPython has an awesome library known as Matplotlib, which you can use to create all sort of graphs and charts by simply a few lines of code.
Develop a simple News Search Android app with Kotlin & NewsApi

8 min readNewsApi.org provides a simple and easy way to fetch news headlines for different topics and sources with its REST api. To fetch news from them, you just need to sign up for a free developer account and get an API key. All you need to do is make a simple HTTP request by providing the […]