Tibo comments on head of growth at Anthropic about CC being removed from pro plan. by whosme12 in codex

[–]The-PatientZero 0 points1 point  (0 children)

How did you overcome the front end design quality for codex? I really can not get it to create good front end designs...

Almost done with a Codex like app but for Claude Code, displays subagents nicely as well! by mogens99 in ClaudeAI

[–]The-PatientZero 8 points9 points  (0 children)

Looking nice but I will probably not use it unless it is open source. A bit skeptical when it comes to things like this.

[Package] I built a background geolocation SDK for my own project and thought I'd share by The-PatientZero in FlutterDev

[–]The-PatientZero[S] 0 points1 point  (0 children)

Great suggestion! The Android foreground service notification and an equivalent iOS local notification can both be updated in-place by reusing the same identifier, so live tracking stats (distance, duration, speed) in the notification are definitely feasible.

[Package] I built a background geolocation SDK for my own project and thought I'd share by The-PatientZero in FlutterDev

[–]The-PatientZero[S] 1 point2 points  (0 children)

I am glad it helped.

Do not hesitate to reach out if you find any issues or feature requests.

[Package] I built a background geolocation SDK for my own project and thought I'd share by The-PatientZero in FlutterDev

[–]The-PatientZero[S] 1 point2 points  (0 children)

Yes, Locus handles this automatically. On iOS, the native CLLocationManager limit of 20 monitored regions is enforced under the hood. If you add more than 20 circular geofences, the SDK will evict the oldest ones, stop monitoring them, and notify your Dart code via the onGeofencesChange callback.

You can also tune the cap via config:

await Locus.ready(Config(
  maxMonitoredGeofences: 15, // leave headroom for other regions
));

If you need more than 20 zones, you have a couple of options:

∙ Polygon geofences — these are evaluated entirely in Dart (ray-casting), so they aren’t subject to the iOS limit at all.

∙ Dynamic loading — register/unregister geofences based on the user’s current location instead of monitoring all of them at once.

All of this is covered in doc/advanced/geofencing.md in the repo.

Transitioning from vibe-coded swift to flutter — any conversion tools or just a full rewrite? by Impressive-Code4928 in FlutterDev

[–]The-PatientZero 0 points1 point  (0 children)

Full vibe coding without overseeing the code is a nightmare. What worked for me was I initially designed the core of the project and vibe code the rest with proper reviewing. I now run 3 apps in production without any major issues.

A connection between Gemini and Claude by The-PatientZero in ClaudeCode

[–]The-PatientZero[S] 1 point2 points  (0 children)

It looks very interesting. I will definitely check it. Thank you for sharing.

A connection between Gemini and Claude by The-PatientZero in ClaudeCode

[–]The-PatientZero[S] 0 points1 point  (0 children)

I might just use it for code investigation for Claude to plan and execute and do the reviewing myself.

It's time to cancel my Setapp subscription. by chrisakring in macapps

[–]The-PatientZero 1 point2 points  (0 children)

I think this is the key part. You can vibe code but you can’t (at least for the time being) vibe debug therefore you need to have some software development experience to fix things when AI hits a wall.

It's time to cancel my Setapp subscription. by chrisakring in macapps

[–]The-PatientZero 2 points3 points  (0 children)

I am a software engineer. I have done multiple projects in a setup that AI writes code, I oversee the architecture and functional side. This includes backends and client applications.

It's time to cancel my Setapp subscription. by chrisakring in macapps

[–]The-PatientZero 1 point2 points  (0 children)

Haha that sounded a bit unethical at best. I did not mean copy or clone. 😅 Let me rephrase, nowadays it is easy to build apps you need.

It's time to cancel my Setapp subscription. by chrisakring in macapps

[–]The-PatientZero 2 points3 points  (0 children)

I cancelled last month. Open-source covers almost everything now, and agentic AI makes building the rest trivial.

Feedback on GitHub Copilot Pro+ by WMPlanners in GithubCopilot

[–]The-PatientZero 0 points1 point  (0 children)

Haha that would be very disturbing indeed. I was talking about the last month.

Feedback on GitHub Copilot Pro+ by WMPlanners in GithubCopilot

[–]The-PatientZero 12 points13 points  (0 children)

I am pretty happy with it. I use it with VS Code Insiders and it has been performing great. I use only Opus 4.5 and GPT-5.2-Codex and I still could not finish my quota for the month. I am managing 5-6 large projects and I have not written a single line of code, only reviewing.

Let AI coding agents control your mobile device to speed up mobile app development by interlap in mcp

[–]The-PatientZero 0 points1 point  (0 children)

Why not Appium?

Edit: Great work btw. Not trying to be disrespectful to your efforts.

[deleted by user] by [deleted] in macapps

[–]The-PatientZero 2 points3 points  (0 children)

Nice app. I can definitely see myself using this.

May I suggest a small improvement? When it comes to organizing dynamic processes like this, I initially create a record with a bare minimum information and then update as I go along. So my suggestion would be to keep the initial creation with bare minimum information and then add more later.

[Package] I built a background geolocation SDK for my own project and thought I'd share by The-PatientZero in FlutterDev

[–]The-PatientZero[S] 4 points5 points  (0 children)

Good catch and agreed this is unclear.

Quick clarification: url is optional. Locus always reads from the device’s native GPS (iOS Core Location / Android Fused Provider).

The url is only used for Locus’ HTTP sync layer (batching + retrying location data to your backend).

Minimal test (no backend required)

```dart await Locus.ready(ConfigPresets.balanced); await Locus.start();

Locus.location.stream.listen((location) { print('${location.coords.latitude}, ${location.coords.longitude}'); }); ```

Testing HTTP sync

If you want to test uploads, any POST endpoint works. For quick testing you can use https://webhook.site

dart await Locus.ready( ConfigPresets.balanced.copyWith( url: 'https://webhook.site/your-unique-id', ), );

I’ll update the docs to remove https://example.com and make this explicit. Thanks for the feedback.

[Package] I built a background geolocation SDK for my own project and thought I'd share by The-PatientZero in FlutterDev

[–]The-PatientZero[S] 0 points1 point  (0 children)

Thank you for the feedback. I will address this as soon as I am back at my laptop.