🧑💻 Full Stack Engineer with expertise in building scalable data pipelines, automation systems, and analytics platforms. Combining software engineering with data science to deliver actionable insights and data-driven solutions.
🛸 Wanderer in the vast virtual space of the internet.
Let's connect with me at nauqh.dev 🌟
Visit my recent launched website at keleidoscope.app 🚀
import { useState, useEffect } from "react";
const Wan = ({
name = "Wan",
pronouns = "He/Him",
askMeAbout = ["data engineering", "data analysis", "software development", "automation systems"] ,
language = "Python" | "TypeScript" | "SQL" | "R" | "HTML/CSS"
}) => {
const [currentFocus, setCurrentFocus] = useState("Building AI-powered teaching assistants and automation systems");
useEffect(() => {
console.log("Fun Fact: I love movies 🎬 and music 🎵");
}, []);
const experience = {
currentRole: "Automation Engineer at CoderSchool",
achievements: [
"Reduced reporting time by 90%",
"Managed 500+ students across 5 courses",
"Successfully supported 20+ learners to graduate"
]
};
return (
<>
<Readings books={[
"The Data Warehouse Toolkit",
"Solution Architect's Handbook",
"Storytelling with Data"
]} />
</>
);
};
export default Wan;


