Professional Experience

My journey in the tech industry, building scalable solutions and delivering impact.


Freelance Fullstack Developer

LuumtechLuumtech | Apr 2022 – Present

My personal company for delivering freelance full-stack solutions. I specialize in developing complex ERP modules and deploying scalable full-stack MVPs.

Tech Stack

JSON
role.json
{
  "role": "Freelance Fullstack Developer",
  "company": "Luumtech",
  "type": "Founder",
  "stack": [
    "Node.js",
    "React",
    "PostgreSQL",
    "Docker",
    "Redis"
  ],
  "impact": "Workflow efficiency +40%"
}

Full Stack Developer

AverloAverlo | Apr 2023 – Dec 2024

Focused on optimizing lead generation and e-commerce tools for a tech firm.

I integrated marketing APIs (Meta, Google) and unified payment gateways (Stripe, Revolut) to automate financial pipelines.

Integration

JS
pipeline.js
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

FydezFydez | Sep 2023 – June 2025

Startup focused on the Shopify ecosystem and custom integrations.

Also built custom Shopify apps and WooCommerce extensions using React, Node.js, and Liquid.

Mobile Sync

Dart
sync_service.dart
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

HuaweiHuawei | Jun 2022 – Sep 2022

Deployed full-stack cloud-native apps with Next.js/Node.js on Huawei Cloud and led technical workshops.

Deployment

Bash
deploy.sh
# 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."

Was this page helpful?