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.
@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));
}
}
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.
The tools I reach for when building backend systems.
A real-world simulation of a full-stack banking platform.
A comprehensive banking system built from scratch, simulating real-world banking operations. This project covers the full lifecycle of a modern bank — from secure user authentication with OTP to fund transfers, loan management, and an admin dashboard. Designed with modularity and real-world complexity in mind.
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.