README.md
Ismail Safwat
Software Engineer
Building the future, one line of code at a time. Passionate about systems programming, modern web development, and creating elegant solutions to complex problems.
4 Projects
1 Articles
7 Commits
Tech Stack
C++ Python JavaScript TypeScript React Astro C# Kotlin Linux
Recent Commits
View allCode Snippet
portfolio.ts
// Welcome to my portfolio
const portfolio = {
name: 'Ismail Safwat',
role: 'Software Engineer',
skills: ['C++', 'Python', 'JavaScript', 'React'],
location: 'Remote',
available: true
};
function buildTheFuture() {
return portfolio.skills.map(skill =>
`Building with ${skill}`
);
}
console.log(buildTheFuture());