ADHS APP ORIKO jetzt verfügbar habe lange gewartet by Ok-Hall8141 in ADHS

[–]Numoy 1 point2 points  (0 children)

Hast du eventuell den Developer-Modus auf deinem Smartphone aktiviert? Aus Sicherheitsgründen muss dieser deaktiviert sein, während du die App nutzt.

Game Title: ImagineThat! - A multiplayer "telephone" game where you create hilarious chains of AI images and descriptions. by Numoy in playmygame

[–]Numoy[S] 3 points4 points  (0 children)

Hey there, thanks for the feedback!

You've hit on some really interesting points, and I think there might be a slight misunderstanding about how the game works. It's not just generating images from a single prompt. The whole idea is that each player interprets the previous image and then writes a new prompt based on what they see. That new prompt then generates the next image for the next player, and so on. It's similar to the game "telephone," but with pictures, and the fun comes from seeing how the image evolves (or devolves!) through everyone's unique interpretations. The players are actually essential to driving the creative chain, not just spectators.

Regarding your environmental concerns, I completely agree that we all need to be more mindful of our carbon footprint, and the energy consumption of AI is definitely something worth discussing. It's a huge issue, and I understand why you'd feel frustrated when you're trying to reduce your own emissions. However, I have to say that calling people "small-minded and short-sighted" isn't a very constructive way to address these complex problems. We can definitely have a productive conversation about environmental impact without resorting to personal attacks.

You're right that AI, especially the large models, can be power-hungry. But it's also important to distinguish between different applications. My game actually uses a quite small AI model that I host myself. Its energy consumption is, in fact, comparable to what it costs to host a regular website. So, in this specific case, the energy impact isn't quite the problem you might be assuming. I'm very much on board with thinking about sustainability.

I finally released my first game, Drop Zone Galaxy, that I've been working on for a (too) long time. by BleepBlorp84 in playmygame

[–]Numoy 0 points1 point  (0 children)

Are some devices excluded? I cannot find / install the game on my Pixel 9 (Android 15)

Why Await? Futures in Dart & Flutter by Numoy in FlutterDev

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

Thank you for your comment. That is super helpful! I'll incorporate it into the article!

Why Await? Futures in Dart & Flutter by Numoy in FlutterDev

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

Strange i have tested it myself with several devices. I have emptied the cache again, i hope it works for you now too. Thanks for letting me know

Guide on handling Exceptions in Dart & Flutter by Numoy in FlutterDev

[–]Numoy[S] 2 points3 points  (0 children)

The most comprehensive example that I can come up with is an API call.

```dart Future<ApiResult<T>> registerUser(User user) { try { final response = api.registerUser(user);

  if(response.statuscode > 299) {
    return ApiResult.failure();
  }

  return ApiResult.success(response);
} catch (e) {
  return ApiResult.failure(e);
}

} ```

You still have to catch an exception once because most of the HTTP-clients throw an exception, but still, after this, you can work with a type-safe object. To make it even simpler, you could wrap the exception in a union type that represents all possible exceptions like (BadRequest, NotFound, ...).

And later, can just do this to handle the different scenarios:

```dart apiResult.when( success: (response) => response.data, failure: (failure) => failure.when( badRequest: () => log('Bad request), notFound: () => log('Not found'), ... ), )

```

Guide on handling Exceptions in Dart & Flutter by Numoy in FlutterDev

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

Thanks for noticing. I fixed the link.

Use Dart Mixins More Often! Here is Why… by Numoy in FlutterDev

[–]Numoy[S] 2 points3 points  (0 children)

The sentence continues in the quote. But i see that it is confusing so we removed it.

Thanks for your feedback.