8 followers
I'm The Flying Dev - a self-taught developer by night and a flight attendant by day. Founder and host of the Landing in Tech podcast. I build projects live on twitch at theflyingdev.
Subscribe to my newsletter and never miss my upcoming articles
When I built the website for Landing in Tech I wanted to have a bar on top of the page with the latest episode. The idea was to allow users to listen to the episode while browsing the page. I added the iframe on my layout.js file and expected it to ...
Version control systems are tools to keep track of changes to source code or other collections of files and folders. They help to track the changes of documents, they make it easy collaborating with someone else. Version Control track changes in a se...
As developers, we use the terminal all the time, it makes sense to learn some shortcuts that can help you do things in the command line. Learning these will also help you boost your productivity because you don't have to retype your commands again j...
Since I've recently moved from using markdownRemark to MDX on all my Gatsby Sites, the instructions to some plugins might not be that straightforward to follow. Recently, I've created a Digital Garden and wanted to add a search bar to it. On one of ...
It's always a good idea to keep dependencies updated, from performance gains to fixing security issues, it just makes sense to update. But your project might depend on a lot of dependencies and if you haven't worked on a project for a few months, cha...
On my previous article, I've talked about Linux Signals and how you can send a specific signal with the kill command. On this article, I will talk a bit more about job control. How you can see running processes and how to use the knowledge we gained ...