IRIS (queeniris)

IRIS

A Dev 👩🏼‍💻 A Critical thinker 💭 A writer ✍️ A Community Manager ⚒️

12 Followers

Recent casts

Just got my new domain "dtrwev.arc" on InfinityName! Forever ownership, no renewals. Get yours at InfinityName infinityname.com

  • 0 replies
  • 0 recasts
  • 1 reaction

Day 95 of #100DaysOfCode Understanding Prop Drilling and When to Use State Management Libraries Today I dug into one of the common early challenges in React: prop drilling, and why it quickly becomes a problem as apps scale. Prop drilling happens when a parent component passes data down through multiple layers of components, even when some of those components don’t need the data. It works, but it doesn’t scale. The deeper your component tree gets, the harder it becomes to read, debug, and maintain. Example: If App → Parent → Child → Grandchild all pass the same prop, only the last one actually uses it. Multiply this by dozens of components and you get “prop drilling hell.” Why This Becomes an Issue Unnecessary passing of props through components that don’t need them Harder to maintain as the app grows Harder to debug Easy to create inconsistent or duplicated state

  • 1 reply
  • 0 recasts
  • 0 reactions

Day 94 of #100DaysOfCode – First Steps with EJS & Dynamic Templating Today, I started working with EJS (Embedded JavaScript Templates) in Node.js, and it’s already clear how powerful it is for building dynamic web pages. I created a simple Express server that checks whether the current day is a weekday or weekend, and then displays a matching message on the page using an EJS template. Here’s a part of what I worked on: import express from "express"; const app = express(); const port = 3000; app.get("/", (req, res) => { const today = new Date(); const day = today.getDay(); let type = "a weekday"; let adv = "it's time to work hard"; if (day === 0 || day === 6) { type = "the weekend"; adv = "it's time to have some fun"; } res.render("solution.ejs", { dayType: type, advice: adv, }); }); app.listen(port, () => { console.log(`Server running on port ${port}.`); });

  • 1 reply
  • 0 recasts
  • 0 reactions

Top casts

Uyo Based Onchain summer was fun 🤩 @base.base.eth @camovibes @thecyberverse @jesse.base.eth

  • 0 replies
  • 2 recasts
  • 3 reactions

Currently live ✨ @base onchain summer Uyo Nigerians. Let’s build the future on base 🤍 @jesse.base.eth @camovibes @base.base.eth

  • 3 replies
  • 1 recast
  • 3 reactions

Onchain profile

Ethereum addresses