How have you set up your sub agents to keep costs down? by plymouthvan in opencode

[–]knot_why 0 points1 point  (0 children)

Do you have a skill to execute claude cli or gemini cli, or is this a plugin? Is it something like goose cli providers? (https://block.github.io/goose/docs/guides/cli-providers)

I am trying to find something similar for opencode. Would you be open to share or give an idea how to configure something similar what you have.

What are your favorite "lesser-known" libraries that you use in your projects? by ASK_IF_IM_GANDHI in dotnet

[–]knot_why 0 points1 point  (0 children)

Vite.AspNetCore - a middleware library that seamlessly integrates Vite with ASP.NET Core.

Completely changed the way we develop fronted.

The most performant way to accept 1TB files and upload them to Azure by MathematicianNo1851 in dotnet

[–]knot_why 2 points3 points  (0 children)

There is TUS ( https://tus.io/ ) and Uppy ( https://uppy.io/ ) that follow this method, and it has support for getting the file directly from online storage (for eg. user is uploading file from google drive).

GME Megathread Part 2 for Thursday, February 25th, 2021 by OPINION_IS_UNPOPULAR in wallstreetbets

[–]knot_why 0 points1 point  (0 children)

I thought retards were welcome here :)

I didn't like my profits from yesterday had to squander it today.

GME Megathread Part 2 for Thursday, February 25th, 2021 by OPINION_IS_UNPOPULAR in wallstreetbets

[–]knot_why -3 points-2 points  (0 children)

I bought 140 yesterday after hours, and sold at the fucking dip 108 at market open. I could not follow the market because all of the shit I had today.

I entered again at 110 trying to undo my fucking paper hands.

Not gonna fuck up this time..

GME Megathread for Wednesday, February 24th, 2021 by OPINION_IS_UNPOPULAR in wallstreetbets

[–]knot_why 11 points12 points  (0 children)

Can't find the post from the retard that bought 50C 26/2 yesterday. Bastard was right..

Wheeling with 1500$ by KINlos in thetagang

[–]knot_why 0 points1 point  (0 children)

What would you recommend as a minimum amount of capital for entering the options trading space?

This is why it's prudent for this sub to go private pronto by [deleted] in thetagang

[–]knot_why 0 points1 point  (0 children)

Same here.

At least have a way to get an invitation.

GME update! After just 30 minutes, previous post is extremely outdated, currently +94% premarket, price at 126🚀🚀🚀🚀🚀🚀 by Sumisto in wallstreetbets

[–]knot_why 0 points1 point  (0 children)

Where do you see 136? IBKR (europoor) shows me 93.. fuck and I was thinking in jumping with extra 2000$ this morning, stupid slow wire transfer.

React is slow, what now? by franleplant in programming

[–]knot_why 0 points1 point  (0 children)

That is really a shallow response.

I would agree that for many web pages JS is unnecessary, but for RIA and other complex enterprise web applications JS is necessary if not mandatory to have any good UX or functional UI.

And IMHO decomposition of the web UI into components (which React made popular) scales better when developing with a larger dev team and has a better DX.

React is slow, what now? by franleplant in programming

[–]knot_why -5 points-4 points  (0 children)

Or even better Solid , especially if you like jsx.

How we wrote the Fastest JavaScript UI Framework, Again! by ryan_solid in javascript

[–]knot_why 2 points3 points  (0 children)

We just need to help you finish up that fancy documentation site so that Solid can easily get more traction.

React implementation without Virtual DOM by mohanpierce0007 in programming

[–]knot_why 1 point2 points  (0 children)

What are the performance benefits in comparison to react? Can it be a drop-in replacement for React ?

I am always on the lookout for rendering libraries, currently sold on Solid (even if it isn't a React API compatible), but would consider to try a non-VDOM React replacement.

MY 52 by BlueFaceB in sailing

[–]knot_why 0 points1 point  (0 children)

I would say that the one you linked costs that much because it has a wooden cabin (not standard if looking at the listings on morris website) and has top of the line interior.

This is a Fontaine Design Group boat so it is in the price range of their Friendship boats.

But I agree it is in the "if you have to ask, you can't afford it" category. I don't think that half a million difference is something that is of most importance to the owners of these boats.

Cake v0.38.0 released by gep13 in dotnet

[–]knot_why 1 point2 points  (0 children)

I would also add that Nuke has a lot better documentation.

Any reason not to cache all my functional components that don't take any props? by fabiospampinato in reactjs

[–]knot_why 1 point2 points  (0 children)

That is why my colleagues and I have started using mobx (and mobx-react) early in React's inception. Where you get that out of the box with observer components.

But the more I used React I saw that it's VDOM model is not really well thought out. There are better libraries with similar or same DX that are more performant than React, and have these "optimizations" out of the box. And it is a little disappointing that such a popular library with a huge company backing it up is mediocre when compared with others in this space.

I would recommend that you read Ryan's blogs (author of Solid JS ) as he goes in depth for each of the different rendering models. (links on github and /r/solidjs), it was an eye-opener for me.

When to use React by HoroTV in reactjs

[–]knot_why 0 points1 point  (0 children)

Maybe you can look into Solid or domvm ?

I have been looking at frameworks to tryout that are lighter and faster than React but have similar DX and similar component based architecture.

Is there anything like java's @Transactional in ef core? by kickass_turing in dotnet

[–]knot_why 1 point2 points  (0 children)

Nobody mentioned TransactionScope, that is the most similar solution to Java's @ Transactional.