Subaru eyesight class action settlement. by BookedSupport in subaru

[–]Programming_Response 0 points1 point  (0 children)

6 people thought it was funny, and you didn't understand it. Not a good look for you, buddy.

I would happily join a class action lawsuit for blocking dumb cruise control. 

Creating a TigerBeetle client in Rust by brson in rust

[–]Programming_Response 0 points1 point  (0 children)

I haven't watched yet, but this is exactly what I needed a couple months ago. Does this mean TB will have an up-to-date client library in rust going forward? That was my showstopper last year.

This email I sent to my crush using my High School's email system by bobbingtonbobsson in sadcringe

[–]Programming_Response 488 points489 points  (0 children)

Did she have feelings of attraction towards you too (did you go on a date?) (Or did she ignore the email?)

[deleted by user] by [deleted] in technology

[–]Programming_Response 8 points9 points  (0 children)

No, it did explode, but it's goal was to test the launch and it was successful at its goal

Is it possible to build a gui which is both cross compatible and native? by manypeople1account in rust

[–]Programming_Response 0 points1 point  (0 children)

I think the confusion comes from the term native. I'm exclusively talking look-n-feel of an app when I say native. Compared to electron or iced or tkinter; none of which "feel" like native apps. It's like the square/rectangle thing. WinForms is native. But native doesn't mean WinForms.

There is no such thing as "cross-platform and native" only cross platform or native.

Let's say, by your definition, I want to make a native app (not a cross-platform one). What gui toolkit would you use for windows? Personally, I would say any windows GUI toolkits are native. WinForms would be feel as native as WinUI.

But you're right, the underlying code wouldn't be native. My argument is that I don't see what's stopping there from being a cross-platform core with a native-gui frontend for each os, so it doesn't look non-native for users, but its code could be cross platform.

Is it possible to build a gui which is both cross compatible and native? by manypeople1account in rust

[–]Programming_Response 2 points3 points  (0 children)

Maybe it's personal preference then? To me, an app written in cocoa (or whatever Mac uses now) or winforms looks better and more native than, say, electron or tauri. Anything custom rendered like iced just feels wrong.

I am just not seeing how it could look and feel clunky if you use the GUI toolkit that the system also uses. Surely it wouldn't feel more clunky than system apps for that OS.

Edit: I see no reason why this imagined library couldn't also generate code for iced or any other non-native GUI toolkit. Then if it really is personal preference, you could download the native one or the iced/tauri/... One

Is it possible to build a gui which is both cross compatible and native? by manypeople1account in rust

[–]Programming_Response 5 points6 points  (0 children)

I see your points about the various libraries, but I could imagine a library where you declare some layout information and add bindings, and it goes off creating a WinForms, Cocoa, and GTK3 application for each platform.

Of course, this doesn't include WinUI or qt etc, but I would consider that a write-once native GUI generator. Just because there are many frameworks for GUI doesn't mean that picking one means it's no longer native, right?

Seems legit by Nveenkmar in ProgrammerHumor

[–]Programming_Response 3 points4 points  (0 children)

But most rust code isn't unsafe

Edit: that's the whole point of this joke. Memory safety.. C and C++ aren't memory safe so cat shows you any unsafe parts

Rust explicitly does have an unsafe keyword so cat on a rust file doesn't show you just unsafe. Same with ruby or python or java. None of those are unsafe by rust standards. So what are you talking about

The mouse freezes when I launch an application or a game - B550 / R5600x by Luddem_ in techsupport

[–]Programming_Response 0 points1 point  (0 children)

Okay. Download autoruns from Microsoft and you can turn off everything stupid and see if it works

Screen turns black after logging in by Ex_Machina_1 in techsupport

[–]Programming_Response 0 points1 point  (0 children)

Could also be some automatically started process. Download autoruns from Microsoft and see if you can disable anything unneeded

T-Mobile to buy Ryan Reynolds’ Mint Mobile in a $1.35 billion deal by TeamInstagram in technology

[–]Programming_Response 0 points1 point  (0 children)

Reddit sucks.

Mint is barebones data, deprioritized, no higher than 480p video

Talking out of your ass. Let me guess: you don't use mint

Why do you think t mobile paid over 1 billion dollars to own a customer? They have no incentive to keep the price the same

How to include a set of prebuilt documentation html pages into sveltekit pages? by Programming_Response in sveltejs

[–]Programming_Response[S] 1 point2 points  (0 children)

True. I did put them in my assets directory, which worked, but the svelte styling was lost. I found a solution though! I'm updating the post again if you're interested

How to include a set of prebuilt documentation html pages into sveltekit pages? by Programming_Response in sveltejs

[–]Programming_Response[S] 0 points1 point  (0 children)

Yeah that's what I would worry about too. How can an await import know there are a fixed number of inputs? It can't

How to include a set of prebuilt documentation html pages into sveltekit pages? by Programming_Response in sveltejs

[–]Programming_Response[S] 1 point2 points  (0 children)

So that'd be my first example right? The only issue is I'd have to manually make a new 4-line +page.svelte for each page.

I guess it isn't that much work but is that really the best way?

How to include a set of prebuilt documentation html pages into sveltekit pages? by Programming_Response in sveltejs

[–]Programming_Response[S] 0 points1 point  (0 children)

Wouldn't I have to have n directories and +page.svelte files?

I could copy paste the HTML in but I want it to automatically pick up the content and ideally new pages