VSCode Icon

File

Edit

View

Go

Run

Terminal

Help

Aliasgar Sogiawala — Visual Studio Code

Some ofmy work

A handful of projects I'm genuinely proud of, written up the way I actually think about them — as code. Hit ▶ Run and watch them compile into real project cards on the right. Want to dig through everything else I've built? It's all on GitHub.

projects.js
1import { render } from "portfolio";
2import { ProjectCard } from "@/components/ProjectCard";
3
4// Some of my work — see github.com/aliasgarsogiawala for everything else
5const projects = [
6  { name: "TourSafe", stack: ["Next.js", "TypeScript", "Neon"], live: "toursafe.in" },
7  { name: "ParaDoc", stack: ["Next.js", "Javascript", "Clerk"], live: "paradocc.vercel.app" },
8  { name: "DomainFlip", stack: ["Next.js", "TypeScript", "Python"], live: "domain-flipping.vercel.app" },
9  { name: "TaskNet AI", stack: ["Next.js", "TypeScript", "Convex"], live: "tasknet-ai.vercel.app" },
10  { name: "storemyapi", stack: ["TypeScript", "Node.js", "npm"], live: "www.npmjs.com/package/storemyapi" },
11  { name: "Tech Horizons Club", stack: ["TypeScript", "Next.js", "Tailwind CSS"], live: "techhorizonsclub.com" },
12  { name: "Eggstinction", stack: ["JavaScript", "Canvas", "Convex"], live: "savedategg.vercel.app" },
13  { name: "FakeGeotag", stack: ["Python", "Pillow", "Mapbox API"] },
14];
15
16// ▶ Run to compile and render all 8 projects in the output panel
17projects.forEach((project) => render(<ProjectCard {...project} />));
$ node projects.js

Nothing's run yet — press ▶ Run up above and I'll compile these into real project cards.

Copilot Chat

Hi! I'm Aliasgar's AI assistant. Ask me anything about his skills, experience, projects, or background!

Copilot can make mistakes. Enter to send, Shift+Enter for newline.

zsh
██╗   ██╗███████╗ ██████╗ ██████╗ ██████╗ ███████╗
 ██║   ██║██╔════╝██╔════╝██╔═══██╗██╔══██╗██╔════╝
 ██║   ██║███████╗██║     ██║   ██║██║  ██║█████╗  
 ╚██╗ ██╔╝╚════██║██║     ██║   ██║██║  ██║██╔══╝  
  ╚████╔╝ ███████║╚██████╗╚██████╔╝██████╔╝███████╗
   ╚═══╝  ╚══════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝
Last login: Wed Jun 17 2026 8:08:36 AM on ttys000
Welcome to Aliasgar's VS Code Terminal
Type 'help' for available commands.
aliasgarsogiawala@portfolio:~/portfolio$