Hello!
RSS FeedWelcome to my blog! I'm Muthukumar, a software developer specializing in frontend technologies. Currently exploring Go and Zig, I spend my free time coding and building a personal todo app with Tauri. Join me as I share insights, tips, and snippets from my tech journey.
Featured
Why you should avoid magic numbers in code?
Published: at 03:53 AMMagic numbers are numbers in code that don't have any meaning to them. So it is always a good practice to assign the number to a variable and name the variable corresponding to its value.
Recent Posts
How to read a file line by line in zig
Published: at 05:25 PMSmall snippet to read and count number of lines in a file in zig
How to start PostgreSQL database using Docker?
Published: at 05:06 AMQuickly spin up a PostgreSQL database using docker.
My bookmarks and links
Published: at 06:10 AMMy bookmarks, links, and list of tools links I collected over the years are listed in this post.
How to make Graphql request using fetch API?
Published: at 02:19 AMWhen working with Graphql you want to make graphql requests for queries and mutations. If you're not using some client-side javascript libraries for handling Graphql requests then using fetch is an easy solution.