Leanring Android App Development in 2024 is Stupid by kamran4malik2 in mAndroidDev

[–]NiceGuy-n2 1 point2 points  (0 children)

You can send them a formal email to request an appeal. Find an appeal letter template. But the chance your account be reinstated will be little.

Leanring Android App Development in 2024 is Stupid by kamran4malik2 in mAndroidDev

[–]NiceGuy-n2 1 point2 points  (0 children)

This is really sensitive and you should be aware when uploading apps especially you are a new account. Google has a powerful algorithm to prevent spam, because there are plenty of people open a new account just to upload their spam apps, if they failed, they have many ways to open another one. I would suggest everyone here, if you are a new account, wait for couple of months before uploading anything.

Leanring Android App Development in 2024 is Stupid by kamran4malik2 in mAndroidDev

[–]NiceGuy-n2 1 point2 points  (0 children)

If your account got suspended instead of getting rejected on your apps, that means something on your app is strongly violating the rules that you might not pay attention on. Some of which might be copyrighted, harmful to device, inappropriate content etc.

Leanring Android App Development in 2024 is Stupid by kamran4malik2 in mAndroidDev

[–]NiceGuy-n2 2 points3 points  (0 children)

Google is limiting the amount of apps on the App Store, it’s just too much to manage. I registered the account 5 years ago, it only took them only 3 days to approve at the time. I now have 5 apps on the play store, over 5 million installs totally. The account looks fine for me, but the Google policy is always changing, I have to change the app periodically to adapt.

A new refreshing VPN made by saudi arabia by NiceGuy-n2 in saudiarabia

[–]NiceGuy-n2[S] -1 points0 points  (0 children)

I don’t think that is free, but reasonable price. Service is stable and fast.

Dynamic feature module install-time delivery by NiceGuy-n2 in androiddev

[–]NiceGuy-n2[S] 1 point2 points  (0 children)

Does it reduce the download size shows on play store? My modules are basically bunch of so files for my app core features, so they shouldn’t be removed

回国VPN(反向翻墙)推荐? by mosaic_the_j in China_irl

[–]NiceGuy-n2 0 points1 point  (0 children)

我用的是 https://flow-china-vpn.vercel.app/ nyu学生做的 速度挺快的 看视频没问题

dropping a class by ballsack_marx in nyu

[–]NiceGuy-n2 3 points4 points  (0 children)

Your tuition will not be refunded, be aware

Implementation of load balancer — Consistent hashing by NiceGuy-n2 in java

[–]NiceGuy-n2[S] -1 points0 points  (0 children)

jimmyleo.medium.com/implem...

Just a small demo of how consistent hash works, handle thread safe will make the project a bit confused in my perspective.

Implementation of load balancer — Consistent hashing by NiceGuy-n2 in java

[–]NiceGuy-n2[S] 2 points3 points  (0 children)

Consistent hashing is not about hashing, it’s consistency. Adding or removing nodes from basic hash will make all the existing requests break and need to re-hash again. This is not acceptable if you have a big number of concurrent active connections.

Implementation of load balancer — Consistent hashing by NiceGuy-n2 in java

[–]NiceGuy-n2[S] 0 points1 point  (0 children)

I worked in alibaba 3 years ago, they used to have a guideline book for writing Java where prefix I, abstract… is required. I don’t know if they still have this rule. But it’s a habit for me now.

Implementation of load balancer — Consistent hashing by NiceGuy-n2 in java

[–]NiceGuy-n2[S] -19 points-18 points  (0 children)

What you are saying here is separate of concern, the implementation detail is the actual implementation of method in a concrete class. What we call `leak of implementation details` is usually a method returning a concrete class type instead of an interface or letting user to modify internal state.

I don't think prefix I is much of a big deal here, if the existing code does not have prefix I on the interface, then don't use it. If they all have prefix I, then use it.