Creating engaging content, writing insightful blogs, developing innovative code, and designing stunning visuals is what I love to do.
Get In Touchfunction helloWorld() {
console.log("Hello, World!");
return "Success";
}
I'm a passionate YouTuber with over 5 years of experience creating engaging content across multiple channels. My channels focus on technology tutorials, coding, graphic design, and video editing tips. With a combined subscriber base of over 100,000, I love sharing my knowledge and helping others learn new skills.
My content strategy focuses on providing value through detailed tutorials, honest reviews, and creative challenges that inspire my audience to explore their own creativity.
As a full-stack developer, I specialize in creating responsive, user-friendly web applications. With expertise in JavaScript, React, Node.js, and Python, I build solutions that are both powerful and elegant.
I follow best practices in coding standards, version control, and testing to ensure my projects are maintainable and scalable. I'm particularly passionate about creating open-source tools that help other developers.
With a keen eye for aesthetics and functionality, I create compelling visual designs and engaging video content. My design philosophy centers on clean, intuitive interfaces that enhance user experience.
As a video editor, I specialize in creating dynamic, story-driven content with seamless transitions, professional color grading, and impactful sound design. I work with both corporate clients and creative projects.
function animateLogo() {
const logo = document.getElementById('logo');
const styles = ['glitch', 'type-animation', 'random-fade'];
const randomStyle = styles[Math.floor(Math.random() * styles.length)];
logo.classList.remove(...styles);
logo.classList.add(randomStyle);
setTimeout(animateLogo, 3000);
}
A JavaScript library that creates random animation effects for text elements, perfect for portfolio websites.
.hero-image-container {
width: 400px;
height: 400px;
border-radius: 50%;
border: 5px solid var(--neon-purple);
box-shadow:
0 0 20px var(--neon-purple),
inset 0 0 20px var(--neon-purple);
position: relative;
animation: rotate-hue 10s linear infinite;
}
A responsive portfolio template with animated elements, perfect for creatives and developers.
const tabs = document.querySelectorAll('.tab-btn');
const tabContents = document.querySelectorAll('.tab-content');
tabs.forEach(tab => {
tab.addEventListener('click', () => {
const target = tab.dataset.tab;
tabs.forEach(t => t.classList.remove('active'));
tabContents.forEach(c => c.classList.remove('active'));
tab.classList.add('active');
document.getElementById(`${target}-tab`).classList.add('active');
});
});
A lightweight, vanilla JavaScript tab system with smooth transitions and accessibility features.