Moving to A New Hosting and Registrar
How I transferred my website from wordpress.com to a self-hosted wordpress.org with no downtime.
How I transferred my website from wordpress.com to a self-hosted wordpress.org with no downtime.
The shapefile (SHP) format is probably one of the most well-known and most common geospatial data format, but there are also GeoJSON, KML, KMZ, and many others. I’ll be showing you some of the ways I have learned to read these files in Python.
This is a pretty straightforward task that can be easy to forget if you don’t use them often enough. So let’s get started. This article… Read More »How to Get Today’s Date or Any Past Date in Python
I first used git probably around 5 years ago, maybe sometime during the second or third year of my bachelor’s study. The problem is no… Read More »Step by Step Basic Git Commands
A tweet can contain a lot of things, from plain text, mentions, hashtags, links, punctuations to many other things. When you’re working on a data… Read More »Tweets Cleaning with Python
Excel format (.xlsx) is one of the most common document formats when you’re dealing with data analysis. I generally prefer CSV document format, but sometimes… Read More »Importing An Excel File to Pandas Data Frame
I love the sci-fi genre, especially in movies. But a sci-fi movie combined with action (and probably some monsters too) just earns itself a place… Read More »Fun Sci-Fi, Action Movies on Netflix that I Recently Watched (and Enjoyed)
One of the most common problem when dealing with Twitter data (such as tweets) is knowing how to extract hashtags and mentions, or in some… Read More »Extracting (or Removing) Mentions and Hashtags in Tweets using Python
Oftentimes we run into a problem where we are required to generate a list or series of dates between two available dates. Pandas has provided… Read More »Creating Time Range in Python: Date Range and Month Range
Extracting data in datetime format can be very tricky and frustrating. I have summed up a few things about datetime in Python that I have… Read More »Extracting Datetime Format in Python: Day, Date, Month, Year, etc.