π Experienced Software Engineer β Skilled in Informatica, SQL Server, PowerBI, and various other technologies.
π Avid lover of mathematics and programming, always seeking to solve complex problems with elegant solutions.
``` /* _Digital World Life Code_ */ bool SocialMedia() if (using) return true return false bool Partying() if (partying) return true return false bool Learning() if (everyday) return true return false bool WorkingOut() if (everyday) return true return false main() int growth = 0 if (SocialMedia() || Partying()) growth -= 1 if (SocialMedia() && Partying()) growth -= 2 if (Learning() || WorkingOut()) growth += 1 if (Learning() && WorkingOut()) growth += 2 ```