💡What if ordering groceries on Instamart was as simple as speaking in your native language?
For Sarvam Buildin Hours, I’m building a voice-first assistant that manages household routines, sticks to budgets, and picks smart substitutions on the fly.
#SarvamBuildinHours#VoiceAI
I just shipped something weird. And I'm kinda proud of it.
⚡️Ngink — Angular components that render to the terminal, powered by Ink. Here's what that actually means 👇
Angular devs love components, signals, DI, and reactive templates.CLI tools are usually raw Node.js spaghetti.What if your CLI looked like this instead?
```
@Component({
template: `<Text [bold]="true" [color]="'green'">Hello, Terminal!</Text>`
})
export class AppComponent {}
bootstrapCli(AppComponent);
```
Clean. Typed. Angular. ✨
Under the hood:
✅ Custom Renderer2 implementation
✅ Signals-powered keyboard input
✅ Full DI — InputService, FocusService, TerminalService
✅ @if / @for structural directives just work
✅ Headless testing with renderCli()No hacks. Real Angular. Real terminal.
The hardest part? React hooks can't be called from Angular. So each feature area secretly mounts a React component internally and bridges the results into Angular services.Angular on the outside. React whispering underneath. 🤫
npm install ng-ink📦
https://t.co/lS9fSlxZnn ⭐ https://t.co/Y0BVMbLQHD a ⭐ if this made you liked it!
#Angular #CLI #OpenSource #TypeScript #NodeJS #TerminalUI #BuildInPublic #DevTools #React #Webdev
I've been a bit quiet here lately, but it's about time for an update: Fireship is officially merging with @uidotdev.
@tylermcginnis and the team make great courses and I've been a fan of Bytes since it launched. We actually talked about merging together back in 2021, but the timing wasn't right. Turns out it just took a few years.
For a little more context, ~18 months ago I sold a part of Fireship to a company called Electrify that invests in educational YouTube channels and helps build a team around them.
I did this for 2 reasons:
- Money
- Time
Most people don't realize that until recently, Fireship has always been a one-man show. I started with zero video production skill and zero expectations. I spent thousands of hours on a mission to make programming videos I’d actually want to watch. And somehow, I just kept making videos and it just kept working for the past 8 years…
I now have 3 kids with a 4th on the way. Running and scaling everything by myself isn’t sustainable anymore, and tbh, I never had the desire to manage people. I'm a hardcore introvert who just likes making YouTube videos.
So over the last year Electrify has helped me start building a team so I can focus on just the creative side. But the results have been mixed so far as we’ve tried adding to the team while still making content.
Despite the rumors, I have not been replaced by AI. If I had been, uploads would be way more consistent. The reality is that making this weird style of niche technical content is hard. AI can't do it, and it turns out most humans can’t do it very well either.
So we're changing things in 2026, and merging with the uidotdev team is the first step.
Going forward, we’ll be making more old school Fireship programming videos, more 100 Seconds videos, and more Code Reports on a wider range of topics, along with some crazy new ideas I think you'll like.
We’re also hiring more full time developers who are good at writing about technical topics. Editing and shitposting skills are also welcome. DM Tyler if you’re interested.
Yes, this all takes money, which is why we have more sponsors now. That’s the tradeoff for being able to build a team.
And no, I’m not stepping back. I'll still be voicing and working on every video, and I still have creative control to decide what we make. But the hope is that expanding the team will let us make more stuff and go deeper on everything without me burning out.
Also, existing Fireship Pro customers now get access to all uidotdev courses and vice versa. Check out the new fireship .dev site if you’re curious.
And finally, a huge thank you to everyone who has supported the channel over the years. I genuinely appreciate it more than I can put into words.
New Speaker Alert!
Ruchi Mishra will speak on:
✨ “AI + Developers: Building the Future One Line of Code at a Time”
📅 Dec 6, 2025
⏰ 6 PM IST
🔗 Register: https://t.co/bz8g4rCxEv
#ReactSiliguri#AI#ReactJS#Meetup#SpeakerAnnouncement
Speaker Alert!
Kushal Ghosh will speak at the React Siliguri Meetup on:
🔥 “Stop Writing Code. Start Building Systems”
📅 Dec 6, 2025
⏰ 6 PM IST
🔗 Register: https://t.co/bz8g4rCxEv
#ReactSiliguri#ReactJS#Meetup#SpeakerAnnouncement
🚀 NEW: Speculation Rules API + Modern Frontend Frameworks: Integration Guide"
Learn how to implement predictive navigation in modern frameworks for lightning-fast UX.
From basic integration to advanced patterns
#javascript#WebPerformance#React#Angular
https://t.co/y2mBciwQ8d
Completed javascript interview question: Build your own HTTP server challenge in JavaScript.
GitHub sample code: https://t.co/lIP0A6DUmd
Link to the challege: https://t.co/QsAGMMsAqL
#javascript#interview#FrontEnd#nodejs#development
🚀Recently I read a great blog about how Discord optimized their React Native powered IOS app by using techniques like store optimization, component profiling and so on.
Link: https://t.co/AYZleRG0GF
#Performance#reactjs#javascript#webdev#reactnative#Twitter#iosdev
Learning backend concepts in nodejs:
- JS code execution with libuv and v8
- how node handles tasks with C++ bindings and a hybrid approach of event loop and multi-threaded thread pool
- how node works with worker threads and cluster modules
#backend#webdev#javascript#node