Available for opportunities

Sohib
Mansoori

Backend Developer

I design and build server-side systems that are clean, efficient, and built to last. Passionate about problem-solving, scalable architecture, and writing code that actually makes sense.

1+
Real-World Projects
5+
Tech Stack
Curiosity
BankingService.java
@Service
public class BankingService {

  @Autowired
  private TransactionRepo txRepo;

  @Transactional
  public TxResponse transfer(
      FundTransferDTO dto) {

    // validate OTP first
    validateOTP(dto.getOtp());

    Account src = getAccount(
        dto.getSenderUPI());
    Account dst = getAccount(
        dto.getReceiverUPI());

    src.debit(dto.getAmount());
    dst.credit(dto.getAmount());

    return txRepo.save(
      buildTx(src, dst, dto));
  }
}

The person behind the code

Hey, I'm Sohib Mansoori. I got into backend development because I genuinely enjoy figuring out how things work under the hood — not just making them look good on the surface. There's something satisfying about designing a system that handles real-world complexity without falling apart.

My main focus right now is Java and Spring Boot, building APIs and data flows that are both maintainable and performant. I spend a lot of time thinking about data structures and system design, because I believe that good code starts with good thinking.

I'm a continuous learner by habit. Whether it's reading docs, building side projects, or breaking things to understand why they broke — I'm always working to get better. If you're looking for someone who cares deeply about the craft and isn't afraid to dig deep, that's me.

🏗️
System Design
Low-level design, scalable patterns
Performance First
Efficient queries, clean data flows
🧩
Problem Solver
Algorithms, logic, critical thinking
📚
Always Learning
New patterns, frameworks, concepts

Skills & Technologies

The tools I reach for when building backend systems.

Backend
Java
Spring Boot
Java Servlets
JSP
Database
MySQL
JDBC
Core CS
Data Structures
Algorithms
Concepts
REST APIs
System Design (LLD)
Tools
Git
GitHub

Featured Project

A real-world simulation of a full-stack banking platform.

Get In Touch

Open to full-time roles, collaborations, and interesting backend problems.

Whether you have a project in mind, a role you think I'd be a good fit for, or just want to chat about backend systems and architecture — I'm always happy to connect.