<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nolan Lwin</title>
    <description>The latest articles on DEV Community by Nolan Lwin (@nolanlwin).</description>
    <link>https://dev.to/nolanlwin</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3624804%2F2db03972-2a00-4f66-afeb-ccf4d5548874.jpg</url>
      <title>DEV Community: Nolan Lwin</title>
      <link>https://dev.to/nolanlwin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nolanlwin"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Nolan Lwin</dc:creator>
      <pubDate>Sun, 23 Nov 2025 23:00:06 +0000</pubDate>
      <link>https://dev.to/nolanlwin/-1nlh</link>
      <guid>https://dev.to/nolanlwin/-1nlh</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/nolanlwin" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3624804%2F2db03972-2a00-4f66-afeb-ccf4d5548874.jpg" alt="nolanlwin"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/nolanlwin/ai-in-legacy-code-modernization-2a0" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;AI in Legacy Code Modernization&lt;/h2&gt;
      &lt;h3&gt;Nolan Lwin ・ Nov 23&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#ai&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#opensource&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#coding&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#agents&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>ai</category>
      <category>opensource</category>
      <category>coding</category>
      <category>agents</category>
    </item>
    <item>
      <title>AI in Legacy Code Modernization</title>
      <dc:creator>Nolan Lwin</dc:creator>
      <pubDate>Sun, 23 Nov 2025 22:58:03 +0000</pubDate>
      <link>https://dev.to/nolanlwin/ai-in-legacy-code-modernization-2a0</link>
      <guid>https://dev.to/nolanlwin/ai-in-legacy-code-modernization-2a0</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hi, my name is Nolan, and I’m the creator of &lt;a href="https://www.github.com/astrio-ai/l2m" rel="noopener noreferrer"&gt;L2M (Legacy2Modern)&lt;/a&gt;. A few months ago, while searching for a meaningful direction for my thesis research, I stumbled upon a challenge that quietly burdens many companies: legacy codebases. These systems, often decades old, are messy, poorly maintained, and rarely documented. Yet they continue to power critical parts of our world.&lt;/p&gt;

&lt;p&gt;As I dug deeper, I became curious: &lt;em&gt;Is anyone using AI to meaningfully tackle the legacy code problem?&lt;/em&gt; To my surprise, the space felt wide open. That’s when I decided to commit to this topic and build L2M.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Legacy Code Still Matters&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Throughout human history, translation has played a crucial role in bridging cultures and enabling communication. With hundreds of languages, we rely on translation to preserve knowledge and collaborate across borders.&lt;/p&gt;

&lt;p&gt;In the world of software, code translation serves the same purpose—helping us move from one language, paradigm, or architecture to another. As technology evolves, the ability to translate and modernize old systems becomes increasingly important. Many organizations still rely on COBOL, Fortran, and other aging technologies that are difficult to maintain and even harder to extend.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Limitations of Traditional Approaches&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before AI, code translation was mostly performed using rule-based, AST-driven systems. While structured and deterministic, these approaches suffer from several limitations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They are brittle and hard to scale&lt;/li&gt;
&lt;li&gt;They require extensive manual engineering&lt;/li&gt;
&lt;li&gt;Enterprises struggle to adopt them because of their rigidity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;More recently, research efforts such as &lt;strong&gt;TransCoder&lt;/strong&gt; and &lt;strong&gt;CodeGen&lt;/strong&gt; from Facebook AI Research (FAIR) explored unsupervised machine-learning approaches to code translation. These models demonstrated promising accuracy and flexibility, but they faced a major constraint: they require large datasets of functionally equivalent code. As a result, they mainly support popular modern languages like Python, Java, Rust, Go, and C++, leaving out the legacy languages that need modernization the most.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Enter L2M&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;With L2M, I set out to build something different. Instead of relying solely on classical translation methods or limiting the scope to modern languages, L2M harnesses the power of large language models (LLMs).&lt;/p&gt;

&lt;p&gt;Our goal is to create an AI coding agent, similar to tools like Claude Code, but uniquely specialized in legacy code modernization. &lt;/p&gt;

&lt;p&gt;This includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Support for languages such as COBOL, Fortran, and others underserved by modern AI tools&lt;/li&gt;
&lt;li&gt;Integration of specialized AST parsers&lt;/li&gt;
&lt;li&gt;Curated legacy-focused datasets&lt;/li&gt;
&lt;li&gt;Additional tools tailored to legacy system analysis and refactoring&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By combining LLMs with domain-specific components, L2M aims to bring modern AI capabilities to the world of legacy systems, an area that has historically been overlooked.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Legacy software may feel outdated, but it remains the backbone of countless businesses and institutions. Modernizing these systems isn’t just a technical challenge; it’s an opportunity to preserve decades of knowledge while bringing stability and innovation to critical infrastructure.&lt;/p&gt;

&lt;p&gt;With L2M, I hope to make that transition smoother, smarter, and more accessible. This project is still evolving, but the mission is clear: bridge the gap between the systems of yesterday and the technologies of tomorrow.&lt;/p&gt;

&lt;p&gt;If you're interested in legacy modernization, AI-driven code translation, or collaborating on this research, please feel free to reach out to me. We're welcome to any open-source contributors.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Star&lt;/strong&gt; our repository to support us:&lt;br&gt;
&lt;a href="//www.github.com/astrio-ai/l2m"&gt;www.github.com/astrio-ai/l2m&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>coding</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
