import { Experience } from "./types";
class WorkExperience {
getExperiences(): Experience[] {
return [
{
title: "Software Engineer",
company: "Open Inside",
period: "November 2023 – Present",
location: "Bahrain",
achievements: [
"Designed, developed, and maintained custom Odoo modules and solutions, focusing on code reusability and efficiency.",
"Built base engines/systems (Workflow, Notification) for internal developer use, significantly reducing customization time.",
"Reduced Workflow Module customization from ~1 week to 1 day by implementing a flexible state machine pattern and reusable abstract models.",
"Reduced Notification engine module customization from 2-3 days to ~10 minutes by creating a centralized API and configurable templates.",
"Developed and implemented an automated voting system for board members, transitioning critical governance processes from manual spreadsheets to a secure digital platform.",
"Created dynamic tools using Odoo and Python libraries for building and generating complex, user-configurable Excel reports.",
"Developed custom dashboard components and views to visualize key operational data in charts for management decision-making.",
"Conducted customer calls to gather, clarify, and document detailed project requirements, translating business needs into technical specifications.",
"Mentored and provided technical guidance to development team members.",
"Participated in the hiring process by conducting initial technical screenings for software engineer candidates.",
"Incorporated and utilized LLM APIs (e.g., Cluade, Gemini) for tasks such as code generation assistance and data analysis prototyping.",
"Managed project tasks and lifecycles, ensuring timely delivery and communication."
],
clients: [
"Mohammed Bin Nahar Al Qahtani Trading Company (binnahar)",
"Cyberani (by Aramco)",
"Jahez",
"Health Holding Company (HHC)"
]
}, {
title: "Training (Odoo Development)",
company: "Open Inside",
period: "July 2018 (3 Months), July 2019 (3 Months), July 2021 (3 Months)",
location: "Bahrain",
achievements: [
"Gained foundational and advanced practical skills in Odoo development, module customization, and business process implementation through multiple intensive training periods."
]
}
];
}
}
export default new WorkExperience();