u/Few-Description-6742

Anyone else notice their posture drift mid-sit without realizing?

I sit 30-45m most mornings (mostly noting-style vipassana, some shikantaza). About a year ago I started noticing something — I'd reach the end of a sit and realize my head had slowly dropped 10-15° forward without me catching it. Not slumping dramatically, just slow drift over 20 minutes.

Once I started paying attention to it, I realized it correlates with the sits where mind-wandering was worst. Like the body proprioception goes offline at the same time as metacognition does.

Curious if other long-sit practitioners notice this. Have you found ways to catch it? Body scans every N minutes? Some teachers say "ignore the body, it'll find its own level" — but that doesn't seem to be my experience.

(Full disclosure: this question turned into me building a small thing to measure my own drift using AirPods motion sensors. Happy to share if useful, but mostly curious about the phenomenology first.)

reddit.com
u/Few-Description-6742 — 9 days ago

Anyone else notice their posture drift mid-sit without realizing?

I sit 30-45m most mornings (mostly noting-style vipassana, some shikantaza). About a year ago I started noticing something — I'd reach the end of a sit and realize my head had slowly dropped 10-15° forward without me catching it. Not slumping dramatically, just slow drift over 20 minutes.

Once I started paying attention to it, I realized it correlates with the sits where mind-wandering was worst. Like the body proprioception goes offline at the same time as metacognition does.

Curious if other long-sit practitioners notice this. Have you found ways to catch it? Body scans every N minutes? Some teachers say "ignore the body, it'll find its own level" — but that doesn't seem to be my experience.

(Full disclosure: this question turned into me building a small thing to measure my own drift using AirPods motion sensors. Happy to share if useful, but mostly curious about the phenomenology first.)

reddit.com
u/Few-Description-6742 — 9 days ago

Does anyone else lose track of their posture mid-sit?

I've been sitting daily for a while now and noticed something I can't quite explain: I'll start a 20-minute sit upright and alert, but somewhere around minute 12-15 I find I've slowly drifted into a slouch without catching it. Not like falling asleep, more like a slow forward lean.

Anyone else experience this? And if so, do you do anything to catch it or do you just let it be?

I'm not sure if it's a beginner thing, a posture thing, or just normal practice.

reddit.com
u/Few-Description-6742 — 9 days ago
▲ 0 r/expo+1 crossposts

Hey r/expo

I just shipped OffVault, a password manager I've been building solo with Expo. The pitch is simple: everything stays on your device. No accounts, no sync, no servers, no telemetry.      

I wanted to share the stack because I think it's a nice example of how far you can get with the modern Expo ecosystem without ejecting or writing native code.                                         

The constraints I gave myself:

  • 100% offline. No network calls, ever. The app doesn't even request internet permission paths.
  • Zero-knowledge by design. I can't read your data — there's no backend.

                         

Stack:

  • Expo SDK 55
  • expo-sqlite as the local store, with a small migrations runner
  • expo-secure-store for the device key (Keychain on iOS)
  • expo-local-authentication for Face ID / Touch ID / biometric unlock
  • expo-iap for the "Unlimited" one-time purchase

Crypto:

I went with u/noble/ciphers + u/noble/hashes because they're audited, pure JS, and don't pull in a native module:

  • AES-256-GCM for record encryption                                                   
  • A 256-bit device key generated with expo-crypto (real CSPRNG) and stored in SecureStore  scrypt (N=2¹⁴, r=8, p=1) for password-derived keys when exporting/importing encrypted backups
  • Versioned ciphertext prefixes (v1: device-key, v2p: password-derived) so I can rotate algorithms without breaking old data

                                                                                                                     

UI/UX bits:                                                                                                                                          

  • u/shopify/react-native-skia for the animated "vault seal" on the lock screen         
  • react-native-reanimated v4 + worklets for every interaction. The category chips, the FAB, the strength meter — all driven on the UI thread.
  • react-native-pulsar for haptics. I built a little haptics util mapping intents to presets (unlockSuccess, copy, generatorRegenerate, etc.).
  • react-native-reanimated-dnd for drag-and-drop reordering of categories.                   
  • sonner-native for toasts, lucide-react-native for icons

🔗 https://apps.apple.com/app/offvault-password-keeper/id6763614911 (iOS only for now)  

Happy to answer anything about the architecture, the crypto choices

And feedback on the app very welcome — it's v1.0.2 and I know there's a lot to polish. 

u/Few-Description-6742 — 22 days ago