Millionaire Business Habit – Calculate the Return on Your Invested Time

For months, I focused on Facebook marketing, only to realize one day that this activity destroyed my time without generating any value for myย Finxter.comย users and myself. I developed the habit of calculating the ROI for one activity every day. The result of this simple activity blew my mind and changed the whole game for my … Read more

Two Easy Ways to Encrypt and Decrypt Python Strings

Today I gave a service consultant access to one of my AWS servers. I have a few files on the server that I was reluctant to share with the service consultant because these files contain sensitive personal data. Python is my default way to solve these types of problems. Naturally, I wondered how to encrypt … Read more

Python Dictionary Append – 4 Best Ways to Add Key/Value Pairs

You can add multiple key-value pairs to a Python dictionary by using the update() method and passing a dictionary as an argument. For example, dict1.update(dict2) will insert all key-value pairs of dict2 into dict1. You can add a single key:value pair to a Python dictionary by using the square bracket approach dict[key] = value. In … Read more

$821,000 Ethereum Value per Solidity Developer

Ethereum’s Total Value Locked (TVL) is $28,000,000,000 USD and Ethereum’s market cap is $193,000,000,000 USD. Based on my estimations below, there are at most 269,000 monthly active Solidity developers. Therefore, the Ethereum TVL per Solidity developer is more than $104,000, and the Ethereum market cap per Solidity developer is more than $717,000. So for all … Read more

Basketball Statistics – Page Scraping Using Python and BeautifulSoup

In this blog series, powerful Python libraries are leveraged to help uncover some hidden statistical truths in basketball. The first step in any data-driven approach is to identify and collect the data needed. Luckily for us, Basketball-Reference.com hosts pages of basketball data that can be easily scraped. The processes of this walkthrough can be easily … Read more

How I Built and Deployed a Python Loan Eligibility Prediction App on Streamlit

In this tutorial, I will walk you through a machine-learning project on Loan Eligibility Prediction with Python. Specifically, I will show you how to create and deploy machine learning web applications using Streamlit. Streamlit makes it easy for data scientists with little or no knowledge of web development to develop and deploy machine learning apps … Read more