The end of the year is the time to pause, look back, and think about how the year went by. I am very grateful and fortunate to had an opportunity to enjoy a reasonably good time in 2020.
On the personal front
We visited our families in India in January. I enjoyed meeting my parents, brother, in-laws, and friends.
I did not travel for work and got more time to spend with my wife.
I started reading books. As a kid, I was an avid reader. The librarian in my town knew me by name. He would hold the books for me. With job and other things taking precedence over the years, I forgot about the books.
I stopped procrastinating about writing this blog. I had some solid excuses like not having enough content to write, poor writing skills, not enough time with work-related travel, etc. I discovered that none of this matters if I can just sit down and write something.
I re-started playing Clash of Clans. I enjoyed playing it a few years ago, but got addicted to it and burned out. During the pandemic, I wanted something other than movies to wind down. I downloaded my favorite game again and took it for a spin. I was surprised to find my old clan-mates still playing. Then I realized that I was thinking about this game all wrong. There is no end goal to it. The journey of playing is what makes it enjoyable.
I was able to stick to my intermittent fasting routine throughout the year, even during my visit to India.
And the best for the last. I was positively surprised by something magic. :)
On the professional front
I got promoted to a senior position in the team, started mentoring the team members. By the end of the year, I transitioned to a more exciting role that I am looking forward to in the next year.
I continued my learning by becoming a Salesforce Ranger, as well as became a Certified Administrator. I also completed the HL7 FHIR training and became proficient in FHIR.
What are my plans for the next year? I like to keep things simple, so I will continue to do the things I did this year already, but in a more structured way.
One of my goals for 2020 was to stick to an intermittent fasting routine. I completed 6600 hours of fasting in 2020. On average, that’s 18 hours of fasting every day, for 365 days. Other interesting stats include the longest streak of 440 fasts and the longest fast of 37 hours. I did reasonably well to maintain a healthy weight despite stress-induced binge eating during the pandemic.
My fasting journey started in mid of 2019. In the second half of July 2019, I was experiencing sharp pain in my left arm and shoulder. During that week in the middle of the night, I woke up all sweaty, with shortness of breath. I anxiously started googling for the nearest urgent care location, and the shortest path to reach there, just in case I need to rush. Fortunately in the next few minutes, I regained control of my breath. I drank a glass of water and decided to wait until morning. I visited my primary care physician the next day to find out what’s going on, and potentially plan for my angioplasty or bypass surgery (or whatever they do to fix the heart-related problem).
I like my doctor. He is not aggressive with any medications or prescriptions. His advice usually contains words like an embrace, adapt, or wait. After performing preliminary checks he confirmed that while the incident was indeed frightening, and showed all the symptoms of cardiac arrest, it was not a heart attack! The subsequent lipid profile tests etc confirmed his diagnosis.
While the diagnosis was good, when I carefully looked at the lab results, my LDL cholesterol was at the upper threshold of the safe range. My BMI was indicating that I was overweight. The pain in my left arm wasn’t completely gone. What if my doctor was wrong? This was a clue that I needed to make changes in my lifestyle. Fortunately, two things happened.
I read an interesting article about magician Penn Gillette losing 100 pounds by fasting for 3 months. He essentially followed One Meal A Day approach to maintain the weight loss.
I met a friend who had lost about 20 pounds in 3 months by following the intermittent fasting practice. It was super impressive.
I started taking deep dive into some internet research to understand the basics of intermittent fasting. While it looks like a modern fad, it has been practiced for centuries by various cultures and religions. For example, Hindu Lunar calendar has a 2-week schedule based on the full moon and new moon. On the 11th day after the full moon and new moon, one fasts from sunrise to sunset. That’s twice a month. It’s called Ekadashi fast.
The physiology of fasting is fascinating. Once you have the food, the digestion kicks in, and food breaks into glucose, amino acids, and fatty acids. Ghrelin or the ‘hunger hormone’ decreases and insulin increases. Insulin carries the nutrients into cells to be stored as glycogen, fat, etc., or used as energy. This phase - anabolic - lasts for 4 hours.
After the anabolic phase, the catabolic phase kicks in. For the next 12 hours, your blood glucose continues to drop and the liver starts breaking down glycogen for energy.
The catabolic phase transitions to the fat-burning phase. That’s 16 hours after you ate. As the name indicates, during the fat burning phase fat stores break down for energy. The fat burning phase lasts for 8 hours and transitions into the ketosis (and the deep ketosis phase).
graph LR
Z("fa:fa-hamburger")-.->A(Anabolic)
A(Anabolic) -. 0-4
hrs .-> B(Catabolic)
B(Catabolic) -. 4-16
hrs .-> C(Fat Burning)
C(Fat Burning) -. 16-24
hrs .-> D(Ketosis)
D(Ketosis) -. 24-72
hrs .-> E(Deep Ketosis)
I will not go into a lot of technical details here. That’s the basic overview of the physiology of fasting.
Coming back to the point. In August 2019, I started my fasting journey with a 16/8 schedule which meant 16-hour fasting and an 8-hour eating window. Just within a week or so I got used to it. I found it too easy, then I transitioned to the 18/6 schedule. And eventually settled on the 20/4 schedule for most of 2019. I use Zero Fasting to keep me motivated. I got the results I hoped for and did not experience any pain in my left arm or shoulder since then.
Note: To put in Penn Gillette’s words. If you take health and nutrition advice from a random internet stranger. You are an idiot.
This question comes up occasionally in my conversations with customers. Often there is a need to programmatically upload an attachment (a pdf or an image) file to Salesforce using MuleSoft. If the integration developer is not very familiar with the Salesforce Platform, it usually confusing due to the way Salesforce manages the attachments.
As shown in the following ER diagram, there are multiple entities involved in storing and managing the attachments in Salesforce
erDiagram
ContentDocument ||--|{ ContentDocumentLink : has
ContentDocument {
string Id
string Title
string PathOnClient
date CreatedDate
}
ContentDocumentLink ||--|| Account : linkedEntity
ContentDocumentLink {
string Id
reference LinkedEntityId
reference ContentDocumentId
picklist ShareType
picklist Visibility
}
Account {
string Id
string AccountNumber
}
ContentDocumentLink ||--|| Contact : linkedEntity
Contact {
string Id
string FirstName
string LastName
}
ContentDocumentLink ||--|| sObject : linkedEntity
sObject {
string Id
string SomeProperty
}
Things to note:
Salesforce attachments are stored in ContentDocument (and ContentVersion) objects.
The ContentDocument object is used to retrieve, query, update and delete the latest version of a document.
The ContentVersion object is used to create, query, retrieve, search, edit, and update a specific version of a Salesforce CRM Content document.
The attachment is stored in ContentDocument (Or ContentVersion) and linked to any sObject (Contact, Account etc) via ContentDocumentLink Object
Thus, to successfully upload an attachment to Salesforce following needs to happen
Upsert an attachment (file) to ContentDocument/ContentVersion object
Query the ContentDocument/ContentVersion to get the ContentDocumentId
Use the ContentDocumentId to link to your sObject (Account, Lead Opportunity, etc) by upserting the relationship in the ContentDocumentLink object
Following flow chart shows the general approach to upload an attachment to Salesforce:
graph TD
A([Start]) -->B[/Get file/]
B --> C{{Prepare ContentDocument}} --> D[( Create ContentDocument)]
D --> E{{Get ContentDocument Id}}
E --> F{{Prepare ContentDocumentLink}}
F --> G[( Create ContentDocumentLink)]
G --> H([End])