- 🧠 Currently pursuing my Innovation in Artificial Intelligence master's
- 🛠 Building GenAI tools for productivity, growth & monetization
- 📰 Sharing AI insights, tools, and demos weekly on LinkedIn & Medium
- 🏗 Previously worked on recommendation engines, anti-fraud systems, and scalable mentorship platforms
- 🧑🎓 GUCian with a background in Computer Science & Engineering
Project | Description | Tech Stack |
---|---|---|
Claude 3 Summarizer (not public yet) | Web app that auto-summarizes YouTube videos & articles using Claude | React, Claude API, LangChain |
Prompt Engineering Helper (not public yet) | Tool to fine-tune prompts and get consistent results across LLMs | Next.js, GPT-4, Tailwind |
LLM Tool Showcase (not public yet) | GitHub repo of mini GenAI tools for productivity | React, Vite, OpenAI |
class Engineer:
def __init__(self, name, field, focus):
self.name = name
self.field = field
self.focus = focus
def introduce(self):
return f"I'm {self.name}, a {self.field} passionate about {', '.join(self.focus)}."
me = Engineer("Aly Hassan Elsokkary", "Software Engineer", ["GenAI", "Creative Tools", "Open Source"])
print(me.introduce())