<?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: Nishant K</title>
    <description>The latest articles on DEV Community by Nishant K (@futureforge2026).</description>
    <link>https://dev.to/futureforge2026</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%2F3982892%2F08c4914f-2613-40a2-b885-d4a333febfd6.png</url>
      <title>DEV Community: Nishant K</title>
      <link>https://dev.to/futureforge2026</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/futureforge2026"/>
    <language>en</language>
    <item>
      <title>Building a Global Career Opportunity Simulator Using World Bank and ESCO Data</title>
      <dc:creator>Nishant K</dc:creator>
      <pubDate>Sat, 13 Jun 2026 16:30:23 +0000</pubDate>
      <link>https://dev.to/futureforge2026/building-a-global-career-opportunity-simulator-using-world-bank-and-esco-data-fmo</link>
      <guid>https://dev.to/futureforge2026/building-a-global-career-opportunity-simulator-using-world-bank-and-esco-data-fmo</guid>
      <description>&lt;p&gt;&lt;strong&gt;Building a Global Career Opportunity Simulator Using World Bank and ESCO Data&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Over the past few years, I have noticed that many discussions about career opportunities focus on a single number: salary.&lt;/p&gt;

&lt;p&gt;When people evaluate opportunities in different countries, the conversation often starts and ends with compensation.&lt;/p&gt;

&lt;p&gt;While salary is important, it rarely tells the full story.&lt;/p&gt;

&lt;p&gt;Economic conditions, labour market dynamics, occupation demand, inflation, and broader country level indicators can all influence what a career opportunity actually looks like in practice.&lt;/p&gt;

&lt;p&gt;That observation led me to build the Global Future Impact Simulator.&lt;/p&gt;

&lt;p&gt;The idea was simple: combine publicly available economic data with occupational classification data to provide a broader perspective on career opportunities across different countries.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why I Built It&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The initial motivation came from a simple question.&lt;/p&gt;

&lt;p&gt;When someone is considering a career move, how do they evaluate whether an opportunity is genuinely attractive?&lt;/p&gt;

&lt;p&gt;Most people look at salary first.&lt;/p&gt;

&lt;p&gt;However, comparing salaries across countries without additional context can be misleading.&lt;/p&gt;

&lt;p&gt;A salary that appears attractive on paper may look very different when considered alongside economic conditions, labour market trends, or country specific factors.&lt;/p&gt;

&lt;p&gt;I wanted to build a tool that brought some of this information together in a single place and made it easier to explore.&lt;/p&gt;

&lt;p&gt;Rather than searching multiple websites and datasets, users could enter a country, occupation, and salary and receive a broader picture of the opportunity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bringing Different Data Sources Together&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the most interesting parts of the project was combining different types of information.&lt;/p&gt;

&lt;p&gt;The simulator uses occupational classification data from ESCO alongside economic indicators derived from World Bank datasets.&lt;/p&gt;

&lt;p&gt;These sources serve different purposes.&lt;/p&gt;

&lt;p&gt;ESCO helps identify occupations and related career pathways, while economic indicators provide additional context about the environment in which those occupations exist.&lt;/p&gt;

&lt;p&gt;Bringing these datasets together created an opportunity to provide insights that neither source could offer independently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Challenge of Occupation Matching&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The challenge encountered was occupation matching.&lt;/p&gt;

&lt;p&gt;People rarely use job titles in a perfectly standardised way.&lt;/p&gt;

&lt;p&gt;Two professionals performing similar work may describe their roles differently.&lt;/p&gt;

&lt;p&gt;For example, someone may enter a job title that does not directly match a standard occupation classification.&lt;/p&gt;

&lt;p&gt;To address this, the simulator attempts to identify related occupations from the ESCO framework and present relevant matches.&lt;/p&gt;

&lt;p&gt;This helps users discover similar occupational categories that may be useful when exploring opportunities.&lt;/p&gt;

&lt;p&gt;Developing this matching process was one of the most interesting parts of the project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Designing for Simplicity&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Someting that was a learning curve during development is that users generally prefer clarity over complexity.&lt;/p&gt;

&lt;p&gt;It is easy to continue adding new metrics, indicators, and visualisations.&lt;/p&gt;

&lt;p&gt;However, more information does not always create a better experience.&lt;/p&gt;

&lt;p&gt;Throughout development, I tried to focus on presenting information in a way that was useful without becoming overwhelming.&lt;/p&gt;

&lt;p&gt;The goal was to create something that could be understood quickly while still providing meaningful context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Surprised Me&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It came as a surprise how differently people interpret the same information.&lt;/p&gt;

&lt;p&gt;Some users focus almost entirely on salary.&lt;/p&gt;

&lt;p&gt;Others pay closer attention to broader economic indicators.&lt;/p&gt;

&lt;p&gt;Others are interested in how their occupation aligns with recognised occupational frameworks.&lt;/p&gt;

&lt;p&gt;This reinforced the idea that career decisions are rarely based on a single factor.&lt;/p&gt;

&lt;p&gt;Different people prioritise different aspects of an opportunity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I Would Improve Next&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If I were starting this project again, I would spend more time on the occupation matching logic earlier in the process.&lt;/p&gt;

&lt;p&gt;The most difficult part was not displaying the World Bank data. The harder part was making the output feel useful when a user enters a job title in their own words.&lt;/p&gt;

&lt;p&gt;For example, a person may type “operational technology engineer”, but public occupation datasets may describe related roles using different wording. That creates a real challenge when trying to return useful matches without overcomplicating the user experience.&lt;/p&gt;

&lt;p&gt;This is an area I want to keep improving.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Looking Ahead&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The simulator is not finished, and I can already see areas where it needs improvement.&lt;/p&gt;

&lt;p&gt;There are many opportunities to improve the experience, expand available data, and refine how information is presented.&lt;/p&gt;

&lt;p&gt;Future enhancements may include additional indicators, improved visualisations, and more advanced occupation matching capabilities.&lt;/p&gt;

&lt;p&gt;For me, the most rewarding aspect of the project has been the opportunity to combine multiple public datasets into a practical tool that people can use to explore career opportunities from a broader perspective.&lt;/p&gt;

&lt;p&gt;Building the simulator reinforced an important lesson.&lt;/p&gt;

&lt;p&gt;Good decisions are often made when information is viewed in context rather than isolation.&lt;/p&gt;

&lt;p&gt;Salary will always be an important part of evaluating opportunities, but it is rarely the only factor that matters.&lt;/p&gt;

&lt;p&gt;My goal was to build a tool that encourages a more complete view of the picture.&lt;/p&gt;

&lt;p&gt;You can explore the simulator here:&lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
      &lt;div class="c-embed__body flex items-center justify-between"&gt;
        &lt;a href="https://future-impact-simulator.vercel.app/" rel="noopener noreferrer" class="c-link fw-bold flex items-center"&gt;
          &lt;span class="mr-2"&gt;future-impact-simulator.vercel.app&lt;/span&gt;
          

        &lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>ai</category>
      <category>webdev</category>
      <category>opensource</category>
      <category>career</category>
    </item>
  </channel>
</rss>
