Skip to content
View nahiandev's full-sized avatar
πŸ’²
Working from home
πŸ’²
Working from home

Block or report nahiandev

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
nahiandev/README.md

πŸ‘‹ Hey, I’m Nahian

πŸš€ I'm a pragmatic Full Stack Developer with a backend-first mindset. I specialize in building scalable APIs, automating workflows, and crafting tools that solve real-world problems β€” not just ship features.


🧠 My Core Stack & Tools

Tech Area Stack
Languages C#, Java, Python, PHP, JS/TS
Frameworks ASP.NET Core Web API, NestJS, Node.js
WordPress Builders, Themes, Plugins, Custom Code
Databases MSSQL, MySQL, MongoDB, Postgres
ORMs EF Core, Dapper, NHibernate
Automation Selenium, Playwright, Crawlee, nodriver
Testing xUnit, NUnit
DevOps Git, GitHub, DigitalOcean, Azure
IDE/Code Editor VSCode, Visual Studio, Rider, IntelliJ

πŸ§ͺ Code That Teaches

// Clear interface segregation to avoid ambiguity
interface IInkPrinter { void Print(string doc); }
interface ILaserPrinter { void Print(string doc); }

internal class Printer : IInkPrinter, ILaserPrinter
{
    private void Print(string doc) { /* logic ambiguity for both printers */ } // ❌
    private void IInkPrinter.Print(string doc) { /* ink logic */ } // βœ…
    private void ILaserPrinter.Print(string doc) { /* laser logic */ } // βœ…
}

πŸ“Š GitHub Activity

Profile views


🀝 Let’s Collaborate

I work best with:

  • Solopreneurs looking to automate manual workflows
  • Teams needing clean API design
  • Clients who value performance and maintainability

πŸ”— Find Me Online

Pinned Loading

  1. attach-with attach-with Public

    Command prefixing for continuous workflow using single tool

    PowerShell

  2. DotFetch DotFetch Public

    An alternative to NeoFetch on Windows

    PowerShell

  3. DotFetch.NET DotFetch.NET Public

    DotNet version of DotFetch , Written in C# rather than PowerShell

    C#

  4. EraseConvo EraseConvo Public

    A simple Chrome / Edge Chromium extension to unsend all messenger conversations.

    JavaScript