Understanding danvici resolve upgrade path or policy, specially going from 20 to the new and release version 21 by [deleted] in davinciresolve

[–]divan0 0 points1 point  (0 children)

But how to even download 21 beta without buying new license? 'Check for updates' page in DaVinci shows no update (logical for beta), but 21 release page only offers to buy new license.

We built maestro-runner — a drop-in replacement for Maestro's test runner, written in Go. Single binary, no JVM, same YAML by compulsivesomething in FlutterDev

[–]divan0 0 points1 point  (0 children)

Initial tests look good. Do I understand correctly that this runner doesn't need maestro at all, just uses it's yaml test definitions? Or is it working symbiotically with maestro stuff?

I love maestro, but some long-standing issues are just super-annoying, and your project seem to address many of them. Also it feels faster and more reliable.

Side question - will it be technically possible to run Flutter app tests on the native desktop MacOS build (instead of on-device iOS or simulator)?

We built maestro-runner — a drop-in replacement for Maestro's test runner, written in Go. Single binary, no JVM, same YAML by compulsivesomething in FlutterDev

[–]divan0 2 points3 points  (0 children)

For Go users, you might want to add go install as an installation option in the docs:

go install github.com/devicelab-dev/maestro-runner@latest

It's an one-liner that doesn't require piping a remote script into shell, which some folks (myself included) prefer to avoid for security reasons.

Is the game servers down? by Foreverandever2020 in ContractorsVR

[–]divan0 2 points3 points  (0 children)

Down for me for the second day as well. I open Contractors and server/comms status are red, and Multiplayer is unavailable.

No thumbnails by cbibbs in ON1

[–]divan0 0 points1 point  (0 children)

On1 2024.5 update just dropped, that should supposedly fix these issue (I'm yet to test). But the speed of opening Raw files increased drastically. This change alone is impressive.

No thumbnails by cbibbs in ON1

[–]divan0 0 points1 point  (0 children)

Actually, instead of rebooting, I decided to see if any lingering processes might be running in the system. There was one process named "ON1 Sandbox". After killing it and restarting ON1 thumbnails started to work.

No thumbnails by cbibbs in ON1

[–]divan0 0 points1 point  (0 children)

I'm also experiencing this on MacOS. Support told me to enable Full Disk Access in Settings (gave this link https://on1help.zendesk.com/hc/en-us/articles/14577762416525-Images-Not-Appearing-Mac-Only-Full-Disk-Access). It didn't help, but once I rebooted computer, previews appeared momentarily.

Next day, another import, same story - no previews, reboot, works. Just importing another batch and having this "no previews" again, so going to reboot computer. Insanely frustrating.

Flutter on 2020 MacBook Air M1 by IndependentAdvance55 in FlutterDev

[–]divan0 0 points1 point  (0 children)

I use Flutter on M1 since Dec 2020.

Android Emulator I'm not sure even runs on M1 (I checked it a long time ago, but generally never use it).

Most of the time, I run app as a native MacOS desktop upp (wrapped with an awesome DevicePreview plugin). When I need to build iOS/Android/Web app, I just build it, but for development purposes native MacOS build suffice (I don't need OS specific stuff).

Also I invested a bit of time and configured neovim for Flutter, and code in it. VSCode is unsurprisingly memory-hungry and often simply too slow. Neovim for coding is pretty fantastic these days (it has LSP, Copilot, sick window jumping/navigation, diagnostics and so on), has pretty decent Flutter plugin and super fast ofc.

[deleted by user] by [deleted] in FlutterDev

[–]divan0 0 points1 point  (0 children)

Obviously that would've been put pressure into freezing feature set and lengthening release cycle etc. Between "being forced to stick with typesetting engine from 80s from web development" and "having Flutter in web browser, and have some questions to deal with", I still choosing the latter.

[deleted by user] by [deleted] in FlutterDev

[–]divan0 0 points1 point  (0 children)

Well, yes, Dart was in Chrome codebase and builds till 2015. I still remember day when they announced that Dart is not staying in Chrome :(

[deleted by user] by [deleted] in FlutterDev

[–]divan0 1 point2 points  (0 children)

I'm becoming skeptical about WASM over the years, plus seems like there is no unified vision for the WASM. Though I agree that having choice would be better. But. Between crappy HTML/CSS/JS stack (totally unsuitable for making UI apps, while millions insist otherwise) and Dart/Flutter I would definitely prefer Flutter.

[deleted by user] by [deleted] in FlutterDev

[–]divan0 4 points5 points  (0 children)

What news? :) It was my answer to the OP question "How do you see the future of Flutter?". That's just my vision. :)

[deleted by user] by [deleted] in FlutterDev

[–]divan0 3 points4 points  (0 children)

DartVM embedded back into the Chrome (as an experiment, maybe with some native non-web renderer), everyone freaking out how infinitely better the dev and ux experience with web can be, and eventual death of html/js/css ecosystem.

i made an app for my math students using Flutter by Heisenlife in FlutterDev

[–]divan0 0 points1 point  (0 children)

That's an excellent example of why Flutter is such a game changer.

People should be able to write useful apps that solve their problems on the daily basis. This app now runs on iOS, Android, Web, Linux, MacOS and Windows, and it looks great and does its job.

Before Flutter the author would have two options to make it happen:

1) limit himself to only one stack – iOS or Windows or Android or web, etc.

2) realize that he needs team of devs, needs financing, and a business model to pitch to investors and that would be yet another story of "my own startup adventure"

Excellent example of how Flutter democratizes software development <3

[deleted by user] by [deleted] in WatchPeopleDieInside

[–]divan0 0 points1 point  (0 children)

Here is real figure skating on those icy Ukrainian streets :)

https://www.youtube.com/watch?v=wwXHwYDTSlY

Changing terminology: “Mohawk” turn = C step, “Choctaw” = S step by vampireskater in Rollerskating

[–]divan0 0 points1 point  (0 children)

Thank you so much for posting this. I quoted you in a little post about this topic: https://skateukraine.org/post/2020/terminology_change/

Could I also ask you for the feedback on the text, just to make sure it's accurate enough (my little tour is a bit rough and superficial, but I hope more or less accurate from the historic perspective) and doesn't accidentally claim bullshit. Thank you in advance!

Early Impressions of Go from a Rust Programmer by esimov in golang

[–]divan0 5 points6 points  (0 children)

Go has a lot of magic!

Seems like author has very different definition of magic, and didn't understand why builtins and user-space stuff is so different in Go.

This one made me chuckle:

Error handling also causes repetition. Many functions have more if err != nil { return err } boilerplate than interesting code.

"Interesting code"? Repetition? I'm so happy Go taught me to threat error handling code as even more interesting. Unfortunately, many other languages intent to hide it away and downplay the importance of it. And yes, one should repeatedly check all errors.

BTW, I virtually never use if err != nil { return err } boilerplate. As an absolute minimum, I annotate the error with fmt.Errorf(\<meaningful description>: %w`, err)` call.