Switch Version

V2
Modern (Current)
portfolio@ahammad:~$
$ whoami
Full Stack Developer | Problem Solver | Code Enthusiast
$ cat about.md
Passionate about creating scalable solutions and turning ideas into reality

<Ahammad Abdullah />

Available for WorkOpen Source ContributorCoffee Powered
const developer = {
name: "Ahammad Abdullah",
skills: ["React", "Node.js", "TypeScript"],
passion: "Building amazing things",
currentStatus: "Coding & Learning"
};

$ cat skills.json

{
"status": "ready_to_code",
"stack": "full_stack",
"passion": "problem_solving"
}

Frontend

.jsx
const App = () => {
  return (
    <div className="app">
      <h1>Hello World</h1>
    </div>
  );
};
ReactNext.jsTypeScriptTailwind CSS

Backend

.js
app.get('/api/users', async (req, res) => {
  const users = await User.find();
  res.json(users);
});



Node.jsExpressAPI DesignAuthentication

Database

.sql
SELECT users.*, profiles.bio
FROM users
LEFT JOIN profiles ON users.id = profiles.user_id;
MongoDBPostgreSQLPrismaSupabase

Tools

.bash
git commit -m "feat: add new feature"
git push origin main
docker build -t myapp .
GitDockerVS CodeVercel