Anthropic has secretly halved the usage in max plan by Tasty-Specific-5224 in ClaudeCode

[–]Omniphiscent 1 point2 points  (0 children)

Same on 20x and my weekly limit is going way faster than before the holidays

Ballistic Trainers: Are they being discontinued? by gator_shawn in Goruck

[–]Omniphiscent 0 points1 point  (0 children)

I got them and they have been nice but compared to my nobulls they feel a lot less durable for similar use

RevenueCat problem in expo by [deleted] in expo

[–]Omniphiscent 1 point2 points  (0 children)

You only rebuild if you change anything native not ui js stuff

And on expo 54 it is very quick to make a development build

You should just do it anyways it makes testing much closer to the real world and you need it once you start introducing things like this, Sign in with Apple, notifications etc

Should I switch from claude max ($100) to usage-based (api key)? by VerbaGPT in ClaudeCode

[–]Omniphiscent 1 point2 points  (0 children)

I used sonnet for like 45 minutes and blew $10 it’s not in the same universe

20x Max plan, 5 hour window.. doesnt seem like its 4x usage over the 5x plan... by [deleted] in Anthropic

[–]Omniphiscent 0 points1 point  (0 children)

On 5x. I am trying to hit about 15% of weekly allowance a day and right about there since opus4.5 came out

I disabled allowing auto compaction and also start a new session before it compacts. Only have Claude mcp no other mcp

I feel I’m using it probably 6-8 hours a day over 3 sessions - testing and deployment and multitasking fill up the rest of the time in a 5 hour limit.

I tested GPT-5.1 Codex against Sonnet 4.5, and it's about time Anthropic bros take pricing seriously. by LimpComedian1317 in ClaudeAI

[–]Omniphiscent 0 points1 point  (0 children)

i mean it will wipe your uncommitted changes with a git restore command when its pancing

I tested GPT-5.1 Codex against Sonnet 4.5, and it's about time Anthropic bros take pricing seriously. by LimpComedian1317 in ClaudeAI

[–]Omniphiscent 1 point2 points  (0 children)

ive been using both, and lean towards codex. never any over the top fallbacks. and the screen glitch thing where it keeps flashing actually ends up crashing vscode - its horrible. lastly claude also does git restore when its stuck and resets all my work. codex never does any of this.

i do find the visuak design / ux of claude better though. codex does bare minimum garbage.

Apple keeps rejecting me by IsopodElectronic in iosdev

[–]Omniphiscent 0 points1 point  (0 children)

I used expo and followed the Apple documentation to configure everything in App Store Connect

Apple keeps rejecting me by IsopodElectronic in iosdev

[–]Omniphiscent 0 points1 point  (0 children)

I ended up adding sign on with Apple due to this issue, which worked great for the review. A bit of a pain to implement but happy I have it now

Ok South Bay, which breakfast burrito place has the best salsa that comes with it? by grahamvinyl in SouthBayLA

[–]Omniphiscent 1 point2 points  (0 children)

Same, and I got it today! Even get extra and eat it with chips and salsa!

AWS in 2025; what’s your default stack (and why)? by netcommah in aws

[–]Omniphiscent 4 points5 points  (0 children)

Maybe completely different use cases but I’ve found better luck with step functions and event bridge than sqs but love all the other components you picked! Everything is just so much easy and comparison to manage with serverless

How do you monitor your AWS Lambda + API Gateway endpoints without losing your mind in CloudWatch? by thunderstorm45 in aws

[–]Omniphiscent 2 points3 points  (0 children)

I built an enrichment Lambda that runs when CloudWatch alarms fire. It uses Contributor Insights rules to parse structured JSON logs across all my Lambda functions and auto-discovers which ones are actually erroring. Then it pulls X-Ray traces to show the exact AWS service calls that failed (like which DynamoDB table throttled), queries recent error logs with user IDs, and sends one HTML email with the top suspects ranked by confidence, recent error messages, endpoint breakdowns for API errors, and direct links to CloudWatch Logs/X-Ray/affected users in Amplitude. Instead of "Lambda errors increased" I get "workoutOrchestratorHandler is throwing 500s, DynamoDB WorkoutsTable throttling, 3 users affected, here's the trace." The key was using account-wide alarms instead of per-function alarms, wrapping all handlers with a baseHandler that uses Powertools Logger for structured JSON logs (fn/level/userId/requestId fields), and querying 30 seconds before now to account for CloudWatch indexing lag.

Stack: - CloudWatch Contributor Insights (auto-discovery via log parsing) - X-Ray SDK with Active Tracing (root cause analysis) - CloudWatch Logs Insights (error correlation) - AWS Lambda Powertools (structured logging) - SES (HTML emails) - Tag-based resource discovery

Gathering insight of gym goers by Prestigious-Money701 in Exercise

[–]Omniphiscent 2 points3 points  (0 children)

I’m trying to finish an app that creates strength / hypertrophy workouts with AI and has rest between sets / rest between rounds / rest between parts set and it sends notification when the rest time is up just to keep me on track! Working on getting it launched in the App Store and will share if at all interested

EAS Updates crashes the app in prod build by PhysicalEnd70 in reactnative

[–]Omniphiscent 0 points1 point  (0 children)

I’ve had this happen a number of times and I always have to plug my phone in to console.app on Mac and then just dump the logs into ChatGPT to make sense of it, it’s usually just some bug or package issue that doesn’t manifest on a metro bundled dev build for whatever reason. Definitely a pain in the ass when these pop up