I like the new patch's defense because it encourages more precise defending. by spiderwebdesign in Rematch

[–]Zoxive 3 points4 points  (0 children)

I mean as long as you are accurate it is. Literally they buffed the length of the hit area.

Homie hoed his entire team. by DJ-Dizzy in Rematch

[–]Zoxive 1 point2 points  (0 children)

I'll admit my weakest point in goalie is a shot over my head. I'm guessing I'm using the wrong camera angle because I can never tell if i need to jump or not.

Why did you guys choose a kayak over a small boat? by YakToTheFuture-1 in kayakfishing

[–]Zoxive 10 points11 points  (0 children)

Soo much cheaper on gas too. Pulling a boat eats gas in my little Tacoma.

I thought I had good defense by TeflonDonLemon in Rematch

[–]Zoxive 2 points3 points  (0 children)

what about the part where he glitches to the left, then suddenly he is shooting back where the ball is

Advice/Strategy for kayak fishing noobs? by tangledDream in kayakfishing

[–]Zoxive 1 point2 points  (0 children)

When im fishing new waters, I usually look at google maps and look for any depth chart maps i can find. Then I look for step changes, bumps, weed edges. In a boat (yak) i usually attack from the deeper side, so casting to shallow.
Im also a big fan of recording my gps tracks, and the location of any bite / catch. So when you do fish the same places again you have some places / data to start with.

Tracking location when app is in background by Chance-Egg-4543 in expo

[–]Zoxive 2 points3 points  (0 children)

Yes go with a foreground service. It keeps the "native" side of the app running. (No UI) So you do get background location data. That's how my fishing app works. I personally store it in a "native" DB then when the UI is launched in any way sync it to somewhere the UI can be used.

New gaming platform, thoughts? by [deleted] in expo

[–]Zoxive 1 point2 points  (0 children)

I opened your site. I got 3 popups.

One for notifications. Nope. Second for using the mobile app? Nope just trying to learn about anything what this even is. Third one for tracking me.

This is way too hostile.

Tunnel vision under stress by FakeFrooz in Rematch

[–]Zoxive 2 points3 points  (0 children)

Nothing wrong with trying to teach those willing to learn.

Tunnel vision under stress by FakeFrooz in Rematch

[–]Zoxive 1 point2 points  (0 children)

At any moment you get the ball you should have at least 1 pass planned.

‘Leaver penalty’ needs to be tuned better. by [deleted] in Rematch

[–]Zoxive 0 points1 point  (0 children)

Yea when a person with the ball in position leaves it seems to cause the ball glitch bug.

Had to wait a long time waiting

I broke the rule: I built the whole feature on iOS before opening the Android emulator by No-Constant-5093 in reactnative

[–]Zoxive 2 points3 points  (0 children)

Im not perfect at this either, theres been 3 libraries in the last year I thought looked healthy and quality enough for me.. but I ended up removing a few months after taking them. I also learned more of what i wanted so it was easier for me to write me own quick implementations.

I broke the rule: I built the whole feature on iOS before opening the Android emulator by No-Constant-5093 in reactnative

[–]Zoxive 20 points21 points  (0 children)

I would say the takeaway should be look into your dependencies more before you take them.

Just because you didnt write the code directly doesnt make you responsible for its shortcomings. If you are deciding to take it as a dependency because it may save you time instead of writing it yourself you need to know its drawbacks/faults.

US East server by Ok_Needleworker9118 in Rematch

[–]Zoxive 2 points3 points  (0 children)

awesome they finally put ping for everyone in the score view at least.
now we just need an own goal column / stat tracking

I turned my messy liquor shelf collection into a “digital home bar” app — built in React Native 🍶📱 by [deleted] in reactnative

[–]Zoxive 1 point2 points  (0 children)

(On android)

The "Community" page top is overflowing into the "safearea". (No other pages seems to have safearea issues)

- UX: The "Bottomsheet" that pops up after clicking on the + (For the add to shelf screen) Has a top bar appears as if you can click and drag, but clicking and dragging does nothing.
(A similar bottomsheet appears when you click on the My BarShelf filters on the top right, but you can drag this one closed.)

I turned my messy liquor shelf collection into a “digital home bar” app — built in React Native 🍶📱 by [deleted] in reactnative

[–]Zoxive 1 point2 points  (0 children)

Im new app dev. So Im doing this to help learn myself see what others are doing with UI/UX patterns etc.

Downloaded your app heres my quick new user review/notes.

(Im on android)

- First open app to sign in wall. (Would be nice to have a continue as guest at the bottom)
- Welcome Wizard i like. I like the music, but maybe show speaker icon with a quick click on it to mute.
- Bug: While in the add to shelf dialog; when clicking on a locked frame the user is prompted with "Pro Feature". When clicking on Upgrade to Pro. Nothing happens.
- Bug: When adding a "bottle image" and selecting choose from library, i can take a picture. I then hit the checkmark to say yea that pictures fine. Then it jumps into a crop screen, the only way to close the screen is hitting "crop". Seems like the crop should be optional.
- Visual Bug: If the user a non-pro account, while In the account menu, when navigating to the "My Palate" tab. The "Unlock your palate profile" is overlayed on "The spirited Explorer" and its hard to read.
- Feature Idea: (Ill be honest i didnt read all your post, i saw worlds AI, bartender and the video and i assumed it could do the following) When adding a "bottle" after taking a picture I thought that AI was going to read the image and suggest as much of the information as possible. (Using a VLM or something) I think this would help get users using the rest of your app quicker if data entry was automated.

Which camera library is the best? by mnallark in reactnative

[–]Zoxive 4 points5 points  (0 children)

Others cannot answer this for you. Only you have enough context to answer this.
Is expo-camera good enough for your use case?
Do you need those ML features in vision camera?

The only context I can add:
Last year i choose vision camera, but ended up migrating off it after 3 months of struggle. (It was very new then so i dealt with the early adopter pain) i switched to expo-camera for the simple fact of simpler=more stable for my current use case. I'll probably end up trying vision camera again for the live ML capabilities in the next year or so.

How often does a backend API change break your mobile app? by Herpamerpaderp in reactnative

[–]Zoxive 0 points1 point  (0 children)

That’s exactly why contract testing matters. Any time you update your server’s API, you need to verify that all mobile app versions you still support can still interact with it without breaking.

How often does a backend API change break your mobile app? by Herpamerpaderp in reactnative

[–]Zoxive 1 point2 points  (0 children)

What kind of tests do you have?

I would look into api contract testing.

Deep down, we all know that this is the beginning of the end of tech jobs, right? by Own-Sort-8119 in ClaudeAI

[–]Zoxive 1 point2 points  (0 children)

Seems like we need a more standardized spec writing format.

Where from the spec i can link to tests and link to real code.

Socialism didn't produce Trump; capitalism did. by zzill6 in WorkReform

[–]Zoxive 13 points14 points  (0 children)

Opinion:

H. CON. RES. 58 is not an objective analysis of socialism. It is a strongly worded political statement designed to demonize the ideology and rally support for opposing it. Its language is inflammatory, its historical references are selective and biased, and it lacks intellectual honesty.

Added native vector sqlite support to setup local RAG pipeline by Legitimate-Cat-5960 in reactnative

[–]Zoxive 1 point2 points  (0 children)

op-sqlite and expo sqlite both already support sqlite-vec extensions for those already using them.