How to create an Ethereum Token with Python (ERC20)
This tutorial teaches you how to create/develop your own Ethereum token (ERC20) with Python on Polygon Network.
Migrating to a Custom User Model mid-project in Django
Whenever you building a site with Django that will have user authentication, it is recommended to create a Custom User Model, before the first migration. Sometimes you forget to do that. In this case you have to follow a strict procedure, which I'll show you in the post.
Managing a Django Project with Poetry
Poetry is relatively new packaging and dependency manager. It makes it very easy to upload libraries to PyPI, manage dependencies visually, and has a couple of handy features. Today, I'm not going to do a deep dive into how Poetry works and all its features. Today I just want to focus on how to configure it for a Django project.
Multiple Graphql Queries on a Single Page with Gridsome
Ever wonder how include multiple queries on the same page, when using Gridsome? Well, this is how.
Adding Scripts to Specific Pages with Gridsome / Vue
How do I add script tag to specific pages only? In this post I show how I integrated hypothes.is only on my article pages.
Getting data to home page with Django
In this post I show how to use get_context_data(). You might need it to display 'latest posts' on your 'home page'.
Adding a dictionary to a list of dictionaries in Python
I have encountered a problem where I was not able to append a dictionary to a list. In this post, I will explore this issue and show how to bypass that.
Creating a Maker Widget with TailwindCSS
In this post we are making a simple Maker Widget with TailwindCSS.
Analyzing FIFA 19 data (III). Machine Learning and Prediction
In this post we are going to apply some basic machine learning on our clean dataset. We are going to focus on using Scikit Learn
Analyzing FIFA 19 data (II). Data Exploration and Visualization
My thoughts on the Open Source community and the culture behind it.
Setting up Python virtual environment (for a Django Project)
How to set up a virtual environment for your Django Project, or any other Python project, for that matter.
First Javascript Experience
Sharing my first epxerience with Javascript. Had to add some action to my new web app.
Using Virtual Environment with Jupyter Notebook
If you are using a virtual environment, you might have ome issues with Jupyter Notebook. In this post we go through proper Jupyter Setup with venv.