Askur Rahman
AI Integration Specialist · CTO @ Telixor

AI Integration Specialist & Full-Stack Developer. Building production-grade software, end-to-end.

Full-stack developer across React, Next.js, and Node.js — building e-commerce platforms, business websites, and web tools end-to-end. Currently CTO at Telixor, leading architecture, system design, and delivery for a marketplace platform connecting clients with developers.

/journey — production timeline

Eight years, six chapters, one continuous climb.

From founding CTO work at Telixor back through analytics leadership, full-stack engineering, and the first IT analyst role that started it all in 2018.

Verify full history on LinkedIn ↗
8+ YrsIn Tech Domain
6Career Chapters
35%+Perf Optimization
8+Client Platforms
2025
~/journey/telixor-cto.sh

Full-Stack Developer & CTO

Jul 2025 — Present · 1 yr 1 mo
Telixor · Full-time · Remote
2Platforms Shipped
100%Technical Ownership
$ deploy --platform=telixor --role=cto

Architected and built Telixor's web platform end-to-end, then launched a marketplace connecting clients with skilled developers.

  • Architected and built Telixor's web platform end-to-end using React.js, Next.js, and Node.js.
  • Led technical decisions across system design, database architecture, and cloud deployment.
  • Launched a marketplace platform connecting clients with skilled developers.
React.jsNext.jsNode.jsVercelSystem Architecture
+ read the full chapter
2024
~/journey/web-analytics-director.sh

Web Analytics Director

Apr 2024 — Jun 2025 · 1 yr 3 mos
eMachines Limited · Full-time · Dhaka, Bangladesh (Remote)
60%+Reporting Uplift
5+Clients Managed
$ ga4 --track=funnel --clients=5

Led the analytics layer that showed clients and teams exactly where their funnels were leaking.

  • Led web analytics strategy across client sites; implemented GA4 and custom event tracking, lifting actionable insight reporting by 60%.
  • Managed dashboards and monthly performance reporting for 5+ clients.
Google Analytics 4Data VisualizationConversion Optimization
+ read the full chapter
2019
~/journey/opb-software-engineer.sh

Software Engineer / Web Developer

Jan 2019 — Mar 2024 · 5 yrs 2 mos
OPB-Online Marketplace · Full-time · Remote
35%+Faster Page Loads
8+Client Sites Shipped
$ build --stack=react-next --perf+35%

Five years building and scaling OPB's client-facing web platforms — from responsive business sites to performance-tuned, payment-integrated storefronts.

  • Built responsive business websites with React.js and Next.js, reducing average page load time by 35%.
  • Delivered and maintained 8+ client websites, integrating third-party APIs and payment gateways.
React.jsNext.jsREST APIsPayment Gateways
+ read the full chapter
$ cat earlier-experience.log
RoleCompanyYears
Full-Stack Developer (Freelance)Upwork2016 – 2020
IT AnalystEnergia Blanco Ltd.2018 – 2020
Jr. Technology OfficerALCO Pharma Limited2014 – 2018
Education
MBA — Manarat International University
Certifications
PMP (Cert Prep) Google Data Analytics JS/HTML/CSS — Duke (Coursera) Advanced Google Ads

/projects — production build vault

Eight builds, fully documented.

Selected case studies spanning frontend state architecture, backend infrastructure, sandboxed evaluation, distributed systems design, and full-stack product builds.

Browse the code on GitHub ↗
/projects/worldcup-fe 2026
Client (BST)
──[ Mutation ]──>
UI State Tree

World Cup 2026 Dashboard — real-time tournament telemetry for BST timezone

Frontend Architect & State Engineer

A localized FIFA World Cup 2026 dashboard optimized for real-time tournament telemetry. Features dynamic schedule mutation engines converting raw UTC match fixtures into Bangladesh Standard Time (BST) with zero layout shift. Engineered as Step 1 of an explicit 5-stage architectural pipeline, completely decoupling the rendering layer using a verified mock data engine to validate state changes and structural UI fidelity before backend cutover.

  • Zustand store modeled around normalized match/fixture entities to avoid prop-drilling across the schedule grid.
  • Mock data layer mirrors the exact shape of the planned backend response, so swapping in the live API requires zero component changes.
  • BST conversion handled at the data layer, not in components — every view reads already-localized timestamps.
+ view technical details
/projects/worldcup-be 2026
FastAPI Router
──[ Redis ]──>
PostgreSQL

Tournament Telemetry Core — high-concurrency asynchronous match engine

Backend Infrastructure Engineer

An asynchronous FastAPI backend engine built to orchestrate and serve live tournament states across 7 comprehensive REST API modules. Implements rigid relational schemas inside PostgreSQL with Alembic migrations for zero-downtime structural database versioning. Features an aggressive Redis caching tier deployed to offload heavy read traffic from the primary database during transactional match telemetry spikes, coupled with a deterministic data-seeding framework aligned with the frontend mock schema.

  • Alembic migrations version-controlled independently from application code for safer, revertible schema changes.
  • Redis applied selectively as a cache-aside layer on read-heavy endpoints only, avoiding stale-write risk on live score updates.
  • Seed data generated deterministically from fixed fixture IDs, so frontend and backend teams test against identical data.
+ view technical details
/projects/pyquiz-pro 2026
Code Input
──[ Sandbox ]──>
LLM Evaluator

PyQuiz Pro — sandboxed automated code evaluation and recruitment platform

Full-Stack Engineer & AI Integrator

A premium, enterprise-grade technical assessment platform engineered with a high-fidelity cyber-dark aesthetic for automated candidate evaluation. The application orchestrates a high-performance evaluation runtime: a sandboxed Python FastAPI execution pipeline for instant code parsing, coupled with an LLM-driven AI recruitment analyst framework. Delivers sub-second evaluation loops checking code control structures, recursive loop blocks, and operational logic validation while outputting structured predictive fit scores.

  • Each code submission runs in an isolated sandboxed process, preventing cross-contamination between candidate runs.
  • LLM evaluation prompts are rubric-driven rather than open-ended, keeping scoring consistent across repeated runs.
  • Static analysis runs before the LLM call, so obviously invalid submissions never consume a model invocation.
+ view technical details
/projects/insta-scale 2025-2026
Global Auth
──[ Edge CDN ]──>
Queue Plane

Distributed Media Engine — global scale system architecture matrix

Systems Architect (Case Study)

A comprehensive architectural framework addressing the system design patterns required to sustain a highly scalable, distributed photo and video-sharing ecosystem. Focuses on balancing performance, horizontal scalability, and multi-region fault tolerance across two high-impact operations: a secure, low-latency session validation architecture for global authentication, and an isolated media delivery pipeline utilizing multi-tier edge CDN networks, geo-distributed caching grids, and stateless image-processing queues.

  • Session validation designed stateless-first (signed tokens over server-side sessions) to support horizontal scaling without sticky sessions.
  • Read/write ratios modeled explicitly to justify a CDN-first caching strategy over deeper application-layer caching.
  • Image pipeline treated as an independent scaling unit from the core API, so media spikes never starve request handling.
+ view technical details
/projects/messaging-fabric 2025
WS Client
──[ Kafka ]──>
NoSQL Storage

Real-Time Messaging Fabric — persistent distributed WebSocket connection cluster

Distributed Systems Engineer

An architectural system blueprint for an enterprise-grade instant messaging core engineered to route billions of concurrent transactional updates with sub-second delivery loops. Implements persistent WebSocket connection planes behind reverse-proxy load balancers to maintain active user states, backed by a horizontally partitioned NoSQL storage layer for persistent message logging. Mitigates high-concurrency race conditions through message-queue backpressure layers, dead-letter routing, and out-of-order sequence reconciliation engines.

  • Per-message sequence numbers support client-side out-of-order reconciliation without extra server round-trips.
  • Dead-letter queue paired with exponential backoff isolates poison messages instead of blocking healthy throughput.
  • Connection state kept out of application memory, so any gateway instance can restart without dropping client sessions.
+ view technical details
/projects/bookstore-mern 2023
React Client
──[ CRUD ]──>
MongoDB

Bookstore — full-CRUD MERN inventory & storefront

Full-Stack Developer

A complete MERN-stack bookstore application supporting the full create-read-update-delete lifecycle for inventory. Users browse, add, edit, and remove book listings in real time, with a Stripe-integrated checkout flow handling purchase transactions end-to-end.

  • Full CRUD flow (create, post, edit, update, delete) implemented across both the storefront and an admin-facing view.
  • Stripe integrated directly into the checkout path for handling real payment transactions.
  • Firebase used alongside MongoDB for auth and supplementary storage needs.
+ view technical details
/projects/portfolio-site 2026
CSS Variables
──[ Theme ]──>
Vanilla JS UI

This Portfolio — the site you're looking at right now

Designer & Developer

A dependency-free personal site built in plain HTML, CSS, and JavaScript — no framework, no build step. One CSS custom-property system drives the entire dark/light theme, while vanilla JS handles the interactive timeline, expandable technical drawers, and scroll-triggered reveal animations.

  • Entire dark/light theme driven by a single set of CSS custom properties — no duplicated styles per theme.
  • IntersectionObserver powers the scroll-reveal animations without any external animation library.
  • Zero build tooling: what ships in the browser is the source file itself, deployed as-is.
+ view technical details
/projects/my-blog TBD
Writing
──[ Publish ]──>
Readers

My Blog — technical writing, write-up coming soon

Writer & Developer

A personal technical blog. Full details and live link are on the way — check back soon.

Architecture Matrix

Production-Grade Ecosystem

Click on any engineering asset chip to stream isolated deployment orchestration specifications instantly.

01 Client Frameworks
JavaScript (ES6+) React.js Next.js (App Router) TypeScript Tailwind CSS Zustand
02 Backend Services
Node.js Express.js Python FastAPI (Python) RESTful Architecture WebSockets
03 Storage Systems
MongoDB (Mongoose) PostgreSQL MySQL Redis (Caching)
04 DevOps & Operations
Git / GitHub Docker AWS Engine Vercel Edge Platform CI/CD Pipelines Jest / TDD
05 AI & LLM Engineering
LLM Integration RAG Pipelines LangChain Vector Databases Prompt Engineering
Selected System: Select an option

/sandbox — runtime log environment

Live Container Simulation

ইকোসিস্টেমের লাইভ নোড কম্পাইলেশন ট্র্যাকিং এবং আইসোলেটেড রানটাইম স্টেট মনিটরিং ড্যাশবোর্ড।

bash — askur@production-v8
build.log
runtime.err
network.trace
👁️ View Resume
📧 Hire Me
Email copied — imaskurrahman@gmail.com