-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.html
More file actions
570 lines (515 loc) · 20.8 KB
/
cv.html
File metadata and controls
570 lines (515 loc) · 20.8 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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jihwan Kim — CV</title>
<meta name="description" content="CV of Jihwan Kim — Microsoft MVP, Enterprise BI Architect specializing in Microsoft Fabric, Power BI, and analytics governance at Fortune 500 scale.">
<meta property="og:title" content="Jihwan Kim — CV">
<meta property="og:description" content="Microsoft MVP, Enterprise BI Architect — Microsoft Fabric, Power BI, and analytics governance at Fortune 500 scale.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://jonathanjihwankim.github.io/Profile/cv.html">
<meta property="og:image" content="https://jonathanjihwankim.github.io/Profile/assets/og-image.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Jihwan Kim — CV">
<meta name="twitter:description" content="Microsoft MVP, Enterprise BI Architect — Microsoft Fabric, Power BI, and analytics governance at Fortune 500 scale.">
<meta name="twitter:image" content="https://jonathanjihwankim.github.io/Profile/assets/og-image.png">
<link rel="canonical" href="https://jonathanjihwankim.github.io/Profile/cv.html">
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap" rel="stylesheet">
<style>
/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* ── Design tokens — Microsoft Technical ── */
:root {
--pbi-500: #F2C811; --pbi-600: #c28200; --pbi-700: #9a6a00;
--fabric-500: #0EA5BE; --fabric-600: #00879c;
--mvp-500: #E4222E;
--msblue-700: #0078D4;
--grey-900: #1b1d26; --grey-700: #424450; --grey-500: #878a99;
--grey-200: #e4e6eb; --grey-100: #f1f2f5; --grey-50: #f7f8fa;
--bg: #ffffff;
--bg-alt: #f7f8fa;
--text: var(--grey-900);
--text-2: var(--grey-700);
--text-3: var(--grey-500);
--border: var(--grey-200);
--link: var(--msblue-700);
--font: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
--font-mono: 'JetBrains Mono', 'Cascadia Code', Consolas, monospace;
}
html { font-size: 16px; }
body {
font-family: var(--font);
background: var(--bg);
color: var(--text);
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
/* ── Layout ── */
.page {
max-width: 860px;
margin: 0 auto;
padding: 2.5rem 2rem 4rem;
}
/* ── Top bar ── */
.topbar {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2rem;
}
.topbar a { color: var(--text-3); font-size: 0.875rem; }
.topbar a:hover { color: var(--pbi-600); }
.btn-print {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: var(--pbi-500);
color: var(--grey-900);
font-weight: 600;
font-size: 0.85rem;
padding: 0.45rem 1.1rem;
border: none;
border-radius: 6px;
cursor: pointer;
font-family: var(--font);
transition: opacity .2s;
}
.btn-print:hover { opacity: .85; }
.btn-print .material-symbols-outlined {
font-size: 16px;
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
/* ── Header ── */
.cv-header { margin-bottom: 1.6rem; }
.cv-header h1 {
font-size: 2rem;
font-weight: 600;
color: var(--text);
letter-spacing: -0.025em;
}
.cv-header .title {
font-size: 1.05rem;
color: var(--fabric-500);
font-weight: 500;
margin-top: 0.15rem;
}
.meta {
display: flex;
flex-wrap: wrap;
gap: 0.4rem 1.4rem;
margin-top: 0.6rem;
font-size: 0.85rem;
color: var(--text-3);
}
.meta span { white-space: nowrap; }
/* ── Sections ── */
.section { margin-bottom: 1.5rem; }
.section-title {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.09em;
color: var(--fabric-600);
border-bottom: 1px solid var(--border);
padding-bottom: 0.35rem;
margin-bottom: 0.75rem;
font-family: var(--font-mono);
}
/* ── Summary ── */
.summary {
font-size: 0.92rem;
color: var(--text-2);
line-height: 1.6;
}
/* ── Experience ── */
.job { margin-bottom: 1.1rem; }
.job:last-child { margin-bottom: 0; }
.job-header {
display: flex;
justify-content: space-between;
align-items: baseline;
flex-wrap: wrap;
gap: 0.3rem 1rem;
}
.job-header h3 {
font-size: 0.95rem;
font-weight: 600;
color: var(--text);
}
.job-header h3 span { color: var(--fabric-500); font-weight: 400; }
.job-header .period {
font-size: 0.78rem;
color: var(--text-3);
white-space: nowrap;
font-family: var(--font-mono);
}
.job ul {
list-style: none;
margin-top: 0.3rem;
padding-left: 0;
}
.job li {
position: relative;
padding-left: 1rem;
font-size: 0.85rem;
color: var(--text-2);
margin-bottom: 0.2rem;
line-height: 1.5;
}
.job li::before {
content: "–";
position: absolute;
left: 0;
color: var(--border);
}
/* ── Education ── */
.edu-item {
font-size: 0.9rem;
margin-bottom: 0.25rem;
}
.edu-item strong { color: var(--text); }
.edu-item .period { color: var(--text-3); font-size: 0.78rem; font-family: var(--font-mono); }
/* ── Certifications ── */
.cert-list {
font-size: 0.85rem;
color: var(--text-2);
line-height: 1.65;
}
.cert-list .sep { color: var(--border); margin: 0 0.15rem; }
/* ── Projects ── */
.project { margin-bottom: 0.45rem; }
.project-name {
font-weight: 600;
font-size: 0.88rem;
color: var(--text);
}
.project-stars {
font-size: 0.78rem;
color: var(--pbi-600);
margin-left: 0.3rem;
font-family: var(--font-mono);
}
.project-desc {
font-size: 0.83rem;
color: var(--text-2);
}
/* ── Awards ── */
.awards-list {
font-size: 0.85rem;
color: var(--text-2);
line-height: 1.65;
}
/* ── Skills ── */
.skills-list {
display: flex;
flex-wrap: wrap;
gap: 0.35rem;
}
.skill-tag {
font-size: 0.78rem;
padding: 0.2rem 0.55rem;
border: 1px solid var(--border);
border-radius: 4px;
color: var(--text-2);
white-space: nowrap;
position: relative;
overflow: hidden;
background: var(--bg-alt);
}
.skill-tag::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
height: 2px;
width: var(--proficiency, 50%);
background: var(--fabric-500);
border-radius: 1px;
}
/* Project star visual bar */
.project-star-bar {
display: inline-block;
height: 8px;
background: var(--pbi-500);
border-radius: 2px;
margin-left: 6px;
vertical-align: middle;
opacity: 0.6;
}
/* Metric text highlights */
.job-metric {
font-weight: 700;
color: var(--pbi-700);
}
/* Screen-only KPI strip */
.cv-kpi-strip {
display: flex;
gap: 16px;
margin-top: 0.6rem;
font-size: 0.78rem;
color: var(--text-3);
font-family: var(--font-mono);
flex-wrap: wrap;
}
.cv-kpi-value {
font-weight: 700;
color: var(--pbi-700);
}
.cv-kpi-trend {
display: inline-block;
width: 0;
height: 0;
border-left: 3px solid transparent;
border-right: 3px solid transparent;
border-bottom: 4px solid var(--fabric-500);
margin-left: 3px;
}
/* ═══════════════════════════════════
PRINT STYLESHEET
═══════════════════════════════════ */
.screen-only { }
@media print {
.screen-only { display: none !important; }
@page {
size: A4;
margin: 1.5cm 2cm;
}
html { font-size: 11px; }
body {
background: #fff;
color: #111;
line-height: 1.4;
margin: 0;
padding: 0;
overflow: visible;
}
a { color: #111; }
.topbar, .btn-print { display: none !important; }
.page {
max-width: 100%;
padding: 0 0.3cm;
margin: 0;
overflow: visible;
}
.cv-header h1 { font-size: 1.8rem; color: #111; }
.cv-header .title { color: #333; font-size: 1rem; }
.meta { color: #444; font-size: 0.82rem; gap: 0.3rem 1rem; }
.section { margin-bottom: 1rem; }
.section-title {
color: #111;
border-bottom: 1.5px solid #bbb;
font-size: 0.78rem;
padding-bottom: 0.2rem;
margin-bottom: 0.5rem;
}
.summary { color: #333; font-size: 0.88rem; }
.job { margin-bottom: 0.7rem; }
.job-header h3 { color: #111; font-size: 0.9rem; }
.job-header h3 span { color: #444; }
.job-header .period { color: #555; }
.job li { color: #333; font-size: 0.82rem; padding-left: 0.8rem; margin-bottom: 0.1rem; }
.job li::before { color: #999; }
.edu-item { font-size: 0.85rem; }
.edu-item strong { color: #111; }
.edu-item .period { color: #555; }
.cert-list { color: #333; font-size: 0.82rem; }
.cert-list .sep { color: #aaa; }
.project-name { color: #111; font-size: 0.85rem; }
.project-stars { color: #666; }
.project-desc { color: #333; font-size: 0.8rem; }
.project { margin-bottom: 0.3rem; }
.awards-list { color: #333; font-size: 0.82rem; }
.skill-tag {
border-color: #ccc;
color: #333;
font-size: 0.75rem;
padding: 0.1rem 0.4rem;
}
.skill-tag::after { display: none; }
.skills-list { gap: 0.25rem; }
.project-star-bar { display: none; }
.job-metric { color: #111; font-weight: 700; }
.cv-kpi-strip { display: none !important; }
/* avoid page-break inside blocks */
.job, .section { page-break-inside: avoid; }
}
</style>
</head>
<body>
<div class="page">
<!-- Top bar (screen only) -->
<div class="topbar">
<a href="index.html">← Back to site</a>
<button class="btn-print" onclick="window.print()"><span class="material-symbols-outlined">print</span> Print this CV</button>
</div>
<!-- Header -->
<header class="cv-header">
<h1>Jihwan Kim</h1>
<div class="title"><img src="assets/Power-BI.png" alt="" style="width:16px;height:16px;display:inline;vertical-align:middle;margin-right:4px;opacity:0.7;" class="screen-only"> Power BI Developer & Data Model Architect</div>
<div class="meta">
<span>The Netherlands</span>
<span><a href="mailto:jonathan.jihwankim@gmail.com">jonathan.jihwankim@gmail.com</a></span>
<span><a href="https://linkedin.com/in/jihwankim1975" target="_blank">linkedin.com/in/jihwankim1975</a></span>
<span><a href="https://github.com/JonathanJihwanKim" target="_blank">github.com/JonathanJihwanKim</a></span>
<span><a href="https://powerbimvp.com" target="_blank">powerbimvp.com</a></span>
</div>
<div class="cv-kpi-strip">
<span><span class="cv-kpi-value">30K+</span> users<span class="cv-kpi-trend"></span></span>
<span><span class="cv-kpi-value">2,700+</span> solutions<span class="cv-kpi-trend"></span></span>
<span><span class="cv-kpi-value">58+</span> GitHub stars<span class="cv-kpi-trend"></span></span>
<span><span class="cv-kpi-value">8+</span> yrs Power BI</span>
</div>
</header>
<!-- Professional Summary -->
<section class="section">
<div class="section-title">Professional Summary</div>
<p class="summary">Microsoft MVP | Power BI Developer & Data Model Architect with 8+ years of Power BI experience and 2+ years of Microsoft Fabric expertise. Architects enterprise-scale analytics on Microsoft Fabric and Power BI serving 30,000+ users across 500M+ records. Designed the Direct Lake migration, CI/CD governance architecture (PBIP/TMDL), and performance engineering framework at Fortune 500 scale. Creator of open-source Power BI developer tools (58+ GitHub stars). Power BI & Microsoft Fabric Community Super User. Combines deep technical expertise in semantic modeling, DAX optimization, and CI/CD governance with supply chain business acumen. AI-augmented workflow pioneer boosting development speed 3x.</p>
</section>
<!-- Experience -->
<section class="section">
<div class="section-title">Experience</div>
<div class="job">
<div class="job-header">
<h3>IKEA <span>— Data Analyst | Power BI Developer</span></h3>
<span class="period">Feb 2023 – Present · Amsterdam, Netherlands</span>
</div>
<ul>
<li>Architect semantic models and analytics pipelines on Microsoft Fabric and Power BI serving <span class="job-metric">30,000+</span> users across <span class="job-metric">500M+</span> records in the global supply chain organization</li>
<li>Migrated legacy Import-mode models to composite models with Direct Lake mode — <span class="job-metric">90%+</span> refresh elimination and <span class="job-metric">25%</span> better query performance for 30,000+ supply chain users</li>
<li>Designed Git-based source control architecture for Power BI artifacts (PBIP/TMDL) with CI/CD pipelines via Azure DevOps and GitHub — zero-downtime deployments and full audit trail</li>
<li>Implemented systematic parameterization — reproducible deployments across 3 environments, eliminating deployment failures and reducing release time by 70%</li>
<li>Streamlined semantic models: <span class="job-metric">30%</span> model size reduction and <span class="job-metric">25%</span> performance gain</li>
<li>Reduced Fabric Premium capacity (CU) usage by <span class="job-metric">25%</span> through hands-on tuning and AI-supported performance analysis</li>
<li>Integrated AI copilots into DAX authoring and performance diagnostics, including early adoption of the Power BI MCP server for AI-driven semantic model development, boosting development speed <span class="job-metric">3x</span></li>
<li>Mentored analysts on semantic modeling best practices, DAX optimization, and AI-powered report generation</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>ITVT Group <span>— Senior BI Analyst</span></h3>
<span class="period">Jun 2022 – Jan 2023 · Utrecht</span>
</div>
<ul>
<li>Enterprise Power BI solutions across Supply Chain, Logistics, CRM, HR, PM integrated with Dynamics 365</li>
<li>Created logistics dashboard cutting weekly reporting from 6 hours to 10 minutes</li>
<li>Optimized query folding and DAX logic, improving report load times by 40–60%</li>
<li>Built reusable Power BI templates for faster client rollouts</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>GXO Logistics <span>— BI Analyst</span></h3>
<span class="period">Jun 2021 – May 2022 · Schiphol-Rijk</span>
</div>
<ul>
<li>Power BI Dataflows, datasets, and reports for 10+ EU sites</li>
<li>Weekly Stability, Monthly Business Review, and Productivity dashboards</li>
<li>Nominated Power BI Super User by Microsoft for technical leadership</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>Supply Chain Flow <span>— Freelance Data Analyst</span></h3>
<span class="period">Feb 2020 – May 2021 · Amsterdam</span>
</div>
<ul>
<li>Power BI insights on freight pricing, process bottleneck analysis, cash flow visibility</li>
<li>Launched FlowAnalysis.co for data modeling and supply chain analytics content</li>
<li>Earned CSCP, MCSA BI Reporting, MCT, MOS Excel Expert certifications</li>
</ul>
</div>
<div class="job">
<div class="job-header">
<h3>Samsung SDS Cello Logistics <span>— Business Development Manager</span></h3>
<span class="period">Feb 2019 – Feb 2020 · Delft</span>
</div>
<ul>
<li>Key Account Management across global air/ocean freight, European trucking, warehouse handling</li>
<li>Operational analytics: shipment visibility, SLA root-cause analysis, cost-to-serve modeling</li>
<li>Asia-Europe trade lane optimization with data-driven carrier selection</li>
</ul>
</div>
</section>
<!-- Education -->
<section class="section">
<div class="section-title">Education</div>
<div class="edu-item"><strong>Rotterdam Business School</strong> — Master in Logistics Management <span class="period">(2018–2019)</span></div>
<div class="edu-item"><strong>Korea University</strong> — Bachelor in Geology <span class="period">(1994–2001)</span></div>
</section>
<!-- Certifications -->
<section class="section">
<div class="section-title">Certifications</div>
<div class="cert-list">
PL-300: Power BI Data Analyst <span class="sep">|</span>
DP-600: Fabric Analytics Engineer <span class="sep">|</span>
AZ-900: Azure Fundamentals <span class="sep">|</span>
APICS CSCP <span class="sep">|</span>
MCSA: BI Reporting <span class="sep">|</span>
MCT: Microsoft Certified Trainer <span class="sep">|</span>
MOS: Excel Expert <span class="sep">|</span>
Power Platform Fundamentals
</div>
<div class="cert-note" style="margin-top:4px; font-size:0.85em; color:#666;">Studying for: DP-700 (Fabric Data Engineer)</div>
</section>
<!-- Open-Source Projects -->
<section class="section">
<div class="section-title">Open-Source Projects</div>
<div class="project">
<span class="project-name">pbip-documenter</span><span class="project-stars">★ 28</span><span class="project-star-bar" style="width: 40px;"></span>
<span class="project-desc"> — Auto-generate documentation from Power BI semantic models</span>
</div>
<div class="project">
<span class="project-name">pbip-lineage-explorer</span><span class="project-stars">★ 19</span><span class="project-star-bar" style="width: 28px;"></span>
<span class="project-desc"> — Trace DAX measure lineage from visuals to source columns</span>
</div>
<div class="project">
<span class="project-name">isHiddenInViewMode</span><span class="project-stars">★ 8</span><span class="project-star-bar" style="width: 12px;"></span>
<span class="project-desc"> — Bulk-manage filter visibility in PBIR reports</span>
</div>
<div class="project">
<span class="project-name">pbip-impact-analyzer</span><span class="project-stars">★ 3</span><span class="project-star-bar" style="width: 5px;"></span>
<span class="project-desc"> — Analyze impact and safely refactor PBIP models</span>
</div>
</section>
<!-- Awards -->
<section class="section">
<div class="section-title">Awards</div>
<div class="awards-list">
Microsoft MVP since 2022 <span class="sep" style="margin:0 0.15rem">|</span>
Power BI & Microsoft Fabric Community Super User since 2021 <span class="sep" style="margin:0 0.15rem">|</span>
Maven Analytics Hall of Fame <span class="sep" style="margin:0 0.15rem">|</span>
Enterprise DNA Data Analysis Challenge Winner <span class="sep" style="margin:0 0.15rem">|</span>
Rotterdam Business School — Excellence Thesis Award
</div>
</section>
<!-- Skills -->
<section class="section">
<div class="section-title">Skills</div>
<div class="skills-list">
<span class="skill-tag" style="--proficiency: 100%">Power BI Desktop/Service</span>
<span class="skill-tag" style="--proficiency: 100%">DAX</span>
<span class="skill-tag" style="--proficiency: 100%">Power Query/M</span>
<span class="skill-tag" style="--proficiency: 95%">Semantic Models</span>
<span class="skill-tag" style="--proficiency: 60%">Microsoft Fabric</span>
<span class="skill-tag" style="--proficiency: 55%">Direct Lake Composite Model</span>
<span class="skill-tag" style="--proficiency: 50%">Lakehouse</span>
<span class="skill-tag" style="--proficiency: 50%">Dataflow Gen2</span>
<span class="skill-tag" style="--proficiency: 45%">OneLake</span>
<span class="skill-tag" style="--proficiency: 75%">Azure DevOps</span>
<span class="skill-tag" style="--proficiency: 70%">GitHub</span>
<span class="skill-tag" style="--proficiency: 65%">CI/CD for PBI</span>
<span class="skill-tag" style="--proficiency: 60%">PBIP/TMDL</span>
<span class="skill-tag" style="--proficiency: 70%">SQL Server</span>
<span class="skill-tag" style="--proficiency: 100%">Supply Chain & Logistics</span>
<span class="skill-tag" style="--proficiency: 40%">AI-Augmented Analytics</span>
</div>
</section>
</div>
</body>
</html>