Avatar
Available for work
portfolio.tsx
|

|

|

STORE-IT
Created a cloud storage platform to store, share and manage files securely with a responsive interactive interface.
Next.jsNode.jsTypeScriptTailwindShadcnAppwrite
const uploadFile = async (file) => {
  const response = await appwrite.storage.createFile('bucket',
   ID.unique(), file);
  return response;
};
Chatapp
Real-time chat application using WebSockets with instant messaging and media sharing.
ReactNode.jsSocket.io
io.on('connection', (socket) => {
  socket.on('message', (msg) => {
    io.emit('message', msg);
  });
});
Gaana.com
Built a streaming app using Spotify API integration, serving 30M+ tracks with smooth UI and playback.
ReactTailwindSpotify APIShadcn
const getTracks = async (query) => {
  const res = await 
  fetch(`https://api.spotify.com/v1/search?q=${query}&type=track`);
  const data = await res.json();
  return data.tracks.items;
};
Github Issue Manager
Designed and developed a Rust-based CLI tool to fetch and manage GitHub repository issues via REST API.
Rust
let response = 
reqwest::get("https://api.github.com/repos/owner/repo/issues")
    .await?.json::<Vec<Issue>>().await?;
for issue in response {
    println!("#{} - {}", issue.number, issue.title);
}
Helping Jet
Developed an NGO website for elderly assistance with Razorpay payment integration and volunteer matching.
ReactBootstrapRazorpay
const paymentHandler = async () => {
  const order = await axios.post('/create-order');
  const options = { key: 'rzp_test_123', amount: order.amount };
  new Razorpay(options).open();
};
Linux Heap Memory Manager
Custom-designed Linux heap memory manager that allocates and frees memory blocks efficiently using C.
C
void *my_malloc(size_t size) {
  void *ptr = sbrk(size);
  if (ptr == (void *) -1) return NULL;
  return ptr;
}

|

// Technical proficiency levels

React/Next.jsFrontend
95%
JavascriptLanguage
95%
TypeScriptLanguage
90%
Express.jsBackend
85%
Tailwind CSSStyling
95%
Node.jsBackend
88%
Python/AIAI/ML
82%
MongoDBDatabase
85%
RustLanguage
60%
C/C++Language
75%
Git/GitHubTooling
90%
DockerTooling
70%

|

// Let's build something amazing together

Spirit Animal → Takopi