Professional Experience
My journey in the tech industry, building scalable solutions and delivering impact.
Freelance Fullstack Developer
My personal company for delivering freelance full-stack solutions. I specialize in developing complex ERP modules and deploying scalable full-stack MVPs.
Key Highlight: Directly contributed to a 40% improvement in client workflows by optimizing ERP modules.
- Name
Clients- Description
- Name
Focus- Description
ERP Systems, MVPs, Scalability
Tech Stack
{
"role": "Freelance Fullstack Developer",
"company": "Luumtech",
"type": "Founder",
"stack": [
"Node.js",
"React",
"PostgreSQL",
"Docker",
"Redis"
],
"impact": "Workflow efficiency +40%"
}
Full Stack Developer
Focused on optimizing lead generation and e-commerce tools for a tech firm.
Built high-throughput lead gen tools that significantly boosted user acquisition.
I integrated marketing APIs (Meta, Google) and unified payment gateways (Stripe, Revolut) to automate financial pipelines.
Integration
async function processLead(user) {
// 1. Capture Lead
const lead = await NextJS.capture(user);
// 2. Sync with Marketing APIs
await MetaAds.sync(lead);
await GoogleAds.sync(lead);
// 3. Process Payment
const payment = await Stripe.charge({
amount: 100,
currency: 'usd',
source: lead.payment_method
});
return { status: 'acquired', revenue: payment.amount };
}
Shopify / App Developer
Startup focused on the Shopify ecosystem and custom integrations.
Developed cross-platform Flutter mobile apps that sync seamlessly with Shopify stores in real-time.
Also built custom Shopify apps and WooCommerce extensions using React, Node.js, and Liquid.
Mobile Sync
class ShopifySync {
final ShopifyClient client;
Future<void> syncProducts() async {
// Fetch latest products from Shopify Store
var products = await client.getProducts();
// Update local Flutter app database
await LocalDb.insertAll(products);
print("Synced ${products.length} items.");
}
}
Developer Relations Engineer Intern
Deployed full-stack cloud-native apps with Next.js/Node.js on Huawei Cloud and led technical workshops.
Awarded 'Weekly Hero' for outstanding contributions to the developer ecosystem.
Deployment
# Deploying to Huawei Cloud
echo "Building Next.js application..."
npm run build
echo "Deploying to HMS Core..."
hcloud deploy --service=app-engine --region=tr-west-1
echo "Success! App is live."