<?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: Sam</title>
    <description>The latest articles on DEV Community by Sam (@awwsamu).</description>
    <link>https://dev.to/awwsamu</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%2F1678819%2Fe77eacdd-3e73-46d5-9896-1a4330ffb55d.png</url>
      <title>DEV Community: Sam</title>
      <link>https://dev.to/awwsamu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/awwsamu"/>
    <language>en</language>
    <item>
      <title>Building a Niche Job Board as a Developer: Why Domain Knowledge Matters</title>
      <dc:creator>Sam</dc:creator>
      <pubDate>Sat, 14 Mar 2026 20:12:17 +0000</pubDate>
      <link>https://dev.to/awwsamu/building-a-niche-job-board-as-a-developer-why-domain-knowledge-matters-468h</link>
      <guid>https://dev.to/awwsamu/building-a-niche-job-board-as-a-developer-why-domain-knowledge-matters-468h</guid>
      <description>&lt;p&gt;Over the past couple of years I’ve built and run a niche job board for &lt;a href="https://zerotaxjobs.com" rel="noopener noreferrer"&gt;software engineers looking for work in Dubai and Saudi Arabia&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;What started as a small side project eventually grew into something that now gets around 100,000 page views a month and ranks well for a number of fairly specific search terms.&lt;/p&gt;

&lt;p&gt;Recently I decided to start building a second job board.&lt;/p&gt;

&lt;p&gt;But this time I approached it quite differently.&lt;/p&gt;

&lt;p&gt;When I built the first site, I mostly thought about the technical side of the problem. I wanted an excuse to build a full stack web application in Go, and a job board seemed like a straightforward project.&lt;/p&gt;

&lt;p&gt;After running one for a couple of years, I realised something important:&lt;/p&gt;

&lt;p&gt;The software is not the hard part.&lt;/p&gt;

&lt;p&gt;Understanding the industry you’re building for is the hard part.&lt;/p&gt;

&lt;p&gt;That insight shaped how I approached the second project.&lt;/p&gt;

&lt;h2&gt;
  
  
  Job Boards Are Not Really a Software Problem
&lt;/h2&gt;

&lt;p&gt;When developers think about building a job board, they usually focus on engineering questions.&lt;/p&gt;

&lt;p&gt;Things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;search functionality&lt;/li&gt;
&lt;li&gt;recommendation systems&lt;/li&gt;
&lt;li&gt;user accounts&lt;/li&gt;
&lt;li&gt;dashboards&lt;/li&gt;
&lt;li&gt;fancy frontends&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But those things are rarely what makes or breaks a job board.&lt;/p&gt;

&lt;p&gt;A job board really lives or dies based on two things:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Whether it consistently has relevant jobs&lt;/li&gt;
&lt;li&gt;Whether it understands a specific audience&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Technically, the web application can be extremely simple.&lt;/p&gt;

&lt;p&gt;If you look at many successful niche job boards, they are not particularly complex systems. What makes them work is that they serve a very specific group of people well.&lt;/p&gt;

&lt;p&gt;That’s what I kept in mind when thinking about my next project.&lt;/p&gt;

&lt;h2&gt;
  
  
  Choosing the Niche: Remote Legal Jobs
&lt;/h2&gt;

&lt;p&gt;For the new site I decided to focus on &lt;a href="https://findremotelawjobs.com" rel="noopener noreferrer"&gt;helping lawyers find remote law jobs&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;At first glance that might sound like an unusual niche for a developer.&lt;/p&gt;

&lt;p&gt;But there was a simple reason behind the decision.&lt;/p&gt;

&lt;p&gt;Over the past few years I’ve worked with several law firms on software projects. Through that work I’ve had a chance to see how legal teams operate and how hiring tends to happen in that world.&lt;/p&gt;

&lt;p&gt;The legal profession is still quite traditional in many ways, but it has been slowly adapting.&lt;/p&gt;

&lt;p&gt;Most legal job boards are poorly structured and tend to mix legal roles together with thousands of unrelated listings.&lt;/p&gt;

&lt;p&gt;That makes searching inefficient.&lt;/p&gt;

&lt;p&gt;This combination made the niche interesting enough to explore.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Domain Knowledge Matters
&lt;/h2&gt;

&lt;p&gt;One thing I’ve learned from building niche sites is that choosing a niche you understand makes a huge difference.&lt;/p&gt;

&lt;p&gt;If you build something for an industry you know nothing about, you eventually run into problems.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;You don’t know what terminology people use.&lt;/p&gt;

&lt;p&gt;You struggle to write useful content.&lt;/p&gt;

&lt;p&gt;You can’t easily tell which jobs are actually relevant.&lt;/p&gt;

&lt;p&gt;And you often misunderstand how hiring works in that field.&lt;/p&gt;

&lt;p&gt;Those gaps become obvious over time.&lt;/p&gt;

&lt;p&gt;If the project grows even slightly, you will eventually need to write articles, guides, or commentary related to the industry itself. Doing that convincingly is extremely difficult if you don’t actually understand the space.&lt;/p&gt;

&lt;p&gt;Because I’ve worked with law firms before, I felt comfortable building something around that world.&lt;/p&gt;

&lt;p&gt;Not because I’m a lawyer, but because I’ve had enough exposure to the industry to understand how people in that profession talk about work and careers.&lt;/p&gt;

&lt;p&gt;That’s a much stronger position than simply picking a random niche from a list of job categories.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building the Site
&lt;/h2&gt;

&lt;p&gt;From a technical perspective the site itself is intentionally simple.&lt;/p&gt;

&lt;p&gt;The stack looks like this:&lt;/p&gt;

&lt;p&gt;Backend: Go&lt;br&gt;
Database: PostgreSQL&lt;br&gt;
Frontend: server-rendered HTML templates&lt;/p&gt;

&lt;p&gt;There are also a few background processes that keep listings updated and ensure the site stays current.&lt;/p&gt;

&lt;p&gt;Nothing about the architecture is particularly exotic.&lt;/p&gt;

&lt;p&gt;In fact, one of the things I enjoy about these kinds of projects is how far you can get with very straightforward technology.&lt;/p&gt;

&lt;p&gt;You don’t need a complex distributed system to build something useful.&lt;/p&gt;

&lt;p&gt;Most of the engineering effort actually goes into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;structuring job data cleanly&lt;/li&gt;
&lt;li&gt;categorising listings properly&lt;/li&gt;
&lt;li&gt;making the information easy to navigate&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Those problems are less about complicated software engineering and more about data organisation and product thinking.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Simple Systems Work Best for Side Projects
&lt;/h2&gt;

&lt;p&gt;Another advantage of keeping the system simple is that the project stays easy to maintain.&lt;/p&gt;

&lt;p&gt;That matters a lot for side projects.&lt;/p&gt;

&lt;p&gt;If a project requires constant attention or complicated infrastructure, it quickly becomes exhausting. But if the system is lightweight, you can continue improving it gradually without it consuming your life.&lt;/p&gt;

&lt;p&gt;That’s been my experience with niche job boards.&lt;/p&gt;

&lt;p&gt;Once the basic structure is working, improvements tend to happen in small increments:&lt;/p&gt;

&lt;p&gt;refining job categories&lt;br&gt;
improving the presentation of listings&lt;br&gt;
adding useful content around the niche&lt;/p&gt;

&lt;p&gt;None of these changes are technically complicated, but over time they make the site much more useful.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Developers Can Learn From Niche Products
&lt;/h2&gt;

&lt;p&gt;Working on projects like this has reinforced something I think many developers underestimate.&lt;/p&gt;

&lt;p&gt;Building useful products is rarely just about the technology.&lt;/p&gt;

&lt;p&gt;It’s about understanding a specific group of people and creating something that genuinely helps them.&lt;/p&gt;

&lt;p&gt;For niche job boards that means understanding:&lt;/p&gt;

&lt;p&gt;how hiring works in a specific industry&lt;br&gt;
what job seekers struggle with&lt;br&gt;
how professionals in that field talk about their work&lt;/p&gt;

&lt;p&gt;The software itself is just the mechanism that delivers the value.&lt;/p&gt;

&lt;p&gt;The real advantage comes from understanding the niche.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Starting a niche job board isn’t particularly difficult from a technical perspective.&lt;/p&gt;

&lt;p&gt;But making one useful requires a deeper understanding of the people you’re building it for.&lt;/p&gt;

&lt;p&gt;If you’re a developer thinking about building something similar, my advice is simple.&lt;/p&gt;

&lt;p&gt;Choose a niche you actually understand.&lt;/p&gt;

&lt;p&gt;Ideally it should be an industry where:&lt;/p&gt;

&lt;p&gt;you know how people talk about their work&lt;br&gt;
you understand how hiring happens&lt;br&gt;
you feel comfortable writing about the space&lt;/p&gt;

&lt;p&gt;That combination makes it much easier to build something credible.&lt;/p&gt;

&lt;p&gt;The technology is the easy part.&lt;/p&gt;

&lt;p&gt;Understanding the audience is the real challenge.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>go</category>
      <category>sideprojects</category>
      <category>career</category>
    </item>
    <item>
      <title>Dubai Average Software Developer Salaries in 2024</title>
      <dc:creator>Sam</dc:creator>
      <pubDate>Fri, 27 Sep 2024 22:49:21 +0000</pubDate>
      <link>https://dev.to/awwsamu/dubai-average-software-developer-salaries-in-2024-4865</link>
      <guid>https://dev.to/awwsamu/dubai-average-software-developer-salaries-in-2024-4865</guid>
      <description>&lt;p&gt;Navigating the salary landscape for software engineers in Dubai can be complex, with significant variations based on company type. This article highlights the core differences between top companies and budget companies and what developers can realistically expect in terms of compensation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Top Companies in Dubai
&lt;/h2&gt;

&lt;p&gt;These include major players like Microsoft, Amazon, Oracle, and dynamic local startups such as Careem and Noon. They generally offer competitive pay to attract global talent.&lt;/p&gt;

&lt;p&gt;Junior Software Engineer: $38,000 - $49,000 USD (AED 140,000 - AED 180,000)&lt;br&gt;
Mid-Level Software Engineer: $60,000 - $85,000 USD (AED 220,000 - AED 310,000)&lt;br&gt;
Senior Software Engineer: $91,000 - $136,000 USD (AED 330,000 - AED 500,000)&lt;br&gt;
Engineering Manager: $125,000 - $204,000 USD (AED 460,000 - AED 750,000)&lt;/p&gt;

&lt;h2&gt;
  
  
  Budget Companies in Dubai
&lt;/h2&gt;

&lt;p&gt;These typically include agencies, smaller consultancies, or businesses outside of the tech sector. Salaries tend to be significantly lower due to limited budgets.&lt;/p&gt;

&lt;p&gt;Junior Software Engineer: $9,500 - $19,000 USD (AED 35,000 - AED 70,000)&lt;br&gt;
Mid-Level Software Engineer: $17,700 - $32,700 USD (AED 65,000 - AED 120,000)&lt;br&gt;
Senior Software Engineer: $35,400 - $49,000 USD (AED 130,000 - AED 180,000)&lt;br&gt;
Engineering Manager: $49,000 - $68,000 USD (AED 180,000 - AED 250,000)&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Insights on Dubai's Software Engineer Salaries
&lt;/h2&gt;

&lt;p&gt;The variation in salaries often stems from whether companies are targeting local talent or bringing in skilled professionals from abroad. Additionally, reports from platforms like Levels.fyi, Glassdoor, and GulfTalent often provide inconsistent data because they mix figures from both premium and budget companies.&lt;/p&gt;

&lt;h2&gt;
  
  
  Realistic Salary Projections
&lt;/h2&gt;

&lt;p&gt;For a more detailed analysis on how salary expectations differ by experience and company type, check out the complete guide: &lt;a href="https://medium.com/@zerotaxjobs/dubai-average-software-developer-salaries-in-2024-4771f89cdae0" rel="noopener noreferrer"&gt;Full Guide on Dubai Software Engineer Salaries.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>dubai</category>
      <category>career</category>
    </item>
    <item>
      <title>Software Engineer in Dubai: Jobs, Salary &amp; Challenges Explained for Fresh Graduates and Entry-Level Professionals</title>
      <dc:creator>Sam</dc:creator>
      <pubDate>Tue, 25 Jun 2024 20:31:55 +0000</pubDate>
      <link>https://dev.to/awwsamu/software-engineer-in-dubai-jobs-salary-challenges-explained-for-fresh-graduates-and-entry-level-professionals-1n51</link>
      <guid>https://dev.to/awwsamu/software-engineer-in-dubai-jobs-salary-challenges-explained-for-fresh-graduates-and-entry-level-professionals-1n51</guid>
      <description>&lt;p&gt;If you're a fresh graduate, entry-level engineer, or junior developer finding your first job in Dubai is challenging.&lt;/p&gt;

&lt;p&gt;This article provides realistic and practical advice for freshers seeking software engineering jobs in Dubai.&lt;/p&gt;

&lt;h2&gt;
  
  
  Understanding the Job Market for Freshers in Dubai
&lt;/h2&gt;

&lt;p&gt;Dubai’s tech industry, while growing, is still small compared to major tech hubs like the USA, India, or Europe.&lt;/p&gt;

&lt;p&gt;The overall market size in the UAE is estimated to be around $25 to $35 billion. It's also close to tech markets which have a relatively low average salary. For example, nearby India, which boasts a $250 billion market has a lower average wage than in Dubai. &lt;/p&gt;

&lt;p&gt;This means that there are a lot of skilled engineers who are interested in relocating to Dubai, given the perceived increase in wages and the relatively easy visa process. This is why competition for positions in Dubai is fierce.&lt;/p&gt;

&lt;p&gt;For fresh graduates and junior software developers, the issues is exacerbated, by the fact that companies in Dubai prefer hiring experienced professionals who can handle multiple tasks and mentor staff. &lt;/p&gt;

&lt;p&gt;If you're going to land a job in Dubai, you therefore need to be aware of this and realise that getting a job as a fresher will take a lot of hard work and determination. &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Preferred Skills and Experience&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Most companies in Dubai are on the lookout for versatile professionals. Generally for less skilled developers your opportunities are goign to fall into two camps; web development and full-stack development. Here's a breakdown of the skills you need for each:&lt;/p&gt;

&lt;h3&gt;
  
  
  Web Development:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Front-End Technologies&lt;/strong&gt;: Proficiency in HTML, CSS, JavaScript, and frameworks like React or Vue.js.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mobile Optimization&lt;/strong&gt;: Skills in creating mobile-friendly websites and improving page performance.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SEO and Performance&lt;/strong&gt;: Understanding of search engine optimization and web performance metrics.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Full-Stack Development:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Back-End Technologies&lt;/strong&gt;: Knowledge of languages like Node.js, Java, and Python.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database Management&lt;/strong&gt;: Experience with both SQL and NoSQL databases.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DevOps&lt;/strong&gt;: Basic understanding of DevOps practices and tools to manage end-to-end development processes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Companies to Target
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Government and Semi-Government Entities:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Emirates&lt;/strong&gt;: A leading airline requiring robust web and full-stack development skills.&lt;br&gt;
&lt;strong&gt;Government Portals&lt;/strong&gt;: Various government entities need dedicated web developers for their portals.&lt;/p&gt;

&lt;h3&gt;
  
  
  Private Sector:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Tech Consultancies&lt;/strong&gt;: Firms like Hays and Robert Half frequently list tech job openings.&lt;br&gt;
&lt;strong&gt;Real Estate Companies&lt;/strong&gt;: The booming real estate market needs developers to manage property listing websites.&lt;br&gt;
&lt;strong&gt;E-commerce&lt;/strong&gt;: Companies like Dubizzle and Noon offer tech roles focused on product and service development.&lt;/p&gt;

&lt;h2&gt;
  
  
  Salary Expectations
&lt;/h2&gt;

&lt;p&gt;For a detailed overview of salaries I recommend this &lt;a href="https://zerotaxjobs.com/articles/software-engineer-salaries-in-dubai"&gt;full guide to the average software engineer salaries in Dubai&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;However for fresh graduates and entry-level positions, most opportunities will be at companies with small budgets so unfortunately, the salaries in Dubai tend to be quite low.&lt;/p&gt;

&lt;h3&gt;
  
  
  Web Developers:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Starting Salary&lt;/strong&gt;: Approximately 5,000 AED per month. (~$1360 USD) &lt;/p&gt;

&lt;h3&gt;
  
  
  Full-Stack Developers:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Starting Salary&lt;/strong&gt;: Around 15,000 AED per month. (~$4080 USD)&lt;/p&gt;

&lt;p&gt;These are starting salaries, and whilst this salaries could seem reasonable to people from more economical countries, you need to appreciate that Dubai is not a cheap place to live, so these salaries do not go far. I recommend using this &lt;a href="https://zerotaxjobs.com/tools/dubai-software-engineer-salary-calculator"&gt;Dubai Software Engineer Salary and Cost of Living Calculator&lt;/a&gt; to calculate how your finances might be affected by moving to Dubai. &lt;/p&gt;

&lt;h2&gt;
  
  
  Overcoming Challenges
&lt;/h2&gt;

&lt;p&gt;As explained, the biggest challenges fresh graduates face is the high competition for jobs, coupled with the preference for experienced candidates. Here are some strategies to overcome this:&lt;/p&gt;

&lt;h3&gt;
  
  
  Development Experience:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Internships&lt;/strong&gt;: Seek internships that provide hands-on experience.&lt;br&gt;
&lt;strong&gt;Side Projects&lt;/strong&gt;: Develop personal or open-source projects to build your portfolio.&lt;br&gt;
&lt;strong&gt;Freelancing&lt;/strong&gt;: Take up freelance projects to gain practical experience.&lt;/p&gt;

&lt;h3&gt;
  
  
  Check My Job Listings:
&lt;/h3&gt;

&lt;p&gt;You can visit my own &lt;a href="https://zerotaxjobs.com/"&gt;site to find a software engineering job in Dubai&lt;/a&gt;. However, I generally find our jobs skewed towards senior positions, because junior positions are often filled through references and might not be publicly listed. &lt;/p&gt;

&lt;h3&gt;
  
  
  Networking:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;LinkedIn&lt;/strong&gt;: Use LinkedIn to connect with professionals in your field. Engage with posts and join relevant groups.&lt;br&gt;
&lt;strong&gt;Tech Conferences&lt;/strong&gt;: Attend conferences like GITEX to meet industry professionals and learn about the latest trends.&lt;/p&gt;

&lt;h3&gt;
  
  
  Recruitment Agencies:
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://www.hays.ae/recruitment-services"&gt;Hays&lt;/a&gt;&lt;/strong&gt;: A well-known consultancy that frequently lists tech job opportunities.&lt;br&gt;
&lt;strong&gt;&lt;a href="https://www.roberthalf.ae/"&gt;Robert Half&lt;/a&gt;&lt;/strong&gt;: Another prominent consultancy specializing in tech placements.&lt;/p&gt;

&lt;h3&gt;
  
  
  Improving Personal Skills
&lt;/h3&gt;

&lt;p&gt;While technical skills are crucial, soft skills like communication and presentation are equally important. Given Dubai's multicultural environment, you’ll be working with people from various nationalities. Here’s how to enhance your personal skills:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Communication Skills&lt;/strong&gt;: Practice clear and effective communication.&lt;br&gt;
&lt;strong&gt;Presentation Skills&lt;/strong&gt;: Learn how to present your ideas confidently.&lt;br&gt;
&lt;strong&gt;Cultural Awareness&lt;/strong&gt;: Be mindful of cultural differences and learn to work in diverse teams.&lt;/p&gt;

&lt;h3&gt;
  
  
  Leveraging Referrals
&lt;/h3&gt;

&lt;p&gt;Referrals are a significant part of the hiring process in Dubai. Here’s how to leverage them:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Networking&lt;/strong&gt;: Build a professional network on LinkedIn and other platforms.&lt;br&gt;
&lt;strong&gt;Employee Referrals&lt;/strong&gt;: Reach out to current employees of your target companies and request referrals.&lt;/p&gt;

&lt;h3&gt;
  
  
  Timing Your Job Search
&lt;/h3&gt;

&lt;p&gt;The job market in Dubai has seasonal fluctuations. The best times to apply for jobs are outside of the major vacation periods:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Avoid&lt;/strong&gt;: Mid-December to mid-January (winter vacation) and July to August (summer vacation).&lt;br&gt;
&lt;strong&gt;Best Time&lt;/strong&gt;: February to June and September to November.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Starting a career as a software engineer in Dubai can be challenging, especially for fresh graduates and entry-level professionals. However, by understanding the market dynamics, honing your technical and personal skills, and leveraging the right resources, you can navigate these challenges successfully. Be realistic about the competition and salary expectations, but remain hopeful and diligent in your job search. Dubai's tech industry is growing, and with the right approach, you can find opportunities that align with your career goals.&lt;/p&gt;

&lt;p&gt;If you found this article helpful, feel free to &lt;a href="https://zerotaxjobs.com/about"&gt;reach out with any questions or comments about working as a software engineer in Dubai&lt;/a&gt;. Your feedback helps me provide more targeted and useful advice. &lt;/p&gt;

&lt;p&gt;Good luck with your job search!&lt;/p&gt;

</description>
      <category>career</category>
      <category>careerdevelopment</category>
      <category>dubai</category>
    </item>
  </channel>
</rss>
