Why would anyone take exogenous ketones?

Photo by Mary West on Unsplash

Note: consult with your physician before trying this.

Magical formula

First of all, exogenous means ‘coming from outside’. Ketones are the molecules produced by the liver from free fatty acids (fat).

So, exogenous ketones are the molecules that were produced in a lab. And you can take them in a form of salt, such as ketones salts of potassium, calcium, magnesium or sodium (K, Ca, Mg, Na) or in a liquid for, such as MCT oil (medium chain triglycerides) or ketone esters.

So far, I’ve tried ketones salts of the D-BHB type and MCT oil and the combination of both as in a fasted so in a fed state.

What I can report that I find ketones salts more interesting to experiment with. While MCT oil is the cheapest option, it comes with the cons of easily being able to disturb digestive tract, especially, if you take at once 30 ml of it or more. If you take 15 ml of MCT oil with water it is tolerated well, but the ketones’ level will be no more than 0.3 mmol/l (which is a concentration of ketones in the blood).

In contrast, ketones’ salts can be taken up to 12 or more grams at once and they do not cause, usually, digestive issues, but may result in high minerals intake, since these salts contain a mineral molecule bound to Beta-Hydroxybutyrate (BHB) ketone molecule.

So, if you want to try ketones salts check what is a daily intake of calcium, magnesium and potassium that you can safely tolerate in a day. Also, consult with your physicians before embarking on a exogenous ketones journey.

How does it feel like?

How does it feel like to be in ketosis if you don’t want to try a ketogenic diet, prolonged fasting of 24 to 48 hours long or exercise for more than 2 hours in a row?

Well, if you want to know then you can try exogenous ketones instead.

An athlete

If you are an athlete, then research shows that taking ketones may increase performance. Also, It helps with the recovery.

An older person

If you are an older person, then exogenous and endogenous (natively produced by the body) ketones were shown to improve cognitive function in healthy people, but also in people with onset of dementia and early stages of Alzheimer’s disease.

Overweight or obese

If you are an overweight or obese person, the research has shown that taking exogenous ketones lowers glucose level, but unfortunately, it also blocks lipolysis (fat burning). So, taking exogenous ketones won’t help you with weight loss. But going on an insulin lowering diets, such as low-carb or ketogenic diets, and/or fasting can put you in a state of endogenous (natural) ketosis. In this case lipolysis is actually increased and fat is used for energy.

Overall healthy and curious person

Well, if you overall healthy and want to just experiment with new stuff, then taking exogenous ketones can be fun. Research shows that they can improve cognitive function, for example.

When I took 6.3 to 10 grams of exogenous D-BHB ketones salt of potassium it put me within an hour into a state of ketosis having about 0.4 – 0.5 mmol/l of ketones as was measured by digital ketone breath meter (it measures Acetone in breath).

While in exogenous ketosis I felt a light high akin to drinking a low alcohol beer. Also, I felt an acidic taste in mouth (due to Acetone ketones excreted in a breath) and tingling in lips. By the way I did 48 and 67 hours fasts and natural ketosis didn’t feel like this at all.

I am not sure that I felt improvement in mental activity, but anecdotally, I can report better ability to focus on a task at hand.

So there you have it. Exogenous ketones may be an interesting thing to try if you are in a need for new experiences and potential health benefits.

Ketones of Potassium BHB salt to induce exogenous ketosis

Exogenous ketones

16/8 fast won’t help you to go into ketosis

Experiment of N = 1

References

Potassium BHB ketone salt I’ve used.

How to integrate with Canada Post AddressComplete API  

Canada Post AddressComplete API allows a user to search for an address within Canada and other countries. Within Canada results can be in both English and French languages. There are two ways to invoke Canada Post API: 

  • To embed css and JavaScript flies that can be copy and pasted from the Canada Post website 
  • To directly call Canada Post API 

API setup prerequisites 

This API Key is for all intents and purposes public, since it can be easily discovered by looking at the API calls in the Network tab in a browser’s developer tools. What prevents this API Key from being used by 3rd parties is assigning it to particular URLs that it can be called from and adding rate limiting and other options as discussed here

Embedded css and JavaScript files 

<head> 

<link rel="stylesheet" type="text/css" href="https://ws1.postescanada-canadapost.ca/css/addresscomplete-2.30.min.css?key=<Your API key comes here>" /> 

<script type="text/javascript" src="https://ws1.postescanada-canadapost.ca/js/addresscomplete-2.30.min.js?key=<Your API key comes here>"></script> 

<script type="text/javascript"> 

var fields = [ 

{ element: "street", field: "Line1" }, 

{ element: "city", field: "City", mode: pca.fieldMode.POPULATE }, 

{ element: "province", field: "ProvinceName", mode: pca.fieldMode.POPULATE }, 

{ element: "postcode", field: "PostalCode" }, 

{ element: "country", field: "CountryName", mode: pca.fieldMode.COUNTRY } 

], 

options = { 

key: "YD42-FH68-UZ69-CY67" 

}, 

control = new pca.Address(fields, options); 

</script>  

... 

</head>

Where the css link provides the styling for the Canada Post API script added in the script tag and the second script provides the mapping from the form fields in which you want to use Address Search to the existing fields in the Canada Post API script. More details about how the mapping is done can be found here

Direct call to Canada Post API 

It is also possible to integrate directly with the Canada Post API using their official documentation by using two Find and Retrieve endpoints they expose. More details about each endpoint will be provide below. 

Address Lookup Flow 

Possible search flow scenarios 

 Scenario First endpoint call Next Action (call)  Result Notes 
Look up of a single existing address Find Retrieve Detailed address returned by the Retrieve request  
Look up of a street or an apartment building address Find Find with LastId value from the first call List of houses/apartments In this case there is a need to issue additional Retrieve request to get a detailed address. 
Look up of a specific address by ID from Find request result Retrieve N/A Detailed address returned by the Retrieve request  

Find request 

https://ws1.postescanada-canadapost.ca/addresscomplete/interactive/find/v2.10/json3.ws

Find request endpoint is described in this official page. Its purpose is to look up addresses similar to the search term provided by the user. This endpoint has the following parameters 

NAME Mandatory TYPE DEFAULT DESCRIPTION Notes 
Key Yes String  API Key  
SearchTerm Yes String  The search term to find. If the LastId is provided, the SearchTerm searches within the results from the LastId. URL encoded 
LastId No String  The Id from a previous Find or FindByPosition. URL encoded 
Country No String CAN The name or ISO 2 or 3 character code for the country to search in. Most country names will be recognised but the use of the ISO country code is recommended for clarity.  
LanguagePreference No String en The 2 or 4 character language preference identifier e.g. (en, en-gb, en-us etc).  
MaxSuggestions No Integer The maximum number of autocomplete suggestions to return.  

It is possible to submit request to this endpoint for free using Canada Post website

Example request: 

https://ws1.postescanada-canadapost.ca/AddressComplete/Interactive/Find/v2.10/json3.ws?Key=<your< API Key comes here>&SearchTerm=390&Country=CAN

Response body 

https://ws1.postescanada-canadapost.ca/AddressComplete/Interactive/Find/2.1/json.ws?key=zz99-jd77-nf54-xw26&SearchTerm=234%20Drinkwater%20St

Response

{
    "Items": [
        {
            "Id": "CA|CP|ENG|ON-SUDBURY-DRINKWATER_ST-234",
            "Text": "234 Drinkwater St",
            "Highlight": "0-3,4-17",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5 - 7 Addresses",
            "Next": "Find"
        },
        {
            "Id": "CA|CP|A|802566926",
            "Text": "234 Drinkwater St",
            "Highlight": "0-3,4-17",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5",
            "Next": "Retrieve"
        }
    ]
}
https://ws1.postescanada-canadapost.ca/AddressComplete/Interactive/Find/2.1/json.ws?key=zz99-jd77-nf54-xw26&SearchTerm=234%20Drinkwater%20St&LastId=CA%7CCP%7CENG%7CON-SUDBURY-DRINKWATER_ST-234

Response

{
    "Items": [
        {
            "Id": "CA|CP|A|9494373",
            "Text": "1-234 Drinkwater St",
            "Highlight": "",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5",
            "Next": "Retrieve"
        },
        {
            "Id": "CA|CP|A|17427664",
            "Text": "2-234 Drinkwater St",
            "Highlight": "",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5",
            "Next": "Retrieve"
        },
        {
            "Id": "CA|CP|A|17427672",
            "Text": "6-234 Drinkwater St",
            "Highlight": "",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5",
            "Next": "Retrieve"
        },
        {
            "Id": "CA|CP|A|22742122",
            "Text": "9-234 Drinkwater St",
            "Highlight": "",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5",
            "Next": "Retrieve"
        }
    ]
}
NAME TYPE DESCRIPTION VALUES EXAMPLE 
Id String The Id to be used as the LastId with the Find method.  CAN|PR|X247361852|E|0|0 
Text String The found item.  2701 Riverside Dr, Ottawa, ON 
Highlight String A list of number ranges identifying the characters to highlight in the Text response (zero-based start position and end).  0-2,6-4 
Cursor Integer A zero-based position in the Text response indicating the suggested position of the cursor if this item is selected. A -1 response indicates no suggestion is available.  
Description String Descriptive information about the found item, typically if it’s a container.  102 Streets 
Next String The next step of the search process. Find or Retrieve Retrieve 

Example of response 

{
      "Items": [
         {
            "Id": "CA|CP|A|17427672",
            "Text": "6-234 Drinkwater St",
            "Highlight": "",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5",
            "Next": "Retrieve"
        },
        {
            "Id": "CA|CP|A|22742122",
            "Text": "9-234 Drinkwater St",
            "Highlight": "",
            "Cursor": "0",
            "Description": "Sudbury, ON, P3E 3E5",
            "Next": "Retrieve"
        }   
    ] 
}

Since we are talking about web service here the errors that it returns are returned with 200 response while the error itself is contained in the body of the response. Details about all possible errors can be found on Canda Post website

{
    "Items": [
                {
                        "Error": "5",
                        "Description": "Request not allowed from this URL",
                        "Cause": "The request was disallowed from the URL.",
                        "Resolution": "Check the security settings on the key first. If they look fine, please contact 
                        support as it may be from a URL on our blacklist."        
        }    
    ] 
}

Retrieve endpoint

https://ws1.postescanada-canadapost.ca/addresscomplete/interactive/retrieve/v2.11/json3.ws

Retrieve endpoint returns the full address details based on the Id, which is returned as a result of the Find request. 

As was mentioned in the possible flows section above, initial Find request returns a list of addresses that closely match the search term used by the user. Each address contains an Id field. This Id should be used to issue Retrieve request. You can try the request for free on Canada Post website

Parameters 

Each request to the web service requires the following parameters. You can create any number of keys, each of which can be reported on individually and have specific security settings. 

NAME TYPE Mandatory DESCRIPTION DEFAULT EXAMPLE Notes 
Key String Yes The key to use to authenticate to the service.  AA11-AA11-AA11-AA11  
Id String Yes The Id from a Find method to retrieve the details for.  CAN|1520704 Should be URL encoded 

Example of the request 

https://ws1.postescanada-canadapost.ca/AddressComplete/Interactive/Retrieve/2.11/json.ws?key=tf36-ku97-ab94-zc85&Id=CA%7CCP%7CA%7C9494373

NAME TYPE DESCRIPTION VALUES EXAMPLE 
Id String    
DomesticId String    
Language String    
LanguageAlternatives String    
Department String    
Company String    
SubBuilding String    
BuildingNumber String    
BuildingName String    
SecondaryStreet String    
Street String    
Block String    
Neighbourhood String    
District String    
City String    
Line1 String    
Line2 String    
Line3 String    
Line4 String    
Line5 String    
AdminAreaName String    
AdminAreaCode String    
Province String    
ProvinceName String    
ProvinceCode String    
PostalCode String    
CountryName String    
CountryIso2 String    
CountryIso3 String    
CountryIsoNumber Integer    
SortingNumber1 String    
SortingNumber2 String    
Barcode String    
POBoxNumber String    
Label String    
DataLevel String  Unknown
Premise
RangedPremise
Street
City 
 

Example of a response 

{
    "Items": [
        {
            "Id": "CA|CP|A|9494373",
            "DomesticId": "9494373",
            "Language": "ENG",
            "LanguageAlternatives": "ENG,FRE",
            "Department": "",
            "Company": "",
            "SubBuilding": "1",
            "BuildingNumber": "234",
            "BuildingName": "",
            "SecondaryStreet": "",
            "Street": "Drinkwater St",
            "Block": "",
            "Neighbourhood": "",
            "District": "",
            "City": "Sudbury",
            "Line1": "1-234 Drinkwater St",
            "Line2": "",
            "Line3": "",
            "Line4": "",
            "Line5": "",
            "AdminAreaName": "",
            "AdminAreaCode": "",
            "Province": "ON",
            "ProvinceName": "Ontario",
            "ProvinceCode": "ON",
            "PostalCode": "P3E 3E5",
            "CountryName": "Canada",
            "CountryIso2": "CA",
            "CountryIso3": "CAN",
            "CountryIsoNumber": "124",
            "SortingNumber1": "",
            "SortingNumber2": "",
            "Barcode": "",
            "POBoxNumber": "",
            "Label": "1-234 Drinkwater St\nSUDBURY ON P3E 3E5\nCANADA",
            "Type": "Residential",
            "DataLevel": "Premise",
            "AcIlrc": "R",
            "AcUm": "1"
        },
        {
            "Id": "CA|CP|A|9494373",
            "DomesticId": "9494373",
            "Language": "FRE",
            "LanguageAlternatives": "ENG,FRE",
            "Department": "",
            "Company": "",
            "SubBuilding": "1",
            "BuildingNumber": "234",
            "BuildingName": "",
            "SecondaryStreet": "",
            "Street": "Rue Drinkwater",
            "Block": "",
            "Neighbourhood": "",
            "District": "",
            "City": "Sudbury",
            "Line1": "1-234 Rue Drinkwater",
            "Line2": "",
            "Line3": "",
            "Line4": "",
            "Line5": "",
            "AdminAreaName": "",
            "AdminAreaCode": "",
            "Province": "ON",
            "ProvinceName": "Ontario",
            "ProvinceCode": "ON",
            "PostalCode": "P3E 3E5",
            "CountryName": "Canada",
            "CountryIso2": "CA",
            "CountryIso3": "CAN",
            "CountryIsoNumber": "124",
            "SortingNumber1": "",
            "SortingNumber2": "",
            "Barcode": "",
            "POBoxNumber": "",
            "Label": "1-234 Rue Drinkwater\nSUDBURY ON P3E 3E5\nCANADA",
            "Type": "Residential",
            "DataLevel": "Premise",
            "AcIlrc": "R",
            "AcUm": "1"
        }
    ]
}
ERROR DESCRIPTION CAUSE RESOLUTION 
1001 Id Invalid The Id parameter supplied was invalid. Try again, using only IDs from the Find services. 
1002 Not Available This record contains data that is not available on your account. Please contact support to upgrade your account. 

Example of an error response 

{
        "Items": [
                {
                        "Error": "3",
                        "Description": "Account out of credit",
                        "Cause": "Your account is either out of credit or has insufficient credit to service this request.",
                        "Resolution": "Please check your account balance and top it up if necessary."        
        }    
    ] 
}

References 

This is a github repository containing React with classes implementation of two possible ways to integrate with Canada Post AddressComplete API as was explained before. Pay attention that to install the dependencies there is a need to use yarn

Pull-Push and why brain prefers ketones as energy

Photo by isens usa on Unsplash

Ketones are the natural fuel for the brain

Takeaway

Cunnane SC. 2018. Ketones, omega-3 fatty acids and the Yin-Yang balance in the brain: insights from infant development and Alzheimer’s disease, and implications for human brain evolution. OCL 25(4): D409.

The use of both glucose and ketones as the brain’s two main fuels is governed by five principles: First, two distinctly different strategies regulate the use of glucose and ketones by the brain, a concept we call ’Push-Pull’ (Cunnane et al., 2016a, b). Brain glucose uptake is controlled by brain cell activity. Glucose is transported into the brain via glucose transporters in response to brain cell activation (Pull), so it is largely independent of blood glucose concentration. In contrast, ketones are transported into the brain via monocarboxylic acid transporters directly in response to plasma ketone concentration (Push), not brain activity. Hence, when ketones rise in the blood, they are immediately transported into the brain, an effect not seen with glucose.

  1. Cunnane SC, Courchesne-Loyer A, Vandenberghe C, St-Pierre V, Fortier M, Hennebelle M, Croteau E, Bocti C, Fulop T and Castellano C-A (2016) Can Ketones Help Rescue Brain Fuel Supply in Later Life? Implications for Cognitive Health during Aging and the Treatment of Alzheimer’s Disease. Front. Mol. Neurosci. 9:53. doi: 10.3389/fnmol.2016.00053 ↩︎

To lose weight first understand how you gain it

My review of the Ancient Keto BHB salt

1. Stefan M, Sharp M, Gheith R, Lowery R, Wilson J. The Effect of Exogenous Beta-Hydroxybutyrate Salt Supplementation on Metrics of Safety and Health in Adolescents. Nutrients. 2021 Mar 5;13(3):854. doi: 10.3390/nu13030854. PMID: 33807731; PMCID: PMC8000900.

2. Saris CGJ, Timmers S. Ketogenic diets and Ketone suplementation: A strategy for therapeutic intervention. Front Nutr. 2022 Nov 15;9:947567. doi: 10.3389/fnut.2022.947567. PMID: 36458166; PMCID: PMC9705794.

3. Clarke K, Tchabanenko K, Pawlosky R, Carter E, Todd King M, Musa-Veloso K, Ho M, Roberts A, Robertson J, Vanitallie TB, Veech RL. Kinetics, safety and tolerability of (R)-3-hydroxybutyl (R)-3-hydroxybutyrate in healthy adult subjects. Regul Toxicol Pharmacol. 2012 Aug;63(3):401-8. doi: 10.1016/j.yrtph.2012.04.008. Epub 2012 May 3. PMID: 22561291; PMCID: PMC3810007; Prins, P.J., D’Agostino, D.P., Rogers, C.Q. et al. Dose response of a novel exogenous ketone supplement on physiological, perceptual and performance parameters. Nutr Metab (Lond) 17, 81 (2020); Holland AM, Qazi AS, Beasley KN, Bennett HR. Blood and cardiovascular health parameters after supplementing with ketone salts for six weeks. J. insul. resist. 2019;4(1), a47.

Walking in a fasted state yields incredible results

Nick Norwitz’s experiment of N=1 testing Oreo vs statins showed drastic results.
And walking in a fasted state can show as incredible results as Oreo had on lowering LDL-C.

  1. Some of the weight loss is due to poop just before walking 🙂
  2. Some of the weight loss is due to perspiration (sweat).

Prolonged Fasting is a piece of cake! Or is it?

What is prolonged fasting?

Well, extended or prolonged fasting which is fasting for more than 24 hours is not your lovely 16/8. It’s more challenging and I should say it’s another level of fasting altogether.

First, it requires more dedication since unlike short fasts you still need to live in an environment where people continue to eat and you have to deal with food preparation for them and feel all the smells and looks of the food.

So if you can, do extended fasting when there is no one around, so not to be distracted.

Second, prolonged fasts are less comfortable than 16/8. After about 24 hours into a fast you start feeling a feeling of emptiness in the stomach that is a little bit annoying, but bearable. And at 8:00 PM as it also happens during regular fast you’ll feel hungry due to high levels of ghrelin hormone.

The good news is that in the morning of the second day of fasting if you do 42 hours for example, you don’t want to eat at all. Which is the same thing I feel during short fasts too.

Third, when you do prolonged fast you may feel coldness and low energy even though after about 24-36 hours (depending on the amount of glycogen in the liver) body should switch to using fat as main source of energy. Also, you may feel like going to sleep very early. Which is the case for me today, as usual when doing 42 hours fast.

Benefits of extended fasting

But, don’t forget that this is not in vain:

  1. During prolonged fasts you lose fat really fast.
  2. You have more time since you do not need to buy, cook or prepare food, unless you have kids. Then it sucks.
  3. You have an opportunity to look at your usual life from outside and see how our life is food-centric most of the time.
  4. Autophagy is in full swing only during prolonged fasts starting after 24 hours into fasting. I am not sure that 16/8 turns on autophagy at all (I’ll check this point in scientific papers later).

So there you have it


Extended fasting is challenging, but it comes with some benefits. If you don’t do it too frequently it can be even fun, when you do it with a partner, and kids are sent to spend time with grandpas and grandmas. And you use free time for walking, reading and sleeping.

How to lose weight and have fun doing it?

Photo by Marija Zaric on Unsplash

Can you lose fat and maintain your weight after this?

If you want to understand how to lose weight, then there are a couple of steps to follow to achieve this.

Pre-requisites

1. Check that you have no constraints that can prevent you from doing intermittent fasting. Which are

Do not try intermittent fasting if you are

  • a pregnant woman
  • a breastfeeding woman
  • underweight person
  • a child under 18 years old
  • has a medical condition that requires consultation with a doctor

Watch me!

2. I strongly recommend you to watch How to Avoid Insulin Resistance and Why it’s Important | Dr. Robert Lustig & Dr. Dom D’Agostino to understand how too much Insulin hormone that is released due to sugary and starchy foods and drinks consumption drives weight gain (fat gain). 

When you understand this simple thing then you can do three things below:

  • You can change what you eat to lessen or completely remove sugary and starchy foods and drinks from food you eat. This approach is also known as Insulin lowering diet (aka low-carb and Ketogenic diets)
  • Or you can go on an Intermittent Fasting lane and strive to do 16 hours long fast and 8 hours long eating window. It’s flexible and you can start from 12 hours fast, which means skipping your breakfast. It’s simple as that.
  • Or you can combine both of the above approaches.

3. Then if you feel like it you can start walking. As soon as you start losing weight (at first water) after stopping eating ultra processed food and sugar, you may find yourself more energetic and walking is a good thing to engage in.

4. At last, if you want to you can start doing resistance training using your own body (push-ups), resistance bands or dumbbells (these can be expensive to buy new, but you can find used ones at FB marketplace for example).

To summarize

For most of the people, it possible to lose weight without using drugs, surgeries and going to the gym by understanding that excessive amount of Insulin hormone is what is driving weight gain.

When you stop eating sugary and starchy foods, drinking sugary drinks all of which is called Ultra Processed food there is nothing that can prevent you from being healthier.

You can do it!

References:

The people that theirs advice I listen very carefully are:

  1. Benjamin Bikman, PhD – “Why We Get Sick”
  2. Jason Fung, MD – “The Obesity Code”
  3. Gary Taubes, investigative journalist – “Why We Get Fat”
  4. Mark Mattson, PhD – “Intermittent Fasting Revolution”
  5. Robert Lustig, MD – “Fat Chance”
  6. David Perlmutter, MD – “Drop Acid”
  7. Gin Stephens, author – “Fast. Feast. Repeat”
  8. Dr. Sten Ekberg (YouTuber)
  9. Dr. Berg (YouTuber)
  10. Thomas DeLauer (YouTuber)

The path to meditation

Photo by Leo Rivas on Unsplash

I’ve long being intrigued by meditation, but I never tried it myself. I’ve heard it was useful to calm you down. It was said it provided some health benefits etc. What caused me at last to change my mind about it was the talk that Lex Fridman had with the historian Yuval Noah Harari in which Yuval mentioned that he meditated for two hours a day and had a one month long meditation retreat once a year.

One additional motivating factor for me was that I, as I think most of the people on Earth, can’t get no satisfaction as The Rolling Stones famously sang. And indeed it’s the case, if you think carefully about it. In this information age we are bombarded with lots of things that cause us to want to buy that thing or the other. Subscribe to that service, like Netflix or the other etc. It seems like a never ending story of addiction that gets worse from day to day. Then, what can be a way out of it you may ask? Well, one of them, apparently, is meditation.

It turns out that thinking about meditation as a tool to relax and get calm is not exactly what meditation is meant for. Though, it definitely can make you calm it’s a by product of meditation, but not the main purpose of doing it.

Since Yuval mentioned meditation in that talk I googled the best books on meditation and got a list of a number of books. Among them were two books in particular that resonated with me.

The first one was 10% Happier book by former ABC News journalist Dan Harris in which he described his path to meditation and how it played out for him. I bought a used copy of that book and found it interesting and useful.

The second book in that search list was the How To Meditate book by Pema Chodron a Tibetan Buddhist nun who is a teacher at Gampo Abbey in Nova Scotia, Canada. That book was unlike the 10% Happier and it had much more profound impact on me in comparison to Dan Harris’ book. If you’ll read it and it will resonate with you, then I think you’ll understand what I mean by profound impact.