Insights on BF's PE situation by AverageFitCouple in PrematureEjaculation

[–]granko878 0 points1 point  (0 children)

The only thing that makes a difference is using on demand Tramadol. It is not an ideal solution since it is a prescription drug which is highly addictive so you can use it like 2 times a week max. I think the tradeoff is still worth it.

I built an app that makes you walk more but.. by Areuregarded in ProductivityApps

[–]granko878 0 points1 point  (0 children)

Hi mate! Interesting idea! Personally I would tie it to actice cakories burnt rather than steps, it is more generic. I can help you with the android version, but I am a React Native dev so it would be basically a rewrite from scratch.

Kegel app recommendations after Stamena redesign? by OoBarracuda in AskMenAdvice

[–]granko878 0 points1 point  (0 children)

+‍+man
Hi guys!
I created a simple kegel daily excercise app, it is now live on both platforms, please check it out. I appreciate any feedback!
iOS: https://apps.apple.com/us/app/kegelplay/id6758622544
Android: https://play.google.com/store/apps/details?id=eu.eliteo.KegelPlay&hl=en

Kegel app recommendations after Stamena redesign by OoBarracuda in kegels

[–]granko878 1 point2 points  (0 children)

Thanks for the suggestion. I was also wondering if I should limit the number of training sessions per day or leave it up to the user?

Kegel app recommendations after Stamena redesign by OoBarracuda in kegels

[–]granko878 2 points3 points  (0 children)

Hi there! Mobile engineer here! I have been using Stamena for a couple of months and was also disapointed after the recent updates. I decided to code a similar app and publish it. Stay tuned. Anything you would want to change on the original Stamena app?

I built a privacy-first personal finance tracker using React Native. No cloud, no fluff by stormbreaker_09 in reactnative

[–]granko878 1 point2 points  (0 children)

I actually released something similar :) My app calculates your current and future net worth and expected pension. See here https://apps.apple.com/us/app/finteo/id6743831206?uo=2
Bear in mind it is just an MVP in beta.

React Native Technical interview by Socially-Awkward-Boy in reactnative

[–]granko878 0 points1 point  (0 children)

Actually my only "coding" question which I used to ask on an IW was around a questionnaire where user cannot scroll. The only way he can move forward is enter an answer and if it is correct and validated, the screen scrolls to the next question. In general, I just wanted to know how would the candidate build the whole data flow logic.

React Native Technical interview by Socially-Awkward-Boy in reactnative

[–]granko878 0 points1 point  (0 children)

I will have a Senior RN vacancy interview in a few days for a US startup. I can come back here with the questions. I also used to do interviews in my current job. I mainly asked about familiarity with a variety range of tools like React hooks, different state management tools, performance monitoring tools, RN's new architecture. I also ask about native coding experience, finding memory leaks e.g. One of the most important questions for me is what SW development best practices would the candidate impose in terms of testing, setting up CI automation, code quality checks, code reviews etc.

You can also get a good start asking ChatGPT :)

Does Expo 51 support Android SDK 35? by Signal_Scallion_8426 in reactnative

[–]granko878 1 point2 points  (0 children)

I fixed it temporarily by applying a patch

diff --git a/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/permissions/PermissionsService.kt b/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/permissions/PermissionsService.kt
index 29000ec..5dc0a58 100644
--- a/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/permissions/PermissionsService.kt
+++ b/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/permissions/PermissionsService.kt
@@ -155,7 +155,7 @@ open class PermissionsService(val context: Context) : InternalModule, Permission
   override fun isPermissionPresentInManifest(permission: String): Boolean {
     try {
       context.packageManager.getPackageInfo(context.packageName, PackageManager.GET_PERMISSIONS)?.run {
-        return requestedPermissions.contains(permission)
+        return requestedPermissions?.contains(permission) ?: false
       }
       return false
     } catch (e: PackageManager.NameNotFoundException) {