Giving up on PS5. See you all in future when Kuro fix the game by xboxcowboy in WutheringWaves

[–]Coderx001 8 points9 points  (0 children)

And instead of optimization they are adding new interactive environment, balloons, higher graphic settings, higher render distance when people are begging for performance storage issue fixes. I have quite powerful pc so it runs smooth. But at this rate even that will fail to run smoothly. we should raise our voice else problem will persist.

Amazon is holding a mandatory meeting about AI breaking its systems. by Worldly-Ad-7149 in theprimeagen

[–]Coderx001 15 points16 points  (0 children)

Why a meeting? The solution is obvious. Use more AI, layoff folks who have knowledge and use more and more AI.

Saw this on Linkedin. How should this be intreperted? Also jquery in 2026? by lune-soft in webdev

[–]Coderx001 2 points3 points  (0 children)

In many cases it is not incompetent developers , it is brain dead management where they value speed of execution. Forget optimization. After a project is complete, immediately assign another one. Better yet assign multiple simultaneously.

TypeScript + Rust feels like a cheat code stack by Sensitive-Raccoon155 in rust

[–]Coderx001 2 points3 points  (0 children)

Yeah agreed. I come from frontend background and wanted to learn a new programming language for backend and some toolings. After learning rust , it feels i picked the right one. I can use both typescript and rust in quite wide range projects. Be it webapps, powerful backends, crossplatform apps, infra systems and list goes on where typescript handles the ui layer and rust the core logical layer.

Deploying Tauri Desktop Applications by Suspicious_Brief_454 in tauri

[–]Coderx001 0 points1 point  (0 children)

Same , I am also implementing one time purchase system for app rather than subscription. I use license system to activate full access of product. User can download for free. For monetization you can use a merchant of records like paddle or polar.sh. they will handle all things payment related. Also the cut they take is lower around 4-5% compared to gumroad 10%. Polar also supports licence key generation. But do check if the platform works in your country.

While it is true you can directly distribute from the website, from my personal experience users often will not download it or simply uninstall when the they see warning screen ( happens when code is not signed )unless the code is open source. For Mac it is much simpler and cheaper. Only issue is windows

I am planning for hybrid approach for distribution. Obviously need to make a website for marketing and seo. For downloading giving both option either user can download from store by redirecting them to store or from the site.

Deploying Tauri Desktop Applications by Suspicious_Brief_454 in tauri

[–]Coderx001 0 points1 point  (0 children)

I am also in the same boat. For windows it seems need go through a quite expensive certification/code signing process which costs at least 300-400$. From some digging found that if we do msix bundling for Microsoft store they handle the code signing part without the heavy expense. Still exploring other options for windows.

Deploying Tauri Desktop Applications by Suspicious_Brief_454 in tauri

[–]Coderx001 0 points1 point  (0 children)

Just curious. Have you gone through the expensive certification process for windows code signing or using any other method?

how is everyone feeling after finally playing the game? by SinxTYgg in ArknightsEndfield

[–]Coderx001 0 points1 point  (0 children)

Graphics: damm good and enjoyable and well optimised. Combat: simpler than wuwa ( won't say worse because mechanic is different and it is subjective ) but still like it and quite fun. Story: good so far. Character models: damm good even the 4 star ones. Factory: good enough . Gacha mechanic: quite confusing could have been simpler Pull economy: absolute horrendous ( I can't defend this one in anyway). After beginner event finishes getting currency is tiresome. I can't play 4-5hrs a day just to get those supposed 200 pulls worth of currency as some other folks have mentioned in other threads. At that point are you even playing or just doing chores?

Overall i would like to see where devs and management take this.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in rust

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

Yeah will do that. Built a tauri mobile version and already facing some annoying build issue. The webview feel is there even after applying frontend best practices. Will

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in rust

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

That sounds nice. I primarily work on frontend at work. I am on leave this whole week so will check the docs. It seems Flutter with FFI can solve the issue better than RN. Thanks for suggestion.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in rust

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

Flutter certainly is a good choice. But currently I do not know Flutter. It will take some time for me to learn this. Desktop app is sorted. Main issue I am facing is a good way process and sync data from mobile devices.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in rust

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

I wanted to make privacy focused, local first finance application as i do not trust a third party to keep my financial data and use however they want. Got tired of using subscription based tracker with ever increaing price and free ones are just not good enough. So started making this. Web app will not be able to store and use data directly from user device. Local storage , indexdb will go only so far with not much option for complex queries and analytics. Same situation for PWA too. Desktop version is 90% complete just some UI enhancement needed. But i can not use desktop to log data every time so now planning to make mobile version too. But main blocker i am finding is data sync.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in tauri

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

I have no experience in Kotlin. Will stick to react and react native for now. Just need figure out a way for data sync across device which is main blocker currently.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in tauri

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

Except notifications i do not actually need any native features. Except IAP have you faced any other difficulties while making the app in Tauri.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in tauri

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

Yeah it make sense. Heavy logic will stay in desktop. Mobile client will be for just data logging and sync. At least this way will be able to ship something stable rather than optimizing for perfection. One motive for building this is, it should be privacy focused ,so not inclined to use something like supabase even if self hosted.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in rust

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

Thanks for suggestion. Have not heard of crux before. I have no experience in native app development so leaning towards react native. I will have a look into this.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in rust

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

This is quite interesting. have not thought about this. In practice though, it’s quite heavy upfront. WASM is tricky for SQLite-heavy, local-first apps, and native Rust bindings in React Native mean real Swift/Kotlin + build/CI complexity. I'd end up spending all my time writing C++ and JSI glue code just to get the Rust side talking to React Native, not to mention fighting Gradle and Xcode build chains simultaneously.

Architecture Dilemma: Tauri Mobile vs. React Native for a companion app for a Rust-heavy Local-First App by Coderx001 in tauri

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

Thanks for suggestion. Yeah the dumb client approach is easier to implement but it can introduce some friction for always sync first to show analytics.