▲ 16 r/divineoffice+1 crossposts

Scriptural Rosary App

Hey y'all 🙋‍♂️

I'm working on a Rosary app for Android. (Demo video above)

Why another Rosary app?

I want one that is focused on praying full scriptural Rosaries.

People who are new to the Rosary are told "meditate on the mystery".

Well, in order to know what to meditate on, it can help to read the Bible verses that the mystery is based on.

The idea is that you read the full Bible sections or just a part of them before you begin each decade. After praying scriptural rosaries a bunch of times, you can then pray a rosary without the readings and what to meditate on will be second nature.

There are web sites and some apps for scriptural rosaries. But there aren't many with a focus on providing the comprehensive readings associated with the mysteries.

When sitting down to pray a scriptural rosary, I sometimes didn't want to have to decide which verses to use. For example, for the fifth sorrowful mystery, you can choose sections from any of the four gospels.

This app selects the relevant sections at random.

When you pray that mystery again, it selects ones you haven't seen yet.

When you've seen them all, it then cycles through them randomly again.

The app is free. No ads. No premium version. No pay to unlock features.

This app is designed to be used with a real rosary. It's not meant to replace your physical rosary.

The emphasis is on the readings, not art or aesthetics. The look and feel are minimal and functional.

The app uses the BSB, Berean Standard Bible. The BSB is in the public domain so there were no issues with using large portions of it in the app.

I'm currently sharing the app with early testers. How much you test it is up to you. The bare minimum required to be a tester is to simply install it. Ideally, a beta tester would pray a few rosaries with it then provide feedback on the experience.

If you're interested, please message me privately on here with your email address and I'll get you started. You'll receive a link to access the app on Google Play Store as an early tester.

Thanks!

Ed

u/dharmatech — 11 days ago
▲ 11 r/plan9

Mounting remote plan9 filesystems on Windows

Hey y'all 🙋‍♂️

My setup is:

Windows 11 : WSL : Ubuntu : QEMU : plan9

I drawterm in from Windows 11.

I have a script /cfg/cirno/cpustart:

#!/bin/rc

mkdir -p /tmp/exportfs

aux/listen1 -t tcp!*!17021 /bin/exportfs -r /           >>/tmp/exportfs/root.log   >[2=1] &
aux/listen1 -t tcp!*!17022 /bin/exportfs -r /usr/glenda >>/tmp/exportfs/glenda.log >[2=1] &

which takes care of running exportfs at boot.

I then mount / on Ubuntu:

#!/bin/bash

/home/dharmatech/src/plan9port/bin/9pfuse 'tcp!127.0.0.1!17021' ~/mnt/9front

That works pretty well. But, there are some drawbacks.

Windows can view files in Ubuntu:

dir '\\wsl$\Ubuntu\home\dharmatech'

But it has issues accessing the plan9 mount point:

> dir '\\wsl$\Ubuntu\home\dharmatech\mnt\9front'
Get-ChildItem: Access to the path '\\wsl$\Ubuntu\home\dharmatech\mnt\9front' is denied.
Get-ChildItem: Cannot find path '\\wsl$\Ubuntu\home\dharmatech\mnt\9front' because it does not exist.

I wanted to mess around with mounting the filesystem directly on Windows.

FUSE isn't a Windows thing. But, there is something called winfsp which is sort of like FUSE for Windows.

https://winfsp.dev/

Here's an experiment that uses winfsp to mount the plan9 filesystem on Windows:

https://github.com/dharmatech/9p-winfsp

I mount the filesystem at drive X: as follows:

build\p9winfsp.exe tcp!127.0.0.1!17021 X:

Read-only for now. It's surreal browsing plan9 from PowerShell, Explorer, vscode, etc.

reddit.com
u/dharmatech — 1 month ago