These days there is a lot of interest in orbital data centers or data centers in space. Data centers are needed to both store and process data. As we are incorporating more and more digital products into our lives, we need to store massive amounts of data. We also need to process the data to…
Tag: Software Engineering
Supply chain risks with plugin ecosystems
Batteries included vs Plugin based systems A good platform is often batteries included. It has support for most of the frequent use cases for its users out of the box. But there are many systems which only support a robust but shallow core. It depends upon an ecosystem of third party plugins or libraries to…
The Best of Times, The Worst of Times
Charles Dickens opens A Tale of Two Cities with one of the most quoted passages in literature: It was the best of times, it was the worst of times, it was the age of wisdom, it was the age of foolishness, it was the epoch of belief, it was the epoch of incredulity, it was…
Reading Culture
Why Writing Culture Fails Without Reading Culture Most modern software companies pride themselves on their writing culture. Amazon, for instance, is often cited as the gold standard here. And they are right: writing has immense value. Well-written documents sharpen the writer’s thinking, align diverse stakeholders, and make communication asynchronous. Each reader can absorb the content at…
How am I using GenAI?
Generative AI is rapidly gaining traction across industries, and software engineering is often cited as one of the fields poised for the most disruption. Personally, I’ve been slow to adopt GenAI tools in my day-to-day work. This post is a reflection on how I’m currently using them and where they’ve made an impact. ChatGPT &…
Programming And Mental Model
In the software industry, people move from project to project and company to company. A programmer working on a project for a long time is generally very productive with the codebase. If another developer joins to replace them, there is a period of low productivity and risky outcomes. We can call this the transition time. During…
Effective Code Review
Code review is very essential in developing quality software. I have blogged about my code review experience before. Code review helps us to find defects in code. It helps us in sharing knowledge and establishing a common convention in the code base. Still problems in code review comes due to use of primitive tools, poor processes…
Design Patterns
In software engineering, a design pattern is a general reusable solution to a commonly occurring problem in software design. A design pattern is not a finished design that can be transformed directly into code. It is a description or template for how to solve a problem that can be used in many different situations.Wikipedia Design…