Blogs
Find the Newest File in …
There are times you might need to find the latest file in a given directory. This method is not the most efficient and will have some performance costs (👀 synchronous processing 👀). Almost every time I reach for something like this it is for a utility function, like ‘find the latest database …
Backup PostgreSQL …
If you’re using a PostgreSQL database and need to backup the database schema, this article will walk through some of the handy scripts I use to backup and restore a database schema. I like to use Docker for everything, especially for my development environment. I can easily automate my …
Find a File in a …
If you’ve ever needed to find a file in a directory or subdirectory without clicking around this handy terminal command might help you find the file(s) more quickly. The find command will search directories based on a name or pattern supplied. Example find /path/to/dir -name …