Open to new opportunities

Muhammad Naqiudin

Software Engineer ·

I build and maintain the enterprise data systems that big engineering runs on — Oracle PL/SQL, ETL pipelines and C# .NET backends at Infineon Technologies — and craft fast, modern websites with Next.js on the side.

0 Years Experience
0 Projects Shipped
0 Certifications
0 Degree CGPA
scroll
Portrait of Muhammad Naqiudin
Based in Melaka, MY
About Me

Data people can trust, code people enjoy.

I'm a Software Engineer working as an L3 Master Data Solution Developer at Infineon Technologies, where I keep worldwide engineering databases accurate, available and fast. My day looks like Oracle PL/SQL packages, ETL and data warehouse fixes, C# .NET enhancements and weekly Jenkins releases.

Before Infineon I trained as a data scientist — XGBoost forecasting at AirAsia, Random Forest and LSTM network models at TM Research & Development, and a HoverNet deep-learning final year project at UKM, which I finished with First Class Honours.

Outside the enterprise world I freelance as a web developer, shipping Next.js and TypeScript sites with real SEO, real analytics and rule-based chatbots — including the one sitting in the corner of this page. Say hello to it.

📍 Melaka, Malaysia 🎓 UKM Class of 2025 First Class Honours 🗣️ MY · EN · ID
Education

Where it started.

Computer Science with a Data Science specialisation — finished top of the class rather than just on time.

Universiti Kebangsaan Malaysia (UKM)

Bachelor of Computer Science (Hons) — Data Science

Sept 2021 – Jul 2025 CGPA 3.70
First Class Honours Dean's List — 6 semesters FYP: Breast Cancer Prediction (HoverNet)

Malacca Matriculation College

Physical Science — Module 2 (Computer Science)

May 2020 – May 2021
Pre-university foundation Mathematics · Physics · Computer Science
Experience

Where I've worked.

Two years across enterprise master data, machine learning research and freelance web development.

Software Engineer — Master Data Developer

Infineon Technologies

Jul 2025 – Present Melaka, Malaysia

L3 support and development for Infineon's worldwide engineering master data systems — keeping data consistent across every system class and site.

  • Built Oracle PL/SQL functions, procedures and packages for patching, cleansing, restructuring and automated backend tasks.
  • Designed and refined ETL / data-warehouse flows with validation and error handling, lifting data reliability and system performance.
  • Delivered SAP data migration, de-duplication, cleansing and reporting work that streamlined enterprise workflows by ~30%.
  • Enhanced backend and frontend features in C# .NET, from bug fixes to full feature releases.
  • Acted as Software Release Manager (SRM) — weekly Jenkins CI/CD releases across DEV, INT and PROD.
  • Automated repeat tickets with KNIME workflows, saving roughly 50% of the manual handling time.
  • Handled incidents in Remedy and change requests in Octane; version control in TFS / Azure DevOps.
Oracle PL/SQLETLC# .NET SAPJenkinsAzure DevOpsKNIME

Web Developer — Freelance

Independent / Client Projects

Sept 2025 – Present Remote, Malaysia

End-to-end websites for real businesses — design, build, deploy, domain, SEO and after-care.

  • Responsive, high-performance sites in Next.js and TypeScript using SSR and SSG for fast first paint.
  • Deployed on Vercel and Cloudflare with DNS, SSL and CDN configured for safe, global delivery.
  • SEO work end to end: metadata, structured data, Lighthouse tuning, lazy loading, image optimisation and Google Search Console.
  • Shipped rule-based chatbots so visitors get product answers instantly, without a backend bill.
  • Ran requirements gathering directly with clients and delivered to agreed business goals and timelines.
Next.jsTypeScriptReact TailwindVercelCloudflareSEO

Data Scientist — Apprentice

AirAsia · K-Youth Employment Programme

Apr 2025 – Jun 2025 Sepang, Malaysia

Joined the data science team to forecast in-flight food waste and reduce cost per flight.

  • Built XGBoost models for food-waste prediction — cleaning, feature engineering and hyperparameter tuning.
  • Used Google Cloud Platform for data tracking, validation and workflow monitoring.
  • Trained in multicultural teamwork, communication and stakeholder presentation.
XGBoostPythonGCPFeature Engineering

Data Science Intern

TM Research & Development Sdn Bhd

Sept 2024 – Jan 2025 Cyberjaya, Malaysia

Network analytics — turning messy telco data into fault monitoring and quality-of-service insight.

  • Raised data quality by 90% by cleaning thousands of access-network, termination-log, CTT and speed-test records.
  • Built Random Forest Regression and LSTM time-series models predicting speed drops and faults at 80%+ accuracy.
  • Created Power BI and Python (Matplotlib / Seaborn) dashboards for weekly network performance reviews.
  • Supported the OracleDB → MariaDB migration with ETL development and rigorous testing.
  • Automated extraction with Selenium Robot Framework, cutting manual work by 60%.
  • Led Angular frontend work and REST API integration for internal monitoring platforms; contributed Spring Boot microservices.
  • Delivered 8+ Agile sprints using Jira and GitLab with cross-team collaboration.
Random ForestLSTMPower BI AngularSpring BootSeleniumMariaDB
Skills

My toolkit.

The tools I actually reach for — in the office, on client work and at 1 a.m. on side projects.

Languages

  • PyPython
  • SQSQL / PL-SQL
  • C#C# .NET
  • JaJava
  • TSTypeScript
  • JSJavaScript
  • PhPHP
  • RR

Web & Frameworks

  • NxNext.js
  • ReReact
  • NgAngular
  • NoNode.js
  • SpSpring Boot
  • DjDjango
  • FlFlask
  • ApREST API

Data Science & AI

  • SkScikit-Learn
  • TfTensorFlow
  • PtPyTorch
  • PdPandas
  • NpNumPy
  • CvOpenCV
  • YoYOLO / Ultralytics
  • SeSelenium

Cloud & Big Data

  • AzMicrosoft Azure
  • DfAzure Data Factory
  • DbAzure Databricks
  • FbMicrosoft Fabric
  • KnKNIME
  • HdHadoop / Hive
  • GcGoogle Cloud
  • VcVercel

Databases

  • OrOracleDB
  • MaMariaDB / MySQL
  • SASAP
  • PmphpMyAdmin
  • AcMS Access
  • DwData Warehouse

Tools & Analytics

  • GhGit / GitHub
  • JeJenkins
  • DoAzure DevOps / TFS
  • JiJira · Confluence
  • RmRemedy · Octane
  • BiPower BI · Tableau
  • WsWinSCP · Linux
  • AiCopilot · LLM tooling
Projects

What I've built.

Enterprise data work, machine learning research and client websites. Six highlights below — the rest live on the projects page.

Featured
migrate_master_data.pks
CREATE OR REPLACE PACKAGE BODY mdm_migration AS
  PROCEDURE merge_duplicates(p_class IN VARCHAR2) IS
  BEGIN
    MERGE INTO mdm_part t
    USING (SELECT golden_id, part_no, site
             FROM stg_part_dedup
            WHERE class = p_class) s
       ON (t.part_no = s.part_no)
    WHEN MATCHED THEN UPDATE SET t.golden_id = s.golden_id
    WHEN NOT MATCHED THEN INSERT /* new golden record */
      VALUES (s.golden_id, s.part_no, s.site);
    log_pkg.audit('MERGE', SQL%ROWCOUNT);
  END;
END mdm_migration;

Enterprise Master Data Migration & Cleansing

SAP-related migration and de-duplication across Infineon's worldwide engineering master data. PL/SQL packages merge golden records, an ETL layer validates every load, and KNIME workflows automate the repeat tickets — around 30% less manual workflow and 50% less handling time on recurring data patches.

Oracle PL/SQLETLSAP KNIMEData Quality
Case study
Client Work
homestayshimahjay.com

Homestay Shimah Jay — Booking Site

Bilingual marketing site for six boutique homestays in Melaka. Next.js 16 App Router with a locale segment, a statically generated page per house, generated sitemap with hreflang, and a rule-based chatbot answering guest questions 24/7.

Next.js 16React 19TypeScript Tailwind v4SEO
Case study
Featured
Breast cancer prediction system interface

Breast Cancer Prediction — HoverNet

Final year project: a Django web system that runs the HoverNet deep-learning framework to segment and classify nuclei in histopathology images from the PanNuke dataset, giving pathologists a faster second opinion.

PythonDjangoPyTorch HoverNetMySQL
Case study
Real-time face mask detection results

Real-Time Face Mask Detection

YOLOv8 + OpenCV detector served through Flask. Three-class output (worn, worn incorrectly, not worn) with colour-coded live webcam overlay — mAP50 0.905, precision 0.898.

YOLOv8OpenCVFlaskRoboflow

Network Fault & Speed Prediction

Time-series forecasting on TM's access-network telemetry. Random Forest Regression and LSTM models anticipate speed degradation and faults at 80%+ accuracy, surfaced through Power BI dashboards for weekly ops reviews.

LSTMRandom ForestPower BIETL
Case study
Angular product management dashboard

Angular & REST API Platform

Token-authenticated Angular 18 application with product CRUD, modal forms, route-guarded pages and a paginated detail view driven by asynchronous date-range queries.

Angular 18TypeScriptREST APIJWT
Case study
Certifications

Credentials.

Hover a card to see the credential details. All verifiable — links included where the issuer provides one.

🏅

Power BI Data Analyst Associate

Microsoft

2025

ID · 3EC00920AAB8D3DC

Modelling, DAX, data preparation and report design in Power BI.

Verify →
☁️

Azure Data Fundamentals (DP-900)

Microsoft

2025

ID · 27D46BD4DEA08F19

Core data concepts, relational and non-relational data, analytics on Azure.

Verify →
⚛️

Frontend Developer (React)

HackerRank

2024

ID · 8C2A15FC6E0F

React components, state management and DOM problem solving under timed conditions.

Verify →
💻

Software Engineer Intern

HackerRank

2024

ID · 56CCD82A6CD3

Data structures, algorithms and applied problem solving assessment.

Verify →
🗄️

SQL (Intermediate)

HackerRank

2024

Joins · aggregation · subqueries

Intermediate SQL assessment covering complex joins, grouping and nested queries.

📊

Analyzing Data with Power BI

Asia Pacific University (APU)

2025

Credly verified

Applied analytics programme — data modelling and executive reporting.

Verify →
🚀

K-Youth Employment Programme

Khazanah Nasional

2025

AirAsia cohort

Industry apprenticeship in data science, professional communication and teamwork.

Awards & Involvements

Program Leader — SCHOOL@UKM Prototyping Workshop

Led a Figma + Bravo Studio prototyping workshop for students · 2024

🥇

Gold — Contingent March-Past

Sukan Antara Fakulti (SAF), UKM · 2023

🥉

Bronze — AR/VR Reality Competition

Mobile Application Development Club · 2022

🥈

Silver — IDIIC International Challenge

International Digital Innovation & Invention Challenge · 2021

Contact

Let's build something.

Got a role, a project or just a question about the code on this page? My inbox is open.

Email naqiudin73@gmail.com Phone +60 17-622 0665
Location 75460 Melaka, Malaysia

Find me online

Currently a full-time Software Engineer and open to freelance web projects and data engineering opportunities. I usually reply within 24 hours.

This opens your own email app with everything filled in — nothing is stored on a server.