Author: M Smith
A command line tool to compare 2 different csv files
Below is a python script that uses the ydata-profiling library to create a report that compares two csv files. This is proving useful in verifying the similarity between original and …
Pre commit hooks in git YouTube resources
A collection of YouTube videos I have found useful in learning about hooks in Git. In no particular order:
Calculate a reasonable daily usage quota for BigQuery
A previous post showed how to set a ‘daily query usage‘ quota in BigQuery, and what that quota should be to stay within the free tier of BigQuery. Well, what …
Archive (tar + gzip) a folder using bash
The following command will create a gzipped (compressed) tar file (many files into one file) for a folder called “Downloads”. In other words all the files and folders in the …
Set a daily query usage quota in BigQuery
In BigQuery there is a free tier for querying data. As long as less than 1 tebibyte of data is queried in a month there are no charges associated with …
Learn Hard Concepts by Colin Galen
AI summary: The video “Focusing Your Unconscious Mind: Learn Hard Concepts Intuitively (And Forever)” presents a method for deeply and intuitively learning complex concepts so they become second nature and …
Self improvement inspired by the founders – Art of Manliness
A podcast from the Art of Manliness podcast about self improvement and surrounding philosophy from some of the most influential characters in the formation of modern day United States of …
Python script to send an email with Sendgrid API
A short python script that uses the Sendgrid API to send a basic email.