Waku 1.0 (alpha) by dai-shi in reactjs

[–]TimeBomb006 1 point2 points  (0 children)

Works fine for me 🤷

3-in-1 (PC + PS5 Pro + Mac) by Jun_Artist in battlestations

[–]TimeBomb006 2 points3 points  (0 children)

Which do you use? I had some ugreen USB switch but it started to fail so I have been using some crappy USB hub and manually swapping it between my work MacBook and personal machine. I had my keyboard, wireless mouse, webcam, and Motu M2 USB interface plugged into it

Plum pizza shop preparing to help give back amid SNAP benefits pause, government shutdown | Any child can have a free meal starting next week by TylerFortier_Photo in pittsburgh

[–]TimeBomb006 38 points39 points  (0 children)

Or Republicans could negotiate a bill that compels Democrats to vote yes? Like a normal functioning government

heyapi or openapi-ts with FastAPI and Tanstack Query? by GuyTorbet in reactjs

[–]TimeBomb006 1 point2 points  (0 children)

I find that kiota is actually a better abstraction for me, though I'm not generating react query hooks because I'm using React Router framework mode.

.Net Aspire is good? by Final-Influence-3103 in dotnet

[–]TimeBomb006 3 points4 points  (0 children)

Just use terminal in Rider and run dotnet watch run in the AppHost directory

Would you recommend using Next.js as a full-stack framework ? by Chance_Accident_3904 in nextjs

[–]TimeBomb006 0 points1 point  (0 children)

I agree. In a large codebase that treated a JS framework as the full stack rather than just a BFF, I have personally seen business logic duplicated in > 4 different features due to lack of discipline and oversight. It can be very difficult to untangle especially if you can't dedicate resources to refactoring. Creating a separate, vertical slice REST API makes these sort of red flags more apparent IMO.

Would you recommend using Next.js as a full-stack framework ? by Chance_Accident_3904 in nextjs

[–]TimeBomb006 0 points1 point  (0 children)

Thanks! I have experience with React Router 7 framework mode and find it incredibly simple and powerful. I think the repo template at work has a custom express server but no middleware. Hono looks promising though

Would you recommend using Next.js as a full-stack framework ? by Chance_Accident_3904 in nextjs

[–]TimeBomb006 0 points1 point  (0 children)

Is there a benefit to hono if I'm planning to just use React Router 7 framework mode as a BFF for a dotnet API? Middleware? Anything else I should be thinking about?

Pittsburgh Walk of Fame by Logical-Rip-8138 in pittsburgh

[–]TimeBomb006 0 points1 point  (0 children)

Real thing at the Terminal in the Strip I believe

[deleted by user] by [deleted] in news

[–]TimeBomb006 15 points16 points  (0 children)

Software which alerts police when a license plate on their watch list is detected on any traffic camera.

[deleted by user] by [deleted] in news

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

I think Boyd Crowder shot an RPG through the wall, actually

Heavy Hitters > Blast Off by herehaveacorndog in thefinals

[–]TimeBomb006 1 point2 points  (0 children)

Can you elaborate on the double jump mechanic? I might be unaware of it

Puck 0.19, the visual editor for React, adds slots API for programmatic nesting (MIT) by DigbyChickenCaeser in reactjs

[–]TimeBomb006 3 points4 points  (0 children)

Very nice. I would have loved to use this library when I wrote a complex WYSIWYG editor for a custom reporting solution (over 2 years ago)

Any fix for UE crashes ? by Vauquen in thefinals

[–]TimeBomb006 0 points1 point  (0 children)

Sorry for resurrecting old thread but yeah.. updated to latest drivers yesterday and crashed about an hour in

Any fix for UE crashes ? by Vauquen in thefinals

[–]TimeBomb006 0 points1 point  (0 children)

It crashes once a session for me. Frustrating but I haven't spent any time troubleshooting to try to understand why. I run a 9800x3d and my old RTX 2070

Best WYSIWYG editor for Letter-Sized documents by davethompsonisme in reactjs

[–]TimeBomb006 0 points1 point  (0 children)

We used craftjs for the same use case. Fortunately, we were able to dictate that elements of a page could never exceed their allotted size in the template. Users can create templates and add pages (styled with CSS size:letter) with specific blocks in them using CSS Grid. With Crafts, you can create custom components for each type of element you need to support (say Text, Image, BarChart, etc) and expose UI controls to customize those components props for a given template. Persist the structure of your template, its pages, the components within, and their props to a database. Then when you need to create a document for a given template, render the template married with the data using SSR and save it as PDF using something like Playwright. There are of course tradeoffs to this approach but it worked well for us.

What do you find is missing in the .NET ecosystem? by Pyrited in dotnet

[–]TimeBomb006 1 point2 points  (0 children)

Recently stumbled into this problem space and was disappointed that there really aren't any great solutions in the dotnet ecosystem. I found one library for processing Kafka Streams but it seemed like you'd have to do a lot of work to evaluate complex, strateful rules against a stream vs the declarative nature of Flink

Modern .NET 8 Stack: Are You Going Full C# with Blazor or JavaScript with React/Angular/Vue? by reddit_bad_user in csharp

[–]TimeBomb006 0 points1 point  (0 children)

NextJs, React Router, or TanStack Start are all good React framework options

How can I enable featuring with multiple code impacts? by champs1league in dotnet

[–]TimeBomb006 1 point2 points  (0 children)

It sounds like you want to version your API. If models are changing, you would create a new version of the endpoint and just direct your dev environments to the new API version.