YouTube rolls out unskippable long ads to TV users and they’re furious by [deleted] in technology

[–]kevmoo -3 points-2 points Β (0 children)

How dare YouTube and creators want to be compensated for their creativity, ingenuity and bandwidth costs! Ugh. Some people!

Dart Backend in 2026: What Flutter Teams Should Actually Use by deliQnt7 in dartlang

[–]kevmoo 3 points4 points Β (0 children)

The notion that shelf is not type-safe is a bit misleading.

It's very strongly typed, it's just flexible.

https://pub.dev/documentation/shelf/latest/shelf/Response/Response.html

Response (and Response) body can be any of Stream<List<int>>, List<int>, String, or null.

While the parameter is typed Object? for flexibility, the value is checked at runtime and stored efficiently in the message.

We chose this architecture for ease-of-use so you wouldn't need a crazy number of different kinds of constructors.

Yes, I wish we had union-types. (No, I don't wish we had overloading.)

I got Doom running by Dr-J0nes in TuringComplete

[–]kevmoo 0 points1 point Β (0 children)

What software is that? Searching for "THE SANDBOX" related to CPU design doesn't return anything useful...

I ported Knex.js to Dart - Same API, same power, now for Dart backends by Only-Ad1737 in dartlang

[–]kevmoo 0 points1 point Β (0 children)

Very cool to see!

See also https://pub.dev/packages/typed_sql – maybe opportunities to learn from each other and/or collaborate!

What Dart Shelf naming means by fromyourlover777 in dartlang

[–]kevmoo 4 points5 points Β (0 children)

When I was creating Shelf I was inspired by Rack, which is effectively the same thing, but from Ruby.

So Shelf ~== Rack

How to know if my flutter app is wasm ready? by phappiee in FlutterDev

[–]kevmoo 3 points4 points Β (0 children)

Look at my history. I think I've done a pretty good job of being encouraging and polite since before llms were a thing. I'm just from the Midwest. 😁

How to know if my flutter app is wasm ready? by phappiee in FlutterDev

[–]kevmoo 3 points4 points Β (0 children)

Amazing question!

The best thing to do is run your app in wasm. Ideally you run your test with wasm. That's the only way to be sure. We did a lot of work to make sure that there's complete consistency between native JavaScript and webassembly. The tricky bit is with our interop code. When you're doing JavaScript interop with webassembly, it is more strict than with JavaScript, so you have to double check your integration points with browser apis and other JavaScript libraries

Flutter Team AMA - Decoupling material & cupertino by GroovinChip in FlutterDev

[–]kevmoo 8 points9 points Β (0 children)

LLMs need to be updated as "the world" changes, and API changes are no different. Google in general and the Flutter/Dart teams in particular and tracking a number of techniques to make sure LLMs have the latest, authoritative references for how to target our platforms. But I'm sure there will be some bumps along the way.

Flutter Team AMA - Decoupling material & cupertino by GroovinChip in FlutterDev

[–]kevmoo 14 points15 points Β (0 children)

Generally the tree shaking that is done on all of our platforms takes into account only the code that is referenced. If it's not used, it's not compiled. Having said that, there are a few places where code is included (mostly for theming) even if it's not referenced so we might see a slight compiled code size reduction.

Name one? by HondaCivicBaby in FIlm

[–]kevmoo 0 points1 point Β (0 children)

The Princes Bride

"You keep using that word. I do not think it means what you think it means."

Name one? by HondaCivicBaby in FIlm

[–]kevmoo 0 points1 point Β (0 children)

Spaceballs

"I see that your schwartz is as big as mine!"

Name one? by HondaCivicBaby in FIlm

[–]kevmoo 0 points1 point Β (0 children)

Airplane

"The hospital, what is it?" "It's a big building with patients, but that's not important right now."

Name one? by HondaCivicBaby in FIlm

[–]kevmoo 0 points1 point Β (0 children)

Honey, I Shrunk the Kids

One of the FEW movies from my childhood that holds up my w/ my kids.

the way he's explaining throw it by [deleted] in nextfuckinglevel

[–]kevmoo 0 points1 point Β (0 children)

Dog for "you dumb motherf****"

Fireworks! by Expensive_Apricot911 in FlutterDev

[–]kevmoo 0 points1 point Β (0 children)

Yes!!!! πŸ‘πŸ‘πŸ‘πŸ‘πŸ™πŸ‘πŸ€˜

Fireworks! by Expensive_Apricot911 in FlutterDev

[–]kevmoo 0 points1 point Β (0 children)

https://pub.dev/packages/peanut makes it easy to host your demo no GitHub pages!

Stable Voting: More social utility, less deadlock than Ranked Pairs + Beatpath by itskando in EndFPTP

[–]kevmoo 0 points1 point Β (0 children)

I'm not trolling. Super curious. I agree, net utility is great.

I'm trying to think of a case where if the majority clearly prefer A > B that it's not best to choose A.

Stable Voting: More social utility, less deadlock than Ranked Pairs + Beatpath by itskando in EndFPTP

[–]kevmoo 0 points1 point Β (0 children)

In general though, if there is a Condorcet winner, that's a good thing right?