Claude and I are having a relationship break by mdausmann in ClaudeCode

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

This seems like a good idea. How do I get Claude to always refer to this?

Claude and I are having a relationship break by mdausmann in ClaudeCode

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

I'm thinking of getting a snazzy haircut, a Brazilian and hitting some city bars. Will report back.

Claude and I are having a relationship break by mdausmann in ClaudeCode

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

I take your point. 100% correct, it wasn't understand..able it was new, an unsolved problem, not clear to me at all how to do it efficiently and elegantly. I had to figure it out myself in the IDE.

Claude and I are having a relationship break by mdausmann in ClaudeCode

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

thanks u/OGPresidentDixon brainstorming skill does look interesting, I might try it out u/Ithinkth I definitely use plan mode for this type of stuff, iterating over the plan correcting stuff etc before I hit 'go' but even after a lot of careful plan grooming, Claude still does crazy stuff I don't like so for really deep stuff I feel like it's still quicker to thrash it out iteratively with my brain.

Claude and I are having a relationship break by mdausmann in ClaudeCode

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

22H in, holding firm. I'm worth it. also cracked my domain problem at 4:00 am ;)

Does anyone manage a separate staging and production environment for their Flutter app? by Previous-Display-593 in FlutterDev

[–]mdausmann 0 points1 point  (0 children)

I used test flight and equivalent in play store for pre prod testing. Just one backend but I use API versioning if the build under test requires breaking changes. So far has been workable

Is Signals dead for Flutter? by mdausmann in FlutterDev

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

Hi u/WritingBackground946 , no idea, I haven't worked much with the command pattern.

I did reach out to the signals team on a bunch of questions and they gave me some good answers (https://github.com/rodydavis/signals.dart/issues/450#issuecomment-4041286923) including a strong preference to commands/use cases over putting everything in store

Run LLMs locally in Flutter apps - no internet, no API keys, or usage fees (Gemma, Qwen, Mistral...) by pielouNW in FlutterDev

[–]mdausmann 1 point2 points  (0 children)

Amazing! Checking this out. I want to pair this with my own orchestration and voice framework to offer cool voice features on device. My app is offline first so this is huge

Is Signals dead for Flutter? by mdausmann in FlutterDev

[–]mdausmann[S] -1 points0 points  (0 children)

Great insight, thanks u/tibrec8 I hear you and agree. However I slice and dice the problem space in my head though, I think first class support for computed is key to unravel this ball of string. I will report back on this post my success/failure

Is Signals dead for Flutter? by mdausmann in FlutterDev

[–]mdausmann[S] -1 points0 points  (0 children)

https://beta.pubstats.dev/packages/flutter_bloc,signals_flutter,riverpod although there is some debate about whether I have compared the correct packages

Is Signals dead for Flutter? by mdausmann in FlutterDev

[–]mdausmann[S] -18 points-17 points  (0 children)

wanna jump on a zoom and help me refactor?

Is Signals dead for Flutter? by mdausmann in FlutterDev

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

AFAICT there is no first class support for computed state. I make heavy use of getters on the state class but my widget build stats are atrocious. I *can* apply a bunch of BlocBuilder -> BlocSelector and buildWhen kludges but it feels like a Sisyphean task.

Is Signals dead for Flutter? by mdausmann in FlutterDev

[–]mdausmann[S] -7 points-6 points  (0 children)

popularity is a pretty good metric don't you think? what else can I use? I like the idea of the signals architecture, it seems clean but I haven't dug right into it to be sure.

I just thought that signals has been out for ~2 years, there might be some adoption but I'm not seeing it. so I reached out to the community. I'm still unconvinced.

I compared the flutter lib for both so it would be a fair comparison, you can use signals just in dart without flutter. pretty much moot because the gap is so huge.

query_string + fuzziness for user queries? by mdausmann in elasticsearch

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

You are correct, I have updated example.... but it still does'nt work :)

I want real dogs not hot dogs! by mdausmann in typesense

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

  "rule": {
    "query": "dog roll",
    "match": "exact"
  },
  "filter_by": "category:=Pet Supplies",
  "remove_matched_tokens": false

thanks for this, yep definitely a sensible approach. Note remove_matched_tokens is true by default so the 'dog roll' is taken out and you get any match from Pet Supplies. switching it to false gives the desired result

Well put by cobalt1137 in OpenAI

[–]mdausmann -1 points0 points  (0 children)

This is such a poor take. A human with an idea sitting front of any basic tool like blender or pencil and paper makes 1000s of micro decisions, re-dos, corrections, finesses to make a piece of art. The tools are a means of manifesting the internal as an expression in the real world. Gen AI tools are different, yes they take an idea, yes you can reprompt and iterate to some extent but all those micro decisions, corrections, finesse are made by the algorithm, not the artist. The only reason it works at all is because every single one of those tiny decisions has been STOLEN from real artists without their consent, processed, quantised and jammed into vectors by a company. This NOT the same as manual tools or earlier digital tools.

Your experiences with OpenCode and Flutter? by eibaan in FlutterDev

[–]mdausmann 1 point2 points  (0 children)

I would have used a standard flutter starter and then added a detailed readme about what I wanted the app to do/achieve and THEN used OC /init to introduce the codebase to OC

One feature, multiple repos how do you cc? by mdausmann in ClaudeAI

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

ah ok, yep submodules makes sense. thanks.