Skip to main content

Manual to living a Human Life - How to poop properly


Years ago, I had a question "is there a manual explaining how to use my (Human) body? "

Pursuit of this question send me in different directions.


In this post, I will talk about "How to poop properly?" what is the right way ?

Before get into it, Why now ?

My daughter going through potty training. She naturally prefers Indian style full squat. This initially puzzled me as she newer knew about this way and also this is against what she is seeing / observing in Potty training videos and what is being taught at school.

Being born in India, crouching is the way for us. Now being in western world, forcing my daughter against her natural will, makes me feel guilt.

So i started searching about what is the right thing to do.
Came across Dov Sikirov who researched on Human Digestive diseases. In his 2013 article (refer https://link.springer.com/article/10.1023/A:1024180319005) he studied straining forces applied when sitting or squatting during defecation and concluded that sensation of satisfactory bowel emptying in sitting defecation posture necessitates excessive expulsive effort compared to the squatting posture.

In another study, 3 positions are compared for defecation by measuring abdominal pressure. The Three positions used are : sitting, sitting with the hip flexing at 60 ° with respect to the rest of the body, and squatting with the hip flexing at 22.5 ° with respect to the rest of the body. This study concluded that "The results of the present study suggest that the greater the hip flexion achieved by squatting, the straighter the rectoanal canal will be, and accordingly, less strain will be required for defecation"

After reviewing this, I started researching how to implement this knowledge a.k.a how to squat in Western world. I looked at easy and cost effective solutions to implement.

This lead to review of various products like squat stools. 

But more are offering some hip flexing but not a full squat.
There are 2 product that came close to my expectation 

1. 

But the product website no longer in works.


Problem with it, at this time is "its way expensive". Earlier reviewed squat stools are around $30 but this one is at 6X i.e., $180 as its made on demand.
There is a need to produce it a better price.


For now, the plan is to do Malasana (Telugu translation is faeces posture) 






I will be watching this space and updating as market place changes...



Comments

Popular posts from this blog

Netbeans 6.0 - Code generation

The Java editor is capable of generating often used constructs for you automatically. Press Alt+Insert to invoke the code generation menu and pick what you want to generate To add import statements: Use error hints : Click on the error mark with the light bulb or press Alt+Enter . It will offer you a list of possible classes to import. Pick the proper hint and you are done Use the import class dialog : Put the caret into the name of an unimported class and press Alt+Shift+I . A list of possible classes to import will appear. Use the smart fix import : Press Ctrl+Shift+I . You will get a dialog that lists all unresolved identifiers in the source. If there is more than one option for resolving the identifier you may choose using the combo box. Classes shown in gray do not fit for some reason. Method exit points : Putting the caret on the return type of a method definition will highlight all places where the method can exit Exception throwing points : Putting the caret on an...

Artist got automated

Here is my first Tensorflow run to convert images to different styles of famous painters I am using the code that is available at  https://github.com/lengstrom/fast-style-transfer It uses specific versions of below libraries !apt install ffmpeg !pip install tensorflow==0.12.1 !pip install numpy==1.11.2 !pip install scipy==0.18.1 !pip install pillow==3.4.2 I started with latest version and that triggered failure after failure. If you are like me, add below changes to their respective files #This is to make tensorflow behave as if it is in v1 File : evaluate.py and ./src/transform.py import tensorflow.compat.v1 as tf tf.disable_v2_behavior() #Image functions are removed from scipy.misc module. so use imageio instead import imageio scipy.misc.imsave(out_path, img) --> imageio.imwrite(out_path, img) img = scipy.misc.imread(src, mode='RGB') --> img = imageio.imread(src, pilmode='RGB') Refer this post on more details on imageio changes Here is the ...

OnePlus 6T - Android 10 (OOS 10)

Its been more than 3 months since August security patch update. Out of curiosity I checked Oxygen Updater. To my surprise, Oxygen OS v 10 (based on Android 10) is available. Since this is a stable release, i went head and updated it. Its ended up being a buggy release. For those of you, who didnt get update over OTA, its better to wait for OOS 10.1. Here are the list of issue and the workarounds. Issue #1 :  Phone randomly restarts and then goes to boot loop Workaround : when the phone stuck in boot loop (with OnePlus logo animation), Press Power Button and Volume Down button to restart it Issue #2 : Google play wont work Work Around : Booting to recovery and clearing cache is expected to fix this. will update after testing To booting to recovery, Firstly, turn off your phone: press and hold the Power button for a while or press the Power key once and choose ‘power off’. Once the switch off process is completed start pressing and also holding down the Volume Dow...