Go vs Rust vs Bun vs Node, Simple Http Benchmark V2

A while ago, I published an article titled "Go vs Rust vs Bun vs Node, Simple Http Benchmark" and I have been thrilled with the response and the valuable feedback I received. I truly appreciate all the input. Based on the feedback, I understand that there is room for improvement in this test. Here are some of the key points that were highlighted: It would be really helpful to enhance the presentation of the results by incorporating graphs or other visual aids....

September 18, 2023 · 7 min

Using Github Actions with Private Repositories in the Same Organization

I have been struggling with Github Actions for a couple of hours now. My problem is that Github Actions cannot read from private repositories in the same organization. Additionally, I have been unable to install Go packages because Git does not know which username and password to use. This post describes a solution to these issues. For a hobby project, my friend and I have an organization where we store all our code....

September 10, 2023 · 3 min

Building a data warehouse

A while ago, I was given the opportunity to be involved in a data warehouse project for Zimpler, which is my current employer. I joined this project mainly because I had no experience in the field and wanted to explore how to build a data warehouse and learn the process, and I did. Here are some things I’ve learned since the beginning. PS, some people will probably think this is basic stuff, and it probably is....

August 22, 2023 · 6 min

Passkeys - The password killer

You may be skeptical of the title, thinking, “What kind of drug is this guy on and where can I get it?” But rest assured, it’s not clickbait. The title describes the future of passwords that we are moving towards. We’re talking about PassKeys, the potential killer of passwords, which can be found at https://www.passkeys.com/. The biggest problem with passwords today is that people tend to create weak ones. We want passwords that are both memorable and secure, but we often choose passwords that are easy to guess, such as the name of our pet and the year it was born, with maybe a “!...

July 21, 2023 · 5 min

Emulating Aws Services Locally With Localstack Sqs and Sns

Learn how to emulate AWS services like SNS, SQS, and S3 on your local machine using Localstack. This guide walks you through setting up Localstack and creating queues using AWS CLI. You’ll also learn how to set up SQS and SNS client with GO, and get tips on using custom endpoints. Test your code locally against AWS services without worrying about AWS costs. Check out this guide for developers.

June 1, 2023 · 5 min