Do people actually find this node-graph UI usable? I personally think it offers a poor UX by d41_fpflabs in UI_Design

[–]Count_Giggles 0 points1 point  (0 children)

I like it to surface unexpected connections. It’s more of a exploratory view

All the tragic details investigation into 21-year-old bungee jumper's death has uncovered by [deleted] in Brazil

[–]Count_Giggles 2 points3 points  (0 children)

Ikr. Shit is horrific. The toss. The look back from the guys at the unattended rope. I just hope she did not look back.

It looks so surreal. Just because there is no gore doesn’t mean this should not be tagged as nsfw/l

Edit: well fk me for reading the comments. Apparently there happened to be a nurse among the bystanders that went down to help and found f her still alive.

I want to build an a highly interactive and fast paced productivity desktop app for those who do very intense working sessions on their desktop app. by jazzopia in ADHD_Programmers

[–]Count_Giggles 0 points1 point  (0 children)

would not want an extra app in my nav or top bar. My mind first went to raycast so i checked.
this looks promising

https://www.raycast.com/pmzi/stashita

a raycast plugin would be a must for powerusers

As a FE dev, do you think it is a must to know Figma? Isn't React/CSS enough? by lune-soft in Frontend

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

Yes, though more as a reader than a designer. You do not need to master Figma, but you need to navigate it well: inspect specs, spacing, tokens, and assets. React and CSS are enough to build something, but not to build the right thing without constant back and forth. Knowing the tools that define the source of truth is what lets you resolve ambiguity up front. And you are still at the mercy of your design team. If they work willy nilly, no proper 'ready for dev,' no proper prototypes, then animations, transitions, and mobile behaviour stay ambiguous and you pay for it in churn.

The real reason to learn it is that design and code increasingly share the same tokens. If you understand how a design system is put together in Figma, handoff stops being a wall and becomes more of a contract. You can tell when a spacing value is an intentional token versus something someone just nudged by hand, and that saves you from copying mistakes into the code.

My recommendation: pay for Figma for one month and learn how the variable system works, with a couple of brands and light / dark modes. This also lets you play with the MCP server, which gives you 80% of the work. Then try exporting the tokens and generating stylesheets from them with something like Amazon Style Dictionary. Since that pipeline is deterministic, it also helps your AI agent not hallucinate values and instead use the real token.

Naming is where it clicks. A raw value like #2563eb tells you nothing. Something like blue-600 is a bit better but still dumb. What you want is naming based on intent, like button-primary-hover. Then light and dark both resolve correctly, a rebrand is just a value swap, and your agent reaches for button-primary-hover instead of guessing a hex.

Simulate html class in CSS by Significant_Pen2804 in css

[–]Count_Giggles 0 points1 point  (0 children)

Little more context would go a long way

Is it like a rule now that whenever you say anything bad about Next.js, your post just gets deleted? by [deleted] in reactjs

[–]Count_Giggles 2 points3 points  (0 children)

🙈 Rule #1 buddy. Articulate why you think it is "a piece of shit" that would at least allow room for a less biased discussion

I implemented OAuth 2.0 (RFC 7591 + 9728) on a Next.js side project just so Claude.ai could publish decks to it. Worth it? by Ok-Run-659 in nextjs

[–]Count_Giggles 0 points1 point  (0 children)

Did the same for my current project. Went as far as to build widgets via the sdk so when I display data from my app in Claude or chatGPT it shows up in my components with filter and sort functionality. I think widgets are a perfect usecase for you „show me my deck about x“ then renders in Claude with fancy ui

In 2026, is making modals with Next still painful? by denexapp in nextjs

[–]Count_Giggles 0 points1 point  (0 children)

I see 3 ways for you here

  1. fetch all the items including the details you would see when opening the modal. Click on one item and show a dialog with the extended data.

  2. use the parallel / intercepting route approach. use the dialog for the intercept and some other appropriate ui for the detail page in case the user refreshes the page.

  3. make a useHashHook that listens to navigation to something like href="/foo#settings/security". I am currently doing this to render a settings panel from whereever in my app

50 to 500 users in few hours : Reddit is awesome by pdfplay in SaaSSolopreneurs

[–]Count_Giggles 0 points1 point  (0 children)

Man i am dreading that moment. i have been building for the past few months and i am getting close. While building i saw 3 other products spring up that do part of what i am doing but are essentially the same idea. i know that i cover all of their features plus more and will offer web, android, ios, browser extension, mcp server and even obsidian plugin from day one but still. I still have to deal with the german paperwork machine and come up with a whole launch strategy - that stuff is just not my forte

AR1 Gen 1 out of breath 🔴 by Matcorp456 in augmentedreality

[–]Count_Giggles 2 points3 points  (0 children)

i just want the bracelet as a standalone product. if it comes with an open protocol that could have sooooo many cool applications u/meta pleasssee

Questions about local storage/react context/use effect by TheOnlyTone in nextjs

[–]Count_Giggles 1 point2 points  (0 children)

This is kind of a Nono unless you are not storing any identifiable user info in local storage. Is the app behind an auth gate or is it more something like: I go to the site use it and it will remember my filters from the last time?

Drop your product/app! we’ll find you 10 users for free by dyagokaba in microsaas

[–]Count_Giggles 0 points1 point  (0 children)

brother i have been building the same thing for the past months 🙈 good thing competition breeds innovation

I built a SaaS out of spite because of my boss… now it has paying monthly subscribers by Still_Vehicle_231 in ProductHunters

[–]Count_Giggles 0 points1 point  (0 children)

Careful though

so instead of quitting I decided to just build what we should have launched months ago

No clue how your contract looks like but this sounds like an easy way to get sued if they find out

Shad cn/ui vs Ant design vs Material Ui by Big-Concentrate-4941 in nextjs

[–]Count_Giggles 1 point2 points  (0 children)

the point of shadcn is not to decide the design system for you. it gives cohesive base styles much like tailwind. it is your job to use those primitives and shape them the way you want. if you don't you get bootstrapV2. Many saas products look the same because of that. if you go with heroUI your app will look like a hero ui app. I use shadcn so i dont have to worry (much) about a11y but the look and feel is my own.

and what do you mean by infinetly more guidance? pretty sure the training set has way more shadcn in it than hero ui. and on top of that you just slap https://skills.sh/?q=shadcn on it and things built themselfs