-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmain.typ
More file actions
205 lines (170 loc) · 6.83 KB
/
Copy pathmain.typ
File metadata and controls
205 lines (170 loc) · 6.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
#import "resume.typ": *
#import "@preview/oxifmt:1.0.0": strfmt
#let data = yaml("metadata.yml")
// Put your personal information here, replacing mine
#let name = data.at("name")
#let location = data.at("location")
#let email = data.at("email")
#let github = strfmt("github.com/{}", data.at("githubUsername"))
#let linkedin = strfmt("linkedin.com/in/{}", data.at("linkedinUsername"))
#let phone = data.at("phone")
#let personal-site = data.at("website")
#show: resume.with(
author: name,
// All the lines below are optional.
// For example, if you want to to hide your phone number:
// feel free to comment those lines out and they will not show.
location: location,
email: email,
github: github,
linkedin: linkedin,
phone: phone,
personal-site: personal-site,
// accent-color: "#26428b",
font: "New Computer Modern",
paper: "a4",
author-position: left,
personal-info-position: center,
)
/*
* Lines that start with == are formatted into section headings
* You can use the specific formatting functions if needed
* The following formatting functions are listed below
* #edu(dates: "", degree: "", gpa: "", institution: "", location: "")
* #work(company: "", dates: "", location: "", title: "")
* #project(dates: "", name: "", role: "", url: "")
* #extracurriculars(activity: "", dates: "")
* There are also the following generic functions that don't apply any formatting
* #generic-two-by-two(top-left: "", top-right: "", bottom-left: "", bottom-right: "")
* #generic-one-by-two(left: "", right: "")
*/
== Work Experience
#work(
title: "Software Engineer",
location: "Dubai, UAE",
company: "ODeX Global",
dates: dates-helper(start-date: "December 2024", end-date: "Present"),
)
#v(-0.5em)
- Built the backend for the Customer Payment Portal (CPP) from scratch and shipped it to production, enabling end-to-end invoice-request, delivery-order, and payment workflows across multiple shipping-line and customer types
#text(spacing: 68%)[- Extended platform to payment partners by integrating secured house payment flow with validation & consent enforcement]
#text(spacing: 68%)[- Hardened India eDO platform with compliance & data-quality enhancements improving operational accuracy & reporting]
#work(
title: "Solutions Intern",
location: "Dubai, UAE",
company: "Emirates Group",
dates: dates-helper(start-date: "September 2024", end-date: "December 2024"),
)
#v(-0.5em)
- Coordinated cross-team and vendor requirements for Skywards Rewards backend replacement
- Designed use case diagrams and specifications to streamline the Accrual process
- Documented project workflows and progress in Confluence for stakeholder alignment
== Skills
#grid(
rows: 6,
columns: (auto, 1fr),
row-gutter: 0.75em,
column-gutter: 0.5em,
// align: (left, right),
[*Languages:*], [Python, Go, Java (Spring Boot), Bash, Typst, SQL, PostgreSQL, JavaScript, PowerShell, HTML, CSS],
[*Tools:*], [Git, GitHub, Bitbucket, Cursor, Claude Code, Ollama, Figma, ChatGPT, Docker, GitHub Actions],
[*Soft Skills:*], [Communication, Collaboration, Leadership, Problem Solving, Stakeholder Management, Delegation],
[*Business Skills:*], [Analytical Skills, Organizational Skills, Strategy, Microsoft Excel, MS Office, Research],
[*Platforms:*], [Linux, Ubuntu, Windows, Amazon Web Services, AWS S3, Google Cloud Platform, Web],
[*Other Skills:*], [Valid UAE Driving License, Adobe Premiere Pro CC, Video Editing],
)
#v(-0.5em)
== Projects
#project(
name: "AI Chat Prompt URL Maker",
dates: "January 2026",
// role: "",
url: (
"Live Project": "cr2007.github.io/aichat-url-maker",
"Project Link": "github.com/cr2007/aichat-url-maker",
"DeepWiki": "deepwiki.com/cr2007/aichat-url-maker",
),
tech: ("TypeScript", "React", "Vite", "Bun"),
desc: "Built a web app that generates shareable, prefilled prompt URLs for AI chat tools."
)
#v(-3pt)
#project(
name: "Wordle Model Context Protocol Server",
dates: "June 2025",
url: (
"Python Project Link": "github.com/cr2007/mcp-wordle-python",
"Go Project Link": "github.com/cr2007/mcp-wordle-go",
),
tech: ("uv", "Python", "FastMCP"),
desc: "Built a MCP server that retrieves Wordle solutions by date, demonstrating API integrations."
)
#v(-3pt)
#project(
name: "AI Chat Heatmap Visualizer",
dates: "January 2025",
url: (
"Live Project": "aiheatmap.csk.fyi",
"Project Link": "github.com/cr2007/chatgpt-heatmap-web",
),
tech: ("TypeScript", "Next.js", "D3.js", "Bun"),
desc: "Built an app that visualizes exported ChatGPT conversation history as an interactive calendar heatmap."
)
#v(-3pt)
// #project(
// name: "WhatsApp Voice AI Assistant",
// dates: "August 2024",
// url: (
// "Project Link": "github.com/cr2007/whatsapp-voice-ai-assistant",
// ),
// tech: ("Go", "Python", "OpenAI Whisper", "Groq API"),
// desc: "Developed a microservice-based WhatsApp bot that transcribes voice messages and generates AI responses.",
// )
// #v(-3pt)
== Awards and Certifications
#certificates(
name: "Google IT Automation with Python Specialization",
issuer: "Coursera",
date: "October 2024",
url: "coursera.org/verify/professional-cert/TCQO05PHHGE5"
)
#v(-3pt)
#certificates(
name: "Winner",
issuer: "Camb.ai X Coders HQ Hackathon",
date: "May 2024",
)
#v(-3pt)
#certificates(
name: "Career Essentials in Software Development by Microsoft and LinkedIn",
issuer: "LinkedIn",
date: "May 2024",
url: "linkedin.com/learning/certificates/89ecc674e4f0587a88390cc07ce509093d8b63cd8bcb02e3fd833e966bba7ea8"
)
#v(-0.5pt)
== Education
#edu(
institution: "Georgia Institute of Technology",
location: "Dubai, UAE",
dates: dates-helper(start-date: "Jan 2026", end-date: "Present"),
degree: "Master's of Science, Computer Science",
)
#v(-0.25em)
#text(size: 9pt)[*Courses:* Introduction to Information Security, Computer Networks]
// - Cumulative GPA: 4.0\/4.0 | Dean's List, Harvey S. Mudd Merit Scholarship, National Merit Scholarship
#edu(
institution: "Heriot-Watt University",
location: "Dubai, UAE",
dates: "Batch of 2024",
degree: "Bachelor's of Science, Computer Science (Hons.)",
)
#v(-0.25em)
#text(size: 9pt)[*Courses:* Data Visualization and Analytics, Digital Forensics, Computer Network Security, Industrial Programming, Data Communications \& Networking, Operating Systems \& Concurrency, Data Structures and Algorithms, Hardware-Software Interface]
== Volunteer Experience
#work(
company: link("https://dubai.aitinkerers.org")[AI Tinkerers Dubai],
title: "Co-Organiser",
dates: dates-helper(start-date: "May 2025", end-date: "Present"),
location: "Dubai, UAE"
)
- Co-organizing the Dubai chapter of AI Tinkerers, growing the chapter 128% to 1,082 subscribers across 13 months.
- Screening registrations against active-builder criteria, sustaining 25%+ first-time attendance per event across a curated, GitHub-verified community.