my first post

~ tanav @ 2024-12-27

Hi there! 👋

I'm Tanav, a tech enthusiast deeply passionate about coding, solving complex problems, and building innovative solutions. As a BTech student specializing in Artificial Intelligence and Machine Learning, I strive to explore the depths of technology, from crafting intuitive user experiences to creating impactful AI-driven applications.

programming on laptop

About my portfolio

My portfolio is a collection of my journey as a developer and learner. From building real-world applications to solving real-world problems, I will been sharing my experiences and insights here. I hope you enjoy exploring my portfolio and discovering the wonders of the world of technology.

My journey

As a developer, I have been working on various projects, ranging from web development to mobile app development. I have also been involved in various open-source projects, contributing to the development of cutting-edge technologies.

Throughout my journey, I have been constantly learning and growing as a developer. I have explored various programming languages, frameworks, and tools, and have been exposed to diverse domains and applications. I have also been involved in various open-source projects, contributing to the development of cutting-edge technologies.

Not only 😁

This portfolio isn’t just about showcasing my work; it’s a space where I document my journey, share insights, and inspire others to embrace technology fearlessly. Whether you're here to explore my projects, read my blogs, or connect over shared interests, I hope you find something valuable.

Some code 😭

def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n-1) + fibonacci(n-2)

print(fibonacci(10))