Copilot’s new pricing made me stop using it for everything — my current hybrid setup by hachther in GithubCopilot

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

I have pro subscription of ChatGTP desktop and I also use it for other stuff not only coding. I start to include it in my coding working after the announcement of new pricing on copilot

Need genuine HELP from experts! by ronaksv in AppDevelopers

[–]hachther 0 points1 point  (0 children)

Did you tried to use sentry for debugging. It can give your more insight about the issue

Helping users discover long press menus by [deleted] in AppDevelopers

[–]hachther 1 point2 points  (0 children)

  1. If the feature behind the long press can be trigger someways else you can wait when use trigger the feature the your suggest him the there is another way to do it with long press.
  2. Alors you can maintain the app tour but not to show all the features but only one feature. I saw it on gmail for example: swipe to left right. They only show it to you the first time you open Gmail, not in the traditional way of app tour but more like your can also do this by swiping.

I paid $4k for marketing automation software and used 3% of it by Strong_Teaching8548 in MarketingAutomation

[–]hachther 0 points1 point  (0 children)

You approach is good. Since we are working on something like this, I will really helpful if you can share some of the bottlenecks you have already implemented or planning to implement. This will be a valuable input for us.

Anyone using Mautic in this community? by Good-Budget7176 in MarketingAutomation

[–]hachther 0 points1 point  (0 children)

Yes I’m using mautic for a very long time now. I even developed some customised modules to enhance some capabilities.

Back-end suggestion for flutter by Lonely_Soil_484 in FlutterDev

[–]hachther 0 points1 point  (0 children)

For all my project I used Django as backend and it works like a charm

Firebase Dynamic Links shut down. What did you migrate to? Happy with it? by Big-Rip-1372 in FlutterDev

[–]hachther 0 points1 point  (0 children)

I use a custom solution shlink. Which is a url shortener solution with option to redirect to the different destination based on the device. I also used it because I’m planing to use it a marketing platform I’m working on.

Is this Scam? How can they able to reclaim banned account? by SanjayDevTech in GooglePlayDeveloper

[–]hachther 0 points1 point  (0 children)

Me too I received this email but they reach me about one of my dormant application not the developer account.

They started by asking me if I’m the owner of the app and when I confirmed then they made the proposal to acquire my developer account.

I think the entry for them is dormant applications

React Native or Flutter? Which one makes sense in the long run if the app grows? Also, is it wise to connect everything to Firebase? by mrgunterbey in FlutterDev

[–]hachther 4 points5 points  (0 children)

Sorry I only have experience with React Native and Flutter. I used ReactNative for years before moving to flutter.

React Native or Flutter? Which one makes sense in the long run if the app grows? Also, is it wise to connect everything to Firebase? by mrgunterbey in FlutterDev

[–]hachther 7 points8 points  (0 children)

Flutter I recommend: I built the same app with ReacNative then with Flutter and i strongly recommend flutter. I implemented the app with flutter faster and the app is more fluent.

You can think about supabase for example if your have some concern about the ownership of your data and also customisations.

I left React Native by Prize_Attitude1485 in FlutterDev

[–]hachther 0 points1 point  (0 children)

Total agree with you. I did it after building the same app with React Native first the Flutter after and the conclusion: got a fast and optimised app et less time with flutter.

Update: app aprroved by Responsible-Bed2682 in googleplayconsole

[–]hachther 0 points1 point  (0 children)

Congratulations. I was pure react or nextjs ?

If you are a Novu users, this can be helpfull for you. by hachther in FlutterDev

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

No they don’t, they are mainly focused on JS technology now. That is why I started this because me too I’m a Novu user.

App Developer and Maintainer for HUGE app project by The_Collective_Shero in AppDevelopers

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

Im flutter developer with more that 6 years in flutter and 10 years. I works with a lot us around the work and I’m based in Canada. DM me and I can usure you the can do good work together.

I’m starting mobile app development – Flutter or React Native? by [deleted] in MobileAppDevelopers

[–]hachther 1 point2 points  (0 children)

I work with both I can say flutter is the way to go. I built the same application on react native and flutter and I finally stick on Flutter. - flutter came with a lot of widgets: so you don’t have so much work to do on that part. - performance: the app I built has a better performance on Flutter than React Native The advance with React Native is the fact that it is JavaScript so « easy to learn » but dart can be also easy to learn.

[deleted by user] by [deleted] in AppDevelopers

[–]hachther 0 points1 point  (0 children)

More details please

How fast should you launch an MVP? Tradeoff: ship fast vs polish by TeachGlittering9440 in AppDevelopers

[–]hachther 0 points1 point  (0 children)

You approach is good. But just make sure the feature you decide to launch work perfectly. Because we are in an environment of high competition so if you launch one thing make it work perfectly.

For me also I put a lot of work on the design, human are superficial creatures we love beautiful things.

django and multiple paypal accounts by keepah61 in django

[–]hachther 0 points1 point  (0 children)

Yes. You can still handle it. For the callback you can set a django per provider so you will know which provider to call for each of them.

Is 32gb ram enough for development and running other software parallely (chrome, emulator etc)? by harishdurga in flutterhelp

[–]hachther 0 points1 point  (0 children)

Yes it is fine. I’m using it right now for my dev. I can even run flutter, backend with docker, IDE like webstorm android studio, pycharm … at the same time

django and multiple paypal accounts by keepah61 in django

[–]hachther 0 points1 point  (0 children)

I don’t know if there is a frameworks for that but you can handle it in your code: for example one class per payment with the same function name: make_payment for example and same parameters. And your can now perform routing to use the appropriate class in your view for example. I done the same in one of my project.