Posts

Interesting read - how google scales kubernetes to 130k nodes

 https://cloud.google.com/blog/products/containers-kubernetes/how-we-built-a-130000-node-gke-cluster/

dotnet-counters not showing threadpool counters in .NET 10 After upgrading from .NET 9 to .NET 10

Image
I just upgraded an ASP.NET MVC application from .NET 9 to .NET 10. The process was straightforward: I simply changed the target framework version in the project file and updated a few NuGet packages. The app is hosted in Kubernetes, so I also updated the ASP.NET image version in the Dockerfile. I built and deployed everything, and it went smoothly—taking just about 10 minutes in total. Next, I wanted to inspect the ThreadPool performance counters inside the running container. downloaded dotnet-counters direct binaries from https://learn.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-counters  copied to container with kubectl cp .  Initially ran dotnet-counters from Windows Terminal (connected via kubectl exec). → The default System.Runtime counters loaded, but ThreadPool metrics (like threadpool-thread-count) were missing.     Switched to PuTTY (same kubectl exec session). → ThreadPool counters appeared.     The issue was specific to Windows Terminal—li...

Interesting things / Finds

 I will update this page with interesting things / finds i find day to day Code  Things i remember 09/nov/2025 JSLinux - Linux In Browser I think this is the first project that ran Linux in browser  created by lgendery Fabrice Bellard  ( FFmpeg , QEMU) https://bellard.org/jslinux/  qb.js  - QBASIC implementation in javascript   QBASIC implementation in javascript stevehanov  https://stevehanov.ca/blog/?id=92  Kilo -  small text editor in less than 1K    Created by  antirez ( Salvatore Sanfilippo) creator of redis   https://github.com/antirez/kilo Building an Operating System for the Raspberry Pi https://jsandler18.github.io/ Emulating The IBM PC On An ESP32 https://hackaday.com/2021/07/28/emulating-the-ibm-pc-on-an-esp32/  Exclaidraw A whiteboard where you can sketch sequence diagrams, flowcharts, architecture diagrams, or pretty much anything visual. Built on  React https://github.com/excalid...

Reading SOAP / WCF client Request XML Response XML And HTTP Headers with system.servicemodel behavior and message inspector

To troubleshoot issues you need to log SOAP request, response XML, and response HTTP headers. You can use an endpoint behavior and a message inspector to achieve it. See the below sample — it will call a public service: https://www.crcind.com/csp/samples/SOAP.Demo.cls Project File <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net9.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <PackageReference Include="System.ServiceModel.Http" Version="8.1.2" /> </ItemGroup> </Project> Program.cs using SoapAddIntegerDemo; using System; using System.ServiceModel; using System.Threading.Tasks; class Program { static async Task Main() { var binding = new BasicHttpBinding(); binding.Security.Mode = Basic...

Tool - excalidraw - Draw sequence diagrams flow charts

For a long time, I’ve been using WebSequenceDiagrams.com and SequenceDiagram.org to draw sequence diagrams. Both are great tools — but if you don’t use them regularly, it takes a bit of time to get back into the flow. Recently, I came across Excalidraw , It’s a simple, intuitive whiteboard where you can sketch sequence diagrams, flowcharts, architecture diagrams, or pretty much anything visual. The best part? It’s open source — you can check it out https://excalidraw.com/ (or even self-host it) here: github.com/excalidraw/excalidraw . If you haven’t tried it , Give It a try !

Welcome

Welcome to Daily Dev Adventure — a place where I share the real, unfiltered bits of a developer’s life. Not just code snippets and tech tutorials, but the everyday adventures that come with building software — debugging chaos, little victories, unexpected bugs, and those “aha!” moments that make it all worth it.