Senior Software Engineer
@ Azki Vam
- Build and evolve FinTech services and high-volume business workflows.
- Design REST APIs, distributed backend systems, and Camunda BPMN processes.
- Mentor engineers, review code, and improve engineering standards.
Available for the right opportunity
I build resilient backend systems that move real money, orchestrate complex workflows, and remain dependable when scale gets serious.
1package com.mehdivarse.fintech.service;
2
3@Service
4public class TransactionService {
5
6 private final LedgerRepository ledger;
7 private final EventPublisher events;
8
9 @Transactional
10 public Result credit(AccountId id, Money amount) {
11 var account = ledger.findForUpdate(id);
12 account.credit(amount);
13 events.publish(new AccountCredited(id));
14 return Result.success();
15 }
16}
01 / EXPERIENCE
02 / EXPERTISE
03 / ABOUT
I turn high-stakes business complexity into calm, maintainable systems.
My work spans FinTech, real-time platforms, workflow orchestration, and engineering leadership. I care about architecture that teams can evolve—not diagrams that only look good in meetings.
04 / PROJECTS
A production-ready API for converting Persian names and words into readable Finglish. It combines a curated pronunciation dictionary, spelling normalization, and phonetic fallbacks to provide reliable results for real-world applications.
Read the API documentation ↗05 / LET'S TALK