Social Icons

Ana's Dev Scribbles

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.

My Apps

Apps I designed, developed, and shipped from idea to store.

ListDuo

Shared grocery list

Cookmarks

Recipe bookmark manager

Hexagram Dreams

I Ching journal

Dreamiary

Dream journal

Cikla

Local produce calendar

Making Network tab work in a self hosted Ghost

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...

2 min read

Secure configuration in GitHub using SOPS

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...