<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Dev Korea blog</title>
        <link>https://dev-korea.com/blog</link>
        <description>Essential tech articles for English speakers in Korea</description>
        <lastBuildDate>Thu, 16 Jul 2026 04:17:41 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <copyright>All rights reserved 2026, Dev Korea</copyright>
        <atom:link href="https://dev-korea.com/feed/articles.xml" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Inside Dev Korea #8 with Salmon: better error handling, smarter QA, and a packed room in Seoul]]></title>
            <link>https://dev-korea.com/blog/inside-dev-korea-8-error-handling-smarter-qa-seoul</link>
            <guid isPermaLink="false">5937c26d-8d2e-4bd7-8f18-4b811f6af5cc</guid>
            <pubDate>Thu, 28 May 2026 09:37:50 GMT</pubDate>
            <description><![CDATA[On May 18 we ran Dev Korea #8 with Salmon. Around 150 people came out for the evening. Developers, QA engineers, a good mix of folks from across the Seoul tech scene, all there for two talks and the usual long tail of conversations afterward.]]></description>
            <content:encoded><![CDATA[<blockquote>
<p>Want to feel what the night was like? From the talks to the networking and everything in between, <a href="https://youtu.be/OrRP2peWTuU">here&#39;s a quick trailer of Dev Korea #8</a> 🎥.</p>
</blockquote>
<p>On May 18 we ran Dev Korea #8 with <a href="https://salmon.group/">Salmon</a>. Around 150 people came out for the evening. Developers, QA engineers, a good mix of folks from across the Seoul tech scene, all there for two talks and the usual long tail of conversations afterward.</p>
<p>Salmon made the night happen. They came on as the main sponsor, brought their speakers, handed out swag, and even set up a photobooth that people kept coming back to all evening.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260518_2ed7p36u8f4a3f.jpg" alt="Salmon"></p>
<p>Both talks were about software quality, but they came at it from opposite ends. One was about how we write failures into our code. The other was about how teams decide what&#39;s actually worth testing before a release. Put together, they were really asking the same thing: how do we build software that&#39;s easier to reason about?</p>
<h2>Making failures easier to understand</h2>
<p>The first talk was by <a href="https://www.linkedin.com/in/sergei-chernov-46397a233">Sergey Chernov</a>, Lead Software Engineer at <a href="https://salmon.group/">Salmon Group Ltd</a>, on domain errors and functional error handling in Kotlin.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260518_2ed8p96u8f4a3f.jpg" alt="Sergey Chernov"></p>
<p>He started with a problem most backend developers will recognize: a method signature rarely tells you what can actually go wrong inside it. A function looks simple from the outside, but the implementation might be full of expected business failures. An invalid code, an expired document, a signing window that already closed, a document that was already signed, a policy rule that rejects the request.</p>
<p>When those failures live inside the implementation, the only way to know they exist is to open the method and read it. That&#39;s annoying with your own code and genuinely painful with old code, unfamiliar code, or code an AI agent wrote.</p>
<p>Sergey&#39;s argument was that expected failures belong in the method contract, not buried in the body. Instead of leaning on runtime exceptions, he showed how to make success and failure explicit in Kotlin using sealed interfaces, typed result models, and the <code>Either</code> approach.</p>
<p>He also pushed back on the instinct to create one big shared error type. He&#39;d rather define a narrow union of errors per method, so each method only advertises the failures it can really produce. The caller stops handling impossible cases, and the compiler starts working for you instead of against you.</p>
<p>The cost is real: more types, more mapping code, more verbose signatures. What you get back is clearer contracts and error handling you can actually predict. As he put it, the goal isn&#39;t to get rid of exceptions. It&#39;s to stop hiding the failures you already know about.</p>
<h2>From more tests to better focus</h2>
<p>The second talk was by <a href="https://www.linkedin.com/in/artemii-zakharov-a50798287/">Artemii Zakharov</a>, Lead QA Engineer at <a href="https://salmon.group/?utm_source=dev-korea">Salmon Group Ltd</a>, on moving from test cases to risk management.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260518_2ood8p36u8f4a3f.jpg" alt="Artemii Zakharov"></p>
<p>His starting point was very concrete: regression testing stops scaling at some point. His team had around 2,000 test cases, roughly 500 automated and the rest manual. With eight QA engineers, that was about 57 hours of regression on paper, and once you added analysis, retesting, back-and-forth, and bug fixes, a release could take around five days just to validate.</p>
<p>The issue wasn&#39;t a shortage of test cases. It was that piling on more of them had stopped helping. As a product grows and its parts get more connected, one small change can ripple into onboarding, payments, support, conversion, or real money moving around. More tests doesn&#39;t mean more attention on the things that actually matter.</p>
<p>That&#39;s the case for risk-based testing. It isn&#39;t about testing less at random. It&#39;s about figuring out which areas can hurt the business most and putting your effort there. Artemii framed it around three questions: how much would this hurt users or the business (impact), how far can the change reach (change surface), and how much protection already exists, like automated tests, reviews, or monitoring (safety net).</p>
<p>The part that got the most interest was how his team uses AI for release impact analysis. The AI doesn&#39;t make the call. It produces a readable report flagging where the team should look, sorting test cases into must test, recommended, and can skip. That last bucket is the valuable one. Skipping a low-risk area isn&#39;t carelessness; it&#39;s saving human attention for the parts of the release that can actually do damage.</p>
<p>He was honest about the limits too. AI won&#39;t catch runtime dependencies, hidden blast radius, weak test mapping, brand-new features, or business-critical boundaries unless the team feeds it that context. The point wasn&#39;t that AI replaces QA. It&#39;s that AI can take the repetitive analysis off your plate so QA engineers can spend their time on judgment, exploration, and the business context only they have.</p>
<h2>A full room and a lot of Salmon energy</h2>
<p>Around 150 people stayed through the evening. They came for the talks but hung around to meet each other, ask questions, and take photos.</p>
<p>The burgers and pizza went fast. They kept the room fed between talks and gave people a reason to stand around and chat instead of rushing off.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260518_2ed8p36u8f4a3f.jpg" alt="F&B"></p>
<p>The Q&amp;A after both talks was genuinely good. People asked about Kotlin vs Java, how to keep error types from sprawling, how to enforce typed error handling across a big team, what AI-assisted QA looks like in a real repo, and how teams deal with human error, non-technical bug reports, and test coverage after a release ships.</p>
<p>The photobooth was a nice touch, a casual way to grab a few photos that made the night feel more like people hanging out than a conference. That&#39;s the kind of evening we&#39;re trying to build: somewhere you can learn something and also feel part of Korea&#39;s international tech scene.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260518_2ed7g36u8f4a3f.jpg" alt="Photobooth"></p>
<h1>Huge thanks</h1>
<p>This event wouldn&#39;t have happened without:</p>
<ul>
<li><a href="https://www.linkedin.com/in/sergei-chernov-46397a233?utm_source=dev-korea">Sergey Chernov</a> and <a href="https://www.linkedin.com/in/artemii-zakharov-a50798287/?utm_source=dev-korea">Artemii Zakharov</a> for two honest, practical talks</li>
<li><a href="https://salmon.group/?utm_source=dev-korea">Salmon Group Ltd</a> for backing the event</li>
<li><a href="https://maru.org/?utm_source=dev-korea">Maru</a> by the <a href="https://asan-nanum.org/eng/?utm_source=dev-korea">Asan Nanum Foundation</a> for hosting us</li>
<li><a href="https://www.crycheeseburger.com/?utm_source=dev-korea">Cry Cheeseburger</a> for the burgers</li>
<li>Everyone from Salmon who helped run the night: <a href="https://www.linkedin.com/in/aleksey-kim-61a916195/?utm_source=dev-korea">Aleksey</a>, <a href="https://www.linkedin.com/in/bertijn-pauwels/?utm_source=dev-korea">Bertijn</a>, <a href="https://www.linkedin.com/in/brian-j-macdonald?utm_source=dev-korea">Brian</a>, <a href="https://www.linkedin.com/in/marcusbuexenstein/?utm_source=dev-korea">Marcus</a>, <a href="https://www.linkedin.com/in/oscar-sjstr/?utm_source=dev-korea">Oscar</a>, <a href="https://www.linkedin.com/in/sonali-sulgadle-01b04a118?utm_source=dev-korea">Sonali</a>, <a href="https://www.linkedin.com/in/parksuhyun?utm_source=dev-korea">Suhyun</a>, <a href="https://www.linkedin.com/in/lanafeo/?utm_source=dev-korea">Svetlana</a>, and <a href="https://www.linkedin.com/in/val-mikhno/?utm_source=dev-korea">Valentina</a></li>
<li>And everyone who showed up, asked questions, took photos, shared posts, and stuck around to talk</li>
</ul>
<p>We&#39;re looking forward to the next one.</p>
<h2>Watch the talks</h2>
<p>Both talks are online:</p>
<ul>
<li><a href="https://dev-korea.com/talks/domain-errors-and-functional-error-handling-in-kotlin">Domain errors and functional error handling in Kotlin, by Sergey Chernov</a></li>
<li><a href="https://dev-korea.com/talks/from-test-cases-to-risk-management">From test cases to risk management, by Artemii Zakharov</a></li>
</ul>
<p>You can find every published Dev Korea talk on our <a href="https://dev-korea.com/talks">talks page</a>.</p>
<hr>
<p><strong>Ready for your next move?</strong><br>Visit <strong>Dev Korea</strong> to explore the latest job openings at <a href="https://dev-korea.com/jobs">dev-korea.com/jobs</a>, or if you&#39;re hiring, post a job at <a href="https://dev-korea.com/post-a-job">dev-korea.com/post-a-job</a> and connect with our growing international tech community.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/inside-dev-korea-8-error-handling-smarter-qa-seoul_27a17a85.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Design Korea #0 Recap: Figma MCP, UX intuition, and a packed first design night in Seoul]]></title>
            <link>https://dev-korea.com/blog/design-korea-0-first-design-event-seoul-recap</link>
            <guid isPermaLink="false">e7db7192-5da3-4469-92b9-b8437c5fef02</guid>
            <pubDate>Mon, 27 Apr 2026 07:36:09 GMT</pubDate>
            <description><![CDATA[On April 23, we hosted Design Korea #0, our very first design-focused Dev Korea event, bringing together 110+ designers, developers, founders, and builders in Seoul.]]></description>
            <content:encoded><![CDATA[<blockquote>
<p>Want to feel what the night was like? From the talks to the networking and everything in between, <a href="https://youtu.be/Q5EoHlIPSC4">here&#39;s a quick trailer of Design Korea #0</a> 🎥.</p>
</blockquote>
<p>On April 23, we hosted Design Korea #0, our very first design-focused Dev Korea event, bringing together 110+ designers, developers, founders, and builders in Seoul.</p>
<p>Made possible with the support of <a href="https://www.figma.com/?utm_source=dev-korea">Figma</a>, the event focused on a simple idea:</p>
<p>Great products are not built by design or engineering alone.</p>
<p>They are built when designers, developers, and product people understand each other better.</p>
<p>With two practical talks, Figma swag, food, and a packed room full of energy, Design Korea #0 showed that there is strong demand for English-friendly design and product conversations within Korea’s international tech community.</p>
<h2>Building, learning, and connecting in Seoul</h2>
<p>From the moment doors opened, the venue quickly filled up.</p>
<p>We kicked things off with check-in, food, and the usual relaxed Dev Korea atmosphere:</p>
<ul>
<li>designers meeting developers</li>
<li>developers asking about design workflows</li>
<li>people sharing what they are building</li>
<li>new members joining the community for the first time</li>
<li>familiar faces reconnecting</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260423_2ed8p36u8f4a3h.jpg" alt="F&B"></p>
<p>As always, the event was English-friendly and welcoming.</p>
<blockquote>
<p>Don&#39;t worry about perfect English. Many attendees speak Korean too.<br>Come as you are. We&#39;re here to learn and connect together.</p>
</blockquote>
<h2>Figma MCP: When designers ship working prototypes, not frames</h2>
<p>The first talk was by <a href="https://www.linkedin.com/in/ines-gruhier?utm_source=dev-korea">Inès Gruhier</a>, founder of <a href="https://ines.co.kr?utm_source=dev-korea">Odubu Design</a>, a one-person design studio focused on UX/UI, design systems, branding, illustration, and product prototyping.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260423_2ed8p36u8f4a3f.jpg" alt="Inès Gruhier"></p>
<p>Her session focused on one of the most common sources of friction between designers and developers: the gap between what is designed in Figma and what actually gets implemented.</p>
<p>As Inès explained, the issue is not always a lack of skill on either side.</p>
<p>Designers and developers are often working with different tools, different mediums, and different assumptions. Figma shows <em>what</em> something should look like. Code shows <em>how</em> it should behave. And somewhere in that gap - between static mockups and actual interaction -miscommunication happens.</p>
<p>Inès showed how Figma MCP, combined with Claude Code, can help bridge that gap by letting AI read Figma files, understand the design system, color tokens, variables and layers, and use that to generate prototypes. </p>
<p>Instead of handing over static frames or long annotations, designers can create interactive prototypes that developers can inspect, test, and reference.</p>
<p>The session covered:</p>
<ul>
<li>Building an interactive debug panel to fine-tune a toggle animation</li>
<li>Prototyping physics-based item drop animations for <a href="https://www.linkedin.com/posts/ines-gruhier_buildinpublic-indiedev-gamedev-activity-7412480958509166592-LHMb?utm_source=dev-korea">My Tiny Room</a> that would be tedious to mock in Figma</li>
<li>How she used Figma MCP to audit <a href="https://www.bloxley.com?utm_source=dev-korea">Bloxley</a>&#39;s design system against the live codebase, surfacing mismatches and edge cases that existed on both the design and dev side</li>
<li>Best practices for structuring Figma files so AI agents can interpret them correctly</li>
</ul>
<p>One of the strongest takeaways was that this workflow does not replace designers or developers.</p>
<p>It changes the collaboration from interpretation to refinement.</p>
<p>Designers can finally show instead of tell, and developers can build from something real instead of guessing.</p>
<p>With AI handling the handoff, that shift lets both sides focus on what actually matters: making something that works, together.</p>
<h2>From hypothesis to prototype: A solo designer&#39;s survival story</h2>
<p>The second talk was by <a href="https://www.linkedin.com/in/anna-eunbyeol-kim?utm_source=dev-korea">Anna Kim</a>, a designer currently at <a href="https://mtch.com?utm_source=dev-korea">Match Group</a>, who shared a raw and honest story from her time as the solo designer at an early-stage AI startup.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260423_2ed8p36u8f4a3g.jpg" alt="Anna Kim"></p>
<p>Her talk was not about a perfect design process.</p>
<p>It was about survival.</p>
<p>Anna walked through how she helped rebuild an LLM app from scratch in 10 months, without a mentor, without an established design process, and with very little time.</p>
<p>At first, she expected to apply the textbook design process:</p>
<ul>
<li>user research</li>
<li>personas</li>
<li>journey maps</li>
<li>structured brainstorming</li>
<li>the classic double diamond</li>
</ul>
<p>But startup reality looked very different.</p>
<p>There was too much ambiguity, too much raw feedback, and not enough time.</p>
<p>So instead of following the process exactly, Anna built her own.</p>
<p>She lived inside Reddit and Discord, tracked competitors, read user comments, DM&#39;d users for quick interviews, and used AI to help categorize messy feedback into patterns her team could actually use.</p>
<p>Her key point was simple but powerful:</p>
<p>Intuition is not blind guessing.</p>
<p>It is the ability to make fast, informed decisions when you are deeply immersed in your users&#39; reality.</p>
<p>That intuition led her to a major product decision: moving away from a simple chat interface and toward a node-based system that gave technical users more control over AI models, sessions, and workflows.</p>
<p>The session covered:</p>
<ul>
<li>how to survive as a junior solo designer in a fast-moving startup</li>
<li>how to turn messy Discord and Reddit feedback into usable product insight</li>
<li>why user intuition can become stronger when it is fed by raw data</li>
<li>how prototypes can create alignment faster than long debates</li>
<li>why designers sometimes need to skip parts of the textbook process and adapt to reality</li>
</ul>
<p>Anna&#39;s talk was especially memorable because it was honest.</p>
<p>It showed the messy, uncomfortable, high-pressure side of design work that does not always appear in polished case studies.</p>
<h2>Design and engineering belong in the same room</h2>
<p>Compared to previous Dev Korea events, this one had a different energy.</p>
<p>The audience included many designers, but also plenty of developers, founders, and product-minded builders.</p>
<p>That mix made the conversations especially interesting.</p>
<p>Throughout the evening, people talked about:</p>
<ul>
<li>AI-assisted design workflows</li>
<li>Figma MCP and code handoff</li>
<li>how designers and developers can reduce miscommunication</li>
<li>how to prototype faster</li>
<li>how to use data without losing creativity</li>
<li>how junior designers can grow in fast-moving teams</li>
</ul>
<p>The level of engagement made one thing clear:</p>
<p>Design is not separate from tech.</p>
<p>It is part of how great products get built.</p>
<h2>Figma swag, networking, and hallway conversations</h2>
<p>Of course, the Figma swag also helped bring extra excitement to the evening.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260423_2ed8p36u8f4a3p.jpg" alt="Figma swag"></p>
<p>But beyond the bottles, caps, tees, pins, and raffle prizes, the best part was still the people.</p>
<p>After the talks, attendees stayed to ask questions, meet new people, and continue the conversations that started during the sessions.</p>
<p>These informal conversations remain one of the most valuable parts of every Dev Korea event.</p>
<h2>Huge thanks</h2>
<p>This event would not have been possible without:</p>
<ul>
<li>Our speakers, <a href="https://www.linkedin.com/in/ines-gruhier?utm_source=dev-korea">Inès Gruhier</a> and <a href="https://www.linkedin.com/in/anna-eunbyeol-kim?utm_source=dev-korea">Anna Kim</a>, for sharing practical, honest, and highly valuable design stories</li>
<li><a href="https://www.figma.com/?utm_source=dev-korea">Figma</a> for supporting the event and providing amazing swag</li>
<li><a href="https://bizcrush.app/?utm_source=dev-korea">BizCrush</a> for supporting real-time English to Korean translation</li>
<li><a href="https://maru.org/?utm_source=dev-korea">Maru</a> by <a href="https://asan-nanum.org/eng/?utm_source=dev-korea">Asan Nanum Foundation</a> for hosting us</li>
<li><a href="https://www.crycheeseburger.com/?utm_source=dev-korea">Cry Cheeseburger</a> for providing delicious burgers for the attendees</li>
<li>All the volunteers who helped make this event a success: <a href="https://www.linkedin.com/in/bertijn-pauwels/?utm_source=dev-korea">Bertijn</a>, <a href="https://www.linkedin.com/in/brian-j-macdonald?utm_source=dev-korea">Brian</a>, <a href="https://www.linkedin.com/in/sonali-sulgadle-01b04a118?utm_source=dev-korea">Sonali</a> and <a href="https://www.linkedin.com/in/parksuhyun?utm_source=dev-korea">Suhyun</a> but also everyone who made everything flow seamlessly from start to finish</li>
<li>All 110+ attendees who filled the venue and brought great energy</li>
</ul>
<p>Seeing the room packed for our first design-focused event was both surprising and incredibly motivating.</p>
<h2>What&#39;s next</h2>
<p>Design Korea #0 confirmed that there is strong demand for practical, community-driven design events in Seoul.</p>
<p>We&#39;ll keep bringing more events focused on real-world topics across engineering, design, product, startups, AI, and beyond.</p>
<p>Explore upcoming events: <a href="https://dev-korea.com/events">dev-korea.com/events</a></p>
<p>Want to stay connected?</p>
<ul>
<li>Follow us on LinkedIn: <a href="https://www.linkedin.com/company/dev-korea">linkedin.com/company/dev-korea</a></li>
<li>Follow us on X: <a href="https://x.com/dev_korea">x.com/dev_korea</a></li>
<li>Watch previous talks: <a href="https://dev-korea.com/talks">dev-korea.com/talks</a></li>
<li>Join our Discord server: <a href="https://discord.gg/hqzMbuXy73">discord.gg/hqzMbuXy73</a></li>
<li>Subscribe to the Weekly Dev Korea Digest Newsletter: <a href="https://dev-korea.com/newsletter">dev-korea.com/newsletter</a></li>
</ul>
<p>Here’s to more nights of learning, building, and meaningful community in Seoul. ✨</p>
<hr>
<p><strong>Ready for your next move?</strong><br>Visit <strong>Dev Korea</strong> to explore the latest job openings at <a href="https://dev-korea.com/jobs">dev-korea.com/jobs</a>, or if you&#39;re hiring, post a job at <a href="https://dev-korea.com/post-a-job">dev-korea.com/post-a-job</a> and connect with our growing international tech community.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/design-korea-0-first-design-event-seoul-recap_8efe1dd8.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[How 148 users farmed 750 days of free premium from our referral system — and how we shut it down]]></title>
            <link>https://dev-korea.com/blog/how-148-users-farmed-free-premium-and-how-we-stopped-it</link>
            <guid isPermaLink="false">08061b8f-f626-4b4e-9624-c9847b325a8a</guid>
            <pubDate>Tue, 07 Apr 2026 05:07:06 GMT</pubDate>
            <description><![CDATA[A technical postmortem on referral fraud in a 77K-user exam prep app, from detection to device-level ban persistence.]]></description>
            <content:encoded><![CDATA[<p>We run <a href="https://milliytechnology.org">Spiko</a>, an AI-powered English exam prep app with ~77K users, mostly students in Uzbekistan. In early 2026, we launched a referral system to grow organically. It worked — 397 referrals, 2.4x better retention than organic users, 91% of them genuine.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/how-148-users-farmed-free-premium-and-how-we-stopped-it_2a83395f4a3e.jpg" alt="Spiko"></p>
<p>It also leaked 750 days of premium to 148 abusers.</p>
<p>This is the full story: what they exploited, what we missed, and the layered defense we shipped.</p>
<h2>The referral system</h2>
<p>Simple mechanic: share your code, friend signs up with it, <strong>both get rewarded</strong>. The reward tiers were:</p>
<table>
<thead>
<tr>
<th>Tier</th>
<th>Reward</th>
<th>Farming incentive</th>
</tr>
</thead>
<tbody><tr>
<td>1</td>
<td>3 streak freezes</td>
<td>None — not worth faking</td>
</tr>
<tr>
<td>2</td>
<td>7 days Silver premium</td>
<td>Jackpot</td>
</tr>
<tr>
<td>3</td>
<td>7-day module unlock</td>
<td>More jackpot</td>
</tr>
<tr>
<td>4</td>
<td>Referral champion badge</td>
<td>Cosmetic</td>
</tr>
</tbody></table>
<p>Later we simplified to <strong>1 referral = 1 day of full premium for both sides</strong>. No cap.</p>
<h2>Detection (and what we got wrong)</h2>
<p>We initially flagged 114 users with a <code>referral_banned</code> column on the users table. But that flag only <strong>blocked them from using referral codes</strong> — they could still sign in and use the app with all the premium time they&#39;d already earned.</p>
<p>Worse: a banned user could <strong>delete their account and re-register with a different Gmail</strong>, getting a clean <code>referral_banned = 0</code>.</p>
<p>Their alt accounts — the fake Gmails they&#39;d created to farm referrals — were completely untouched.</p>
<p>We&#39;d banned the action, not the actor.</p>
<h2>The fix: Layered defense</h2>
<p>We shipped everything in one session — auth bans, deletion persistence, alt detection, premium revocation, and legal updates.</p>
<h3>Layer 1: Auth-level ban</h3>
<p>Added a single check at every authentication entry point:</p>
<pre><code>export class AccountSuspendedError extends Error {
  constructor() {
    super(&quot;Account suspended for violating Terms of Service.&quot;);
    this.name = &quot;AccountSuspendedError&quot;;
  }
}
</code></pre>
<pre><code>// In AuthService
private assertNotBanned(user: User): void {
  if (user.referral_banned === 1) {
    throw new AccountSuspendedError();
  }
}
</code></pre>
<p>Placed before <code>buildAuthResponse()</code> in:</p>
<ul>
<li><code>googleSignIn()</code> — blocks Google sign-in</li>
<li><code>telegramLogin()</code> — blocks Telegram bot sign-in</li>
<li><code>telegramWidgetLogin()</code> — blocks Telegram widget (web)</li>
<li><code>refresh()</code> — kicks already-logged-in users within 1 hour (token expiry)</li>
</ul>
<p>The route handler returns <strong>403</strong> (not 401) with <code>errorCode: &quot;ACCOUNT_SUSPENDED&quot;</code>:</p>
<pre><code>function authErrorResponse(c: AppContext, e: unknown): any {
  if (e instanceof AccountSuspendedError) {
    return c.json(
      { message: e.message, errorCode: &quot;ACCOUNT_SUSPENDED&quot; },
      403
    );
  }
  return c.json({ message: getErrorMessage(e) }, 401);
}
</code></pre>
<p>Why 403 matters: our Android <code>AuthInterceptor</code> automatically retries on 401 (token refresh). 
A 403 bypasses the retry loop and triggers immediate logout:</p>
<pre><code>// AuthInterceptor.kt
if (response.code == 403 &amp;&amp; !isPublicRoute) {
    Log.w(&quot;AuthInterceptor&quot;, &quot;Account suspended (403). Logging out.&quot;)
    runBlocking { sessionManager.logout() }
    return response
}
</code></pre>
<p>Using 401 would have caused the app to silently retry in a loop, thinking it was an expired token. 403 tells the client: this isn&#39;t an auth problem, you&#39;re not welcome here.</p>
<h3>Layer 2: Ban persistence across account deletion</h3>
<p>When a user deletes their account, we snapshot their identity into a <code>deleted_accounts</code> table:</p>
<pre><code>CREATE TABLE deleted_accounts (
    id TEXT PRIMARY KEY,
    googleId TEXT,
    email TEXT,
    telegramId TEXT,
    fcmTokens TEXT,  -- JSON array of device tokens
    referral_banned INTEGER NOT NULL DEFAULT 0,
    deletedAt TEXT NOT NULL DEFAULT (datetime(&#39;now&#39;))
);
</code></pre>
<p>When anyone signs up, we check if their Google ID, email, Telegram ID, or FCM token matches a deleted account. If it does, we restore the ban using <code>MAX()</code>:</p>
<pre><code>UPDATE users SET
  referral_banned = MAX(referral_banned, ?)
WHERE id = ?;
</code></pre>
<p><code>MAX()</code> is key — it means a ban can only be added, never accidentally removed. If the deleted account had <code>referral_banned = 1</code> and the new account has <code>referral_banned = 0</code>, <code>MAX(0, 1) = 1</code> — still banned. Delete and re-register with the same Google account? Still banned.</p>
<h3>Layer 3: Alt Account Detection via Referral Graph</h3>
<p>The 114 originally banned users were the fake accounts — the pawns. <strong>Their main accounts</strong> — the puppet masters collecting premium days — were still untouched. We walked the referral graph:</p>
<pre><code>SELECT DISTINCT CASE
    WHEN u_referrer.referral_banned = 1 THEN r.referredUserId
    WHEN u_referred.referral_banned = 1 THEN r.referrerId
    END as alt_id
FROM referrals r
JOIN users u_referrer ON r.referrerId = u_referrer.id
JOIN users u_referred ON r.referredUserId = u_referred.id
WHERE (u_referrer.referral_banned = 1 AND u_referred.referral_banned = 0)
   OR (u_referred.referral_banned = 1 AND u_referrer.referral_banned = 0);
</code></pre>
<p><strong>First pass:</strong> 30 alt accounts found.<br><strong>Second pass:</strong> 4 more second-degree alts.<br><strong>Third pass:</strong> 0 remaining. Clean.</p>
<p>The network wasn&#39;t deeply layered — most abusers were running simple one-hop schemes. 
<strong>Final count:</strong> <strong>148 banned users</strong> (114 + 30 + 4).</p>
<h3>Layer 4: FCM device cross-check</h3>
<p>Firebase Cloud Messaging tokens are unique per app install per device. When a user registers their device, we now check if that FCM token is associated with any banned user:</p>
<pre><code>// In updateFcmToken()
const bannedDevice = await this.repo.findBannedUserByFcmToken(token, userId);
if (bannedDevice) {
  console.warn(
    `[Auth] Device shared with banned user: userId=${userId}, bannedUserId=${bannedDevice.id}`
  );
  await this.repo.banUser(userId);
}
</code></pre>
<pre><code>SELECT u.id FROM devices d
JOIN users u ON d.userId = u.id
WHERE d.fcmToken = ? AND u.referral_banned = 1 AND u.id != ?
LIMIT 1;
</code></pre>
<p>This catches the scenario: banned user creates new Gmail, signs up on same phone, app sends FCM token → token matches banned user&#39;s device → new account auto-banned.</p>
<p><strong>The known limitation:</strong> FCM tokens reset on app reinstall. A determined user can uninstall, reinstall, and get a fresh token. But we&#39;ve raised the cost of abuse from &quot;sign in with another Gmail&quot; (30 seconds) to &quot;uninstall, reinstall, create new Gmail, sign up fresh, and lose all progress&quot; (minutes of effort for a few premium days). Most users are students studying for entrance exams — they&#39;re not going to keep grinding that loop.</p>
<h3>Layer 5: Premium revocation</h3>
<p>4 banned users still had active premium modules. All from referral rewards, not legitimate purchases (<code>subscription_providerId: null</code>). Revoked in one query:</p>
<pre><code>UPDATE users SET
  active_modules = &#39;[]&#39;,
  module_speaking_expiresAt = NULL,
  module_writing_expiresAt = NULL,
  module_reading_expiresAt = NULL,
  module_listening_expiresAt = NULL,
  subscription_tier = &#39;free&#39;,
  subscription_expiresAt = NULL
WHERE referral_banned = 1
  AND active_modules IS NOT NULL AND active_modules != &#39;[]&#39;;
</code></pre>
<h3>Layer 6: Legal coverage</h3>
<p>Updated Privacy Policy and Terms of Service in all 3 languages (EN/RU/UZ): 
<strong>Privacy Policy additions:</strong></p>
<ul>
<li>Device identifiers used for abuse prevention</li>
<li>Abuse flags retained after account deletion</li>
</ul>
<p><strong>Terms additions:</strong></p>
<ul>
<li>Explicit prohibition on multi-account creation and referral manipulation</li>
<li>Account suspension section with specific reasons</li>
<li>Ban persistence clause: &quot;Suspension status is retained even after account deletion and will be applied to any new account created from the same device or identity.&quot;</li>
</ul>
<h2>The data: Was the referral system worth It?</h2>
<p>After the cleanup, we ran the numbers. The answer surprised us.</p>
<h3>Genuine vs fraudulent</h3>
<table>
<thead>
<tr>
<th>Tier</th>
<th>Count</th>
<th>%</th>
</tr>
</thead>
<tbody><tr>
<td>Genuine referrals</td>
<td>363</td>
<td>91%</td>
</tr>
<tr>
<td>Fraudulent referrals</td>
<td>34</td>
<td>9%</td>
</tr>
</tbody></table>
<p>91% of referrals were real people referring real people. The system was working.</p>
<h3>Retention: Referred vs organic</h3>
<table>
<thead>
<tr>
<th>Cohort</th>
<th>7-day active</th>
<th>30-day active</th>
</tr>
</thead>
<tbody><tr>
<td>All users</td>
<td>8.8%</td>
<td>28.5%</td>
</tr>
<tr>
<td>Referred users</td>
<td><strong>20.7%</strong></td>
<td><strong>37.8%</strong></td>
</tr>
</tbody></table>
<p>Referred users retained at <strong>2.4x the baseline</strong>. Someone who joins because a friend told them is more committed than someone who found you on the Play Store.</p>
<h3>Where did the premium days go?</h3>
<table>
<thead>
<tr>
<th>Reward</th>
<th>Total claims</th>
<th>By fraudsters</th>
<th>By legit users</th>
<th>Premium days leaked</th>
</tr>
</thead>
<tbody><tr>
<td>7-day Silver premium</td>
<td>74</td>
<td>67 (91%)</td>
<td>7</td>
<td>518</td>
</tr>
<tr>
<td>7-day module unlock</td>
<td>33</td>
<td>32 (97%)</td>
<td>1</td>
<td>231</td>
</tr>
<tr>
<td>Streak freezes</td>
<td>261</td>
<td>83 (32%)</td>
<td>178</td>
<td>0</td>
</tr>
<tr>
<td>Avatar badge</td>
<td>22</td>
<td>20 (91%)</td>
<td>2</td>
<td>0</td>
</tr>
</tbody></table>
<p><strong>749 premium days were given away. 693 (93%) went to fraudsters</strong>. Only 56 days went to legitimate referrers — roughly 8 weeks of one subscription&#39;s worth of premium given away in exchange for hundreds of sticky users. Most paid acquisition channels would kill for that ratio.</p>
<p>The fraud wasn&#39;t that the system was too generous. It&#39;s that the high-tier rewards attracted abusers who farmed at scale, while legitimate users mostly stayed at tier 1 (streak freezes).</p>
<h3>Was the tiered structure the problem?</h3>
<p>We briefly switched to a flat 1-day premium reward before shutting referrals down entirely:</p>
<table>
<thead>
<tr>
<th>Era</th>
<th>Total</th>
<th>Genuine</th>
<th>Fake</th>
<th>Fraud %</th>
</tr>
</thead>
<tbody><tr>
<td>Old tiered system</td>
<td>302</td>
<td>275</td>
<td>27</td>
<td>8.9%</td>
</tr>
<tr>
<td>New 1-day system</td>
<td>95</td>
<td>88</td>
<td>7</td>
<td>7.4%</td>
</tr>
</tbody></table>
<p>The fraud rate barely changed. The problem was never the generosity of the reward — it was the <strong>tiered escalation</strong>. The reward-to-effort ratio had a cliff at tier 2 where 2 minutes of creating a Gmail suddenly bought you 7 days of premium. Under the 1-day system, you&#39;d need a new fake account every day to maintain premium. The economics of farming collapsed.</p>
<h3>The multi-account landscape</h3>
<p>With referral abuse handled, we checked how many devices were running multiple accounts across the entire platform:</p>
<table>
<thead>
<tr>
<th>Accounts per device</th>
<th>Devices</th>
<th>Total accounts</th>
</tr>
</thead>
<tbody><tr>
<td>2</td>
<td>1,619</td>
<td>3,238</td>
</tr>
<tr>
<td>3</td>
<td>313</td>
<td>939</td>
</tr>
<tr>
<td>4</td>
<td>109</td>
<td>436</td>
</tr>
<tr>
<td>5+</td>
<td>63</td>
<td>352</td>
</tr>
</tbody></table>
<p>2,104 devices running multiple accounts — 4,971 accounts out of ~77K users (6.5%). The 5+ cluster (63 devices, 352 accounts) looked suspicious. But when we checked their trial flags and exam usage: <strong>all zeros</strong>. No trial abuse, no free exam farming. Every multi-account was built for referral farming, and with referrals dead, the accounts were inert.</p>
<p>We considered implementing <code>ANDROID_ID</code> fingerprinting and device-level account restrictions. Then we checked the data and decided not to build it. The problem was already solved. Ten minutes of SQL saved days of engineering.</p>
<h2>Architecture summary</h2>
<h3>SIGN-IN ATTEMPT</h3>
<ul>
<li>Google / Telegram / Widget<br>→ assertNotBanned()<br>→ 403 if banned<br>→ Token refresh also returns 403 (within 1 hour)</li>
</ul>
<h3>ACCOUNT DELETION</h3>
<ul>
<li>Delete account → snapshot identity + ban flag  </li>
<li>Re-register with same identity  </li>
<li>If match found → restore ban via MAX()</li>
</ul>
<h3>DEVICE REGISTRATION</h3>
<ul>
<li>Register FCM token  </li>
<li>If device linked to banned user → auto-ban</li>
</ul>
<h3>REFERRAL GRAPH</h3>
<ul>
<li>Traverse referral chain  </li>
<li>Ban connected accounts (iterative)  </li>
<li>Revoke fraudulently earned premium</li>
</ul>
<h2>What we learned</h2>
<ol>
<li><strong>Ban the actor, not just the action.</strong> Our initial referral_banned flag only blocked referral code usage. That&#39;s like banning someone from the loyalty program but still letting them shop. If someone is abusing your system, lock the door.</li>
<li><strong>Deletion is an escape hatch.</strong> If you ban someone but let them delete and re-create, you haven&#39;t banned them. Snapshot identities before deletion and check on re-registration.</li>
<li><strong>Walk the graph.</strong> The 114 banned accounts were the pawns. The 34 accounts collecting premium were the real abusers. Always check both sides of the referral relationship.</li>
<li><strong>Tiered rewards create cliffs.</strong> Streak freezes at tier 1 attracted zero abuse. 7-day premium at tier 2 attracted all of it. The moment you give away the thing people pay for, someone will figure out how to farm it. Keep referral rewards non-fungible with your paid tier.</li>
<li><strong>403 vs 401 matters.</strong>** Using the wrong HTTP status code caused our Android interceptor to silently retry (thinking it was an expired token) instead of showing the user why they were blocked. Small detail, big behavioral difference.</li>
<li><strong>Check the data before building defenses.</strong> We considered implementing ANDROID_ID fingerprinting, device-level exam quotas, and mandatory notification permissions. Then we checked: the 5+ account cluster had zero trial abuse, zero free exam farming. The only exploit was referral farming, which we&#39;d already killed. Sometimes the best engineering decision is not to build something.</li>
<li><strong>Don&#39;t kill a working growth channel because of a small abuse cluster.</strong> The fraud rate was only 9%. 91% of referrals were genuine users who retained at 2.4x baseline. 363 real users with 2x retention for 56 days of premium is an incredible acquisition deal. The system was working — it just needed guardrails, not demolition.</li>
</ol>
<h2>Connect with Azizbek</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/typos-bro">/in/typos-bro</a></li>
</ul>
<p>Built by <a href="https://milliytechnology.org">MilliyTechnology</a>. We&#39;re building AI-powered exam prep tools for students in Central Asia. If you&#39;re working on similar problems, reach out.</p>
<p>If you want to be next and contribute, send us an email at <a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a>.</p>
<hr>
<p><strong>Ready for your next move?</strong><br>Visit <strong>Dev Korea</strong> to explore the latest job openings at <a href="https://dev-korea.com/jobs">https://dev-korea.com/jobs</a>, or if you’re hiring, post a job at <a href="https://dev-korea.com/post-a-job">https://dev-korea.com/post-a-job</a> and connect with our growing international tech community.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/how-148-users-farmed-free-premium-and-how-we-stopped-it_8b0d1b43.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Dev Korea #7 Recap: AI, serverless, and a packed night in Seoul]]></title>
            <link>https://dev-korea.com/blog/dev-korea-7-ai-serverless-packed-night</link>
            <guid isPermaLink="false">87fa4daa-79c1-45fe-8986-f4560f996b7d</guid>
            <pubDate>Mon, 23 Mar 2026 05:23:37 GMT</pubDate>
            <description><![CDATA[In February, we hosted Dev Korea #7, bringing together 160+ developers, founders, engineers, and builders in Seoul for one of our biggest events yet.]]></description>
            <content:encoded><![CDATA[<p>In February, we hosted <strong>Dev Korea #7</strong>, bringing together <strong>160+ developers, founders, engineers, and builders</strong> in Seoul for one of our biggest events yet.</p>
<p>With a highly engaging talk on AI and serverless, <strong>46 pizzas</strong>, and a room full of energy, this event once again showed how strong the demand is for practical, real-world tech conversations within Korea’s international developer community.</p>
<h2>Building, learning, and connecting in Seoul</h2>
<p>From the moment doors opened, the venue quickly filled up.</p>
<p>We kicked things off with <strong>check-in and food</strong>, and with <strong>46 pizzas provided by Dev Korea</strong>, conversations started immediately:</p>
<ul>
<li>people sharing what they are building  </li>
<li>discussing AI trends and tooling  </li>
<li>reconnecting with familiar faces  </li>
<li>meeting new members of the community</li>
</ul>
<p>As always, the atmosphere was relaxed, friendly, and welcoming.</p>
<blockquote>
<p>Don’t worry about perfect English. Many attendees speak Korean too.<br>Come as you are—we’re here to learn and connect together. 🇰🇷</p>
</blockquote>
<h2>🧠 How to efficiently develop and deploy your AI-based product with serverless</h2>
<p>The evening featured a single, deep-dive session focused on one of the most relevant topics today: <strong>AI infrastructure and serverless architecture</strong>.</p>
<p><strong><a href="https://www.linkedin.com/in/spark323">Sang (Chris) Park</a></strong> delivered an <strong>awesome, highly engaging talk</strong> exploring how to build and ship AI-powered products efficiently using serverless.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260312_2ed8p39u8f4a3f.jpg" alt="Sang (Chris) Park"></p>
<p>The session covered:</p>
<ul>
<li>why infrastructure matters just as much as the application layer  </li>
<li>what serverless architecture actually is and when to use it  </li>
<li>how serverless helps remove bottlenecks for fast-moving teams  </li>
<li>why it is especially well-suited for AI-based products  </li>
<li>a <strong>live, real-time demonstration</strong> of building and deploying</li>
</ul>
<p>The talk struck a strong balance between concept and practice, making it valuable for both experienced engineers and builders exploring AI for the first time.</p>
<h2>🌱 AI and serverless: a growing focus in the community</h2>
<p>Compared to previous events, this meetup clearly reflected the current shift in the ecosystem.</p>
<p>Conversations throughout the evening focused on:</p>
<ul>
<li>building AI-powered products in practice  </li>
<li>choosing the right infrastructure for fast iteration  </li>
<li>balancing cost, scalability, and developer experience  </li>
<li>how serverless changes the way teams ship</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260312_2ed8p36u8f4a3f.jpg" alt="AI and serverless"></p>
<p>The level of engagement, and the size of the crowd, made one thing clear:<br><strong>AI and modern infrastructure are top of mind for the Dev Korea community.</strong></p>
<h2>🍕 Pizza, networking, and hallway conversations</h2>
<p>Food once again played a key role in setting the tone.</p>
<p>With <strong>46 pizzas shared across 160+ attendees</strong>, the event felt lively from start to finish.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260312_2ed3p39u8f4a3f.jpg" alt="Pizzas"></p>
<p>Throughout the night, people:</p>
<ul>
<li>exchanged ideas around AI tools and workflows  </li>
<li>discussed serverless setups and real-world use cases  </li>
<li>talked about startups, side projects, and careers  </li>
<li>built new connections and strengthened existing ones</li>
</ul>
<p>These informal conversations remain one of the most valuable parts of every Dev Korea event.</p>
<h2>🙌 Huge thanks</h2>
<p>This event would not have been possible without:</p>
<ul>
<li>Our speaker <a href="https://www.linkedin.com/in/spark323">Sang (Chris) Park</a> for an awesome, super engaging talk on AI and serverless  </li>
<li>The AWS Korea team, <a href="https://www.linkedin.com/in/yongho1037">Yongho Choi</a>, <a href="https://www.linkedin.com/in/seonghan-kim-02305729">SeongHan Kim</a>, <a href="https://www.linkedin.com/in/kim-sewoong">Sewoong Kim</a>, for helping the event run smoothly even with such a large crowd  </li>
<li>Our amazing volunteers: <a href="https://www.linkedin.com/in/aleksey-kim-61a916195">Aleksey Kim</a>, <a href="https://www.linkedin.com/in/bertijn-pauwels/">Bertijn Pauwels</a>, <a href="https://www.linkedin.com/in/ian-w-wagner">Ian Wagner</a>, <a href="https://www.linkedin.com/in/kathie-lee-418108349">Kathie Lee</a>, <a href="https://www.linkedin.com/in/castelinloic">Loïc Castelin</a>, <a href="https://www.linkedin.com/in/myungjun-jung-697966370">Myungjun Jung</a>, <a href="https://www.linkedin.com/in/robksawyer">Rob Sawyer</a>, and many more who helped behind the scenes  </li>
<li>All <strong>160+ attendees</strong> who filled the venue and brought incredible energy</li>
</ul>
<p>Seeing the space completely packed was both surprising and incredibly motivating for us as organizers.</p>
<h2>👀 What’s next</h2>
<p>Dev Korea continues to grow, and Dev Korea #7 confirmed the strong demand for <strong>practical, community-driven tech events in Seoul</strong>.</p>
<p>We’ll keep bringing more events focused on real-world topics, from AI and infrastructure to product, startups, design, and beyond.</p>
<p>👉 Explore upcoming events: <a href="https://dev-korea.com/events">https://dev-korea.com/events</a></p>
<p>Want to stay connected?</p>
<ul>
<li>Follow us on LinkedIn: <a href="https://www.linkedin.com/company/dev-korea">https://www.linkedin.com/company/dev-korea</a>  </li>
<li>Follow us on X: <a href="https://x.com/dev_korea">https://x.com/dev_korea</a>  </li>
<li>Watch previous talks: <a href="https://dev-korea.com/talks">https://dev-korea.com/talks</a>  </li>
<li>Join our Discord server: <a href="https://discord.gg/hqzMbuXy73">https://discord.gg/hqzMbuXy73</a>  </li>
<li>Subscribe to the Weekly Dev Korea Digest Newsletter: <a href="https://dev-korea.com/newsletter">https://dev-korea.com/newsletter</a></li>
</ul>
<p>Here’s to more nights of learning, building, and meaningful community in Seoul. 🍻✨</p>
<hr>
<p><strong>Ready for your next move?</strong><br>Visit <strong>Dev Korea</strong> to explore the latest job openings at <a href="https://dev-korea.com/jobs">https://dev-korea.com/jobs</a>, or if you’re hiring, post a job at <a href="https://dev-korea.com/post-a-job">https://dev-korea.com/post-a-job</a> and connect with our growing international tech community.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/dev-korea-7-ai-serverless-packed-night_5d6c4062.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[From D-10 to F-2-7 without E-7: What I learned navigating Korea's visa system]]></title>
            <link>https://dev-korea.com/blog/navigating-korea-visa-d10-to-f27-without-e7</link>
            <guid isPermaLink="false">5813c892-7523-47c8-b38d-b94d0e2e3c80</guid>
            <pubDate>Tue, 17 Mar 2026 03:03:00 GMT</pubDate>
            <description><![CDATA[In February 2026, Maëlle moved directly from D-10 to F-2-7, without ever holding an E-7 visa. Maëlle is sharing this not as a "hack," but as a case study in preparation, timing, and understanding how the system actually works.]]></description>
            <content:encoded><![CDATA[<blockquote>
<p>This article was originally published by <a href="https://www.linkedin.com/in/maelledairain/">Maëlle Dairain</a> on her <a href="https://www.linkedin.com/pulse/from-d-10-f-2-7-without-e-7-what-i-learned-navigating-ma%C3%ABlle-dairain-2dt1c">LinkedIn</a> and is reposted here with her permission. Thanks to Maëlle for letting us share it with the community.</p>
</blockquote>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/navigating-korea-visa-d10-to-f27-without-e7_b34bc4c32038.jpg" alt="F-2 eligibillity chart"></p>
<p>Most foreign professionals in Korea assume the long-term path is linear:</p>
<p><strong>D-2 → D-10 → E-7 → F-2-7 → F-5</strong><br>That&#39;s the common narrative.</p>
<p>In February 2026, I moved directly from D-10 to F-2-7, without ever holding an E-7 visa. I&#39;m sharing this not as a &quot;hack,&quot; but as a case study in preparation, timing, and understanding how the system actually works.</p>
<h2>🌏 My background</h2>
<p>Hi I&#39;m Maëlle, a 24 year-old French woman who discovered South Korea for the first time during an exchange semester in Sungkyukwan University 3 years ago. After graduating from a Master&#39;s degree in Engineering (Smart and Resilient Cities) and while working a year in urban project development at Linkcity (Bouygues Construction Group) in France, I made the deliberate decision to come back.</p>
<p>I returned to Korea in April 2024 on a Working Holiday (H-1) visa with a clear goal: build a long-term career here. During that year, I focused on:</p>
<ul>
<li>Improving my Korean (until TOPIK Level 4)</li>
<li>Building a professional network</li>
<li>Securing relevant work experience
In April 2025, I transitioned to a D-10-1 (job-seeking visa). After a short-term consulting experience at GGGI, I joined Yooshin Engineering Corporation as an intern in September 2025 and signed a one-year contract in January 2026.</li>
</ul>
<p><em>One important detail: switching from H-1 to D-10 cannot be done in-country — Korea does not allow this change of status domestically. I ended my H-1 a little earlier than planned, spent two days in Japan, and re-entered Korea as a tourist to apply for the D-10 upon arrival.</em></p>
<h2>First: Understand which pathway applies to you</h2>
<p>Before anything else, I want to be clear: this article describes <strong>one specific pathway</strong> to the F-2-7 visa. The system has multiple routes, and most people will not qualify through the same one I used.</p>
<p>The three main (<strong>but not only</strong>) eligibility pathways are:</p>
<ol>
<li><strong>The standard route (most common):</strong> You hold a professional visa such as E-7, E-2, E-3, or similar, have been legally residing in Korea for at least 3 consecutive years under that status, and accumulated enough points. This is what most foreign professionals eventually use. It takes time, but it&#39;s well-documented and reliable.</li>
<li><strong>Korean domestic graduate:</strong> You completed a Master&#39;s degree or higher at a Korean university, have been residing in Korea for at least 3 consecutive years (with D-2 or D-10-1 visa), and have confirmed employment or are employed under a qualifying professional visa. This is a faster route for those who studied here long-term.</li>
<li><strong>KOSPI/KOSDAQ employee:</strong> You are employed or have confirmed employment at a corporation listed on the KOSPI or KOSDAQ stock markets, in a managerial or professional occupation per the Korean Standard Occupational Classification. If you meet this condition and have enough points, the usual 3-year residency requirement is waived entirely.</li>
</ol>
<h2>🎯 Why I chose F-2-7 over E-7</h2>
<p>Honestly, E-7 was my original plan. It&#39;s the default answer most people give when you ask &quot;what visa do I get once I have a job in Korea?&quot;</p>
<p>But while researching the E-7 → F-2 pathway, I came across a specific provision I hadn&#39;t heard of before: foreign professionals who are employed at a KOSPI or KOSDAQ-listed company may be eligible for the F-2-7 visa directly.</p>
<p>I checked: Yooshin is listed on KOSDAQ!</p>
<p>That changed everything. F-2-7 offered something E-7 couldn&#39;t in the short term:</p>
<ul>
<li>Independence from employer sponsorship</li>
<li>Freedom to change jobs without losing status</li>
<li>A direct path toward long-term residency</li>
<li>For someone building a career here on their own terms, it was clearly the better option.</li>
</ul>
<h2>✅ What made it possible</h2>
<p>The F-2-7 is a points-based system. Here&#39;s a rough breakdown of where my points came from:</p>
<ul>
<li>Education: Master&#39;s degree in engineering</li>
<li>Age: Age bracket gives more or less points</li>
<li>Korean language: TOPIK Level 4</li>
<li>Income: Annual salary (1-year contract)</li>
<li>Special condition: Employed at a KOSDAQ-listed company</li>
</ul>
<p><em>Note: under the standard pathway, income points are calculated from your most recent 소득금액증명서. But under the KOSDAQ/KOSPI pathway, you should not have one, so income is assessed directly from your employment contract instead.</em></p>
<p>The KOSDAQ condition is significant because it essentially fast-tracks eligibility for professionals at listed companies — but it comes with strict conditions, one of which nearly derailed my application entirely...</p>
<h2>⚠️ The obstacle I didn&#39;t see coming</h2>
<p>I had spent months preparing every document and I went to the immigration office confident.</p>
<p>The officer asked whether I had any declared income in the past two years (here 2023 and 2024). The KOSDAQ-employee pathway requires that you cannot submit a 소득금액증명서 (income certificate) showing any earnings in that period. At the time of my application, the 2025 income certificate was not yet available — it only becomes accessible from May of the following year. That meant immigration needed to verify the two previous fiscal years: 2023 and 2024.</p>
<p>I assumed I didn&#39;t have one — I had never held a formal work visa in Korea.</p>
<p>They sent me to the tax office to verify. And there it was: a 소득금액증명서 from 2024 showing an amount under 70,000 KRW. Where did it come from? During my H-1 year, I had animated two cooking classes (two hours each, just giving instructions) for which I was paid a small fee. That was it!</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/navigating-korea-visa-d10-to-f27-without-e7_b34bc4c32037.jpg" alt="소득금액증명서"></p>
<p>The officer was clear: it doesn&#39;t matter how low the amount is. Any recorded income (a part-time shift, a paid SNS post, a small gig) will appear on your 소득금액증명서 and can disqualify you under this specific condition. The amount is irrelevant; the existence of the entry is what counts.</p>
<p>After months of preparation, I walked out of that office without a visa…</p>
<h2>The follow-up that changed the outcome</h2>
<p>A week later, I went back — this time intending to apply for an E-7.</p>
<p>But my intuition told me to bring up the income certificate issue again and explain the full context. I spoke with a different officer. She reviewed my documents, consulted with a colleague, and acknowledged that while the previous interpretation was technically correct, the amount was so negligible that they were willing to exercise discretion and accept the application.</p>
<p>I submitted for F-2-7. It was approved one week later and my new 외국인등록증 (residence card) arrived within two weeks.</p>
<p><em>Note: because my situation was non-standard, I was granted a 1-year visa rather than the 2-year validity I would have been eligible for based on my salary.</em></p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/navigating-korea-visa-d10-to-f27-without-e7_b34bc4c32036.jpg" alt="ARC"></p>
<h2>💡 Practical advice for D-10 holders</h2>
<p>If you&#39;re on a D-10 and trying to figure out your next step, here&#39;s what I&#39;d suggest:</p>
<ul>
<li><strong>Don&#39;t assume E-7 is your only option.</strong> If your employer is listed on KOSPI or KOSDAQ, verify whether you qualify for the alternative pathway.</li>
<li><strong>Run your point simulation early.</strong> Understand which documents will be scrutinized most</li>
<li><strong>Check your tax record before applying.</strong> Even minor paid activity during H-1 or D-10 (a part-time job, a cooking class, a paid SNS post, anything) can appear on your income certificate. The amount is irrelevant — the record is what matters.</li>
<li><strong>Prepare documentation meticulously.</strong> Translations, apostilles, contract clarity — details determine outcomes.</li>
<li><strong>Be persistent, but also be strategic.</strong> Avoid being emotional. How you present your case matters.</li>
</ul>
<h2>Risks &amp; honest limitations</h2>
<p>This process is not straightforward, and I want to be clear about a few things:</p>
<ul>
<li>Immigration officer discretion is real. What one officer interprets strictly, another may handle differently. This creates uncertainty that no amount of preparation can fully eliminate.</li>
<li>Documentation requirements are strict and specific. Translation standards, apostille requirements, and document formats are not flexible. One missing element can delay or block your application.</li>
<li>Edge cases like mine may not resolve in your favor. The outcome I described depended on a specific officer being willing to apply judgment. That is not guaranteed.</li>
</ul>
<p>The F-2-7 via KOSDAQ/KOSPI provision has conditions that need to align precisely. If your income record, contract terms, or point calculation fall slightly outside the criteria, you may need a different pathway.</p>
<h2>Final thought</h2>
<p>The Korean immigration system is structured, but it&#39;s not inflexible. There are pathways that aren&#39;t widely advertised, and eligibility conditions that reward people who do their research carefully.</p>
<p>My path from D-10 to F-2-7 wasn&#39;t linear. It involved a setback, a second attempt, and a conversation that could have gone either way. What made the difference was preparation, knowing the system well enough to ask the right questions, and the willingness to try again.</p>
<p>If you&#39;re planning your next step from D-10 or E-7, research the pathways early — small details can change the entire timeline.</p>
<h2>Connect with Maëlle</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/maelledairain/">/in/maelledairain</a></li>
<li>Linktree: <a href="https://linktr.ee/maelledairain">/maelledairain</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/navigating-korea-visa-d10-to-f27-without-e7_a07b4c27.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[How Matheus built a 10+ year AI career in Korea]]></title>
            <link>https://dev-korea.com/blog/matheus-miranda-10-year-ai-career-korea</link>
            <guid isPermaLink="false">59f442e2-f270-401b-a1bc-3c3dabb95ba2</guid>
            <pubDate>Wed, 04 Mar 2026 07:36:56 GMT</pubDate>
            <description><![CDATA[Meet Matheus, a Brazilian/British AI Engineer at Tova Earth in Seoul. We sat down with him to learn about his journey from Brazil to Korea, what it's like working in tech here, and why he believes more global talent should consider a tech career in Korea.]]></description>
            <content:encoded><![CDATA[<p>Meet <strong>Matheus</strong>, a Brazilian/British AI Engineer at <a href="https://www.tova.earth/">Tova Earth</a> in Seoul. We sat down with him to learn about his journey from Brazil to Korea, what it&#39;s like working in tech here, and why he believes more global talent should consider a tech career in Korea.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Matheus Miranda</li>
<li><strong>Nationality:</strong> Brazilian/British</li>
<li><strong>Current role &amp; company:</strong> AI Engineer at <a href="https://www.tova.earth/">Tova Earth</a></li>
<li><strong>Years in Korea:</strong> 12</li>
<li><strong>Visa status:</strong> F-2 (D-2 -&gt; E7 -&gt; F-2)</li>
<li><strong>Languages spoken:</strong> English, Portuguese, Spanish, Basic Korean</li>
<li><strong>Previous countries worked in (if any):</strong> England</li>
</ul>
<h2>Background &amp; Career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p><strong>Matheus:</strong> My name is Matheus. I&#39;m 36 years old and originally from Brazil.</p>
<p>My story in Korea began in 2013, when I was awarded a scholarship to study my Master&#39;s degree in Electrical and Computer Engineering at Seoul National University. Since then, I&#39;ve had over 10 years of work experience as an engineer in Korea. I&#39;m currently a Senior AI Engineer at a startup called Tova Earth.</p>
<p><strong>Q. What was your career path before moving to Korea?</strong></p>
<p>Interestingly, my entire professional career has been in Korea. Before moving here, the only job I had was as a salesperson at a phone shop during my gap year — not exactly related to my current career path.</p>
<p><strong>Q. What inspired you to work in Korea?</strong></p>
<p>The scholarship was offered by Samsung Electronics, and as part of the package, they included a two-year work contract in a department related to my research topic. That opportunity was extremely attractive to me, as it allowed me to gain early industry experience at one of the most well-known consumer electronics and mobile phone companies in the world.</p>
<p>The Samsung Global Scholarship was a fantastic opportunity overall, and it was the main reason I was excited to come to Korea.</p>
<h2>Experience Working in Korea</h2>
<p><strong>Q. Tell us briefly about your company (size, industry focus, notable achievements).</strong></p>
<p><a href="https://www.tova.earth/">Tova</a> is a relatively new startup headquartered between NYC and London (I work remotely from Seoul). It&#39;s a small team of eight people, including myself. The company focuses on leveraging deep learning and other AI technologies for water risk management.</p>
<p>Our main customer segments include water utility companies and private-sector companies in food and beverage, which require large volumes of water for operations. Tova has participated in the Techstars London accelerator, raised angel funding, and has paying customers, including a water utility company in California.</p>
<p>My role involves designing and deploying AI systems.</p>
<p><strong>Q. How did you find your current job? Was the hiring process challenging as a foreigner?</strong></p>
<p>I generally use LinkedIn, Dev Korea, and other remote job boards to discover open positions. In this case, however, I was contacted directly by the CEO of Tova. We previously worked together on a summer volunteering project in Peru during our undergraduate studies in London.</p>
<p>The hiring process was fairly informal and based largely on trust and past accomplishments. Since the company is international and remote-first, there were no specific challenges related to being based in Korea.</p>
<p><strong>Q. Can you describe your typical workday?</strong></p>
<p>My day involves coding with Claude Code, evaluating and monitoring agent performance, and deploying systems on AWS.</p>
<p>I typically take a break in the afternoon to go to the gym and have dinner, then work again in the evening so I can overlap with team members in the UK and US time zones.</p>
<p><strong>Q. How does Korean work culture compare to your home country&#39;s?</strong></p>
<p>Since I have limited experience working in Brazil or the UK, I may not be the best person to make a full comparison. However, I did get a glimpse of the UK work culture while participating in the Techstars London accelerator with one of my startups (yes, I was a co-founder at two startups).</p>
<p>In my experience, UK work culture encourages creativity and open expression of ideas, regardless of title or seniority. Professional criticism is often viewed positively and contributes to constructive discussion.</p>
<p>In Korea, hierarchical culture is strongly present in many companies. There is often a strong emphasis on following instructions and working long hours. Of course, this doesn&#39;t apply to every Korean company, but it is a pattern I have observed.</p>
<p>I was surprised by the speed at which things move in the Korean tech sector, especially in smaller companies. It’s a very dynamic work environment that keeps adapting to new trends.</p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>I have never spoken Korean at work. Even during my time at Samsung, I was encouraged to use English to help colleagues practice and to support Samsung&#39;s vision of becoming a global company.</p>
<p><strong>Q. What challenges have you faced adapting to Korea&#39;s work environment?</strong></p>
<p>The communication hierarchy can be frustrating, as it sometimes slows productivity. I once had to start a long email chain to request information from someone sitting just two desks away, because direct communication wasn&#39;t considered appropriate.</p>
<p>I have also experienced a strong sense of <a href="https://dev-korea.com/blog/nunchi-in-korean-tech-companies-guide-for-international-professionals">눈치 (<em>nunchi</em>)</a>, which sometimes prevented me from expressing my opinions openly. Finally, the &quot;<a href="https://dev-korea.com/blog/ppalli-ppalli-the-culture-of-speed-in-korea">ppalli-ppalli</a>&quot; culture can lead to rushed decision-making without sufficient discussion or alignment.</p>
<h2>Lifestyle &amp; Community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>I&#39;ve been fortunate to build strong friendships since arriving in Korea in 2013. Although people come and go, I managed to keep a good friendship with people I met during my time at Samsung and every company since, as well as other &quot;Korea OGs&quot; that I met along the way. </p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-matheus-miranda_b34bc4c32036.jpg" alt="Matheus Miranda"></p>
<p>Outside of work, I enjoy outdoor activities with my fiancée, my dog, and friends. We also like hosting dinners at home and organizing group outings. Personally, I enjoy cooking and photography.</p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p>If my Korean were better, it would help tremendously. Being able to have deeper conversations with neighbors and colleagues significantly improves quality of life and helps you feel more integrated into the community.</p>
<p><strong>Q. What was your biggest culture shock when you first arrived?</strong></p>
<p>One shock was how readily people said &quot;yes&quot; to their superiors.</p>
<p>Another memorable moment happened during my time as a student at SNU. My labmates expected everyone to remain in the research lab from 9 a.m. to 5 p.m., unless attending class. They told me that as long as I followed this norm, they would support me whenever needed.</p>
<p>One afternoon, while preparing for an exam, I decided to study at the library instead. The next day, senior PhD students pulled me aside to express their disappointment that I had left the lab without notifying them. That experience taught me a lot about expectations within group settings.</p>
<h2>Reflections &amp; Advice</h2>
<p><strong>Q. Do you plan to stay in Korea long-term, and how do you see your career evolving here?</strong></p>
<p>I can certainly see my career continuing to evolve in Korea. I’ve recently started taking Korean language classes again so that I’ll be better prepared in case I decide to work for a Korean company in the future.</p>
<p>At the moment, I’m very happy working remotely while living in Seoul, and I can see myself continuing this lifestyle for quite some time.</p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<p>Pay attention to hiring cycles and prepare thoroughly for technical tests. Research each company carefully to understand what types of questions they might ask, and prepare strong answers for the specific role.</p>
<p><strong>Q. What can Korean companies do to better support and integrate international employees?</strong></p>
<p>Reduce communication barriers related to rank and age. Provide clear onboarding about Korean culture for international employees, keeping in mind that things that feel natural to Koreans can be confusing or unintuitive for outsiders.</p>
<p><strong>Q. What&#39;s one thing you wish you knew before moving here?</strong></p>
<p>The importance of deeply understanding the culture beforehand, so that I could have been better prepared to navigate the work environment and integrate into society more smoothly.</p>
<p><strong>Q. Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>Yes, in Korea you will meet highly talented colleagues, and be involved with cutting-edge technologies. For those open to adapting to cultural differences, it can be a very rewarding experience both professionally and personally.</p>
<h2>Rapid Fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> Charcoal-grilled dakgalbi (<em>숯불 닭갈비</em>)</li>
<li><strong>One must-visit place in Korea:</strong> Han River (<em>한강</em>)</li>
<li><strong>Most surprising thing about Korean tech culture:</strong> People are very intelligent and kind</li>
<li><strong>Favorite Korean word or phrase:</strong> 화이팅 (<em>Hwaiting</em> meaning &quot;Good luck,&quot; &quot;You can do it,&quot; or &quot;Fighting!&quot;)</li>
</ul>
<h2>Connect with Matheus</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/matheus-f-miranda">/in/matheus-f-miranda</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/matheus-miranda-10-year-ai-career-korea_b2396576.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Kubernetes, multi-cluster reality, and local dev that actually works: Dev Korea #6 Recap]]></title>
            <link>https://dev-korea.com/blog/dev-korea-6-kubernetes-multicluster-local-development-recap</link>
            <guid isPermaLink="false">3a2a04c4-84fe-4134-b83c-40d3d14791b7</guid>
            <pubDate>Fri, 20 Feb 2026 03:04:43 GMT</pubDate>
            <description><![CDATA[Late January, we hosted Dev Korea #6, bringing together almost a hundred developers, platform engineers, and cloud practitioners in Seoul for an evening focused on real-world Kubernetes workflows. With two deeply practical talks, great food, and a relaxed, welcoming atmosphere, the event once again highlighted the value of learning together and sharing honest engineering experience within Korea’s international tech community.]]></description>
            <content:encoded><![CDATA[<p>The January meetup followed a familiar Dev Korea rhythm: food first, conversations early, and talks grounded in real experience rather than theory.</p>
<p>From the moment doors opened, attendees gathered around food, reconnected with familiar faces, and met new people from across the Kubernetes and platform engineering ecosystem. As always, the mix of backgrounds, local and international, junior and senior, individual contributors and founders, made the discussions richer and more grounded.</p>
<p>One reminder we always emphasize, and that clearly resonated again this time:</p>
<blockquote>
<p>Don’t worry about perfect English. Many attendees speak Korean too.<br>Come as you are. We’re here to learn and connect together. 🇰🇷</p>
</blockquote>
<h2>🧠 How to survive and thrive in a multi-cluster world</h2>
<p>The evening opened with a deep dive into one of the most relevant challenges modern teams face.</p>
<p><a href="https://www.linkedin.com/in/ivanporta">Ivan Porta</a> explored how organizations are moving away from large, monolithic Kubernetes clusters toward <strong>multi-cluster environments</strong>, using entire clusters to isolate teams, workloads, or environments.</p>
<p>Rather than treating multi-cluster as a buzzword, the talk focused on practical reality:</p>
<ul>
<li>why teams adopt multi-cluster setups in the first place  </li>
<li>how service meshes and GitOps workflows help manage complexity  </li>
<li>the reliability and operational gains that are possible  </li>
<li>trade-offs between multi-cluster and multi-cloud approaches  </li>
<li>how emerging ideas like federated Services fit into the picture</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260129_2ed8p39u8f4a3f.jpg" alt="Ivan Porta"></p>
<p>The session resonated strongly with engineers already feeling the limits of single-cluster thinking, and offered a clear mental model for navigating the multi-cluster world without losing control.</p>
<p>🎥 <a href="https://dev-korea.com/talks/how-to-survive-and-thrive-in-a-multi-cluster-world">Watch the talk</a>  </p>
<h2>🚀 Tilt for local Kubernetes microservices development</h2>
<p>Next, the focus shifted from production architecture to the daily reality of development.</p>
<p><a href="https://www.linkedin.com/in/anthonycorbacho">Anthony Corbacho</a> tackled a familiar pain point: local Kubernetes development that slowly drifts away from production, leading to &quot;it works on my machine&quot; surprises.</p>
<p>The talk demonstrated how <a href="https://tilt.dev">Tilt</a> helps teams:</p>
<ul>
<li>run real microservice stacks locally on Kubernetes  </li>
<li>keep the same Kubernetes resources and configuration model as production  </li>
<li>rebuild and redeploy only what changed  </li>
<li>centralize logs, status, and service dependencies in one place</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260129_2ed8p39u8f4a3l.jpg" alt="Anthony Corbacho"></p>
<p>For many attendees, this session connected the dots between developer experience and platform consistency, showing how tooling choices directly affect team velocity and confidence.</p>
<p>🎥 <a href="https://dev-korea.com/talks/tilt-for-local-kubernetes-microservices-development">Watch the talk</a></p>
<h2>🌱 A first infra-focused Dev Korea event</h2>
<p>Dev Korea #6 marked an important milestone for us: <strong>our very first event fully focused on infrastructure, Kubernetes, and containers</strong>.</p>
<p>Until now, most Dev Korea meetups leaned more toward product, startups, and application-level topics. This time, the conversation shifted clearly toward:</p>
<ul>
<li>infrastructure and platform engineering challenges</li>
<li>running Kubernetes in real production environments</li>
<li>developer experience and tooling for complex systems</li>
<li>balancing reliability, scalability, and team velocity</li>
</ul>
<p>For many attendees, it was refreshing to dive deep into infra topics in a community setting that still felt approachable and welcoming. The level of engagement, both during the talks and in the hallway conversations, showed there is strong interest in more infrastructure and cloud focused events within the Dev Korea community.</p>
<p>This first infra-focused meetup set a solid foundation, and it&#39;s very likely not the last time we&#39;ll explore Kubernetes, containers, and platform engineering together.</p>
<h2>🍔 Food, networking, and hallway conversations</h2>
<p>Food was served during check-in, setting a relaxed tone from the start and making it easy for conversations to begin naturally.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20260129_2ed8p39u8f4a3e.jpg" alt="CryCheeseBurger"></p>
<p>Throughout the night, people:</p>
<ul>
<li>exchanged experiences running Kubernetes in production  </li>
<li>compared local development setups  </li>
<li>talked about startups, side projects, and career paths  </li>
<li>made new connections and strengthened existing ones</li>
</ul>
<p>These informal discussions are always a core part of Dev Korea and often where the most valuable learning happens.</p>
<h2>🙌 Huge thanks</h2>
<p>This event would not have been possible without:</p>
<ul>
<li><a href="https://buoyant.io">Buoyant</a> and <a href="https://www.crycheeseburger.com/">Cry Cheeseburger</a> for sponsoring this event</li>
<li>Our speakers <a href="https://www.linkedin.com/in/ivanporta">Ivan Porta</a> and <a href="https://www.linkedin.com/in/anthonycorbacho">Anthony Corbacho</a> for sharing practical, experience-driven insights</li>
<li>All the volunteers who helped make this event a success: <a href="https://www.linkedin.com/in/aaronmccollum/">Aaron McCollum</a>, <a href="https://www.linkedin.com/in/bertijn-pauwels/">Bertijn Pauwels</a> and <a href="https://www.linkedin.com/in/robksawyer">Rob Sawyer</a> who made everything flow seamlessly from start to finish</li>
<li>All the attendees who brought thoughtful questions and great energy</li>
<li>Everyone who helped make the evening welcoming, smooth, and enjoyable</li>
</ul>
<p>Seeing engaged conversations continue well after the talks ended is always the best signal that an event worked.</p>
<h2>👀 What’s next</h2>
<p>Dev Korea continues to grow, and Dev Korea #6 reinforced the demand for <strong>practical, technical, community-driven meetups</strong> in Seoul.</p>
<p>We’re already preparing upcoming events with global tech companies and local builders—covering real tools, real systems, and real lessons learned.</p>
<p>👉 Explore upcoming events at <a href="https://dev-korea.com/events">https://dev-korea.com/events</a>
👉 Watch or rewatch the talks at <a href="https://dev-korea.com/talks">https://dev-korea.com/talks</a></p>
<p>Want to stay connected?</p>
<ul>
<li>Follow us on LinkedIn: <a href="https://www.linkedin.com/company/dev-korea">https://www.linkedin.com/company/dev-korea</a>  </li>
<li>Follow us on X: <a href="https://x.com/dev_korea">https://x.com/dev_korea</a>  </li>
<li>Join our Discord server: <a href="https://discord.gg/hqzMbuXy73">https://discord.gg/hqzMbuXy73</a>  </li>
<li>Subscribe to the Weekly Dev Korea Digest Newsletter: <a href="https://dev-korea.com/newsletter">https://dev-korea.com/newsletter</a></li>
</ul>
<p>Here’s to more nights of learning, building, and meaningful community in Seoul. 🍻✨</p>
<hr>
<p><strong>Ready for your next move?</strong> Visit <strong>Dev Korea</strong> to explore the latest job openings at <a href="https://dev-korea.com/jobs">https://dev-korea.com/jobs</a>, or if you’re hiring, post a job at <a href="https://dev-korea.com/post-a-job">https://dev-korea.com/post-a-job</a> and connect with our growing international tech community.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/dev-korea-6-kubernetes-multicluster-local-development-recap_76a07ac3.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[🇰🇷 "Ppalli Ppalli": The culture of speed in Korea]]></title>
            <link>https://dev-korea.com/blog/ppalli-ppalli-the-culture-of-speed-in-korea</link>
            <guid isPermaLink="false">ab5085fd-e1f5-4d39-9fb0-2dd3238d9634</guid>
            <pubDate>Thu, 12 Feb 2026 08:06:59 GMT</pubDate>
            <description><![CDATA[Korea's "ppalli ppalli" culture, shaped by its history and rapid industrialization, has driven efficiency and economic growth — but sometimes at the cost of quality and safety. In today's AI-accelerated IT industry, balancing speed with craftsmanship and reliability matters more than ever.]]></description>
            <content:encoded><![CDATA[<p>If you spend even a few days in Korea, you will hear it everywhere:</p>
<p>&quot;빨리 빨리!&quot; (Ppalli Ppalli!)</p>
<p>It literally means &quot;quickly, quickly.&quot;
But culturally, it means much more.</p>
<h1>1. What is &quot;Ppalli Ppalli&quot;?</h1>
<p>&quot;Ppalli&quot; means fast in Korean. Saying it twice emphasizes urgency.
Over time, it became shorthand for a cultural mindset: do it fast, move quickly, don&#39;t waste time.</p>
<p>Speed is especially valued in the service industry. Food arrives quickly. Deliveries come the same day. Public services move efficiently.</p>
<p>Fun fact: Korea&#39;s country code is +82.
In Korean pronunciation, 8 is &quot;pal&quot; and 2 is &quot;i&quot;, which sounds a bit like &quot;pal-i&quot; (ppalli).
It&#39;s not the origin of the term, but many Koreans enjoy the coincidence.</p>
<h1>2. Where did it come from?</h1>
<p>Some Korean linguists suggest that &quot;ppalli ppalli&quot; culture may be linked to Korea&#39;s strong tendency toward uncertainty avoidance — the desire to reduce ambiguity and instability as quickly as possible.</p>
<p>Historically, the Korean peninsula experienced frequent invasions and instability. Later, during the rapid industrialization of the 1960s and 70s, speed became a national priority. Light industry and heavy chemical industries grew rapidly, and both the government and citizens embraced efficiency and acceleration.</p>
<p>Speed wasn&#39;t just a preference.
It became a survival strategy, and eventually, a competitive advantage.</p>
<h1>3. Everyday &quot;Ppalli Ppalli&quot; moments</h1>
<p>What Serin notices</p>
<ul>
<li>Pressing the elevator &quot;close&quot; button repeatedly until the door fully shuts</li>
<li>Honking if the car in front doesn&#39;t move within one second after the light turns green</li>
<li>Standing up and opening overhead bins before the airplane has fully landed</li>
</ul>
<p>What Florian notices</p>
<ul>
<li>The bus driver departing immediately the moment the doors close</li>
<li>Delivery drivers sometimes bending traffic rules to deliver faster</li>
<li>Switching supermarket lines constantly to find the one that moves fastest</li>
</ul>
<p>Shared on our Discord community</p>
<ul>
<li>Customers shouting their order before even sitting down</li>
<li>Passports or visas being issued surprisingly fast</li>
</ul>
<p>These are small things, but together, they paint a picture.</p>
<h1>4. When foreigners start saying &quot;ppalli&quot; too</h1>
<p>Interestingly, this mindset does not stay foreign for long.</p>
<p>Many foreigners who live in Korea for years gradually adapt to the &quot;ppalli ppalli&quot; rhythm, often without even realizing it. What initially feels rushed or stressful slowly becomes normal. Waiting starts to feel longer. Delays feel heavier. Speed becomes the default expectation.</p>
<p>The real surprise comes when they return to their home country.</p>
<p>Suddenly, everyday life feels slow.
Customer service takes too long.
Processes feel inefficient.
People seem oddly relaxed about delays that now feel unnecessary.</p>
<p>What once felt exhausting in Korea now feels efficient.
What once felt calm back home now feels frustrating.</p>
<p>In that sense, &quot;ppalli ppalli&quot; is not just a cultural trait you observe. It is a tempo you internalize. Living in Korea quietly recalibrates your sense of time.</p>
<p>Many long-term foreigners end up carrying Korea&#39;s speed with them, even after they leave.</p>
<h1>5. The advantages of &quot;Ppalli Ppalli&quot;</h1>
<p>There&#39;s a reason many foreigners are impressed by Korea&#39;s speed.</p>
<ul>
<li>🚇 Public transportation runs precisely and reliably</li>
<li>🍜 Food and delivery services are incredibly fast</li>
<li>🏢 Administrative processes (banking, visas, paperwork) can be highly efficient</li>
</ul>
<p>In industries with short life cycles, like food service or consumer tech, speed itself becomes part of the value proposition.</p>
<h1>6. The downsides</h1>
<p>However, speed can also come at a cost.</p>
<ul>
<li>People who work quickly, even if slightly inaccurate, may be perceived as more competent</li>
<li>This mindset can contribute to safety negligence or rushed construction. Several major accidents in Korea, including <a href="https://en.wikipedia.org/wiki/Seongsu_Bridge_disaster">the Seongsu Bridge collapse</a> or <a href="https://en.wikipedia.org/wiki/Sampoong_Department_Store_collapse">the Sampoong Department Store disaster</a>, are often cited as reminders of what can happen when speed outweighs safety.</li>
<li>Those who cannot move quickly (children, elderly, or simply people with different working styles) may feel left behind</li>
<li>Mistakes or failures may be seen as &quot;wasted time&quot; rather than learning opportunities</li>
</ul>
<p>When speed becomes the primary measure of performance, quality and reflection may suffer.</p>
<h1>7. Conclusion: Speed vs. quality in the AI era</h1>
<p>Korea&#39;s &quot;ppalli ppalli&quot; culture has undeniably fueled economic growth and industrial success.</p>
<p>In fast-moving service industries, speed can be attractive and efficient.
But in industries where craftsmanship, safety, or long-term reliability matter, an excessive focus on speed may reduce overall quality.</p>
<p>In today&#39;s IT world, especially with AI accelerating software development cycles, the temptation to move faster than ever is strong.
Yet differentiation increasingly comes not just from speed, but from quality, depth, and thoughtful execution.</p>
<p>Perhaps the future isn&#39;t about choosing between speed and quality.</p>
<p>It&#39;s about knowing when to move fast, and when to slow down.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you’re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea’s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/ppalli-ppalli-the-culture-of-speed-in-korea_218fcf5e.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[How a Bangladeshi founder built her tech career and startup in Seoul]]></title>
            <link>https://dev-korea.com/blog/bangladeshi-founder-tech-career-startup-seoul</link>
            <guid isPermaLink="false">f0e6cbbe-dfe4-448b-b1fc-0bae6f65fab3</guid>
            <pubDate>Mon, 02 Feb 2026 07:39:05 GMT</pubDate>
            <description><![CDATA[Meet Tabassum, a Bangladeshi co-founder and Managing Director of Katriyam in Seoul. We sat down with her to learn about her journey from Bangladesh to Korea, what it's like working in tech here, and why she believes more global talent should consider a tech career in Korea.]]></description>
            <content:encoded><![CDATA[<p>Meet <strong>Tabassum</strong>, a Bangladeshi co-founder and Managing Director of <a href="https://www.katriyam.com/">Katriyam</a> in Seoul. We sat down with her to learn about her journey from Bangladesh to Korea, what it&#39;s like working in tech here, and why she believes more global talent should consider a tech career in Korea.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Tabassum N Haque</li>
<li><strong>Nationality:</strong> Bangladeshi</li>
<li><strong>Current role &amp; company:</strong> Managing Director at <a href="https://www.katriyam.com/">Katriyam</a></li>
<li><strong>Years in Korea:</strong> 13+ years</li>
<li><strong>Visa status:</strong> F5 (Permanent Resident)</li>
<li><strong>Languages spoken:</strong> English, Korean, Bengali</li>
<li><strong>Previous countries worked in (if any):</strong> N/A</li>
</ul>
<h2>Background &amp; career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p><strong>Tabassum:</strong> I came to Korea back in 2012 as a Korean Government Scholarship Grantee to pursue my master&#39;s degree in Computer Engineering. I have worked in the field of Blockchain and Web3 since 2015, mostly focusing on strategic planning and business infrastructure for the blockchain ecosystem. </p>
<p>Currently I have my own web agency called Katriyam where we provide services to mostly Korean clients. I also work as a blockchain consultant and institutional business developer for BaaS (Blockchain as a Service). </p>
<p><strong>Q. What was your career path before moving to Korea?</strong></p>
<p>Initially I wanted to be in Academia. So, I was mostly working in research labs experimenting with new ideas.</p>
<p><strong>Q. What inspired you to work in Korea?</strong></p>
<p>Honestly, it was mainly because I took it as a challenge. When I was doing my masters, I wanted to go for a PhD after that and eventually become a professor. However, I kept hearing that I chose the path everyone else from Bangladesh in Korea chooses and that I should stick to it, because the corporate world in Korea is very hard and I have to struggle a lot. That initially gave me motivation to actually find a job in Korea. </p>
<p>But honestly, I have to say that I was lucky that I landed an internship in a company that was trying to implement Bitcoin in their e-commerce platform back in 2015. They were way ahead of their time, but it opened a whole new world to me. </p>
<h2>Experience working in Korea</h2>
<p><strong>Q. Tell us briefly about your company (size, industry focus, notable achievements).</strong></p>
<p><a href="https://www.katriyam.com/">Katriyam</a> is still a small startup. We are a team of 7 people and we focus mostly on Web/App design and development. We also provide A-Z blockchain project incubation starting from project ideation, preparing whitepapers, investor pitch deck, investor connection, consultation about the blockchain ecosystem and which main-net will be suitable for a certain project, writing smart contracts, token listing and beyond. Apart from that, we also have in-house AI experts who have worked and delivered a few interesting AI projects. </p>
<p><strong>Q. How did you find your current job? Was the hiring process challenging as a foreigner?</strong></p>
<p>I can talk about the recent contractual job as a Blockchain Business Developer which I just finished. I think my experience will be a little different than other foreigners. My field is fairly new and most of the companies who are in blockchain and Web3 are startups or SMEs who are expanding a subsidiary to the Web3 field. </p>
<p>As someone who has 10 years of experience in a niche field and can speak both Korean and English, the hiring process doesn&#39;t get that hard for me. I mostly never get rejected if I get a job interview. However, getting an interview is the hardest challenge. There are a few job portals where most Korean companies post their jobs, however, they don&#39;t mention whether they want a Korean or a foreigner. So, even though I might have the said qualification, I can still get rejected because of not being Korean.</p>
<p><strong>Q. Can you describe your typical workday?</strong></p>
<p>Since I was working at an on-site job until recently, I can share the typical work day based on that. I usually wake up, go to the gym, walk my dog and then get ready for work. I live in Suwon and my workplace is in Seoul. So I have a long commute of 3 hours a day. After I go to work I usually check emails to see if I’ve received any emails from potential partners. I go on to have a few meetings a day both in-house and with clients. As my field&#39;s market trend changes on a weekly basis, market research is something which is very important for me. Based on research, we might have to take some decisions to make some tweaks in our market reach. After the whole day of work, many times I have networking events to attend for my own company Katriyam. If I don&#39;t have networking events, I get back home and talk to my co-founder, check on the work status of my company and then head to bed.</p>
<p><strong>Q. How does Korean work culture compare to your home country&#39;s?</strong></p>
<p>Since I am from Bangladesh which is also in Asia, the work culture isn&#39;t that different honestly. We also have a strong hierarchy based work culture. However, the biggest difference is the overtime working culture in Korea. In Bangladesh, people can leave as the clock hits 5pm. But in Korea, staying for longer because the seniors haven&#39;t left is something very interesting. Koreans even have a word for it called <a href="https://dev-korea.com/blog/nunchi-in-korean-tech-companies-guide-for-international-professionals">&quot;Nunchi&quot;</a>. </p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>Yes I mostly use Korean at work. Most of the companies I have worked for are mostly functional in Korean. However, when I am handling overseas partners, I use English.</p>
<p><strong>Q. What challenges have you faced adapting to Korea&#39;s work environment?</strong></p>
<p>One of the challenges which most foreigners face is to blend in with Koreans as one of them. They have a hard time accepting that we foreigners are working alongside them although they also need us as much as we need them. So, in the initial days, I tried to mould myself according to their style both mentally and physically. I stopped looking very &quot;Bangladeshi&quot; as it was hard for them to understand the cultural differences. However, as time passed and I made a place for myself, I eventually started being who I am and I hardly face any judgment anymore.</p>
<h2>Lifestyle &amp; community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>Yes, my social life is pretty strong in Korea. I have a very healthy social circle as well as, I meet new people very often to expand my network. I usually have 2~3 social meetups every week. Apart from that, I also like to stay active in terms of working out, volunteering and giving back to Korea which has given me a lot.</p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p>Knowing Korean has honestly been life-changing. Not only did it open a lot of new doors of opportunities, it also helped me to understand Koreans to their core. You cannot expect to know a country&#39;s people without talking to the people of all levels of a country. I have learnt more about Korea and the emotions of people from randomly talking to street vendors, restaurant owners, taxi drivers and so on. They give you the perspective of a country more than a corporate official. </p>
<p><strong>Q. What was your biggest culture shock when you first arrived?</strong></p>
<p>There were many actually. But if I have to highlight one, it has to be the &quot;ppalli ppalli&quot; culture. As someone coming from a very laid back society, it was overwhelming initially. However, I think I am one of those &quot;ppalli ppalli&quot; people now. </p>
<h2>Reflections &amp; advice</h2>
<p><strong>Q. Do you plan to stay in Korea long-term, and how do you see your career evolving here?</strong></p>
<p>I definitely see having a tie with Korea all my life. I cannot really say I will be here forever or not, but as I have established businesses which are directly tied to Korea, I definitely think I will always be working with Korea and Koreans whether I stay here or leave.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-tabassum-n-haque_b34bc4c32036.jpg" alt="Tabassum N Haque"></p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<p>Making a strong portfolio is very crucial if you are searching for a tech job in Korea. Also, it can be unpopular advice, but take the first low-paid job you are offered. Not because of the money, just to understand Korean work culture so that you know how to move forward with your plan. </p>
<p><strong>Q. What can Korean companies do to better support and integrate international employees?</strong></p>
<p>I honestly think Korean companies need to be aware of the visa process of hiring a foreigner in Korea. A lot of times they promise a visa and then they cannot because they thought it would be easy to provide a visa. </p>
<p>Second would be understanding that different foreigners are coming from different countries. They cannot expect all of us to act a certain way because we all are &quot;foreigners&quot;. Being open to understanding the cultural difference and being open to accepting it is very crucial. </p>
<p><strong>Q. Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>Definitely! Korea can be very hard in terms of work environment and strong hierarchy. But we cannot deny the fact that working in the Korean tech industry is like working for the future! The future which has a higher chance to come into reality and not just &quot;fake promises&quot;. The innovations happening in Korea are something the world is looking for. So, if you are tech-savvy, it is always great to try diving into the corporate and business world of Korea. </p>
<h2>Rapid fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> Dak-galbi</li>
<li><strong>One must-visit place in Korea:</strong> Chuncheon (underrated)</li>
<li><strong>Most surprising thing about Korean tech culture:</strong> That one time when the bank was actually providing a loan to buy land in the Metaverse!</li>
<li><strong>Favorite Korean word or phrase:</strong> ppalli ppalli</li>
</ul>
<h2>Connect with Tabassum</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/tabassum-n-haque">/in/tabassum-n-haque</a></li>
<li>Linktree: <a href="https://linktr.ee/tabassum90">/tabassum90</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/bangladeshi-founder-tech-career-startup-seoul_8f132998.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[From Tunisia to shaping next-generation materials tech in Korea]]></title>
            <link>https://dev-korea.com/blog/tunisia-to-next-generation-materials-tech-korea</link>
            <guid isPermaLink="false">5f96a39f-8fc6-42cf-be28-93be4c615f2c</guid>
            <pubDate>Mon, 12 Jan 2026 05:20:37 GMT</pubDate>
            <description><![CDATA[Meet Sahar, a Tunisian CSO at VanaM Inc. in Seoul. We sat down with her to learn about her journey from Tunisia to Korea, what it's like working in tech here, and why she believes more global talent should consider a tech career in Korea.]]></description>
            <content:encoded><![CDATA[<p>Meet <strong>Sahar</strong>, a Tunisian CSO at <a href="https://vanam.co.kr/">VanaM Inc.</a> in Seoul. We sat down with her to learn about her journey from Tunisia to Korea, what it&#39;s like working in tech here, and why she believes more global talent should consider a tech career in Korea.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Sahar Ayachi</li>
<li><strong>Nationality:</strong> Tunisian</li>
<li><strong>Current role &amp; company:</strong> Chief Strategy Officer (CSO) at <a href="https://vanam.co.kr/">VanaM Inc.</a></li>
<li><strong>Years in Korea:</strong> ~ 7 years (3 as student, almost 4 as employee)</li>
<li><strong>Visa status:</strong> E</li>
<li><strong>Languages spoken:</strong> Arabic, French, English, Korean, Spanish</li>
<li><strong>Previous countries worked in (if any):</strong> Germany</li>
</ul>
<h2>Background &amp; career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p><strong>Sahar:</strong> My name is Sahar, I&#39;m from Tunisia and I am currently the CSO at VanaM Inc., a South Korean startup specialized in thin film deposition where I lead global strategy and business development. My role covers international partnerships, investor relations and the establishment of VanaM&#39;s first international unit.</p>
<p><strong>Q. What was your career path before moving to Korea?</strong></p>
<p>I originally came to Korea as a transfer student midway through my bachelor&#39;s degree in engineering and completed my three years here. After that, I pursued a master&#39;s degree in Japan and later a PhD in Germany. I returned to Korea as a Research Professor with the intention of continuing in academia, until my career goals evolved.</p>
<p><strong>Q. What inspired you to work in Korea?</strong></p>
<p>Having lived in Korea before as a student and having experienced life and work in other countries, I felt that my chapter with Korea wasn&#39;t finished. That sense stayed with me, and eventually, I decided to come back.</p>
<h2>Experience working in Korea</h2>
<p><strong>Q. Tell us briefly about your company (size, industry focus, notable achievements).</strong></p>
<p><a href="https://vanam.co.kr/">VanaM Inc.</a> is a startup founded in 2022, specializing in thin film deposition and operating essentially as a next-generation materials foundry. We focus on developing and commercializing new materials for emerging technologies such as quantum computing, photonics and power electronics. One of our notable achievements for 2025 is being selected as one of 12 companies out of nearly 200 applicants for Cohort 8 of the NextCorps Luminate Accelerator, a New York State funded program focused on Optics, Photonics and Imaging (OPI).</p>
<p><strong>Q. How did you find your current job? Was the hiring process challenging as a foreigner?</strong></p>
<p>I found my current position through Linkedin. The process was very straightforward, likely helped by the fact that VanaM is a startup. It started with an initial email exchange answering a few more/deeper questions, then an interview with the management team, and later introductions to other team members. From the first contact to joining, the whole process took about 4 weeks.</p>
<p>The most challenging part was getting responses in general, and the need for specialized Korean knowledge. I had to prepare extensively and review a lot of terminology (technical and others) in Korean ahead of the interviews.</p>
<p><strong>Q. Can you describe your typical workday?</strong></p>
<p>A typical workday follows standard office hours, roughly 9 to 6. My tasks vary widely and include investor meeting preparation, partner and international coordination, as well as marketing and strategy. We also participate in many fairs and exhibitions, most of them abroad, which require extensive planning beforehand and follow-ups afterwards.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-sahar-ayachi_b34bc4c32036.jpg" alt="Sahar Ayachi"></p>
<p>2025 was a particularly intense year for VanaM and myself, as, as mentioned above, we were selected for the NextCoprs Luminate Accelerator Program which required monthly in-person participation in the U.S. for six months, which significantly shaped my work weeks during that period.</p>
<p><strong>Q. How does Korean work culture compare to your home country&#39;s?</strong></p>
<p>I would describe Korean work culture as highly disciplined and more intense than that of my home country, without implying that one is better than the other.</p>
<p>Korean work culture is rooted in hierarchy, a strong work ethic, and high expectations which are often met with equally strong commitment and responsibility. Korea is an extremely fast-paced country, and that inevitably leads to a demanding professional environment. This can make integration more challenging for those unfamiliar with the culture.</p>
<p>That said, Korean work culture is also internationally recognized for its high standards, endurance and strong sense of duty, which are qualities that have clearly contributed to Korea becoming one of the most developed countries in the world. The &quot;Miracle of the Han River&quot; (which refers to the incredible transformation of Korea from a war-torn country to a world leading economy in a few decades) happened for a reason!</p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>I have TOPIK level 5 and have completed the KIIP program, so I&#39;m fairly fluent, which is probably one of the main reasons I got my current job. Communication at work is almost entirely in Korean, though I sometimes mix with English when the topic is particularly complex. Most of my working documents are also prepared in English.</p>
<p><strong>Q. What challenges have you faced adapting to Korea&#39;s work environment?</strong></p>
<p>My experience with VanaM Inc. has been incredibly positive. Like any job, there are challenges, but none of those I&#39;ve personally faced there stem from the Korean work environment itself. Every member of our current Management Team has spent some time abroad for work or study, so I believe that shaped our work environment in a way that was easier for me to adapt and integrate.</p>
<p>Before joining VanaM though, I worked as a Research Professor in academia for about 2.5 years. That&#39;s where I encountered challenges more closely tied to Korea&#39;s broader academic work environment. Graduate schools in Korea can be extremely competitive, which sometimes leads to difficult dynamics within teams. In some cases, team members don&#39;t work on related projects, which limits help and collaboration and creates a sense of isolation. I sometimes faced (and sometimes simply witnessed) these challenges firsthand. </p>
<p>However, I&#39;d like to clarify that these challenges are not limited to foreigners, though language barriers and cultural adjustment certainly make them more difficult.</p>
<h2>Lifestyle &amp; community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>When I first came to Korea as an undergrad, my social life was very much that of a student. Easily making friends, going out, having fun. When I returned in 2022 for work, I was lucky to already know people, so re-building a social life wasn&#39;t too difficult.</p>
<p>Most of my friends are expats around my age, so late 20s to 30s, and despite my heavy business travel schedule, we try to meet regularly.</p>
<p>Until this year, I was also more active in sports and exploring Korea&#39;s cultural scene (galleries, musicals, classical music…), but that slowed down significantly this year. I am hoping to get back to it soon.</p>
<p>Otherwise, I am your fairly typical introvert. I love reading, staying at home, resting and binge-watching shows over the weekend.</p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p>100%! No doubt!</p>
<p>Korea, like many other countries, has its own language with its own structure and characteristics, and knowing it is essential to living here comfortably. Honestly, this applies everywhere. I don&#39;t think it&#39;s realistic to come to Korea and expect to live comfortably using only English.</p>
<p>English can definitely help sometimes, especially for short visits, but a long-term plan in Korea without Korean will only make your own life difficult.</p>
<p><strong>Q. What was your biggest culture shock when you first arrived?</strong></p>
<p>I don&#39;t think I experienced a single massive culture shock, which honestly surprised me. I even tried looking for one back in 2011, because it felt strange to move from Tunisia to Korea and not have that one defining shock. Despite the many differences, I think I was more surprised by the similarities, and perhaps that made me accept the differences with a more open mind than I expected.</p>
<p>That said, one thing that really stood out to me was the after-work drinking culture, how intense it could be and how mandatory it sometimes felt. That was definitely something that marked me. I know it has also become much less intense now, but at the time, it was a big surprise.</p>
<h2>Reflections &amp; advice</h2>
<p><strong>Q. Do you plan to stay in Korea long-term, and how do you see your career evolving here?</strong></p>
<p>&quot;Long-term&quot; feels too far ahead to plan, but I can definitely see myself staying in Korea for the next few years. A big reason is my company. I really love my current job and I want to grow alongside our startup, scale it significantly, and hopefully take it to a very successful exit.</p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<p>Learn Korean! Yes, tech and science fields are more open to English compared to other sectors, but your day-to-day life will be much easier if you can communicate comfortably with your colleagues.</p>
<p>Technical and scientific knowledge is essential, of course, but that&#39;s something you will keep building throughout your career anyway. You&#39;ll always be learning new technologies. So, make your life easier by starting with a solid level of Korean, so you can focus your energy on the job itself. It really helps level the playing field.</p>
<p><strong>Q. What can Korean companies do to better support and integrate international employees?</strong></p>
<p>This might sound like a contradiction to what I&#39;ve been saying all along, but being more open to using English and being a little more patient could make a huge difference. That doesn&#39;t mean everything needs to be done in English or everyone needs to speak it fluently. But it would help immensely if team leaders and colleagues were willing to give new international hires the time and space to adapt, to be patient with their evolving language skills, and to show understanding when they encounter challenges that may seem intuitive to Koreans. The best example I can think of here is how difficult it can be to write a formal or official document in Korean, even for advanced levels. In my case, I still mix English and Korean for paperwork, and get help from my colleagues sometimes.</p>
<p>Another helpful initiative would be a mentor-mentee system. It doesn&#39;t need to be mandatory, but a structured program that pairs willing Korean employers (or experienced foreign employees) with international newcomers would greatly support integration.</p>
<p><strong>Q. What&#39;s one thing you wish you knew before moving here?</strong></p>
<p>Having first moved here 15 years ago, and with Korea now feeling like home, it&#39;s honestly hard to say. Maybe I wish I knew how much university exams relied on memorization? That might have potentially saved me hours of extra studying and improved some of my grades. But at this point, I&#39;m not even sure anymore!</p>
<p><strong>Q. Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>If you are willing to put in the work, absolutely. If you come with an open mind, aware that you&#39;re stepping into one of the most demanding environments with very high standards, and ready for that, then yes.</p>
<p>Korean tech is like the NBA All-Stars. You&#39;d better come prepared!</p>
<h2>Rapid fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> 된장찌개 (<em>Doenjang-jjigae</em>, a soybean paste stew)</li>
<li><strong>One must-visit place in Korea:</strong> Namsan Tower, in winter, at night. Preferably on a snowy day.</li>
<li><strong>Most surprising thing about Korean tech culture:</strong> how fast it changes!</li>
<li><strong>Favorite Korean word or phrase:</strong> 알았어! (<em>arasso</em> meaning &quot;Ok! Got it!&quot;)</li>
</ul>
<h2>Connect with Sahar Ayachi</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/ayachisahar">/in/ayachisahar</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/tunisia-to-next-generation-materials-tech-korea_5a69664d.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[How a semester abroad turned into an 11-year journey as a design leader in Korea]]></title>
            <link>https://dev-korea.com/blog/semester-abroad-11-year-design-leader-career-korea</link>
            <guid isPermaLink="false">95e402de-9f00-41f7-a42e-7dce21c73ed1</guid>
            <pubDate>Mon, 05 Jan 2026 12:51:38 GMT</pubDate>
            <description><![CDATA[We sat down with Maxence Mauduit, a French Product Designer and Chief Design Officer at Buzzvil in Seoul, to talk about his journey from France to Korea, his experience working in Korean tech, and why global talent should seriously consider building a career here.]]></description>
            <content:encoded><![CDATA[<p>We sat down with <strong>Maxence Mauduit</strong>, a French Product Designer and Chief Design Officer at <a href="https://www.buzzvil.com">Buzzvil</a> in Seoul, to talk about his journey from France to Korea, his experience working in Korean tech, and why global talent should seriously consider building a career here.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Maxence Mauduit</li>
<li><strong>Nationality:</strong> French</li>
<li><strong>Current role &amp; company:</strong> Product Designer and Chief Design Officer at <a href="https://www.buzzvil.com">Buzzvil</a></li>
<li><strong>Years in Korea:</strong> 11</li>
<li><strong>Visa status:</strong> F-6-1</li>
<li><strong>Languages spoken:</strong> French, English, conversational Korean</li>
<li><strong>Previous countries worked in (if any):</strong> France</li>
</ul>
<h2>Background &amp; career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p><strong>Maxence:</strong> I’m an experienced Product Designer and currently serve as CDO at <a href="https://www.buzzvil.com">Buzzvil</a>, a leading Korean AdTech company. If you use Korean apps, chances are you’ve interacted with our products without realizing it. That’s the magic, and sometimes the frustration, of working in B2B2C. As an individual contributor, my core strength is interaction design. As a leader, my goal is to amplify each team member’s impact, unlocking both personal fulfillment and collective performance.</p>
<p>As CDO, I ensure design acts as a connective tissue between business goals and product excellence, delivering systemic solutions that drive both operational efficiency and an outstanding customer experience.</p>
<p><strong>Q. What inspired you to work in Korea?</strong></p>
<p>During my studies, I spent a semester abroad at Hongik University in Seoul. Those six months had a huge impact on me. I discovered a culture and environment where I felt I could grow more than back home. After graduating, I tried to start my career in Korea but eventually failed, which ultimately pushed me to build my career in Paris first.</p>
<p><strong>Q. What was your career path before moving to Korea?</strong></p>
<p>I studied Interaction Design in France and completed a research master’s in Virtual Innovation at ENSAM. After graduating, I spent over three years in an R&amp;D team in Paris, working on a real-time educational platform for professionals. Once we secured our first major client, I decided it was time to leave, saved enough to sustain myself, and moved to Korea to look for opportunities. I attended a workshop at KAIST and eventually landed my first, and current, job in Seoul.</p>
<h2>Experience working in Korea</h2>
<p><strong>Q. Tell us briefly about your company (size, industry focus, notable achievements).</strong></p>
<p><a href="https://www.buzzvil.com">Buzzvil</a> has around 130 employees today. I joined in 2014 as one of the early members when the team was about 20 people. Over the years, the business pivoted several times, from a rewarded lockscreen app to a lockscreen SDK, and eventually into a full growth solution for app publishers. The mission has always been the same: rethinking how people interact with ads.</p>
<p>In 2024, Buzzvil recorded ₩101.2B in revenue and ₩4.4B in profit, working with partners like KakaoBank, KakaoPay, SSG, Olive Young, LG, and Samsung.</p>
<p><strong>Q. How did you find your current job? Was the hiring process challenging as a foreigner?</strong></p>
<p>I moved to Korea with a six-month deadline. If I didn’t find a job, I planned to return to France. After several rejections, I applied for a Lead Designer role at Buzzvil through LinkedIn, just two weeks before my flight back.</p>
<p>The hiring process was smooth and fast. Two interview rounds, one focused on role and problem-solving, the other on culture fit. Everything was conducted in English, and the company already had international employees. Buzzvil sponsored my E-7 visa at the time, which took about two months. The process is much faster now.</p>
<p><strong>Q. Can you describe your typical workday?</strong></p>
<p>We have flexible hours. With two young kids, I usually start around 8:30 a.m. after dropping them off and finish by 5:30 p.m. Mornings are my focus time, where most of my individual work gets done. My afternoons are reserved for meetings, leadership, and operational strategy.</p>
<p><strong>Q. How does the Korean work culture compare to your home country&#39;s?</strong></p>
<p>Buzzvil was initially very Western, almost Silicon Valley–like. After COVID, the culture shifted as many global employees returned home. Still, overtime is avoidable, and autonomy is high.</p>
<p>Work in Korea tends to be more intense and metrics-driven. This is great for performance but makes it harder to prioritize initiatives where quality is harder to measure. French work culture, in contrast, allows more room for intuition and debate. As a design leader, I still feel conflicted about this balance.</p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>I mainly work in English. I’ve studied Korean for a couple of years after work, but I’m not comfortable leading meetings in it yet. As the company has become more Korean-speaking, this has become more challenging. Recently, AI-based translation tools and live transcription have helped significantly.</p>
<p><strong>Q. What challenges have you faced adapting to Korea&#39;s work environment?</strong></p>
<p>Living and traveling in Korea are very different experiences. Early on, I went through a difficult period where everything I loved about Korea became stressful. I was homesick and overwhelmed. Things improved after about a year, especially after meeting my wife. Adjusting to a new country, language, and leadership role all at once takes time.</p>
<h2>Lifestyle &amp; community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>In the early startup days, Buzzvil was my social life. We worked, traveled, and played together. As the company grew and moved toward an IPO, that naturally changed. Around the same time, we had our first child, and my life shifted toward family.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-maxence-mauduit_b34bc4c32036.jpg" alt="Maxence Mauduit"></p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p>Basic Korean is essential for daily life. Reading signs, ordering food, and handling errands. I focused too much on professional growth early on and regretted not investing more time in Korean sooner. I strongly recommend learning the language as early as possible, ideally before starting full-time work.</p>
<p><strong>Q. What was your biggest culture shock when you first arrived?</strong></p>
<p>In France, empty time is valued. In Seoul, everything is fast, dense, and always available. You can work, shop, and exercise anytime. It’s exciting, but it takes time to adjust when you settle long-term.</p>
<h2>Reflections &amp; advice</h2>
<p><strong>Q. Do you plan to stay longer in Korea, and how do you see your career evolving here?</strong></p>
<p>We love it here and still feel like we’re on an adventure, even after 11 years. With two kids, we’re also aware of the challenges, especially how competitive life in Seoul can be. Buzzvil is preparing for IPO, and after years as a C-level executive, I’ve seen rapid career growth that would’ve been harder in Europe. I’m considering several future paths, but haven’t committed to one yet.</p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<ul>
<li>Be on-site. Remote applications work mainly for large companies.</li>
<li>Company culture matters as much as the role. Many people leave quickly because they underestimate this.</li>
</ul>
<p><strong>Q. What can Korean companies do to better support and integrate international employees?</strong></p>
<ul>
<li>Offer Korean language support.</li>
<li>Implement buddy programs. Buzzvil has done this consistently, and it makes a real difference.</li>
</ul>
<p><strong>Q. What&#39;s one thing you wish you knew before moving here?</strong></p>
<p>Housing prices only go up. I should have bought earlier. 🥲</p>
<p><strong>Q. Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>Absolutely. Seoul offers a dynamic, demanding environment. It’s not easy, but if you’re looking for growth, challenge, and constant change, it’s a place that keeps pushing you forward.</p>
<h2>Rapid fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> It’s cold these days, Kimchi jjigae, hot and meaty</li>
<li><strong>One must-visit place in Korea:</strong> Oeam Folk Village near Asan, stay overnight for the sunrise</li>
<li><strong>Most surprising thing about Korean tech culture (answers below are general sentiment, not Buzzvil specific!):</strong><ul>
<li>Modern products paired with a traditional hierarchy</li>
<li>Meetings often confirm decisions rather than debate</li>
<li>Speed is prioritized, sometimes at the cost of clarity and alignment</li>
</ul>
</li>
<li><strong>Favorite Korean word or phrase:</strong> 파도, it means waves. We named our first kid 파도 after spending a week near YangYang (양양). Probably the Korean word I say the most (while running after him!).</li>
</ul>
<h2>Connect with Maxence</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/mmaxence">/in/mmaxence</a></li>
<li>Website: <a href="https://mmaxence.me">mmaxence.me</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/semester-abroad-11-year-design-leader-career-korea_e3a18b8e.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Supabase comes to Seoul: Dev Korea #5 Recap]]></title>
            <link>https://dev-korea.com/blog/supabase-comes-to-seoul-dev-korea-5-recap</link>
            <guid isPermaLink="false">002b2e46-1c1c-42ec-a4bf-013be590bd77</guid>
            <pubDate>Mon, 29 Dec 2025 18:48:20 GMT</pubDate>
            <description><![CDATA[On December 10, we hosted Dev Korea #5 with Supabase, bringing together 90+ developers, founders, engineers, designers, and makers for an evening of practical tech talks, real product stories, and community connection in Seoul. This marked our 6th event with Supabase, a clear sign of how fast the platform’s popularity continues to grow within Korea’s developer community.]]></description>
            <content:encoded><![CDATA[<p>On December 10, <a href="https://supabase.com">Supabase</a> returned to Seoul for Dev Korea #5, welcoming 90+ attendees for a night focused on building real products, sharing hands-on experience, and connecting with the local and international tech community.</p>
<p>This event marked our sixth meetup with Supabase, and the energy in the room made one thing clear. Supabase adoption in Korea keeps accelerating, and more teams are actively building and shipping with it.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251210_2ed8p39u8f4a7e.jpg" alt="Supabase Meetups Fall 25"></p>
<p>From first-time users to founders and engineers already running Supabase in production, the audience reflected how widely the platform is now used across the ecosystem.</p>
<h2>🧠 Supabase MVP essentials: scaling, security, and core features</h2>
<p>The evening opened with a practical talk focused on building MVPs that are ready for real users.</p>
<p><a href="https://www.linkedin.com/in/josephkim-10x/">Joseph Kim</a> walked through the key considerations when starting a serious project with Supabase, including:</p>
<ul>
<li>how to think about scaling early without slowing down development  </li>
<li>security basics that should not be postponed  </li>
<li>core Supabase features that support real-world workflows</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251210_2ed8p39u8f4a3e.jpg" alt="Joseph Kim"></p>
<p>The session gave both newcomers and experienced builders a clear framework for launching quickly while staying on solid technical foundations.</p>
<h2>🚀 Made with Supabase: community showcase</h2>
<p>Next, the spotlight moved to the community.</p>
<p>Three builders took the stage to share real stories from products they built and shipped using Supabase. Instead of polished demos, the talks focused on honest decisions, trade-offs, and lessons learned while building for real users.</p>
<p>Each speaker walked through:</p>
<ul>
<li>what they built and why  </li>
<li>how Supabase fit their technical needs  </li>
<li>challenges they ran into along the way  </li>
<li>what they would do differently next time</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251210_2a8339u8fja3e.jpg" alt="Furqan Ali"></p>
<p><a href="https://www.linkedin.com/in/iamfurqanalii/">Furqan Ali</a> shared how he built <a href="https://www.screenshow.app/">Screenshow</a>, a tool to create high-quality screen recording videos. As a solo founder, he explained how Supabase helped him move fast while keeping the stack simple and production-ready.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251210_2ad39u8f4a3e.jpg" alt="Ajit Kumar"></p>
<p><a href="https://www.linkedin.com/in/kumarajitsingh/">Ajit Kumar</a> walked through a PostgreSQL migration from Render to Supabase for his product <a href="https://random-dev.com/">Random Dev</a>. He shared the issues he encountered during the migration process, the unexpected challenges along the way, and how he resolved them step by step.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251210_2a8p39u8f4a3e.jpg" alt="Kyubo Shim"></p>
<p><a href="https://www.linkedin.com/in/kyubo-dev/">Kyubo Shim</a> talked about migrating his app <a href="https://apps.apple.com/fr/app/%EB%AA%A8%EB%91%90%EC%9D%98-%EC%95%BC%EA%B5%AC/id6444238142?l=en-GB">KBO Cheer Song Player</a> from Firebase to Supabase. He highlighted the improved developer experience, simpler architecture, and meaningful cost savings he achieved after the move.</p>
<p>This part of the evening was especially engaging, showing three very different paths to building with Supabase, and how teams and solo builders alike can move fast, iterate, and still ship reliable products.</p>
<h2>🌱 Supabase momentum in the Korean developer ecosystem</h2>
<p>Compared to our first Supabase events, the conversation has clearly evolved.</p>
<p>This time, we heard:</p>
<ul>
<li>fewer questions about what Supabase is  </li>
<li>more discussions around architecture, performance, and production use  </li>
<li>more examples of teams already building and shipping with it</li>
</ul>
<p>Being able to host six Supabase events and continue filling the room is a strong signal of the platform’s growing momentum in Korea.</p>
<h2>🎁 Swag, questions, and community moments</h2>
<p>After the talks, the room stayed lively and social.</p>
<p>Everyone picked up <strong>Supabase stickers</strong>, and we also held a <strong>raffle for Supabase T-shirts</strong>, which added a fun and relaxed moment to the evening.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251210_2a8339u3f4a3e.jpg" alt="Supabase swag"></p>
<p>Conversations naturally flowed around real use cases, shared experiences, and best practices when building with Supabase. The atmosphere stayed relaxed, curious, and welcoming throughout the night.</p>
<h2>🍔 Burgers and hallway conversations</h2>
<p>Food was served right at the start of the event, with <strong>burgers from CryCheeseBurger</strong> setting a relaxed and welcoming tone from the moment people arrived.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251210_2a8339u8f4a3e.jpg" alt="CryCheeseBurger"></p>
<p>With burgers and drinks in hand, conversations started early:</p>
<ul>
<li>people shared what they are building  </li>
<li>compared technical approaches  </li>
<li>talked about startups, side projects, and careers  </li>
<li>met new faces and reconnected with familiar ones</li>
</ul>
<p>Starting the evening with food made it easy for connections to form naturally, and those hallway conversations continued throughout the night.</p>
<h2>🙌 Huge thanks</h2>
<p>This event would not have been possible without:</p>
<ul>
<li><a href="https://supabase.com/">Supabase</a> for supporting the event and bringing great content and swag</li>
<li>Our speakers: <a href="https://www.linkedin.com/in/josephkim-10x/">Joseph Kim</a>, <a href="https://www.linkedin.com/in/iamfurqanalii/">Furqan Ali</a>, <a href="https://www.linkedin.com/in/kumarajitsingh/">Ajit Kumar</a> and <a href="https://www.linkedin.com/in/kyubo-dev/">Kyubo Shim</a> who shared their knowledge and experience.</li>
<li>All the volunteers who helped make this event a success: <strong><a href="https://www.linkedin.com/in/aaronmccollum/">Aaron McCollum</a></strong>, <strong><a href="https://www.linkedin.com/in/aleksey-kim-61a916195/">Aleksey Kim</a></strong>, <strong><a href="https://www.linkedin.com/in/bertijn-pauwels/">Bertijn Pauwels</a></strong>, <strong><a href="https://www.linkedin.com/in/charles-yh-chang/">Charles Chang</a></strong>, <strong><a href="https://www.linkedin.com/in/jyeee/">Jason Yee</a></strong> and <strong><a href="https://www.linkedin.com/in/kathie-lee-418108349/">Kathie Lee</a></strong> who made everything flow seamlessly from start to finish</li>
<li>All 90+ attendees who filled the venue and brought energy into the room</li>
</ul>
<p>Seeing the venue completely full was incredibly motivating for us as organizers.</p>
<h2>👀 What’s next</h2>
<p>Dev Korea keeps growing, and this event made it clear that there is strong demand for practical, technical, community-driven meetups in Seoul.</p>
<p>We are already preparing upcoming events with global tech companies and local builders.</p>
<p>👉 Check out upcoming events at <a href="https://dev-korea.com/events">https://dev-korea.com/events</a></p>
<p>Want to stay connected with what we&#39;re building? Follow us on <a href="https://www.linkedin.com/company/dev-korea">LinkedIn</a>, <a href="https://x.com/dev_korea">X</a>, join our <a href="https://discord.gg/hqzMbuXy73">Discord server</a>, and subscribe to our <a href="http://dev-korea.com/">Weekly Dev Korea Digest Newsletter</a> for all the latest updates.</p>
<p>Here’s to more nights of learning, building, and meaningful community in Seoul. 🍻✨</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you’re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea’s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/supabase-comes-to-seoul-dev-korea-5-recap_8f83a70c.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[A senior tech recruiter’s guide to the “tell me about yourself” question]]></title>
            <link>https://dev-korea.com/blog/how-to-answer-tell-me-about-yourself-tech-interviews</link>
            <guid isPermaLink="false">4a7e7910-4aee-4c4d-ac59-f065ef013cfb</guid>
            <pubDate>Mon, 22 Dec 2025 15:37:49 GMT</pubDate>
            <description><![CDATA[The “tell me about yourself” question is your first real chance to show fit beyond your CV. Drawing from 1,500+ interviews at ChartMogul, senior tech recruiter Soo Park explains how strong candidates structure their introduction: stay relevant to the role, give a clear and well-rounded overview of your experience, naturally explain your motivation for a new role, and be prepared with concrete examples.]]></description>
            <content:encoded><![CDATA[<blockquote>
<p>So tell me about yourself.</p>
</blockquote>
<p>A simple question with endless possible answers. It is one of the most dreaded interview questions that almost every recruiter or hiring manager will ask. You may think, “Why are they asking me to walk them through my career when they can read about it in my CV?” And yes, although we may have read through your application before jumping on a call with you, it’s an opportunity for you to pitch yourself beyond your resume and for both yourself and the interviewer to see if there is alignment in 1) the experience and skills the job requires, and 2) values that would lead to positive collaboration.</p>
<p>I’m Soo, a tech recruiter whose career started in San Francisco after graduating from UC Berkeley. I’m currently based in South Korea and working at <a href="https://jobs.chartmogul.com/">ChartMogul</a>, a SaaS startup, hiring talent from around the world.</p>
<p>Having conducted over 1,500 initial interviews during my time at <a href="https://jobs.chartmogul.com/">ChartMogul</a>, I’ve seen personal introductions ranging from the candidate asking me “What would you like to know?” to telling me their whole life story. The ones who’ve successfully advanced in the interview process exhibited the same patterns during the initial screening:</p>
<p>(Please note that <a href="https://jobs.chartmogul.com/">ChartMogul</a> is a remote-first company, so I am speaking from my experience of conducting all interviews over video.)</p>
<h2>Stay on topic</h2>
<p>Whether you begin by talking about how your passion started at a young age or from your first professional role, be sure not to stray too far from talking about your career and stay relevant to the job that you are interviewing for.</p>
<p>Some candidates go off on long tangents about the complexities of a certain tool or talk in-depth about personal projects that aren’t relevant. Although we understand their intention of wanting to display their knowledge or their diverse experience, this type of verbose, irrelevant introduction can suggest to interviewers that the candidate is likely to over-explain and sidestep during team discussions.</p>
<h2>All-inclusive summary</h2>
<p>When walking through each of your roles, what the interviewers want to hear is enough details that give them a good picture of what you were doing that is not already written in your CV. This includes the type of product you worked on, your day-to-day responsibilities, the different projects and features you contributed to, the tools you used, the team size, and your role within the team. And if you have any short stints in your career, explaining why you left the company is a good practice.</p>
<p>A well-rounded summary can often answer questions that the interviewers had prepared and allow them to hone in on follow-up questions that make the best use of your interview time.</p>
<h2>“Why are you looking for a new role?”</h2>
<p>Is a question that most, if not all, interviewers will ask. It is a way for us to understand your motivation and to assess whether there is a long-term fit. Rather than waiting for the interviewer to bring it up, you can naturally incorporate this into your introduction by ending it with why you are looking for a new opportunity and what excites you about the job or the company you’re applying for.</p>
<h2>The STAR method</h2>
<p>After you’ve pitched yourself, the interviewer will ask more in-depth questions about specific projects or behavioral questions, for which you’ll be expected to provide concrete examples from past experiences. Try to structure your responses using the STAR method:</p>
<ul>
<li>Situation: Set the scene and give enough context, such as what company it was for, why the feature was needed, who was involved, etc.</li>
<li>Task: Describe your responsibilities and any challenges you faced.</li>
<li>Action: Explain the actions you took and how you carried them out.</li>
<li>Result: Share the outcome of your work and highlight any quantifiable achievements.</li>
</ul>
<p>However, we understand that it can be difficult to remember specific examples in a high-stress situation like an interview. In the case that you truly cannot remember and are unable to answer those behavioral questions, turn them into situational questions of “What would I do in that scenario?” and talk about your approach rather than sitting there stumped.</p>
<h2>Be prepared</h2>
<p>Whether the interview is over phone or video, treat all interviews like an in-person meeting. This means having your devices charged and updated beforehand, looking presentable rather than disheveled as if you had just gotten out of bed, ensuring that your environment is distraction-free, and practicing good body language even through the screens. For video interviews, we highly recommend taking them on a laptop or computer instead of your phone unless that’s your only option.</p>
<p>And if you are running late or dealing with issues that could disrupt the interview, make sure to communicate and email the interviewer ahead of time!</p>
<h1>Most importantly: Be genuine and authentic!</h1>
<p>Although you may think you’re getting away with it, we can tell when someone has memorized an AI-generated introduction or is reading off of a script on their screen. It’s okay to use your CV as a guide for you to follow and to practice your responses beforehand, but we want to see you be yourself and talk about your experiences naturally.</p>
<p>Engage in small talk, be conversational, and show the kind of person you would be as their future team member.</p>
<hr>
<p>Here’s an example of what a strong introduction could sound like:</p>
<p><em>“I’ve been a software developer for over 4 years. I’ve mainly worked in backend with Java, but also have some experience in frontend with React.</em></p>
<p><em>My career started at (company name), a software service company, where I joined as a junior developer and grew to mid-level in a year. During this time, I worked with various clients in real estate, e-commerce, and other industries on their needs like building small features, working on websites, etc. I usually worked with 4-5 other developers and collaborated closely with the clients and stakeholders.</em></p>
<p><em>I wanted to gain experience in a product company, so I joined (company name) that has a big HRIS system and this is where I learned the most. I was part of the Tooling Team of 12 people including a PM and QA, where we handled an internal tool that was used by all the engineering teams. The biggest project I worked on was an automatic workflow process, where once a task was completed, it would automatically move on to the next step. It took about a month to complete and we shipped it without any major bugs or delays. Besides this, in my day-to-day, I was involved in mentoring new team members, writing documentation, helping with testing, and doing code reviews.</em></p>
<p><em>In my personal time, I’ve been trying out other languages like Python and Ruby to expand my horizons. I also like to read about different software architecture. Outside of tech, I enjoy mountain biking in my free time.</em></p>
<p><em>Now I’m looking for a new challenge where I’m part of a smaller team and hopefully have a bigger contribution to the company. I’d love to be able to see the direct impact I have on customers who love using the product.”</em></p>
<h2>Connect with Soo</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/y-spark/">/in/y-spark</a></li>
<li>Visit ChartMogul: <a href="https://jobs.chartmogul.com/">jobs.chartmogul.com/</a></li>
</ul>
<p>If you want to be next and contribute, send us an email to <a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/how-to-answer-tell-me-about-yourself-tech-interviews_969f23fe.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[ClickHouse comes to Seoul: Dev Korea #4 Recap]]></title>
            <link>https://dev-korea.com/blog/clickhouse-comes-to-seoul-dev-korea-4-recap</link>
            <guid isPermaLink="false">c34c5371-4b11-4d20-8fa3-a0e379b8ea46</guid>
            <pubDate>Fri, 19 Dec 2025 09:27:40 GMT</pubDate>
            <description><![CDATA[On November 18, we hosted Dev Korea #4, welcoming 140+ developers, founders, data engineers, and builders for an evening focused on real-world analytics, performance at scale, and the growing global tech community in Seoul. The venue was completely full, and the energy carried throughout the night.]]></description>
            <content:encoded><![CDATA[<p>On November 18, Dev Korea returned with its fifth community event, this time with <a href="https://clickhouse.com/">ClickHouse</a>, bringing together 140+ attendees for a deep dive into modern analytics infrastructure, performance-driven systems, and practical lessons from teams building with data at scale.</p>
<p>With a packed venue and standing room only, it was one of our largest Dev Korea events so far and a strong signal of how fast the international tech community in Seoul continues to grow.</p>
<h2>⚡ High-performance analytics, built for scale</h2>
<p>The evening focused on <a href="https://clickhouse.com/">ClickHouse</a>, the open-source, column-oriented database designed for fast analytics on massive datasets.
The evening kicked off with a solid introduction to ClickHouse for those encountering it for the first time.</p>
<p><a href="https://www.linkedin.com/in/keehoonlee/">Ken Lee</a> and <a href="https://www.linkedin.com/in/derekchia/">Derek Chia</a> from ClickHouse walked the audience through the core architecture of ClickHouse, explaining what makes it fundamentally different from traditional databases in the big data and analytics space.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251118_2af23948f4a3eh.jpg" alt="Ken Lee"></p>
<p>They covered:</p>
<ul>
<li>how ClickHouse is designed for analytical workloads</li>
<li>its column-oriented architecture and distributed scalability</li>
<li>why query performance remains fast even at large scale</li>
</ul>
<p>Derek also shared some of his favorite ClickHouse features, from horizontal scaling to performance-focused design choices, and showed how these can simplify and speed up real-world analytics workflows.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251118_2af23y48f4a3e.jpg" alt="Derek Chia"></p>
<h2>🔍 A journey of using ClickHouse to optimize ClickHouse</h2>
<p>In a more advanced and thought-provoking session, <a href="https://www.linkedin.com/in/antoinegrondin/">Antoine Grondin</a> from <a href="https://humanlog.io/">Humanlog</a> explored what happens when you use ClickHouse to observe and optimize ClickHouse itself.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251118_2af239u8f4a3e.jpg" alt="Antoine Grondin"></p>
<p>The talk took a self-referential approach to database optimization, showing how internal observability tables can be built to track:</p>
<ul>
<li>compression behavior</li>
<li>query performance</li>
<li>schema evolution over time</li>
</ul>
<p>All of this data lives inside the same ClickHouse instance being analyzed.</p>
<p>It was a practical and slightly mind-bending look at how deeply teams can instrument their systems when performance truly matters.</p>
<h2>🤖 Reflections on the Horangi leaderboard and Korean LLM evaluation</h2>
<p>The final talk shifted the focus toward AI and large language models.</p>
<p><a href="https://www.linkedin.com/in/hyunwoo-oh-461462153/">Hyunwoo Oh</a> from <a href="https://wandb.ai/site">Weights &amp; Biases</a> shared lessons from operating the Horangi Leaderboard, the largest and most widely used Korean LLM evaluation leaderboard, over the past year.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251118_2a8239u8f4a3e.jpg" alt="Hyunwoo Oh"></p>
<p>He walked through:</p>
<ul>
<li>challenges of evaluating Korean language models at scale</li>
<li>insights gained from running real-world benchmarks</li>
<li>learnings from recent version upgrades and evaluation changes</li>
</ul>
<p>The session gave attendees a rare behind-the-scenes look at how LLM evaluation works in practice, especially in the Korean ecosystem where language nuance matters deeply.</p>
<h2>🎁 ClickHouse swag and audience Q&amp;A rewards</h2>
<p>After the talks, we moved into community updates and open Q&amp;A.</p>
<p>Questions came quickly, and participation was high. To reward curiosity:</p>
<ul>
<li>ClickHouse stickers were available for everyone</li>
<li>ClickHouse T-shirts were given to attendees who asked questions</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251118_2afe3y48f4a3e.jpg" alt="ClickHouse T-shirts"></p>
<p>It created a fun and interactive atmosphere and encouraged even more people to jump into the discussion.</p>
<h2>🍔 Burgers and hallway conversations</h2>
<p>The night wrapped up with cheeseburgers and chicken burgers from CryCheeseBurger, which were a big hit with the crowd.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251118_2a8339u8f4a3e.jpg" alt="CryCheeseBurger"></p>
<p>As always, the real magic happened during networking:</p>
<ul>
<li>conversations about systems, startups, and side projects</li>
<li>engineers exchanging notes on tooling and architecture</li>
<li>newcomers meeting people for the first time</li>
<li>familiar faces reconnecting</li>
</ul>
<p>No flashy setup, just good food, honest conversations, and a room full of builders.</p>
<h2>🙌 Huge thanks</h2>
<p>This event would not have been possible without:</p>
<ul>
<li><a href="https://clickhouse.com/">ClickHouse</a> for supporting the event and bringing great content and swag</li>
<li>Our speakers: <a href="https://www.linkedin.com/in/keehoonlee/">Ken Lee</a>, <a href="https://www.linkedin.com/in/derekchia/">Derek Chia</a>, <a href="https://www.linkedin.com/in/antoinegrondin/">Antoine Grondin</a> and <a href="https://www.linkedin.com/in/hyunwoo-oh-461462153/">Hyunwoo Oh</a> who shared real insights instead of marketing slides</li>
<li>All the volunteers who helped make this event a success: <strong><a href="https://www.linkedin.com/in/aaronmccollum/">Aaron McCollum</a></strong>, <strong><a href="https://www.linkedin.com/in/alenakazakova/">Alena Kazakova</a></strong>, <strong><a href="https://www.linkedin.com/in/charles-yh-chang/">Charles Chang</a></strong>, <strong><a href="https://www.linkedin.com/in/denizay-donder/">Denizay Dönder</a></strong> who made everything flow seamlessly from start to finish</li>
<li>All 140+ attendees who filled the venue and brought energy into the room</li>
</ul>
<p>Seeing the venue completely full was incredibly motivating for us as organizers.</p>
<h2>👀 What’s next</h2>
<p>Dev Korea keeps growing, and this event made it clear that there is strong demand for practical, technical, community-driven meetups in Seoul.</p>
<p>We are already preparing upcoming events with global tech companies and local builders.</p>
<p>👉 Check out upcoming events at <a href="https://dev-korea.com/events">https://dev-korea.com/events</a></p>
<p>Want to stay connected with what we&#39;re building? Follow us on <a href="https://www.linkedin.com/company/dev-korea">LinkedIn</a>, <a href="https://x.com/dev_korea">X</a>, join our <a href="https://discord.gg/hqzMbuXy73">Discord server</a>, and subscribe to our <a href="http://dev-korea.com/">Weekly Dev Korea Digest Newsletter</a> for all the latest updates.</p>
<p>Here’s to more nights of learning, building, and meaningful community in Seoul. 🍻✨</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you’re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea’s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/clickhouse-comes-to-seoul-dev-korea-4-recap_ed9db818.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[How a French designer built her own studio in Korea]]></title>
            <link>https://dev-korea.com/blog/french-designer-built-a-studio-in-korea</link>
            <guid isPermaLink="false">380bdb09-fb33-478e-ae4e-8bb671798126</guid>
            <pubDate>Mon, 15 Dec 2025 12:53:33 GMT</pubDate>
            <description><![CDATA[Meet Inès Gruhier, a French UX/UI designer at Odubu Design in Seoul. We sat down with her to learn about her journey from France to Korea, what it's like working in tech here, and why she believes more global talent should consider a tech career in Korea.]]></description>
            <content:encoded><![CDATA[<p>Meet Inès Gruhier, a French UX/UI designer at Odubu Design in Seoul. We sat down with her to learn about her journey from France to Korea, what it&#39;s like working in tech here, and why she believes more global talent should consider a tech career in Korea.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Inès Gruhier</li>
<li><strong>Nationality:</strong> French</li>
<li><strong>Current role &amp; company:</strong> Founder &amp; Product Designer, at Odubu Design</li>
<li><strong>Years in Korea:</strong> 7 years</li>
<li><strong>Visa status:</strong> D-4 → D-2 → D-10 → D-8 → F-2-7</li>
<li><strong>Languages spoken:</strong> French, English, Korean</li>
<li><strong>Previous countries worked in (if any):</strong> None!</li>
</ul>
<h2>Background &amp; career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p>I&#39;m <a href="https://ines.co.kr/">Inès</a>, a French product designer running <a href="https://odubu.design/">Odubu Design</a>, a one-person design studio here in Korea. I specialize in UX/UI design and design systems, but I also do web design, branding, illustration, and motion design.</p>
<p>Aside from running Odubu, I also became <a href="https://mobbin.com/">Mobbin</a>’s first Korean app contributor, which led me to become their Community Ambassador for South Korea.</p>
<h2>Experience working in Korea</h2>
<p><strong>Q. Tell us briefly about your company (size, industry focus, notable achievements).</strong></p>
<p>Right now, Odubu Design is a one-person studio. I help companies think through how their products should look, feel, and work.</p>
<p>What sets my approach apart is collaboration. I don&#39;t hand off designs and disappear. I work closely with clients&#39; development, product, and QA teams throughout the entire process, from ideation to production. When there&#39;s no in-house team, I partner with developers from day one. It means smoother handoffs, less back-and-forth, and products that genuinely work the way they&#39;re designed.</p>
<p>I&#39;ve worked across diverse industries: from <a href="https://odubu.design/works/ghy">GHY</a> on their English education workbook, to <a href="https://bloxley.com/">Bloxley</a>, an American fintech where I helped shape their product from early days through market launch.</p>
<p>Beyond client work, I&#39;ve also built my own:</p>
<ul>
<li><a href="https://apps.apple.com/fr/app/my-tiny-room/id1644871132?l=en-GB">My Tiny Room</a>, a cozy room-building game that reached 30K+ players in its first year;</li>
<li><a href="https://dfly.app/">Dragonfly</a>, a macOS and iPad Bluesky client;</li>
<li><a href="https://designsphere.xyz">Design Sphere</a>, a curated platform of design podcasts;</li>
<li>and several puzzle games like <a href="https://ines.co.kr/works/sudok-hue">Sudok-Hue</a> and <a href="https://apps.apple.com/fr/app/cozy-sudoku/id6615086556?l=en-GB">Cozy Sudoku</a>.</li>
<li>I also launched <a href="https://apps.apple.com/fr/app/eepy/id6755461081?l=en-GB">Eepy</a> just a week ago, a timezone converter.</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-ines-gruhier_b34bc4c32036.jpeg" alt="Inès Gruhier"></p>
<p>As Mobbin&#39;s first Korean app contributor, I documented designs from apps like Coupang, Coupang Play, Baemin, and Zigzag - work that led to becoming their Community Ambassador for South Korea.</p>
<p><strong>Q. How did you build your business as a foreigner in Korea?</strong></p>
<p>I initially looked into the OASIS program for tech startups, but quickly realized that wasn&#39;t for me, I didn&#39;t want to build a tech startup specifically.</p>
<p>So I did more research into visa options for creatives and entrepreneurs. I discovered the D8-1 visa, which is an investment visa where you invest in your own business. That felt like the right fit, so that&#39;s what I did. Eventually, I transitioned to an F-2-7 visa.</p>
<p>Being self-employed as a foreigner definitely has its challenges (visa requirements, accounting, navigating business systems in Korean). But having that initial support and clarity around the visa process made a huge difference in getting everything set up properly!</p>
<p><strong>Q. What’s been your biggest challenge running your business?</strong></p>
<p>Honestly, the biggest challenge is finding clients, especially Korean clients. Platforms like 숨고 (SoomGo) and 크몽 (Kmong) are saturated with designers competing on price rather than quality. Most of my work comes through referrals right now, which has been more reliable but also limiting when you&#39;re trying to scale… :)</p>
<p>I&#39;m still figuring a lot of it out, but it&#39;s a learning process.</p>
<p><strong>Q. Can you describe your typical workday?</strong></p>
<p>What I love most about being self-employed is working wherever feels right that day. I spend most of my time in work-friendly cafés around Seoul, either alone or coworking with other freelancers.</p>
<p>My day typically starts with checking in with clients, emails, Slack, understanding what needs to happen that day. Then I&#39;ll dive into design work in Figma. I usually block out dedicated time for deep focus work, away from distractions.</p>
<p>I also make time for collaboration: jumping on calls with developers, discussing feedback, iterating on designs. That back-and-forth is crucial to me.</p>
<p>Outside of client work, I try to dedicate time to my own projects too, whether that&#39;s working on apps or staying up-to-date with design trends and tools. Recently, I&#39;ve been experimenting a lot with Figma MCP, Cursor and Claude Code to see how I can optimize my design workflow and design-to-dev handoffs.</p>
<p><strong>Q. How does Korean work culture compare to your home country&#39;s?</strong></p>
<p>I haven&#39;t actually worked in France, so I can&#39;t compare directly. But I&#39;ve definitely noticed differences working with international clients versus Korean clients here.</p>
<p>Korea moves fast. Like, really fast. The “ppalli-ppalli” (hurry) culture defines everything here, people expect quick turnarounds and high responsiveness. But it&#39;s a perfect match for me. I&#39;ve heard &quot;이네스 손이 빠르다&quot; (literally, “Inès has fast hands”, meaning I work quickly and efficiently) countless times from professors, design partners, and clients.</p>
<p>The Korean pace is what I&#39;ve gotten used to, and it&#39;s become my normal now. I thrive in that pace!</p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>I speak Korean, English, and French fluently, so I switch languages based on the client. With Korean clients, I work in Korean; with international clients, usually English. It helps build rapport and makes communication smoother.</p>
<p>Since Odubu is currently just me, communication is pretty straightforward, but I do collaborate closely with developers and other team members on projects.</p>
<h2>Lifestyle &amp; community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>I have a good friend group here, a mix of Korean friends and other expats. In Seoul, there’s always something to do, so it never gets boring!</p>
<p>I think the fact that I speak Korean fluently really helped me build a genuine social life, not just an expat bubble. I can hang out with Korean friends without everything revolving around the fact that I&#39;m a foreigner, which makes a huge difference.</p>
<p>I’m also friends with many ajummas and baristas from my neighborhood!</p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p>Learning Korean is the best investment you can make for your life here.</p>
<p>Beyond the practical stuff like ordering food or going to the doctor, speaking Korean fluently has let me build genuine relationships with people here. I&#39;m not stuck in an expat bubble where everything is in English. I can actually integrate into Korean society, make Korean friends, and understand the culture on a deeper level.</p>
<p>On the business level, Korean clients take you more seriously when you can communicate in Korean. It shows commitment and respect for the culture.</p>
<p>It changed everything about my experience here.</p>
<h2>Reflections &amp; advice</h2>
<p><strong>Q. Do you plan to stay in Korea long-term, and how do you see your career evolving here?</strong></p>
<p>I have no intention of going back to France. My family is there and I visit once a year, but I can&#39;t imagine living anywhere else at this point.</p>
<p>Career-wise, I want to keep growing my design studio. Right now I&#39;m solo, but I&#39;d like to eventually build a small team if the right opportunities come along. I&#39;m also passionate about building my own products - it&#39;s where I have full creative freedom and ownership over what I create. gives me creative freedom and ownership that client work doesn&#39;t always allow. That balance is really important to me.</p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<p>First things first: learn Korean seriously. It&#39;s not optional if you want to stay long-term and build genuine relationships (whether business or personal). A lot of expats skip this step, which is why they end up leaving after a few years.</p>
<p>Research visa pathways thoroughly. There are several options (F series visas, D-8-1, D-8-4…) so figure out what works best for your situation. I went the D-8-1 route with help from a visa agency, and I highly recommend it. They provide information you simply can&#39;t find online or through 1345. It costs several millions of won, but it saved me a lot of time and stress.</p>
<p>And most importantly, be patient and kind with yourself. Adapting to a new country and work culture takes time. Give yourself space to learn and grow!</p>
<p><strong>Q. What&#39;s one thing you wish you knew before moving here?</strong></p>
<p>I wish I&#39;d understood the visa system better before arriving. The rules are complicated, there are hidden pathways, and things change regularly. It&#39;s hard to know what&#39;s possible and what’s not.</p>
<p>Don&#39;t rely on random blogs or Reddit comments for visa information. Talk to lawyers, it&#39;s worth the investment.</p>
<p>My lawyer recently told me that to apply for permanent residency, you need to have spent no more than 180 days outside Korea in the 5 years before your application. I exceeded that limit, visiting my family and working from France about 2 months a year. That means I can&#39;t leave Korea for the next 2 years to reset the clock. That information was nowhere online.</p>
<p><strong>Q. Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>Absolutely !! Korea is an amazing place for tech and design professionals, especially creatives like me. One thing that really drew me here is how much Koreans genuinely care about design. It&#39;s refreshing !</p>
<p>That said, it&#39;s not for everyone. I&#39;ve had close friends here for more than 5 years who ultimately decided to leave because they felt like they&#39;d always be seen as &quot;the foreigner&quot;. It&#39;s something people need to consider before committing long-term.</p>
<p>The journey is far from being easy, but if you commit to it it&#39;s incredibly rewarding. Fighting !!</p>
<h2>Rapid fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> Right now I&#39;m completely obsessed with 제육볶음 (jeyuk bokkeum). Even better when there’s a 쌈 option!</li>
<li><strong>One must-visit place in Korea:</strong> Probably cliché, but Jeju Island. It’s the perfect place to rest.</li>
<li><strong>Most surprising thing about Korean tech culture:</strong> Two things: first, how genuinely collaborative and supportive the community is. Second, And second, how global it is!</li>
<li><strong>Favorite Korean word or phrase:</strong> 두부 (dubu, tofu)! I love the word so much I named my company after it. It&#39;s such a soft, gentle word.</li>
</ul>
<h2>Connect with Inès</h2>
<ul>
<li>Portfolio: <a href="https://ines.co.kr/">ines.co.kr</a></li>
<li>Company website: <a href="https://odubu.design">odubu.design</a></li>
<li>LinkedIn: <a href="http://www.linkedin.com/in/ines-gruhier">/in/ines-gruhier</a></li>
<li>Bluesky: <a href="https://bsky.app/profile/odubu.design">/profile/odubu.design</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/french-designer-built-a-studio-in-korea_89da6df8.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Inside the life of Alyona, a global designer building Korea’s blockchain future]]></title>
            <link>https://dev-korea.com/blog/alyona-global-designer-korea-blockchain</link>
            <guid isPermaLink="false">1eea6736-e25b-42f3-ba57-792cd1b25dea</guid>
            <pubDate>Mon, 08 Dec 2025 12:28:46 GMT</pubDate>
            <description><![CDATA[Meet Alyona, a Russian UI/UX designer at Gurufin in Seoul. We sat down with her to learn about her journey from Russia to Korea, what it's like working in tech here, and why she believes more global talent should consider a tech career in Korea.]]></description>
            <content:encoded><![CDATA[<p><strong>Meet Alyona</strong>, a Russian UI/UX designer at <a href="https://www.gurufin.com/landing">Gurufin</a> in Seoul. We sat down with her to learn about her journey from Russia to Korea, what it&#39;s like working in tech here, and why she believes more global talent should consider a tech career in Korea.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Alyona Vin</li>
<li><strong>Nationality:</strong> Russian</li>
<li><strong>Current role &amp; company:</strong> UI/UX Designer at <a href="https://www.gurufin.com/landing">Gurufin</a></li>
<li><strong>Years in Korea:</strong> almost 5 years</li>
<li><strong>Visa status:</strong> E7</li>
<li><strong>Languages spoken:</strong> Russian, English, Korean</li>
<li><strong>Previous countries worked in (if any):</strong> Russia</li>
</ul>
<h2>Background &amp; career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p>Hi! I’m Alyona — a designer who loves drawing, creating NFT characters, and working on UI/UX projects. I’m a full-time multi-tasker who also occasionally dives into frontend development. Outside of work, I ride motorcycles like a pro, explore new places, and somehow manage to mix creativity with code. At work, I turn ideas into visuals… and sometimes even into functional code!</p>
<p><strong>Q. What was your career path before moving to Korea?</strong></p>
<p>Oh, this is going to sound funny! By education, I’m actually a civil engineer, haha. But I worked for six years as a flight attendant for a Russian airline. Due to certain circumstances, I moved to Korea, and here I started studying design.</p>
<p><strong>Q. What inspired you to work in Korea?</strong></p>
<p>I was thinking about how to stay in Korea, and at first I joined a program for foreigners (OASIS) who wanted to start a tech startup. Thanks to this program, I also learned how business works in Korea and realized that there are many benefits and privileges for the IT sector here. But I realized it was better to gain experience working in a company before starting my own. I wouldn’t say it was inspiration, more like life circumstances — a way to survive and grow.</p>
<h2>Experience working in Korea</h2>
<p><strong>Q. Tell us briefly about your company (size, industry focus, notable achievements).</strong></p>
<p><a href="https://www.gurufin.com/landing">Gurufin</a> is a blockchain and fintech company with around 40 employees, focused on building a next‑generation Layer‑1 mainnet and global payment infrastructure. They offer services like stablecoin issuance, Web3 apps, and NFT platforms. Recently, they launched the GX Chain to support high‑speed transactions, low fees, and real‑world payment integration. The company combines fintech with blockchain solutions, aiming to make crypto and payments more accessible and compliant.</p>
<p><strong>Q. How did you find your current job? Was the hiring process challenging as a foreigner?</strong></p>
<p>I found my current job through Saramin. Honestly, the interview was great, but I thought I had failed it after talking with the boss, haha. I accidentally responded with the word ‘다시?’ (<em>dasi</em> meaning “again?“) when he asked me to tell about myself. I had just said it 10 minutes earlier and didn’t mean it in a rude way — I just hadn’t finished my sentence explaining whether I should give a brief or full introduction, haha. But I got an offer after a few days and I was so surprised.</p>
<p>Overall, the job search process is really challenging for a foreigner in Korea. Even if your skills are good and everything looks perfect, just being a foreigner can sometimes prevent you from getting a job.</p>
<p><strong>Q. Can you describe your typical workday?</strong></p>
<p>I usually arrive at work around 8:40–8:50. First, I make myself some tea and then check my emails and all our work chats. Lately, I’ve been drawing an NFT character because we’re planning to create a collection for people to buy and trade. I really enjoy it because drawing is my hobby, and it’s also why I started studying design. About 3–4 months ago, I became interested in how to create NFTs and wanted to learn it — thank God my wish came true, lol.</p>
<p>During the day, I mostly draw and sometimes help design for my colleagues. Lunch starts at 11:30, and the company covers the cost, but I try to watch my diet and bring my own food. I usually spend the lunch money on fruits or small treats, haha. Sometimes we have team lunches.</p>
<p>After lunch, the office comes alive and we chat about plans and what could be improved. No one at the company does overwork, so I usually leave at 6 PM if I notice the time, haha. But I get so immersed in design that sometimes I leave around 6:10–6:20.</p>
<p><strong>Q. How does Korean work culture compare to your home country&#39;s?</strong></p>
<p>Oh, there&#39;s a big difference. In Russia, people are more open — if something is wrong or there’s a problem, we speak up directly so that conflicts don’t happen and work goes smoother. In Korea, this is a bigger issue. People may stay silent until the very end, even when a problem is about to become a disaster, but they won’t risk telling the truth.
Also, in Russia, skills and results are valued more, but in Korea, that’s not always the case — communication is considered more important. However, this can be a challenge for Koreans themselves because they often struggle to communicate well with foreigners. In Korea, you need to develop your ‘<a href="https://dev-korea.com/blog/nunchi-in-korean-tech-companies-guide-for-international-professionals">눈치</a>’ (<em>nunchi</em>) — the ability to sense or anticipate things in advance, or just need to get super power like reading minds, haha.</p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>I work in a global team, so I mostly communicate in English, but with Koreans I speak Korean. My boss is Korean-American, and we use both languages. My brain works in three languages every day — it used to drive me crazy, but now I’m used to it. It’s even fun sometimes when I can mix Korean and English words in the same sentence.</p>
<p><strong>Q. What challenges have you faced adapting to Korea&#39;s work environment?</strong></p>
<p>There were many challenging situations. A big problem is that small companies in Korea sometimes hire foreigners to work on a project and then let them go. All companies in Korea have a three-month probation period, which can be frustrating because some companies take advantage of it. For a foreigner who depends on a work visa, this probation period is a huge source of stress.</p>
<p>There was one case where the company hired programmers and me as a designer to complete a project. We were pressured every day to finish it as quickly as possible, with the expectation that everything should be done in a month. When we completed the project, the company said our work was bad and that we were no longer needed. Yet, they launched the program we built, and it is now running and generating revenue. It was a very unpleasant feeling, like we were just used. Even the Korean colleagues were shocked that we were let go.</p>
<h2>Lifestyle &amp; community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>Outside of work, I ride my motorcycle and visit new places — I think I’ve probably seen more of Korea than many Koreans, lol. Sometimes I meet with friends from my motorcycle team. I also go to church and do volunteer work there, mostly in media and design.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-alyona-vin_b34bc4c32036.jpg" alt="Alyona Vin"></p>
<p>At first, I mainly socialized with Koreans because I thought it was the best way to deeply understand the culture and learn the language. But recently, I’ve started meeting more foreigners and have met many wonderful people, including my boyfriend, so it makes me happy to talk with many people from other countries.</p>
<p>I also stay active through sports and am learning programming. I plan to transition from design to frontend development, and eventually to fullstack. I find it really exciting and motivating.</p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p>A lot. Knowing Korean makes life in Korea much easier, even for simple things like going to the tax office or handling documents. Sometimes Koreans even change the way they treat me once they realize I can speak Korean.</p>
<p>In the beginning, learning Korean became essential for me. The first four times I traveled to Korea, I didn’t speak the language at all, and it was really difficult. I often noticed people talking about me, and that actually motivated me to start learning Korean. I began with a private tutor, and by the time I came back to Korea, I could already understand a little. It was funny — people were guessing where I was from and even commenting on the length of my hair, lol.</p>
<p>When I decided to move to Korea, I knew I needed to learn the language properly, so I enrolled in a Korean language program at Yonsei University. And as someone who completed that course, my advice is: you don’t need to pay extra just for a famous university name. Most schools teach the same material, and if the student doesn’t study, even the best school won’t help.</p>
<p><strong>Q. What was your biggest culture shock when you first arrived?</strong></p>
<p>Probably the emphasis on respecting elders. I think it’s sometimes taken too far, and the older generation can take advantage of it. I respect elders, but when it crosses the line and causes harm, I can’t accept it.</p>
<h2>Reflections &amp; advice</h2>
<p><strong>Q. Do you plan to stay in Korea long-term, and how do you see your career evolving here?</strong></p>
<p>To be honest, life in Korea changes every second, and you never know what might happen tomorrow. For now, I’m staying here and doing my best, but I’m keeping an open mind about the future.</p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<p>Learn Korean, because it greatly increases your chances of finding a job. Also, don’t hesitate to apply to any company — you never know which one might be interested in you. At first, I only applied to certain companies, but later I started applying everywhere and ended up receiving unexpected offers.</p>
<p><strong>Q. What can Korean companies do to better support and integrate international employees?</strong></p>
<p>They could try to treat international employees the same way they treat Korean employees — with respect and equal consideration. Companies shouldn’t assume that because someone is a foreigner, their needs can be ignored. Also, investing in English education would help a lot, since Korea is becoming more open, and I’m sure there will be even more foreign professionals in the future.</p>
<p><strong>Q. What&#39;s one thing you wish you knew before moving here?</strong></p>
<p>I wish I knew that in Korea you need translated and notarized copies of almost every document. It’s better to prepare several certified translations in advance — and get an apostille if possible — because you’ll be asked for these papers everywhere.</p>
<p><strong>Q. Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>Yes, I would. Korea is a great place to grow your skills and develop real stress resilience. The work culture is intense, but it pushes you to become faster, more adaptable, and more capable overall.</p>
<h2>Rapid fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> 닭한마리 (<em>dalkanmari</em> which is a South Korean chicken soup dish)</li>
<li><strong>One must-visit place in Korea:</strong> 천상의정원 수생식물학습원 (<em>chonsangijongwon susaengsingmulhaksseubwon</em>, a beautiful lake)</li>
<li><strong>Most surprising thing about Korean tech culture:</strong> One of the most surprising things about Korean tech culture is that your specific job title doesn’t matter as much — you’re expected to be multi-skilled and do many different tasks lol. People often take on responsibilities outside their main role, so being flexible and versatile is really important.</li>
<li><strong>Favorite Korean word or phrase:</strong> ​​천리 길도 한 걸음부터 (<em>cholri gildo han goreumbuto</em> meaning “Even a journey of a thousand miles begins with a single step.”)</li>
</ul>
<h2>Connect with Alyona</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/yonavin">/in/yonavin</a></li>
<li>Website: <a href="https://yonavin.github.io/portfolio-new">yonavin.github.io/portfolio-new</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/alyona-global-designer-korea-blockchain_f88623df.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[South Korea plans major improvements to the E-7-1 visa for overseas Master’s & PhD talent]]></title>
            <link>https://dev-korea.com/blog/south-korea-expands-e7-visa-global-talent-2025</link>
            <guid isPermaLink="false">15fd93bc-4aab-4807-83a4-b85bd72d3e51</guid>
            <pubDate>Thu, 27 Nov 2025 03:38:10 GMT</pubDate>
            <description><![CDATA[South Korea is reviewing improvements to the E-7-1 visa recommendation system, including faster processing, better verification, and expanded eligibility. Companies have always been able to hire talent from overseas under the E-7 visa, but these changes aim to make the system easier, clearer, and more accessible for SMEs, startups, and global specialists.]]></description>
            <content:encoded><![CDATA[<blockquote>
<p>TL;DR<br>South Korea is reviewing major updates to the E-7-1 hiring recommendation system (고용추천제).<br>The government is considering allowing SMEs to hire overseas master’s and PhD-level specialists through the MSS recommendation system, which previously only supported graduates of Korean universities. 
Proposed improvements include selecting priority recruitment countries, simplifying and speeding up approval steps, strengthening verification, and expanding eligible job types beyond STEM.<br>If implemented, this could give startups and SMEs more hiring power and create new pathways for global talent.  </p>
</blockquote>
<p>South Korea is reviewing improvements to the E-7-1 foreign professional hiring recommendation system operated by the Ministry of SMEs and Startups (MSS) and KOSME.</p>
<p><strong>Important clarification:</strong>
The E-7 visa itself already exists, and companies have always been able to hire overseas talent through the standard E-7 process.
The government is <em>not</em> replacing the E-7 visa.
It is reviewing improvements to the <strong>separate MSS “recommendation track”</strong>, which helps SMEs hire talent more easily.</p>
<p>Public information remains limited. One of the few detailed reports comes from <a href="https://cm.asiae.co.kr/ampview.htm?no=2025112511133896200">Asia Economy (아시아경제)</a>, which covered the government’s research project and proposed ideas.<br>These improvements are <strong>under review</strong> and <strong>not yet finalized</strong>.</p>
<p>Many professionals currently working in Korea enter through:</p>
<ul>
<li>standard E-7 sponsorship from abroad  </li>
<li>E-7 after a D-10 job-seeking visa  </li>
<li>E-7 after completing a degree in Korea (D-2 → E-7)</li>
</ul>
<p>So what is actually being reviewed?</p>
<p>The government is exploring ways to expand and simplify the <strong>MSS E-7-1 “recommendation” pathway</strong>, which is an optional system where MSS issues recommendation letters to help SMEs hire foreign talent when they struggle to meet the requirements of the normal E-7.</p>
<p>Until now, the recommendation track has mainly supported international students already in Korea.<br>Now, the government is reviewing potential changes to allow SMEs to also attract highly skilled talent from overseas.</p>
<h2>1. Moving beyond domestic graduates</h2>
<p><a href="https://www.mss.go.kr/synap/skin/doc.html?fn=f9bbc7b567b3dabf6e1852db1ac4af60&rs=/synapFile/202511">The current MSS/KOSME E-7-1 recommendation system</a> prioritizes:</p>
<ul>
<li>foreign students who earned degrees in Korea  </li>
<li>candidates working in 24 designated job categories chosen by MSS 
(Important: these 24 categories are specific to the MSS recommendation program, not the full E-7 list.)</li>
</ul>
<p>While companies can already hire overseas talent directly using the normal E-7 route, the MSS recommendation system did not support overseas applicants.</p>
<p>The reform being reviewed would allow MSS to recommend:</p>
<ul>
<li>overseas master’s and PhD talent  </li>
<li>high-level specialists from reputable universities  </li>
<li>candidates with strong technical or R&amp;D backgrounds</li>
</ul>
<p>This does not replace the normal E-7.<br>It creates a second, more supportive path specifically for SMEs.</p>
<h2>2. Selecting key countries for global recruitment</h2>
<p>The government plans to select at least five “priority source countries,” based on:</p>
<ul>
<li>talent availability  </li>
<li>academic/career verification reliability  </li>
<li>connection with Korean industries  </li>
<li>administrative stability  </li>
<li>cultural compatibility</li>
</ul>
<p>This would help SMEs recruit globally with more confidence and structure.</p>
<h2>3. Faster hiring with a simplified process</h2>
<p>The standard E-7 process can be:</p>
<ul>
<li>slow  </li>
<li>paperwork-heavy  </li>
<li>strict about major/role matching  </li>
<li>unpredictable, especially for SMEs</li>
</ul>
<p>The upcoming MSS reforms review options for:</p>
<ul>
<li>reducing administrative bottlenecks  </li>
<li>shortening the review timeline  </li>
<li>designing a fast-track process for exceptional candidates  </li>
<li>simplifying documentation</li>
</ul>
<p>This would make E-7 hiring more accessible for smaller companies.</p>
<h2>4. Stronger document verification</h2>
<p>To prevent fraud, the government is reviewing ways to enhance verification of:</p>
<ul>
<li>degrees  </li>
<li>academic credentials  </li>
<li>employment history</li>
</ul>
<p>Possible methods include:</p>
<ul>
<li>partnerships with global verification agencies  </li>
<li>direct cooperation with overseas universities  </li>
<li>using official certification platforms</li>
</ul>
<p>This would improve trust and predictability in the process.</p>
<h2>5. Expanding beyond STEM fields</h2>
<p>The MSS recommendation track historically focused on STEM fields.<br>The government is now reviewing whether to include non-STEM roles such as:</p>
<ul>
<li>international sales  </li>
<li>product planning  </li>
<li>marketing  </li>
<li>cross-cultural business roles  </li>
<li>global operations</li>
</ul>
<p>This would help SMEs recruit for global expansion, not only engineering.</p>
<h2>Why these improvements matter</h2>
<p>These changes <strong>do not create a new visa type</strong>.<br>They <strong>extend and upgrade</strong> the existing government-supported pathway for SMEs.</p>
<p>If implemented, they could:</p>
<ul>
<li>make hiring overseas talent faster and easier  </li>
<li>increase visa approval predictability  </li>
<li>open opportunities for global master’s/PhD talent  </li>
<li>reduce paperwork  </li>
<li>strengthen Korean SMEs’ global competitiveness</li>
</ul>
<h2>What this means for Dev Korea</h2>
<p>If the MSS recommendation track expands to include overseas talent:</p>
<ul>
<li>Dev Korea companies gain access to a larger pool of qualified global applicants  </li>
<li>Overseas candidates gain a clearer pathway into Korea  </li>
<li>SMEs can hire with more confidence using MSS-backed recommendations  </li>
<li>Dev Korea can provide clearer guidance, tools, and support to both sides</li>
</ul>
<p>In short, these reforms could help Dev Korea match even more companies with highly skilled global professionals, and help talent navigate Korea’s hiring system with far fewer uncertainties.</p>
<h2>What happens next</h2>
<p>The government is currently conducting research and reviewing design options. We’re watching for official updates on:</p>
<ul>
<li>which countries will be selected  </li>
<li>which job categories will be added  </li>
<li>how the fast-track will operate  </li>
<li>documentation requirements  </li>
<li>expected launch timeline</li>
</ul>
<p>When official details are released, Dev Korea will share them immediately.</p>
<p><em>Note: Visa rules may change. Always verify current requirements with Korean immigration authorities or a qualified immigration specialist.</em></p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you’re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea’s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/south-korea-expands-e7-visa-global-talent-2025_34208dce.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[From crafting fashion to writing software: Guli's journey into Korea's tech industry]]></title>
            <link>https://dev-korea.com/blog/from-fashion-to-software-guli-korea-tech</link>
            <guid isPermaLink="false">dbe93e40-1cfc-4e8e-8905-eeb4019f7a39</guid>
            <pubDate>Mon, 24 Nov 2025 06:32:06 GMT</pubDate>
            <description><![CDATA[Meet Matroziyeva Gulchiroy Mamurjon Kizi — or simply, Guli, an Uzbek Front-End Developer in Seoul. We sat down with her to talk about her journey from Namangan to Korea, how she built her career in tech, and why she believes more global talent should take a chance on Korea's growing tech scene.]]></description>
            <content:encoded><![CDATA[<p><strong>Meet Matroziyeva Gulchiroy Mamurjon Kizi — or simply Guli</strong>, an Uzbek Front-End Developer in Seoul. We sat down with her to talk about her journey from Namangan to Korea, how she built her career in tech, and why she believes more global talent should take a chance on Korea&#39;s growing tech scene.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Matroziyeva Gulchiroy Mamurjon Kizi</li>
<li><strong>Nationality:</strong> Uzbek</li>
<li><strong>Current role:</strong> Front-End Developer</li>
<li><strong>Years in Korea:</strong> 9 years</li>
<li><strong>Visa status:</strong> F2</li>
<li><strong>Languages spoken:</strong> Uzbek, English, Korean</li>
<li><strong>Previous countries worked in (if any):</strong> None</li>
</ul>
<h2>Background &amp; career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p>Hi, I&#39;m Gulchiroy, but most people call me Guli.<br>I&#39;m a software developer, and I like to think of myself as a proud one.</p>
<p>My background covers full-stack and even a bit of iOS development, but these days I&#39;m mainly focused on front-end engineering. I currently work at a fully Korean-speaking company, which has been both a challenge and a blessing. Navigating cultural and language differences has pushed me to grow, not just as a developer but also as a communicator and problem-solver. At this point, I sometimes joke that I&#39;m almost Korean!</p>
<p>I&#39;ve lived in Korea for about nine years and graduated from Sejong University in Seoul, the place that gave me my start in tech. Since then, I&#39;ve worked on everything from complex dashboards to performance-heavy UI systems.</p>
<p>But there&#39;s more to me than just code. I love talking to people, sharing ideas, and exploring the world — whether it&#39;s hiking through mountains, traveling to new cities, or brainstorming projects that might never get built (but still spark my imagination).</p>
<p>For me, development isn&#39;t just about software — it&#39;s about connecting ideas, cultures, and people, and finding beauty in how small lines of code can create something meaningful in this big, unpredictable world.</p>
<p><strong>Q. What was your career path before moving to Korea?</strong></p>
<p>It&#39;s a long story! (laughs)</p>
<p>Before 2016, I got into fashion design. It started as a small hobby — sketching, sewing, experimenting with fabrics — but soon my neighbors began asking me to make clothes for them. Suddenly, I had real customers trusting me with their outfits. For about three years, I designed and sewed everything by hand. It was rewarding to see people wear something I made, but it was also stressful. Everyone had different tastes and expectations, and trying to make them all happy often left me anxious and exhausted. Still, that time taught me so much patience, precision, and how small details can completely change how something feels.</p>
<p><strong>Q. What inspired you to work in Korea?</strong></p>
<p>I came to Korea to study Computer Science and Engineering at Sejong University. When graduation came closer, I asked myself:</p>
<blockquote>
<p>Have I really experienced everything I came here for — to learn, to grow, to prove myself?</p>
</blockquote>
<p>The honest answer was <em>not yet</em>.</p>
<p>I didn&#39;t want to return home with just a diploma; I wanted to become a professional who had tested herself in the real world. So I stayed. I was curious about Korean work culture, how teams operated, and what “speed and precision” truly meant here.</p>
<p>And secretly, I had a small dream — to work in one of those tall, glass-walled buildings I used to pass by on my way to class.</p>
<p>Now, that dream quietly came true.</p>
<h2>Experience working in Korea</h2>
<p><strong>Q. How did you find your current job? Was the hiring process challenging as a foreigner?</strong></p>
<p>I found my job through Saramin, one of Korea&#39;s major job platforms.</p>
<p>Finding a job as a foreigner in Korea isn&#39;t easy — especially if you don&#39;t speak the language. But even though I do, it still comes with challenges. Sometimes, hiring managers can&#39;t quite believe that a foreign applicant truly speaks Korean fluently, or they hesitate simply because of nationality. Many also worry about the visa process; they&#39;re unsure how it works and prefer to hire local candidates to avoid the extra paperwork. Because of that, many of my applications were declined even when my background and skills perfectly matched the job description.</p>
<p>Still, I kept applying again and again — until one day, the phone finally rang.</p>
<p><strong>Q. How does Korean work culture compare to your home country&#39;s?</strong></p>
<p>Oh, that&#39;s a big one! (laughs)</p>
<p>In Uzbekistan, life moves at a softer rhythm. Being five minutes late isn&#39;t the end of the world. But in Korea, even three minutes late can feel like a scandal. Punctuality equals respect.</p>
<p>The hierarchy is another difference. In Korea, you listen first, speak later. Age and title shape the flow of conversation. Back home, communication feels warmer and more personal, and we mix humor with formality.</p>
<p>And then, of course, after-work gatherings. In Korea, company dinners and drinks are seen as part of team bonding. In Uzbekistan, socializing is more casual; you can skip without guilt.</p>
<p>Korea taught me precision, responsibility, and discipline. Uzbekistan keeps me simply human.</p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>Yes, almost everything at work happens in Korean.<br>Meetings, messages, documentation — even the jokes in our group chat — all in Korean. At first, it was tough. Tech terms are one thing, but office humor and subtle expressions? That&#39;s another level. (laughs)</p>
<p><strong>Q. What challenges have you faced adapting to Korea&#39;s work environment?</strong></p>
<p>When I first started, I could understand Korean — but professional Korean? That was a new world. I used to write down every new phrase I heard and tape it to my desk. Those sticky notes became my mini Korean dictionary — and also proof that I was trying.</p>
<p>It took patience, but now, communication feels natural. Those notes turned into habits — and those habits built my confidence.</p>
<h2>Lifestyle &amp; community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>It&#39;s quite full! Thanks to meetup apps and travel groups, it&#39;s easy to connect with people who share similar interests. I love hiking, exploring new cities, and attending tech meetups.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-matroziyeva-gulchiroy-mamurjon-kizi_b34bc4c32036.jpg" alt="Matroziyeva Gulchiroy Mamurjon Kizi"></p>
<p>Some of my close friends have moved away, but we still keep in touch — distance doesn&#39;t erase real connections.</p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p><strong>A lot.</strong><br>Back in university, I told myself: </p>
<blockquote>
<p>either be an A+ student or learn Korean</p>
</blockquote>
<p>At first, I learned it for fun — but it soon became the bridge to everything.</p>
<p>When I started applying for jobs and sent my résumé in Korean, I finally got interview calls. Companies appreciated the effort.</p>
<h2>Reflections &amp; advice</h2>
<p><strong>Q. Do you plan to stay in Korea long-term, and how do you see your career evolving here?</strong></p>
<p>Honestly, I don&#39;t have a fixed &quot;expiry date&quot; for Korea.<br>So for now, I&#39;d say: I can see myself staying at least another five years — after that, it&#39;s &quot;to be decided&quot;. I love the idea of eventually working as a freelancer, keeping a stable income while traveling and building something of my own. The good thing about being in tech is that our work doesn&#39;t have to be tied to one location.</p>
<p>As for my career, Korea is actually a good place to keep evolving.<br>The tech scene here is fast, competitive, and very product-focused  from e-commerce and fintech to AI and startups. It pushes you to actually ship, not just talk about &quot;ideas&quot;. Staying longer, I see myself growing from &quot;just a developer&quot; into someone who can lead projects, design better systems, and eventually build a product or company that can live both in Korea and beyond.</p>
<p>And the fun part for English speakers (including me): we write the code in english, that&#39;s a nice combo in a market that&#39;s opening more to global talent. That&#39;s also why my next step will probably be a more English-friendly environment. I miss speaking in full sentences without mixing three languages in one stand-up.</p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<p>Learn the language. That&#39;s the key.</p>
<p>And then just keep coding, keep learning, and surround yourself with people who inspire you. That&#39;s really it. Simple, but powerful.</p>
<p><strong>Q. What can Korean companies do to better support and integrate international employees?</strong></p>
<p>Korea is facing a declining population, so attracting international talent isn&#39;t just a choice — it&#39;s the future. Programs like KIIP (Korean Immigration and Integration Program) are great starts, but companies can go further.</p>
<p>Offer English communication training for local staff, and encourage foreigners to learn Korean deeply. Integration works both ways.</p>
<p>And importantly, create safer spaces for conversations about diversity and race. Many foreigners still stay silent when they face bias — not because they&#39;re weak, but because they don&#39;t feel heard.</p>
<p>At the end of the day, it all comes down to one rule:<br><strong>Be kind.</strong><br>Kindness builds trust faster than any policy — and that&#39;s where true inclusion begins.</p>
<p><strong>Q. What&#39;s one thing you wish you knew before moving here?</strong></p>
<p>Well, I came to Korea when I was 19, thinking that speaking English and getting into a Computer Science program would be enough. I had no idea what CS actually was. I still remember the first class where everyone had Visual Studio open and was printing &quot;Hello World&quot;, and I didn&#39;t even know what a console was. Because I didn&#39;t understand what I was getting into, I lost my scholarship once and had to decide very seriously whether to quit or fight through it.</p>
<p>That&#39;s when I realized I needed to learn how computers &quot;think&quot;, and for me, math became the key that suddenly made programming, compilers, loops, and problem-solving make sense. I also wish I had learned basic Korean before coming; as a student it was hard to find part-time jobs and support myself without it.</p>
<p>Finally, I wish I had started applying for jobs earlier instead of waiting for the &quot;perfect&quot; portfolio or timing. I was more ready than I believed, but I didn&#39;t have the right community or support system, so I doubted myself and delayed. If I could start again, I&#39;d study what I&#39;m choosing more deeply, learn Korean sooner, find a supportive tech community, and never let other people&#39;s doubts define my potential.</p>
<p><strong>Q. Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>Of course! I definitely would.</p>
<p>But I&#39;ll add one condition: learn at least basic Korean. It makes daily life smoother and shows respect for the culture, which will open many doors.</p>
<p>If you asked me ten years ago, I might have hesitated. But today, Korea is much more international — new communities are forming, workplaces are diversifying, and it&#39;s one of the safest countries in the world.</p>
<h2>Rapid fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> Definitely 닭갈비 (<em>Dakgalbi</em>, meaning “marinated chicken stir-fried with vegetables”) — with extra cheese on top</li>
<li><strong>One must-visit place in Korea:</strong> 제주도 (<em>Jeju-do</em>) — Jeju Island, for sure</li>
<li><strong>Most surprising thing about Korean tech culture:</strong> Even with a fever, the deadline still wins. (laughs)</li>
<li><strong>Favorite Korean word or phrase:</strong> 징글징글하다 (<em>jinggeuljinggeulhada</em>) → It&#39;s hard to translate, but it basically means &quot;I&#39;m so done with this&quot; or &quot;This is driving me crazy&quot;.</li>
</ul>
<h2>Connect with Guli</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/gulchiroy-matroziyeva-b42420175">/in/gulchiroy-matroziyeva-b42420175</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <strong><a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a></strong>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you&#39;re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea&#39;s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/from-fashion-to-software-guli-korea-tech_6e78dc30.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Beyond the lab: Life in Korea as an international AI researcher]]></title>
            <link>https://dev-korea.com/blog/beyond-the-lab-international-ai-researcher-korea</link>
            <guid isPermaLink="false">1608298d-9bf4-4adc-a1f9-3090a4389742</guid>
            <pubDate>Sun, 16 Nov 2025 04:06:15 GMT</pubDate>
            <description><![CDATA[Meet Hiskias, an Ethiopian Research Scientist at AIM Intelligence in Seoul. We sat down with him to learn about his journey from Ethiopia to Korea, what it's like working in tech here, and why he believes more global talent should consider a tech career in Korea.]]></description>
            <content:encoded><![CDATA[<p><strong>Meet Hiskias</strong>, an Ethiopian Research Scientist at <a href="https://aim-intelligence.com/en">AIM Intelligence</a> in Seoul. We sat down with him to learn about his journey from Ethiopia to Korea, what it&#39;s like working in tech here, and why he believes more global talent should consider a tech career in Korea.</p>
<h2>Profile snapshot</h2>
<ul>
<li><strong>Name:</strong> Hiskias Dingeto</li>
<li><strong>Nationality:</strong> Ethiopian</li>
<li><strong>Current role &amp; company:</strong> AIM Intelligence, Senior Research Scientist</li>
<li><strong>Years in Korea:</strong> 6 years</li>
<li><strong>Visa status:</strong> D10 -&gt; E7</li>
<li><strong>Languages spoken:</strong> English, Amharic, Korean (basic)</li>
<li><strong>Previous countries worked in (if any):</strong> Ethiopia</li>
</ul>
<h2>Background &amp; career</h2>
<p><strong>Q. Can you briefly introduce yourself and your current role?</strong></p>
<p>My name is Hiskias Dingeto, and I’m from Ethiopia. I moved to Korea to pursue my graduate studies, where I recently completed my PhD in Information Security at Dongguk University. My research focused on AI Safety and Security, which closely aligns with AIM Intelligence’s mission. I’ve been working as a Research Scientist at AIM Intelligence for about seven months now.</p>
<p><strong>Q. What was your career path before moving to Korea?</strong></p>
<p>I studied Software Engineering for my undergraduate degree in Ethiopia and worked as a full-stack developer before relocating to Korea. Even after moving here, I had the opportunity to continue working part-time/freelancing as a developer. Having a strong technical background has given me an edge as I transitioned into AI-focused research and development.</p>
<p><strong>Q. What inspired you to work in Korea?</strong></p>
<p>I initially moved to Korea to pursue my graduate studies. At the time, I didn’t know much about the country, but I was curious to experience it. My university also offered me a full scholarship, which was a major incentive to make the move. Looking back, I wish I had done more research about what life in Korea would be like, but the experience has been very rewarding.</p>
<p>After graduating, I felt that staying here was the right choice so I could continue contributing to either academia or the industry. I initially leaned toward pursuing an academic path, but as a non-Korean researcher, it was a bit challenging to find long-term opportunities. At the same time, I wanted to explore research roles in the industry. I was fortunate enough to connect with one of the co-founders of my current company through LinkedIn, which led me to my current position. It wasn’t easy finding a job at first, as my research area is quite niche and the AI job market is very competitive, but I’m glad I was able to find a meaningful role that aligns with my expertise.</p>
<h2>Experience working in Korea</h2>
<p><strong>Q. Tell us briefly about your company (size, industry focus, notable achievements).</strong></p>
<p><a href="https://aim-intelligence.com/en">AIM Intelligence</a> has around 15 members working across different areas, including research, product development, and management. We primarily focus on AI Safety, especially red teaming AI systems and developing monitoring and guardrail tools for enterprises. Our clients include major companies such as LG, KT, and leading banks like Woori and KB. We’re currently in the pre-Series A funding stage and expanding our client base both in Korea and internationally, helping organizations make their AI systems safer and more secure. We also engage in frontier research, publishing papers in top-tier conferences such as ICML, ACL, and AAAI, work that my team and I are actively working on. In the long term, we aim, no pun intended, to become a global leader in AI safety infrastructure, enabling enterprises to deploy AI systems responsibly and securely.</p>
<p><strong>Q. How did you find your current job? Was the hiring process challenging as a foreigner?</strong></p>
<p>As mentioned before, I found my job through LinkedIn. I was lucky enough that one of the founders of AIM Intelligence replied to my message, checked out my profile, and gave me a chance to prove myself. Things worked out from there, I interned for a while and eventually transitioned into a full-time role.</p>
<p>If anything, I’d say having a polished LinkedIn profile and not being afraid to reach out directly can make a big difference, especially as a foreigner in Korea.</p>
<p><strong>Q. Can you describe your typical workday?</strong></p>
<p>My workday usually starts around 11 a.m., which is when most of the team arrives. Before heading to the office, I have a small routine: I grab a coffee, take a moment to look outside, and mentally plan what I want to accomplish for the day. As someone who appreciates structure, this helps me set my priorities and start the day with clarity.</p>
<p>Once I get to the office, I put on my headphones and dive into my work. We have meetings from time to time where we discuss project progress and how to approach different challenges. I really enjoy those brainstorming sessions because they broaden my perspective on AI Safety and help connect our research to real-world applications. Toward the end of the day, I like to review my progress and list down tasks for the next morning. It helps me stay organized and wrap up feeling productive.</p>
<p><strong>Q. How does Korean work culture compare to your home country&#39;s?</strong></p>
<p>In Ethiopia, work culture tends to be a bit more flexible and people generally communicate a bit more casually. In Korea, I’ve noticed there is more emphasis on structure, hierarchy, and being very considerate in how you communicate, especially in professional settings. Things move fast here, and there’s a strong sense of responsibility toward the team and the company.</p>
<p>At first, it took some adjustment, but over time, I came to appreciate the focus, organization, and teamwork mindset. It pushes you to stay sharp and deliver at a high standard. At the same time, I find that bringing a bit of open and direct communication from my background helps create a good balance.</p>
<p><strong>Q. Do you speak Korean at work? How is communication handled in your team?</strong></p>
<p>Our main working language is English, and most of my coworkers speak English really well, which makes collaboration smooth. My Korean is still beginner level, but I’m learning, and even a little Korean helps in day-to-day moments and team interactions.</p>
<p>Sometimes internal conversations or company-wide messages happen in Korean, so I have to rely on automated translators and ask questions when needed. Our team has a good culture of helping each other out, so communication hasn’t been as much of a barrier. As my Korean improves, I’m sure it’ll become even smoother.</p>
<p><strong>Q. What challenges have you faced adapting to Korea&#39;s work environment?</strong></p>
<p>The biggest challenge for me has been the language. Even though my colleagues speak English very well, I sometimes feel like I miss subtle context or important details when discussions happen in Korean. I also believe that communicating ideas in the local language can be more effective in a Korean company, so I’m actively working on improving my Korean to contribute more smoothly and confidently in team discussions.</p>
<h2>Lifestyle &amp; community</h2>
<p><strong>Q. What&#39;s your life outside of work like? How have you built your social life here?</strong></p>
<p>Outside of work, I usually spend time with my partner or work on side projects. I’ve always enjoyed building things. So whenever I run into a problem, I naturally start thinking about how to create digital solutions that can help me and others. My hope is that, over time, some of these projects will grow into a self-sustaining business.</p>
<p>When it comes to social life, it was challenging at first. As a foreigner in Korea, building a network isn’t always easy, and that was definitely true when I first moved here six years ago. But over time, I met great people, formed meaningful friendships, and even met my partner here, something I’m very grateful for. Outside of tech, I enjoy working out, exploring new cafes, and occasionally playing guitar, which always helps me recharge after a long week.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/interview-hiskias-dingeto_b34bc4c32036.jpg" alt="Hiskias Dingeto"></p>
<p><strong>Q. How much has knowing Korean (or learning it) helped in your daily life?</strong></p>
<p>My Korean is still at a beginner level, but even that little bit has helped me a lot in day-to-day life. Just being able to understand small things, like signs, basic conversations, or what people around me are talking about, really makes a difference. Over time, I’ve also honed my nunchi (눈치) to get a feel for what’s going on and follow along, which I think is an important skill anywhere in Korea. I’m sure I’ll have a lot more to say on this once my Korean improves over the next few months.</p>
<p><strong>Q. What was your biggest culture shock when you first arrived?</strong></p>
<p>I’m not sure if it counts as a major culture shock, but one of the first things that surprised me was how quiet public spaces are here. Subways, cafés, even the streets, they’re much quieter compared to cities I’d been to before, including Addis Ababa, where I grew up.</p>
<p>There were also smaller differences that stood out at first, like taking shoes off before entering homes and the lack of trash cans on the streets. They were surprising at the beginning, but I’m getting used to them over time.</p>
<h2>Reflections &amp; advice</h2>
<p><strong>Q. Do you plan to stay in Korea long-term, and how do you see your career evolving here?</strong></p>
<p>For now, my plan is to continue working in Korea for the foreseeable future. I feel like I’ve found my niche at AIM Intelligence, and I’m learning and growing a lot here. Long-term, my goal is to build my own AI company and eventually combine that with a path in academia, contributing to research while also running a business. Korea has been a supportive place for my career so far, and I see a lot of potential to keep building here.</p>
<p><strong>Q. What tips would you give to someone searching for a tech job in Korea?</strong></p>
<p>My best advice for anyone searching for a tech job in Korea is to really sell yourself and actively reach out to companies and people you’re interested in. These days, it’s not enough to just submit an application and wait. Be courageous and message recruiters, founders, and like-minded people. Building those connections expands your reach and opens doors that traditional applications alone might not.</p>
<p><strong>Q. What can Korean companies do to better support and integrate international employees?</strong></p>
<p>I think Korean companies can make things easier for international employees by keeping communication more accessible. Even small things like providing opportunities for Korean lessons, sharing key docs and meeting notes in English, and pairing new hires with an English-speaking Korean employee really helps. Clear expectations around career growth also matter; I believe this gives you confidence about where you&#39;re headed. </p>
<p>And honestly, little bits of support with everyday things like visas or office processes make a huge difference when you&#39;re new. None of this has to be complicated, it&#39;s really just about making sure people feel included and able to do their best work. I appreciate what AIM Intelligence has done in this regard.</p>
<p><strong>Q. What&#39;s one thing you wish you knew before moving here?</strong></p>
<p>Learn Korean whenever you get the chance — it makes daily life so much more comfortable. I also think it’s important to prepare yourself for the work or academic culture here. Understanding what qualities Korean colleagues value and how communication works can really help you adjust faster. For anyone thinking of moving here, I’d recommend spending time researching these things beforehand. </p>
<p>Also, prepare yourself for the pali-pali (빨리 빨리) culture. Things move fast here, and getting things done quickly is often expected. It’s very important to remember that adapting early will make the transition much smoother and help you enjoy your life in Korea more fully.</p>
<p><strong>Would you recommend Korea to other international tech professionals, and why?</strong></p>
<p>I think the Korean tech ecosystem can be challenging to navigate for international professionals, especially at first. The language barrier, cultural differences, and certain workplace norms can make the adjustment period harder compared to more globally-oriented markets. That said, the government is making real efforts to support foreign talent, and things are steadily improving.</p>
<p>For people who are willing to put in the effort, learn the culture, build relationships, and bridge those gaps, Korea has a lot to offer. It’s a fast-moving tech environment, and I believe it will only become more accessible and attractive for international talent in the coming years. </p>
<h2>Rapid fire</h2>
<ul>
<li><strong>Favorite Korean food:</strong> Fried chicken</li>
<li><strong>One must-visit place in Korea:</strong> Gangneung-si (강릉시)</li>
<li><strong>Most surprising thing about Korean tech culture:</strong> How fast things move. Korean tech culture mirrors the rest of Korean society in how quickly people work and execute ideas.</li>
<li><strong>Favorite Korean word or phrase:</strong> “김칫국 마시지 마,” which basically means “Don’t count your chickens before they hatch.” I find the expression amusing, but it also reminds me to stay grounded and not jump ahead of myself. It’s a good reminder to focus on the present and be prepared for unexpected outcomes.</li>
</ul>
<h2>Connect with Hiskias</h2>
<ul>
<li>LinkedIn: <a href="https://www.linkedin.com/in/hiskias-dingeto-5b05a2120">/in/hiskias-dingeto-5b05a2120</a></li>
</ul>
<p>If you want to be next and contribute, send us an email at <a href="mailto:florian@dev-korea.com">florian@dev-korea.com</a>.</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you’re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea’s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/beyond-the-lab-international-ai-researcher-korea_7d1efa9d.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[PostHog comes to Seoul: Dev Korea #3 Recap]]></title>
            <link>https://dev-korea.com/blog/posthog-comes-to-seoul-dev-korea-3-recap</link>
            <guid isPermaLink="false">d6491ef8-af5f-470b-ac2b-e8584124d390</guid>
            <pubDate>Fri, 14 Nov 2025 04:34:31 GMT</pubDate>
            <description><![CDATA[On October 16, we hosted Dev Korea #3, bringing together 75+ developers, founders, designers, and indie builders for a night focused on practical analytics, real-world product insights, and the growing international tech community in Seoul.]]></description>
            <content:encoded><![CDATA[<p>On October 16, we hosted Dev Korea #3, bringing together 75+ developers, founders, designers, and indie builders for a night focused on practical analytics, real-world product insights, and the growing international tech community in Seoul.</p>
<h2>🚀 Developer-first analytics, explained simply</h2>
<p>We opened the evening with a surprise greeting video from <a href="https://www.linkedin.com/in/j-hawkins">James Hawkins</a>, co-CEO of <a href="https://posthog.com/">PostHog</a>, who welcomed the Dev Korea community and encouraged developers to build fast, stay curious, and make data-informed decisions. It was a fun start and set the tone for the rest of the night.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251016_2a8339u8f4a3e.jpg" alt="James Hawkins"></p>
<p>Then <a href="https://www.linkedin.com/in/melvin-oostendorp/">Melvin Oostendorp</a> took the stage to break down developer-first analytics in a way that felt simple and actionable.</p>
<p>He showed how developers can:</p>
<ul>
<li>track meaningful events  </li>
<li>use session replay to understand real user behavior  </li>
<li>experiment safely with feature flags  </li>
<li>avoid “vanity metrics” and focus on what really matters  </li>
<li>make decisions based on user insights instead of assumptions</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251016_2a83395f4a3e.jpg" alt="Melvin Oostendorp"></p>
<p>His talk made analytics feel less like a chore and more like a superpower for product teams.</p>
<h2>📊 Real app examples from a Korean product team</h2>
<p>Next, <a href="https://www.linkedin.com/in/max-wiersma-jeong-juhyeon/">Max Wiersma</a> shared how he uses analytics inside <a href="https://topikeasy6.com/">TOPIK Easy6</a>, a React Native product built here in Korea.</p>
<p>He walked through:</p>
<ul>
<li>how they built a type-safe analytics system </li>
<li>how they track dozens of custom events  </li>
<li>how these insights shaped product decisions  </li>
<li>real examples of finding problems early and prioritizing what users actually care about</li>
</ul>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251016_2a84595f4a3e.jpg" alt="Max Wiersma"></p>
<p>It was a practical, honest look at how analytics works in real life. Not theory, but actual product stories.</p>
<p>The Q&amp;A naturally led to discussions about feature prioritization, user journeys, and how teams can stay aligned when making decisions.</p>
<h2>🎁 Swag, stickers &amp; the PostHog raffle</h2>
<p>After the talks, we shared a few Dev Korea community updates, and then it was time for swag.</p>
<p>Everyone picked up <strong>PostHog stickers</strong>, and we held a raffle for <strong>PostHog T-shirts and caps</strong>.<br>The winners celebrated like champions, of course.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251016_2a8339u8f4a3e1.jpg" alt="Stickers"></p>
<p>The speakers stayed around to chat, answer questions, and meet people across the community — one of the best parts of every Dev Korea evening.</p>
<h2>🍕 Pizza, drinks &amp; the Dev Korea vibe</h2>
<p>As always, we wrapped up the night with <strong>pizza, drinks, and free-flowing conversations</strong>.</p>
<p><img src="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-assets/devkorea-meetup-20251016_2a8339u8f4a4te.jpg" alt="Food"></p>
<p>People talked about the apps they’re building, product challenges, startup ideas, and life in Korea’s tech scene.<br>Newcomers made their first friends.<br>Old friends reconnected.  </p>
<p>It was warm, open, and full of energy, exactly the Dev Korea vibe we aim for every time.</p>
<h2>🙌 Huge thanks</h2>
<p>This event wouldn’t have been possible without:</p>
<ul>
<li><strong><a href="https://posthog.com/">PostHog</a></strong> for the support, stickers, swag, and greeting video</li>
<li><strong><a href="https://startup.google.com/campus/seoul/">Google for Startups Campus</a></strong> for allowing us to use their great event space</li>
<li><strong><a href="https://www.linkedin.com/in/melvin-oostendorp/">Melvin Oostendorp</a></strong> and <strong><a href="https://www.linkedin.com/in/max-wiersma-jeong-juhyeon/">Max Wiersma</a></strong> for their thoughtful and practical talks  </li>
<li>Our 3 incredible volunteers <strong><a href="https://www.linkedin.com/in/ashtonbradleyreed/">Ashton Reed</a></strong>, <strong><a href="https://www.linkedin.com/in/typos-bro/">Azizbek Umidjonov</a></strong>, <strong><a href="https://www.linkedin.com/in/bertijn-pauwels/">Bertijn Pauwels</a></strong> who made everything flow seamlessly from start to finish</li>
<li>And <strong>all 75+ attendees</strong> who brought curiosity, kindness, and conversation</li>
</ul>
<p>You’re what makes Dev Korea special.</p>
<h2>👀 What’s next</h2>
<p>We’re lining up even more exciting meetups with global startups and local innovators. Stay tuned — and don’t miss the next one! Check out <a href="https://dev-korea.com/events">dev-korea.com/events</a> to stay updated on what we&#39;re cooking up next.</p>
<p>Want to stay connected with what we&#39;re building? Follow us on <a href="https://www.linkedin.com/company/dev-korea">LinkedIn</a>, <a href="https://x.com/dev_korea">X</a>, join our <a href="https://discord.gg/hqzMbuXy73">Discord server</a>, and subscribe to our <a href="http://dev-korea.com/">Weekly Dev Korea Digest Newsletter</a> for all the latest updates.</p>
<p>Here’s to more nights of learning, building, and meaningful community in Seoul. 🍻✨</p>
<hr>
<p><strong>Ready to explore your next move?</strong> Visit <a href="https://dev-korea.com/">Dev Korea</a> to check the <a href="https://dev-korea.com/jobs">latest job openings</a>, or if you’re an employer, <a href="https://dev-korea.com/post-a-job">post a job</a> and connect with our vibrant community of tech talent eager to contribute to Korea’s innovation ecosystem.</p>
]]></content:encoded>
            <enclosure url="https://oskgbyulltihalitrjhl.supabase.co/storage/v1/object/public/article-banners/posthog-comes-to-seoul-dev-korea-3-recap_ada39eda.jpg" length="0" type="image/jpg"/>
        </item>
    </channel>
</rss>