;; =====================================================================
;; 01. BIO & SYSTEM INITIALIZATION
;; =====================================================================
(defclass <bio-interface> (<humanoid>)
((name :initform "Billah Muayyat")
(roles :initform '("CEO @ Insolify" "Senior Software & AI Engineer"))
(email :initform "hi@muayyat.com")))
;; SUMMARY_EVAL:
;; Senior Software Engineer, Artificial Intelligence Engineer, Robotics
;; specialist, and Entrepreneur. Driving global SaaS innovation across
;; the EMEA region, North America, and Asia.
(defun check-diagnostics ()
(let ((vital-signs "Alive....")
(life-progress "[█████░░░░░░░░░░░░] 28% Loading Life..."))
(format t "~a ~% ~a" vital-signs life-progress)))
;; =====================================================================
;; 02. RECURSIVE EXPERIENCE MATRIX
;; =====================================================================
(defun spawn-career-threads (experience-list)
(mapcar #'(lambda (job)
(eval `(deploy-to-production ,job)))
'(
(:org "Insolify_Limited" :role "CEO & Sr. Software Eng" :span (2017 . present))
(:org "Settle_Africa" :role "AI Engineer" :span (2023 . present))
(:org "Shopify_Partners" :role "Full Stack Developer" :span ("Jul 2016" . "Sep 2019"))
)))
#|
ARCHIVED DEPLOYMENTS (Garbage Collected):
[2020-2022] Hibernate Technologies - AI Engineer (India)
[2021-2022] Uniccon Group - Senior Manager (Abuja, NG)
[2019-2020] Corestream Networks - Software Engineer (Jos, NG)
[2018-2018] Premier Gears LLC - Web Developer (CT, USA)
[2017-2018] Habibi Express - Business Manager (Kuwait)
[2016-2017] Toysopoly - Frontend Developer (CA, USA)
[2014-2016] Syzant Technologies - Dev/Marketer (Kerala, India)
|#
;; =====================================================================
;; 03. AWARDS & RECOGNITION (MACRO EXPANSION)
;; =====================================================================
(defvar *accolades*
(hash-table
'Fintech_Movers "Award of Exceptional Abilities | Lapi, Finland (Sept 2021)"
'Hope_Event "Saudi Arabia Ministry of Information Technology (May 2020)"))
;; =====================================================================
;; 04. KNOWLEDGE BASE & DOMAINS
;; =====================================================================
(defun fetch-education-records ()
'("University Program - Artificial Intelligence (2021)"
"Abubakar Tafawa Balewa University - Electronics/Electrical Eng. (2013-2019)"))
(defun fetch-research-pointers ()
'("Medical Recommendation using Symptoms analysis"
"Payments across Africa: The challenges and solutions"
"Blogify: A simple CMS for blogging"))
(loop for domain in
'("Robotics & IOT (2014 - Present)"
"Web & Mobile Dev [Backend/Frontend] (2009 - Present)"
"Software Engineering [C, Design, Database] (2012 - Present)"
"Artificial Intelligence [Algorithms, Computations] (2015 - Present)"
"Business Development & Tech Valuation (2018 - Present)")
do (execute-mastery domain))