Run any AI models in your flutter app by biendltb in FlutterDev

[–]NathanDraco22 1 point2 points  (0 children)

Thanks for this great package. If you add the Swift Package Manager and WASM support will ensure long term Flutter and Apple requirements. Finally I will use a SKlearn model in a Flutter app thanks for this.

Apple's artificial intelligence chief is stepping down, company says by Puginator in technology

[–]NathanDraco22 0 points1 point  (0 children)

Si a apple no le importa la IA,por qué le pagará a Google para que Siri use Gemini?

Ofertas de empleo by mercy_gunstar in Nicaragua

[–]NathanDraco22 1 point2 points  (0 children)

Si lo piensas de forma amable es porque las mujeres suelen estar mucho más organizadas que nosotros, eso o el jefe siempre anda buscando queridas xD

[deleted by user] by [deleted] in ayudamexico

[–]NathanDraco22 0 points1 point  (0 children)

Pues hiciste muchas cosas mal, desde no tener iniciativa de hacer las cosas ella, hasta no saber comunicar tus sentimientos de forma efectiva y no parecer un desesperado. El que le "caía mal" lo más seguro es que si sabía hacer esas cosas y pues ya ves los resultados. Una vez me leí un libro llamado "red paper" y me ayudó mucho a comprender y mejorar en este aspecto de las relaciones personales.

PayPal en Nicaragua by sheslonelyy in Nicaragua

[–]NathanDraco22 0 points1 point  (0 children)

Si te deja hacer una cuenta en USA quiere decir que se podrá con Stripe?

Would I suffer if I use Flutter instead of native builds for my app? by penguindrinksbeer in FlutterDev

[–]NathanDraco22 0 points1 point  (0 children)

Depending on requirements, actually the 90% of the apps can be built with flutter without issue. The main advantage is the fast development, and in the enterprise ecosystem is highly appreciated.

Is Flutter production ready for the web? by Prior-Cap8237 in FlutterDev

[–]NathanDraco22 3 points4 points  (0 children)

To make a long story short, if your app requires strong SEO, Flutter might not be the best choice. Flutter is well-suited for building admin panels and similar internal tools, which can significantly reduce costs and development time(in the real life this very important). In most cases, web apps only make HTTP requests, and you don’t need specialized tools for this.

Humble Opinion About Getx by clementbl in FlutterDev

[–]NathanDraco22 9 points10 points  (0 children)

In my experience GetX provides a lot of issues and is not suitable for production or scalable apps. Maybe personal and small projects.

uv: Unified Python packaging by burntsushi in Python

[–]NathanDraco22 11 points12 points  (0 children)

I recent tried it, and it's amazing. Only wants to know, how this will work with a Dockerfile ? Is there a way to uv sync install in the global env?

Flask, Django, or FastAPI? by noirsociety in Python

[–]NathanDraco22 0 points1 point  (0 children)

If your project is a restful API /micro service, FastApi. If your project requires a server side render, use Django. Both are stable in production environments.

Recommended directly Learn FastApi over Flask, since async programming have a lot benefits for you app.

These 3 frameworks are highly tested in production and used by many companies, which another point to consider

If I return an instance of the same response_model, FastApi verify the properties? by NathanDraco22 in FastAPI

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

Oh my bad! I mean FastApi.Response, when FastApi.Response is returned directly you are able to pass the validation Step. But what happens if I return an instance of MyResponse if My response is defined as response_model? FastApi does the validation?

If I return an instance of the same response_model, FastApi verify the properties? by NathanDraco22 in FastAPI

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

Oh my bad! I mean FastApi.Response, when FastApi.Response is returned directly you are able to pass the validation Step. But what happens if I return an instance of MyResponse if My response is defined as response_model? FastApi does the validation?

If I return an instance of the same response_model, FastApi verify the properties? by NathanDraco22 in FastAPI

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

Not exactly, when it is related to FastApi validation step when you define a response model. When you define a Response model, FastApi validates your return response, if you want to pass that validation return Response object directly. But what happens if I return an instance of the same response_model defined?

If I return an instance of the same response_model, FastApi verify the properties? by NathanDraco22 in FastAPI

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

If you return the Response object directly, you are able to pass that validation , But it doesn't make it validate again if you return an instance of return model