SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile
SHASHANK SHUKLA

@sha_shukla04

OMLAS 2025 Fellow | Building for Impact | Leadership | Sustainability | Social Innovation,Freelance Full Stack & Blockchain Developer | React,React Native, Node

ID: 1517520828388474880

linkhttps://linktr.ee/shashankweb3 calendar_today22-04-2022 15:10:03

167 Tweet

94 Takipçi

292 Takip Edilen

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

Today I got the chance to meet with Vish an amazing and very ambitious web 3 girl ,my alumni, also get so many new things to learn & also very humble, very ambitious and very nice girl thank you so much ma'am for supporting us🫡🙏

Today I got the chance to meet with <a href="/VishwaMehta30/">Vish</a> an amazing and very ambitious web 3 girl ,my alumni, also get so many new things to learn &amp; also very humble, very ambitious and very nice girl thank you so much ma'am for supporting us🫡🙏
SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

Hey folks! Super excited to share that I've registered for Hack This Fall Community 4.0, a 36-hour in-person hackathon🥳 Hoping to get accepted and be part of the amazing community of hackers!⚡️ Find more info & register now at hackthisfall.tech 🧡 #HackThisFall4 #InnovateForGood

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

I just started learning machine learning anyone with similar interest and anyone who have any advice pleas help me to learn and start building projects and one more insight for ml campusx is very underrated channel #MachineLearning #ArtificialIntelligence #learning #technology

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

I want to create a splash screen using the react-native-lottie-splash-screen package but I got some error Task :app:checkDebugDuplicateClasses FAILED where I can see this error Please help React Native

I want to create a splash screen using the react-native-lottie-splash-screen package but I got some error  Task :app:checkDebugDuplicateClasses FAILED where I can see this error Please help <a href="/reactnative/">React Native</a>
SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

Back to Basics — Day 1 Stop using <div> for everything. Use semantic tags like <main>, <article>, <section> for: Better SEO Better accessibility Cleaner structure How many of these tags do YOU use daily? 👇 #HTML #WebDev

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

No JS? No problem. Create toggle sections using pure HTML5: <details> <summary>Click me</summary> <p>Revealed!</p> </details> No JS Native behavior Works everywhere Used it before? #HTML #WebDev #Frontend #backtobasic

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

<div> means nothing to a screen reader. But add this: <div role="button" tabindex="0">Click Me</div> Now it’s a real button - for everyone. Better accessibility Inclusive web Used role before? #HTML #WebDev #a11y #BackToBasics

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

You’re still writing <input type="text"> for everything? Try these: <input type="color" /> <input type="range" /> <input type="date" /> Built-in Mobile-friendly No JS needed Used them before? #HTML #WebDev #BackToBasics

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

There’s an HTML tag that holds reusable UI without rendering it until needed: <template> Use it with JS to inject content later. Perfect for modals, cards, or dynamic UIs. Used it before?👇 #HTML #WebDev #Frontend #BackToBasics

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

Need quick calculations in a form? No JS needed. Use the native <output> tag: <form oninput="r.value = +a.value + +b.value"> <input name="a"> + <input name="b"> = <output name="r"></output> </form> Ever used this?👇 #HTML #WebDev #Frontend

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

Still using <img> everywhere? <picture> <source media="(min-width: 600px)" srcset="big.jpg"> <img src="small.jpg" alt="image"> </picture> Responsive Fast SEO friendly Used it before? #HTML #WebDev #BackToBasics

SHASHANK SHUKLA (@sha_shukla04) 's Twitter Profile Photo

Back to Basics — Day 8 Want faster page loads? <img src="img.jpg" loading="lazy" alt="..." /> Defer image loading No JS Boosts performance & UX Pro tip: Don’t lazy load hero images. Used it before?👇 #HTML #WebDev #Performance