From 74ae47f9b519bcb5a48532d5c067d9a904364a03 Mon Sep 17 00:00:00 2001 From: Alixe Langshall Date: Mon, 20 May 2024 07:53:47 -0700 Subject: [PATCH] Test conversion of jupyter notebook to python using marimo. --- __pycache__/diagnose.cpython-311.pyc | Bin 0 -> 3308 bytes diagnose.py | 82 +++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 __pycache__/diagnose.cpython-311.pyc create mode 100644 diagnose.py diff --git a/__pycache__/diagnose.cpython-311.pyc b/__pycache__/diagnose.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..41a8ca642f08084e80b3a1ce05c1619cffa55b97 GIT binary patch literal 3308 zcmb_e&u<$=6kgkjTT&t_5I;|Y0JW)7J5YfH0@9zfDWVio0d0k>$3+C|;rrn0;79y_{1UaFuM@Nsok|zsWxX=}Ov*OcR-(hc6pSmuLavTE){T3)kxb`~MS8%T zWndEt${~=t^Zd-+SO9Cw;MU(qg~I9D)516zg=#!)U!w zAH#eJE6cD@?C>?utgLt#XkxP5@xCN2h+<~=u1+c#2r;I3eVNf)G2#*0b#`4NjBcH6 zPD2laOez6Wu;V+j*NdfH1%liNo%fD(|+QcEeejK1Y!B(nF^dyORmJQh;b`cvy+_8;gDH})*!{+j#zzd#5T=irb9G@Ft z1hD{+vMdIf3Px8A_JFQNL+jyOO}KLGI1y<}i{ay-y6{33X&J=^>Cxni|P_>pwHim!|4Gm|TV1mjS55kQ|s*w(EUd4>;?4SX3BG4Cmj+7p(LsE~P3 z0)+`3pwEZv?4pK;bf3XpH)%PkqpC^IT@#C*{PK9@TxQ>Cw}s4{ZJ{2Mlblv9De`ug zr>PX}L3WaOf>P4XvqW=Y+i$GB{&suqRQp4su03gG(ha$hoeVkV_*NoYndnxk3*kGb zm5o6mQ^)kkqsYJbt;nNA*s}Jb}q{g0rt-*bDA2G{3!Y`@*>X z`V&t+Xq;MX{uy8x`yr|Yi%0f8c!-I?|9WuSU0Rx1V(92X53f!H*Yx911bokv=i#(C|k<3_OX5(M6WzX6FL BVL<=@ literal 0 HcmV?d00001 diff --git a/diagnose.py b/diagnose.py new file mode 100644 index 0000000..111e9bb --- /dev/null +++ b/diagnose.py @@ -0,0 +1,82 @@ +import marimo + +__generated_with = "0.6.0" +app = marimo.App() + + +@app.cell +def __(mo): + mo.md( + r""" + #### Cognitive + * Is my brain spirialing on something? + * Am I blocked and can't figure out how to get around it? + #### Emotional + * How am I feeling about things right now? + * If I was poked just right, would I cry? + * Am I picking up on / feeling / reacting to other people's strong emotions? + * Does the feeling even belong to me? + #### Gastrointestinal + * How's my stomach? Does it need something? Is it upset? + * Did I take my omeprazole? + * Do I need probiotics? Yogurt? Something fermented (veggies, sourdough, etc)? + #### Endocrine + * How close to my HRT dose is it? + * Could this be cycle related? + * Is anyone else in my house having their cycle? + #### Sartorical (clothing) + * Am I happy with what I'm wearing? + * Could I change something and then be happier about it? + #### Physical Plant (the body) + * Am I fed? + * Do I need water? + * Do I need to get up and move about? + * Am I getting enough Vitamin D? + * Do I need physical contact? + #### Social + * Am I underpeopled? + * Am I overpeopled? + * Do I feel alone? + * Do I feel too much together? + * Do I need to know that I am loved? + #### Belief + * Am I searching for meaning? + * Am I feeling crushed by capitalism? + * Am I feeling a need to connect with the divine? + #### Meta + * After running through this list, is it the wrong diagnostic? + * Am I doing okay? Go look at [the list on the fridge](https://depts.washington.edu/fammed/wp-content/uploads/2019/03/Katers-selfcare_printable.pdf)? + * Consider checking Kate Bornstein's _Hello Cruel World_ + * Do I need to consult an oracle? + * One card draw? + * Shortcut: [Daily Tarot Draw](https://www.dailytarotdraw.com/card-deck) + * Three card reading? + * Shortcut: Quick reading from [Madam Adam](https://www.tiktok.com/@officialmadamadam?lang=en) + * I Ching? + * Three coin method + * Sticks / Yarrow + * Ask others in my household, close friends, or other people who know me what they think is going on. + """ + ) + return + + +@app.cell +def __(mo): + mo.md( + r""" + + """ + ) + return + + +@app.cell +def __(): + import marimo as mo + return mo, + + +if __name__ == "__main__": + app.run() +