In my last life and productivity post, I mentioned that I got into audiobooks. I thought it would be a good to start a monthly list of books I have read or plan to read. Normally, after finishing a book, I write some notes about the main points I took away and things that I…
Blog
FREE Stable Diffusion AI Images With Lexica Art
Lexica Art provides a vast Stable Diffusion database and image generator for anyone to use. In this short post, you can learn more about it.
ChatGPT: How to Use It To Write Python Code?
Today I’m writing about ChatGPT and how it can help you with coding. I used this AI tool to write a simple Flask application in Python in a matter of minutes. At the same time, I want to show how it can be used to have fun and help you work on your creative process.…
How to Use Stable Diffusion to Generate Images
I show how to use stable diffusion’s text-to-image script to generate AI images using a text prompt. Learn about basic prompt formation.
What Happened to Crypto Last Month? June Review
The month of June has been brutal for cryptocurrencies and the stock market in general. For example, Celsius paused crypto withdrawals in mid-June, sending the markets even lower. In this post, I want to share how my crypto portfolio performed in the month of June. At the same time, I’ll cover important events, most notably,…
How To Build a Feedforward Neural Network In Python
Welcome back to another Python post. Today’s topic is about how to create a feedforward neural network in Python, from scratch. That means, without using Tensorflow, Keras, Pytorch, etc. The main library we’ll be using is numpy, which is the computing library for Python. I usually like to understand the underlying concepts of how things…
How to Implement a FIX Trading Engine in Python
A while ago, I started exploring the world of trading in hopes of building my own trading bots and learning more about this field. While researching, I came across the FIX protocol. In this post, I cover some of the basics of the FIX protocol. More specifically, I’m talking about FIX 4.4. Additionally, I am…
Supercharge Your Python Scripts With Command Line Interfaces
In this post, I’ll be showing you how to create a command-line interface (CLI) for your Python scripts. You will be able to run those scripts from the terminal with arguments. Oftentimes, when you write a script, you need it to perform more than one action at a time. One way to provide this functionality…
LUNA UST Collapse – My Crypto Portfolio in May
Who could have foreseen the events surrounding Terra (LUNA and UST coins) during the month of May? Crypto markets have been on a continued decline for months now, but this past month was something different. I’ve been anxiously waiting until the end of the month to be able to review what the hell happened. Here…
How to Do Object-Oriented Programming In Python
Learn how object oriented programming is implemented in Python 3 in just a few lines of code.