How to get 4k@120hz with a Nvidia RTX 3080 and the Sony x900H TV
I recently connected my gaming PC to my Sony TV and wanted to get 4k@120hz working. After piecing together a few forum posts and getting it working I thought I’d …
Read MoreI recently connected my gaming PC to my Sony TV and wanted to get 4k@120hz working. After piecing together a few forum posts and getting it working I thought I’d …
Read MoreIn this article, I will go over some tools to hgelp you build production grade Python applications. From debuggin tools such as pdb, 12 factor compliant logging, tersting using pytest …
Read MoreThis post goes over creating iterables, generators then using both of these to create a generator decorator that will help you create generators faster. Iterables An iterable is any object …
Read MoreThis article will go over creating a decorator factory in Python. This can be helpful for example when you want to create different logging capabilities. The final result of this …
Read MoreThe attrs package is designed to help Python developers keep their code clean and fast. It uses decorators to modify Python class __slots__ and __init__ functionality. __init__ is straight forward …
Read MoreOverview Caching involves storing data in temporary memory for faster retrieval later on. Examples include a database that uses caching to avoid reading from the hard drive and a web …
Read MoreThis post contains an overview of the folder/file structure, PEP440 versioning, and PEP8 styling guide of a python application for deployment. Folder Structure The folder hierarchy is a balance between …
Read MoreLet’s Encrypt recently added wildcard certifications but it involves a little more steps than a normal certification process. First you must make sure you have certbot version 0.22.0 or above. …
Read MoreIn this post we will go over implementing a custom argument parser for Bash. You can see the final product here. Some features that I wanted to have are: Parsing …
Read MoreNightmare.js is a high level browser automation library. I recently w anted to use it to scrape data off a website that make it fairly difficult to scrape via normal …
Read More