@SebAaltonen@lakshyalark Can you confirm you have seen all the other Ferrari cars, because about half of them are hideous to me with the Luce right in the middle.
@imnonplussed@valigo@gutsy_gambit I think if you are making something that already exists in the training data that no one wants you can get such a speedup. But I agree. It's a very immature understanding of productivity.
@dreamsofcode_io@adibhanna Damn. Removing that line is one way to fix a test. This notion of working at a "higher level" seems a bit off when a needle in a haystack can cause so much trouble.
@dreamsofcode_io@adibhanna The other day I asked Claude and it wrote something like this:
function invoke<T extends any[], R>(fn: (...args: T) => R, ...args: T): R {
return fn(...args);
}
And proceeded to wrap lots of ordinary function calls with it. It can be really terrible in some codebases.
@ZH1YGD@jarredsumner There's a reason rewrite in rust is said a lot. It's because writing the first version in Rust is quite hard and can slow you down, but Rust works quite well when things are mature.
@GregorySchier@yacineMTB Yep, I think tiling combines well with multiple desktops. No need for tiny windows. If that doesn’t click for you, and you like moving and resizing windows with a mouse, tiling wm isn’t for you.
@GregorySchier@yacineMTB You don’t necessarily put things side by side. Use multiple desktops and go straight to the desktop that has the app you want. Eg. code editor on 2, hit a key to go to it instantly instead of alt tabbing. The splitting is often for a quick task. Much less mouse pain for me.
@LukeParkerDev I tried to convert an app to use tauri, but the performance was much worse than electron, particularly on Linux. It’s the web view, tauri has no control over it. The hype must have come from people who don’t measure or understand the basics of both projects.
@_joshburgess@NathanFlurry Yes, but some type systems make it harder to compose pieces together. Go doesn’t have function colouring for example, but rust and typescript do.
@WinstonBrown_@brendonovich You can run a Rust backend in an Electron app (Like 1password does). Tauri really has no control over the parts that matter, which is the webview. Maybe one day with Servo..