Managing App store apps on behalf of clients
There's a confusion going on when managing client apps, that you should have a developer account. You don't need one. When managing clients app store apps, client should own a developer account,...
Welcome to my dev blog. You'll find a mix of topics here...DevOps, backend, frontend, mobile, macOS and Linux tips, and whatever else I happen to be exploring at the time. Subscribe for new articles, and check out my latest tutorials on YouTube.
There's a confusion going on when managing client apps, that you should have a developer account. You don't need one. When managing clients app store apps, client should own a developer account,...
If you own a ghost blog, your ghost blog posts are publicly accessible. It doesn't matter if your post or page is in draft or a private status. I discovered this issue accidentally when...
For anyone who is self hosting ghost blog behind nginx, this is the configuration that worked for me: location ^~ /.ghost/activitypub/ { proxy_pass https://ap.ghost.org; proxy_http_version 1.1; proxy_ssl_server_name...
If your app includes third-party authentication providers like Google login or GitHub login, Apple requires you to also provide an equivalent login option that prioritizes user privacy by limiting data collection to name and email, allowing...
I recently found out about gitleaks. It's an open source tool that detects leaked secrets. If you just want to try it locally, it's a simple command: gitleaks detect --verbose Sometimes you&...
Usual problem with software development, since I started working, is handling configuration and keeping secrets. For managing secrets I have tried AWS secret manager and Google secret manager. I even tried keeping configuration in "plain...