abdullahbinaqeel / README.md
deployFull Stack Engineer & AI Developer@MyndEdgeAvailable for hire

Hi, I'm Abdullah 👋Full Stack Engineer & AI Developer

I build end-to-end, AI-first products — from RAG/LLM pipelines to cross-platform apps — turning research-grade ideas into shipped, production software.

Open to full-time roles, freelance & collaborations

Topics
full-stackgenerative-airag-llmscomputer-visioninformation-securitycloud-devops
Location
Faisalabad, Pakistan
Timezone
Asia/Karachi
Local time
--:--:--
#overview

Dashboard

A live snapshot of what I'm shipping, the numbers behind it, and a one-click resume.

what i'm doing now

Building investor-backed AI products at MyndEdge, and shipping INSAF — an AI-powered legal-tech app — to production on iOS & Android.

0+
Projects shipped
0+
Years engineering
0
Domains mastered
0
Awards & honors
#dependencies

Technical Stack

Grouped by architectural layer — not a flat tag soup. Each layer is a module I can own end-to-end.

Languages

Core programming languages

L1
+C++
+C#
+Python
+SQL
+JavaScript

Frameworks & Libraries

Web, mobile & AI/ML

L2
+React
+React-Native
+Next.js
+Express.js
+Node.js
+Flask
+FastAPI
+Django
+Tailwind CSS
+LangChain
+TensorFlow
+PyTorch
+OpenCV
+YOLO
+ResNet50
+BERT
+GPT
+RAG

Tools

Dev, data & workflow

L3
+Git
+GitHub
+Docker
+CI/CD
+XAMPP/WAMP
+Postman
+VectorDB
+Redis
+PostgreSQL

Platforms

Cloud & operating systems

L4
+AWS
+Google Cloud
+Firebase
+Linux
+Arch Linux
#workflows

Architectural Process Tracks

How an abstract problem becomes shipped, validated software. Two lanes — engineering pipeline and client lifecycle.

engineering_pipeline
01
Prompt / Problem

Abstract problem statement or research idea

02
System Architecture

Decompose into modules, data flow & contracts

03
Raw Code

Implement, test, and benchmark each component

04
Automated Deploy

CI, containerize, ship & monitor

client_lifecycle
01
Discovery

Requirements, constraints & success metrics

02
Design Review

Architecture diagrams & trade-off analysis

03
Active Build

Iterative implementation with checkpoints

04
Validation

Testing, audit & handoff

#repositories

Repositories

Public repositories — request payload is the stack, response body is the impact. Pinned first.

Pinned
insafPublicPinned

AI-powered legal-tech mobile app connecting clients with legal guidance across Pakistan — cross-platform iOS/Android, Firebase serverless backend, end-to-end encrypted document management.

react-nativetypescriptfirebaseai
TypeScript 14 0Visit site

Diffusion models for image generation & reconstruction — forward/reverse noising, sampling and reconstruction pipelines.

pytorchdiffusiongenerative
Jupyter Notebook 8 0View source
ghostdataPublicPinned

Android app exploring internet access with no mobile data allowance — native client + network-layer experimentation.

kotlinandroid
Kotlin 5 0View source
14 repositories
sorted: recently updated
go-health-companionPrivate

GO — an AI-powered women's health companion. Full-stack, TypeScript-first app (Next.js 15 + FastAPI) with secure auth, role-based routing and AI health features.

next-jsfastapillm-rag
TypeScript 4 0

AI-powered real-estate investment platform — property portfolio management, ROI tracking and secure financial data visualization.

reactexpresspostgresql
JavaScript 4 0Visit site

Unpaired image-to-image translation with CycleGAN and paired translation with pix2pix.

ganspytorchvision
Jupyter Notebook 2 0View source

Image-captioning system bridging vision and language with a ResNet50 encoder and LSTM decoder.

cvnlpresnet50
Jupyter Notebook 3 0View source

Self-supervised image representation learning using Masked Autoencoders (MAE).

sslpytorchvision
Jupyter Notebook 2 0View source

Secure file-management system using hybrid AES + RSA encryption — symmetric speed with asymmetric key exchange.

aesrsasecurity
Python 1 0View source
mini-osPublic

Operating-system simulation (mini-OS) implementing core scheduling/memory concepts, built on Ubuntu Linux.

cossystems

Automated configuration & deployment of a Hadoop Distributed File System cluster.

hadoophdfsdata-eng
Jupyter Notebook 0 0View source

Applicant-tracking & recruitment system for managing candidates through the hiring pipeline.

javascriptnode-js
JavaScript 0 0View source

Dictionary implemented with a Trie tree in C++ for fast prefix lookup and autocomplete.

calgorithms

Image-enhancement pipeline improving clarity of dull/dark brain-tumor scans for better diagnosis.

opencvcvmedical
Jupyter Notebook 0 0View source
#git log

Professional Chronology

An experience ledger styled like commit history — system architecture, optimization, and hard engineering contributions.

Associate Full Stack AI Engineer

May 2025 — Present
@ MyndEdge
  • Build end-to-end product lifecycles for multiple investor-acquired AI solutions, bridging business strategy and AI-first engineering
  • Architected & deployed scalable, data-driven apps integrating ML pipelines — RAG, LLMs, NLP — with high-performance front-end & back-end frameworks
  • Designed interactive, generative-AI platforms with personalized experiences, real-time feedback loops & collaborative environments

Research Paper Assistant

Jun 2024 — Feb 2025
@ Academic Research
  • Co-authored “A Novel Approach of Skin Cancer Detection using Convolutional Neural Networks and Transfer Learning”
  • Built & evaluated CNN + transfer-learning models for dermoscopic skin-cancer classification
#academic record

Credentials & Education

The academic base, the metrics behind the work, and competitive wins.

academic base
  • FAST-NUCES

    BS Computer Science
    Sep 2021 — Dec 2025
  • Lawrence University, USA

    BS Computer Science (Exchange Semester)
    Jan 2023 — Apr 2023
  • Home Schooling, Faisalabad

    A-Levels — Math, Physics, Chemistry, Computing, Business
    Aug 2019 — Aug 2021
Years coding4+
Awards & honors3
Research papers1
competitive vectors
ICPC 2024-25 — International Collegiate Programming Competition (Feb 2025)
Winner — Ignite AI Wrapper, District Level (Nov 2025)
Winner — GDGoC LeetCode Challenge, Google Developer Club (Apr 2025)
#publications

Technical Writing

Deep-dives with the actual code embedded — read-time, date and category tagged. Latest from Medium.

Generative AI10 min read· 2026-03-09Medium
Unmasking the Magic: Building a Masked Autoencoder (MAE) from Scratch in PyTorch

Mask 75% of an image's patches, ask a transformer to reconstruct the rest — and you get representations that transfer. Here's how MAE works, built from scratch.

class=class="text-green">"text-faint italic"># Randomly mask class="text-orange">75% of patches, keep the rest
def random_masking(x, mask_ratio=class="text-orange">0.75):
    N, L, D = x.shape
    keep = int(L * (class="text-orange">1 - mask_ratio))
    idx = torch.argsort(torch.rand(N, L), dim=class="text-orange">1)
    return torch.gather(x, class="text-orange">1, idx[:, :keep, None].expand(-class="text-orange">1, -class="text-orange">1, D))
Read on Medium
CV + NLP8 min read· 2026-02-12Medium
Neural Storyteller: Bridging Vision and Language with ResNet50 & LSTMs

A picture is worth a thousand words — but can a machine learn even ten of them? Building an image-captioning system with a ResNet50 encoder and an LSTM decoder.

class=class="text-green">"text-faint italic"># ResNet50 encodes the image → LSTM decodes a caption
feats = resnet50(image)              class=class="text-green">"text-faint italic"># [B, class="text-orange">2048]
h = embed(feats).unsqueeze(class="text-orange">1)        class=class="text-green">"text-faint italic"># project to LSTM space
out, _ = lstm(word_embeddings, (h, c))
logits = fc(out)                     class=class="text-green">"text-faint italic"># next-word distribution
Read on Medium
Security7 min read· 2025-05-17

Wrapping Symmetric Keys: Why Hybrid AES + RSA Wins

AES is fast but key distribution is hard; RSA is slow but solves key exchange. Here's how to combine them correctly.

class=class="text-green">"text-faint italic"># Encrypt AES key with RSA public key
session_key = os.urandom(class="text-orange">32)         class=class="text-green">"text-faint italic"># AES-class="text-orange">256
cipher_rsa = PKCS1_OAEP.new(pub_key)
enc_key = cipher_rsa.encrypt(session_key)
Generative AI9 min read· 2026-04-28

Denoising Diffusion in 40 Lines

The forward process adds Gaussian noise; the model learns to reverse it. The core loop is simpler than the math suggests.

class=class="text-green">"text-faint italic"># Forward noising step
def q_sample(x0, t, noise):
    a = alphas_cumprod[t]
    return a.sqrt() * x0 + (class="text-orange">1 - a).sqrt() * noise
Algorithms6 min read· 2025-03-02

Tries: The Data Structure Behind Autocomplete

Why a Trie beats a hash map for prefix queries, and how to keep it memory-efficient in C++.

struct Node {
    Node* next[class="text-orange">26] = {};
    bool end = false;
};
class=class="text-green">"text-faint italic">// insert: O(L), prefix search: O(L)
#telemetry

Live Activity Stream

A 12-month contribution canvas mirroring version-control activity, with streak telemetry.

@Abdullahbinaqeel
Open
LessMore
0
Contributions (12mo)
0d
Longest streak
0
Public repos
#live demos

The Lab

Functional, in-browser playgrounds — not screenshots. Each runs real logic on the client.

Code Runner

Write Python, JavaScript or C++ and run it for real — output streamed from a sandboxed execution engine.

main.py
output
// hit Run to execute Python

Compiled & executed remotely via the Wandbox engine — real stdout/stderr, no sandbox tricks.

#config matrix

System Configuration

The hardware, tools, and automation that the work runs on.

Physical Infrastructure

Workstation
Custom Linux/Windows rig
Display
Dual monitor setup
Input
Mechanical keyboard + mouse

Development Interface

Editor
VS Code / Jupyter
Terminal
zsh + tmux
Font
JetBrains Mono

Utility & Automation

OS
Ubuntu Linux
Containers
Docker
Notebooks
Jupyter / Colab
#engagement matrix

How We Can Work Together

Tiered engagement models — pick the contract shape that fits the problem.

POST/engagement

Full-Time Structural Engagement

  • Product engineering & systems ownership
  • Codebase scaling & architecture
  • ML/security feature delivery
PUT/engagement

Targeted Sprint Contracts

  • MVPs & high-fidelity prototypes
  • Feature-sprint execution
  • ML model prototyping
GET/engagement

Advisory / Code Review

  • Security & code auditing
  • Design feedback
  • System architecture validation