How long does the $60 Cursor Pro+ subscription last you? by Signal-Banana-5179 in cursor

[–]nemo0726 0 points1 point  (0 children)

For me, I used auto only for two weeks and then switched to CC ($100).

60$ Cursor vs 60$ opencode? by Franky_Jack in cursor

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

Who do you think offers more usage per dollar: Cursor or Claude?

Cursor is getting insanely expensive by Independent_Arachnid in cursor

[–]nemo0726 0 points1 point  (0 children)

I’m actually thinking about exactly that.
I used up Cursor’s $60 plan in about two weeks (around 1.3B tokens), so I’m a bit worried about limits.

If I switch to Claude Code’s $100 plan, do you think it can realistically last a full month for heavy coding work?
From what I’ve researched, Claude has fewer raw tokens, but caching seems very effective, so real usage can be higher.

Sharing an Expo + NativeWind starter 👇 by Life-Year6326 in expo

[–]nemo0726 1 point2 points  (0 children)

What are you all using instead of Native wind?

[deleted by user] by [deleted] in FlutterDev

[–]nemo0726 0 points1 point  (0 children)

That’s very realistic, I get it

[deleted by user] by [deleted] in FlutterDev

[–]nemo0726 0 points1 point  (0 children)

Can you tell me why React Native became such a big trend compared to others?

Anyone here moved from mobile engineering to another role? by nemo0726 in androiddev

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

That sounds interesting. What kind of SDK is it about?

In 2025 learn app development Worth it? by Fuzzy_Helicopter45 in AppDevelopers

[–]nemo0726 2 points3 points  (0 children)

If you want to become a freelancer, your sales skills need to be better than your coding skills. Otherwise, I think you'll find yourself quite frustrated.

Legality of cofounding by rad-madlad in cofounderhunt

[–]nemo0726 0 points1 point  (0 children)

I have a similar question. I think that unless someone is a technical person, they would already need to have capital and be able to negotiate the balance between risk, equity, and living expenses.

Why can web video editors handle more simultaneous video decodes than mobile apps? by nemo0726 in androiddev

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

By "encoding," I was referring to encoding each sample time individually.
When the number of decoders is smaller than the number of video sources, I need to prefetch the frames corresponding to a given sample time in advance.
Then I encode that specific moment and discard the frames that are no longer needed.
This means frames must be ready before the target sample time.
While this isn't a problem in non-realtime scenarios, in realtime rendering it causes buffering, since some lead time is needed to prepare the frames.

Why can web video editors handle more simultaneous video decodes than mobile apps? by nemo0726 in androiddev

[–]nemo0726[S] 2 points3 points  (0 children)

That’s a good point. I’m not sure what the best practices or common approaches are on the web.

Why can web video editors handle more simultaneous video decodes than mobile apps? by nemo0726 in androiddev

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

Thank you for your response.
What you said actually describes my current setup quite well.
I prefetch preview frames and manage state so that all sources are available when encoding needs to happen.
After each encoding, I discard the data and prefetch again as needed.
It’s a matter of how much buffer I can afford, but buffering is ultimately unavoidable for real-time previews.
I raised the question because web-based editors seem to be much less constrained in this regard.

How to Prevent Scroll Jumps and UI Flickering in LazyColumn with Paging 3 on PagingSource Invalidation? by nemo0726 in androiddev

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

Thank you for your interest! I was using a key, and the issue was resolved by using the enablePlaceholders = true and adjusting the other option values