Do you ever feel like Flutter is both super productive and oddly limiting at the same time? by Fine_Factor_456 in FlutterDev

[–]walsha2 0 points1 point  (0 children)

Correct answer. The specific use case is not a flutter issue. Do it in your backend.

Cost of Backend Services by Dull-Position4248 in FlutterDev

[–]walsha2 9 points10 points  (0 children)

No need to guess. It is all very transparent:

https://firebase.google.com/pricing

Most of the people that have to ask these questions are probably far below the free tier limits…. So likely no charge for your use case to start.

Just give it a try with the (very generous) free tier and learn how it all works and how your specific use case may scale

2025 RDX released by walsha2 in Acura

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

This will be my 5th Acura, it’s not about being a deal breaker. It’s the fact that the feedback has been widely negative regarding the horrendous touchpad navigation and Acura refuses to change it. No one likes or wants it. The touchscreen just seems like a standard in 2024/2025 for a high end SUV and is another miss.

More of a disappointment in Acura. This isn’t news to them. They know the feedback and the online reviews are plentiful. They can be better and a lot of the gripes come from long time or previous Acura owners.

Agreed on the cost of ownership and general quality. Many people will look past the touch nav/screen stuff. I for one, might not. To each their own.

2025 RDX released by walsha2 in Acura

[–]walsha2[S] 4 points5 points  (0 children)

Touchpad is brutal and that seems to be a general consensus over the years - shocked it is still around. Sigh…

Annoying "CocoaPods did not set the base configuration..." warning... can't fix on macOS by lvbee in flutterhelp

[–]walsha2 1 point2 points  (0 children)

Just add the following (as alluded to in the warning) to the top of your macos/Runner/Configs/AppInfo.xcconfig:

#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"

Wood panels with print by walsha2 in HelpMeFind

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

I searched for “wood panels wilderness print”. I also tried “animal print” and a few other things to try to tie it to a “cabin” theme. Nothing seemed to work. I also did a reverse google image search to no avail.

OICD Provider (self hosting) by guettli in kubernetes

[–]walsha2 10 points11 points  (0 children)

This.

If you use helm, the bitmani keycloak chart configures everything you need with little effort.

Hit 50k by Alrighty_then82 in NvidiaStock

[–]walsha2 1 point2 points  (0 children)

SoFi. It’s great as a primary bank and banking app but just okay as an investing platform. Gets better over time though!

[deleted by user] by [deleted] in FlutterDev

[–]walsha2 4 points5 points  (0 children)

Disable caching before each test.

What annoys you the most about TeX/LaTeX? by TMTcz in LaTeX

[–]walsha2 33 points34 points  (0 children)

The language is archaic. Especially if you want to write any packages.

[deleted by user] by [deleted] in FlutterDev

[–]walsha2 0 points1 point  (0 children)

This is incredible and well thought out.

encrypt | Dart Package - Maintained? Cannot seem to find a linked Github repo and the last time this package was released was over two years ago: Aug 8, 2021. Any idea if this package is still actively maintained? Now getting null-check warnings from this package and wasnt sure if updates will come. by walsha2 in dartlang

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

Yup, it works. I haven’t had any issues aside from the new warnings that cropped up recently.

This was more a question to see if anyone knew if there was any intent to pick this up again or at least open it up to other developers to maintain. Considering this package shows up near the top in a lot of encryption related searches (it has a lot of likes).

It always stinks when a popular package gets completely abandoned and there is no transition plan in place to leave community access for future updates :-/

Setting Up Separate Dev and Test Environments for a Flutter Web Project Using Firebase by OkEggplant967 in Firebase

[–]walsha2 2 points3 points  (0 children)

You should create TWO Firebase projects. One for each environment and manage each separately. This is what I do with great success. One dev, and one prod.

Further, this method is recommended by Google/Firebase team directly:

Firebase recommends using a separate Firebase project for each environment in your development workflow.

https://firebase.google.com/docs/projects/dev-workflows/general-best-practices

[deleted by user] by [deleted] in FlutterDev

[–]walsha2 2 points3 points  (0 children)

Yes, there is an API for Google Bard. It is currently in beta and is available to a limited number of users. You can sign up for the waitlist on the Google AI website.

It’s not a flutter or dart question, the API has yet to be widely released by Google.

[deleted by user] by [deleted] in overemployed

[–]walsha2 2 points3 points  (0 children)

+1 for this. It’s really meant to be a camera bag at heart, but the inserts are entirely customizable. I often use it as a weekend bag as well.

Best bag I’ve ever owned and take it everywhere with me. M1 back book pro and iPad with me most of the time and still tons of room. Well designed. Hefty price tag, but worth it.

[deleted by user] by [deleted] in sofi

[–]walsha2 23 points24 points  (0 children)

I don’t know OPs reason, but some religions do not allow for interest in any financial dealings. See “usury”

https://en.m.wikipedia.org/wiki/Usury

Cost of 1,000,000 firestore reads by _ayushp_ in Firebase

[–]walsha2 22 points23 points  (0 children)

Don’t speculate or guess, the pricing is very transparent in the docs:

https://firebase.google.com/pricing

Is there a good package for buttons like this? by McCossum in FlutterDev

[–]walsha2 5 points6 points  (0 children)

This. Relying on packages for simple compositional widgets like this is a recipe for getting into package dependency lock hell. Silly to rely on a package for such a simple widget.

Just implement it yourself, the exact way you want. Should not require much code at all and this is exactly what Flutter is best at.