404salad.hashnode.devEvery Programmer Should Watch Conference Talks on YouTubeI was going to write a longer article to convince everyone to watch the conferences but Its much better to give a summary of my favorite talks and hopefully that will be persuasive enough~ "The Tragedy of systemd" - Benno Rice In an age where it is c...Jan 14, 2024·2 min read
404salad.hashnode.devMakefiles :)Quick and Easy Makefile Guide Begin by crafting a file named Makefile – the control center for your project's build rules. In your Makefile, set up a rule like this: target: dependencies command target: Your desired output, like an executable. ...Jan 5, 2024·1 min read
404salad.hashnode.devDebugging C/C++ Programs with GDBIf you don't use GDB but program in C/C++, you are missing out on a powerful debugging tool. Here's a quick 5-minute tutorial to get you started. Step 1: Compile with Debug Symbols Compile your program using the -ggdb flag to include debug symbols fo...Dec 29, 2023·1 min read
404salad.hashnode.devCronjobsrunning stuff in the background at a specified time is awesome I forget to backup my files and so i use cron to do it for me. Here is a basic rundown- crontab is the tab of all cronjobs run crontab -e it will ask for setup, use your favorite edit...Dec 22, 2023·2 min read