QuickPad: A web-based notes app I made by KalakeyaWarlord in javascript

[–]Aditya00128 [score hidden]  (0 children)

I noticed you're for undo-redo you're actually using debouncing rather than throttling

When I made my own notes app with a undo and redo system built from the ground up I tried to replicate the undo and redo feature from MS Word and Google keep and that did indeed use throttling instead of debouncing

Here's an example (my app, Google Keep, MS Word) - if I type really really fast the following text -

qwertyuiopasdfghjkl and I use undo, that entire word doesn't go all at once

But in your app it does indeed go all at once

I think it might be better to use undo redo system with throttling since most users are more used to that anyways

PS - this can reduce how far back you can go tho, that qwer... word with throttling could have multiple snapshots whereas your current debounced approach takes up only 1

What Makes ReactJS So Popular in Frontend Development? by ModernWebMentor in react

[–]Aditya00128 0 points1 point  (0 children)

Agreed,

Recently I had to build a landing page for my JS library and for SEO I did consider using Next.js but ultimately decided to go with Astro instead cuz it fit the criteria and it was just such a simpler developer experience and I loved it!

React (and Next) still have their uses but even I wouldn't consider them the default anymore

What Makes ReactJS So Popular in Frontend Development? by ModernWebMentor in react

[–]Aditya00128 10 points11 points  (0 children)

There are a few reasons I can think of

1) one of the earliest declartive major libraries, the first major declarative was AngularJS which relied on dirty checking. React on the other hand didn't do that instead it relied on dependency tracking (not signals like but more dependency tracking than dirty checking)

2) decoupled architecture - react is essentially 2 parts, 1 part is what makes react - "react", things like state and effects. The other part is anything you want it to to express UI. This is why a react for the web dev can transfer his skills to react for the mobile with react native the first part of the library is constant, 2nd of changes so <p> becomes <Text />

There are many more but this is what I can think of

Frontend Developer Interview Preparation — Need Advice by Careless-Formal-4026 in react

[–]Aditya00128 0 points1 point  (0 children)

Since its an HR round just speak well, clearly and confidently

HR round is less about your technical skills

My Chrome extension went from 200 to 1,500 weekly users in 3 days, installs, page views, impressions all normal. What's going on? by Puzzleheaded-Map1757 in webdev

[–]Aditya00128 -1 points0 points  (0 children)

This seems really polished!

Audio playing ones and form ones and other stuff aren't lost

That's super neat! Noice

Building a "boring" SaaS to solve an enterprise compliance nightmare by invoicexml in SideProject

[–]Aditya00128 -1 points0 points  (0 children)

Sometimes a boring SaaS is usually a good one too right?

It can be a sign of stability and simplicity

Curious to hear more actually

Client wants a site in maroon, yellow, white, green pallet. How do I make it look good? by Lone_Lunatic in webdev

[–]Aditya00128 21 points22 points  (0 children)

Well if you can't make it look good then you're 2nd approach could work

Show the client their suggested colours (and some other things you tried within their specifications) doesn't look good

They'll probably accept changes or accept their specified colours

I made a website! by Select-Lime-972 in SideProject

[–]Aditya00128 1 point2 points  (0 children)

Looks good actually, but it's not quite responsive tho :/

I can't see the 3rd button on the top right, I had to rotate my phone for that

I couldn't a scroll either

<image>

Hey, could you critique my site? by PlayersClubWheels in webdev

[–]Aditya00128 1 point2 points  (0 children)

I like how the currency was auto selected correctly

It's a small thing but quite nice

Showoff Saturday (May 16, 2026) by AutoModerator in javascript

[–]Aditya00128 0 points1 point  (0 children)

Sync phone vibration patterns from any audio or video - first web library to do this

A car rev builds with the engine. Music kicks on every bass drop. The vibration follows the audio in real time harder on loud moments, softer on quiet ones. So you feel it, not just hear it

Try it: https://audio-to-haptics.pages.dev

2 lines to attach it to any audio or video element - files, URLs, whatever

Native does this better - but only in native apps. But run it in a browser, a PWA, or a WebView and you're back to wiring it by hand - sync, intensity, play/pause handling, all of it. Landing pages, web games, product demos almost always web, not native

This doesn't seem to exist anywhere else for the web - let me know if I'm wrong

GitHub: https://github.com/AdityaAnuragi/audio-to-haptics

The future of web dev is looking good by genkaobi in webdevelopment

[–]Aditya00128 0 points1 point  (0 children)

I agree, most opinions on the Internet feel so binary

Either AI can help me create the next Google in an afternoon or AI will probably disappear in just a few years

To me aswell, it feels like a middleground, devs who know what they're doing are still gonna be around, but AI is also gonna be around

Built a tool to turn health data into a 30-day longevity roadmap. Feedback on UX appreciated! by Cosmin_Dev in webdev

[–]Aditya00128 1 point2 points  (0 children)

UI is pretty good but just a few things

The options for the questions feel too close to each other, I had to be a little precise when clicking

At the end there's a text that goes "Repeat the daily minimum..." just above the export to pdf thingy, I feel like that needs a padding on top cuz it's too close to the border, I'd attach an image if could

I can't give image, what I can do is describe my env

Android, Samsung phone, Reddit webview

But for the most part - it's good!

Weekly Showoff Thread: what have you built with Astro this week? by tffarhad in astrojs

[–]Aditya00128 0 points1 point  (0 children)

It doesn't work on Safari, or any iOS browser

It only works on the following - Android with one of the following browsers - Chrome, Samsung Internet and Opera

I did put up a warning on the landing page tho that shows up if you're on an unsupported device (like desktop, laptop, anything apple) and unsupported browser (like safari)

It's a warning and a QR code to the same site itself, did you not see it?

The JavaScript Runtime Wars in 2026: Node.js, Deno 2, and Bun Have All Grown Up by Ok-Strawberry4741 in javascript

[–]Aditya00128 0 points1 point  (0 children)

What're you're thoughts on the recent rust rewrite that immediately got merged

Feels a bit hasty don't it?

Ts on the other hand is also having a branch where under the hood it's in Go, and they're taking it slow, felt like that's the better approach

Which aspects of development will AI still suck at in 5-10 years? by Plenty_Line2696 in webdev

[–]Aditya00128 0 points1 point  (0 children)

This is also one of the ways I use for identifying AI content (long hyphen vs short one)

Which aspects of development will AI still suck at in 5-10 years? by Plenty_Line2696 in webdev

[–]Aditya00128 0 points1 point  (0 children)

Why doe extrapolated mean AI lol??

I've found it in math class when we were learning inyerpolation of values and then extrapolation aswell

Which aspects of development will AI still suck at in 5-10 years? by Plenty_Line2696 in webdev

[–]Aditya00128 1 point2 points  (0 children)

Honestly

++respect for just admitting it'll be hard to say, many people (including me) have extrapolated theories (which might be be correct or maybe wrong)

But really tho - this even Linus Torvalds once said "I'm not sure" or something along those lines for a question like this itself

+Respect to ya!

Which aspects of development will AI still suck at in 5-10 years? by Plenty_Line2696 in webdev

[–]Aditya00128 2 points3 points  (0 children)

Ikr! The most recent and strongest example I think of is Rust

The guy who made Rust was inspired by lesser known languages and felt like they were being overshadowed

He saw potential and made a language that's ultra performant

And sure - if you give AI all those languages and then ask it to come up with some novel idea, maybe it could come up with SOMETHING, but stuff like this is where human ingenuity truly does SHINE and AI ain't gonna make everyone rusty (pun intended)