I noticed a typo in one of my sql queries today, but the funny thing is the query still worked fine....
I've had my Spotify account for a long time, and over that time, my musical tastes have evolved. As a...
I've been trying to improve my workflows this year. One thing I've known for a while, but never...
This one really had me confused. I was facing an error with Pydantic validators which I thought I had...
I need to get in the habit of taking notes while I work. Especially when I'm debugging. I've noticed...
Trying to access a non-existent key using this notation raises a KeyError: dict[key]. An easy...
Saw this in the MySQL docs. I'm assuming this only works for relational databases. I don't know if...
This would mostly be useful for debugging. package main import ( "log" "runtime" ) func...
Tests tend to not always be so DRY, which isn't necessarily a bad thing. This SO answer sums it up n...
What I built An auto repair shop management system. Category Submission: Built...
Search A simple implementation of Django's full text search. Next steps V...
Dashboard The dashboard now pulls data from the database based on the selected time period...
Improved UI I switched out UI-Kit for MD-Bootstrap. I think it looks much better....
So far for the CRUD functionality, I'm able to create and view jobs, contacts, and vehicles....
Here's what I've been able to accomplish so far: Registration & Login This is the onl...
For this Hackathon I'm thinking of creating something for the "Built for Business" category....
Running \? within a psql database gives a whole list of commands that come in handy when performing v...
If you're new to celery, start here. Sometimes when using celery, you may want to get notified when...
What happens when a variable is assigned to another variable in python? For example: >>> x...
Initially, I wanted to have python (somehow) directly manipulate the DOM based on the state of docume...
For this hackathon, I'm thinking of building a python binding for the web monetization API. Here's wh...
What I built A terminal based chat application using twilio's programmable chat api. I als...
A post by Kinyanjui Wangonya
Teammate not responding on chat? Send them a quick sms. Command format: /sms NUMBER MESSAGE_BODY...
My laptop died on me last week so things have been a bit slow. I have made a bit of progress since my...
As I noted last time, I was having a bit of a problem with sending messages: Apparently, messages s...
Interface At first I wanted to build a simple no-interface client - just a prompt to send...
For the Twilio hackathon, I'm thinking of building a terminal chat application with python using Twil...
The range() function is often useful when iterating over a set of integers: for n in range(50): ...
Until recently, I thought python docstrings were just an alternative way to write comments in the...