Coding a full-featured regex engine from scratch in Python with no imports

In this video, we build a full-featured regex engine from scratch in Python with no imports! This was streamed live on https://twitch.tv/clumsycomputer on 20… Read more

Similar

How to pick a web framework in Python

Do you need a web framework? If you need to draw a graph, you can return JSON and draw on the client with JavaScript, an approach known as JAMStack. If the graph is static, you can return a PNG image. Which web framework is right for me? I have used every... (more…)

Read more »

Python Anti-Pattern

I was writing a lambda function which, among other things, was supposed to read a csv file from S3, perform some validation on every row, then use boto3 to perform an S3 multipart upload. I created a wrapper class around the multipart upload functionality... (more…)

Read more »