Thoughts on Ruby on rails
Before starting with Ruby, I want to write about one of the key figures behind its rise, David Heinemeier Hansson, better known as DHH. He’s an interesting character – not only because he created t...
Before starting with Ruby, I want to write about one of the key figures behind its rise, David Heinemeier Hansson, better known as DHH. He’s an interesting character – not only because he created t...
Most application have problem not to scale some performance metric but scaling the team and codebase. Scaling a web application is not as easy as I thought it would. Both aspects, scaling the appl...
Decisions are the hardest to make, especially when its a choice between where you are and where you should be I joined hosteze in Feb 2024. The buisness idea was clear back then. I offered the mis...
There is a telegram group where people living in pune can add their room listings to find rooms/roomates/tenants for them. My task is to scrape the data from that channel and create an EDA report o...
Previously i’ve build a torrent client using golang that bencodes .torrent files to download the assets using bit torrent protocol. It was from a tutorial from build-your-own-x project and it was r...
The first ever application any developer builds unknowingly implements the monolithic architecture, all code sits into a single repo/code-base tightly coupled together. But when we want to scale t...
I think it was after people started using Claud AI that mermaid JS became popular. People asked it to create charts, and it provided markdown text outputs compatible with mermaid js for those flow ...
I am working on an application where users are uploading images on cloud (a S3 bucket in our case) from their device. One issue I’m addressing is the large size of these images. The images that the...
I was not able to load the environment variables in my next applications. What we usually do is create a .env.local file to store all API keys and credential secrets and then read them in the appli...
Introduction Amazon Simple Storage Service (S3) is like a big online storage room, similar to Google Drive or Dropbox. You can store all kinds of stuff there, like big files, documents, or picture...
aws documentation is really hard to understand. i can't seem to find a starting point anywhere. no way to search for solutions, no tutorials that don't take me back to some sort of "he...
Next.js offers a powerful way to create server-rendered and statically generated web applications. One of its key features is the ability to build APIs directly within your application using API ro...