Manoj Baishya's Writings

Manoj Baishya's Writings

My thoughts on technology, business, wellbeing and life.

10 Feb 2025

Median of two sorted arrays of different sizes

1,259 words, ~12 min read

This article explains the rationale behind the solution to a typical computer science problem, which involves finding the median of two sorted arrays of different sizes.
07 Feb 2025

C# Class View: Analyzing a .NET Solution using Roslyn APIs - Part 1

402 words, ~4 min read

Part 1 of this series talks about the backend code of 'C# Class View', a Visual Studio Code extension to introspect the logical structure of your .NET code.
23 Jan 2021

Conjugate Gradient

4 words, ~0 min read

The Conjugate Gradient method is an iterative algorithm for efficiently solving large sparse systems of linear equations, specifically those with a symmetric positive definite matrix from conservation problems arising in many fields of science and engineering, economics, finance and operations research.