Sunday 31 January 2021

How Often Should You Blog?


How often should you blog? This is a question that, while not often asked, has many answers. The reason it's not often asked is probably because you just have to wait a couple of days and it will pop up in one of the newsletters you somehow signed up for years ago and haven't got around to cancelling. The problem is, it will be answering the question from the perspective of someone else - maybe someone that is trying to grow an already large online following, sell online courses, or forge a new career as a writer. It might even be answered from the perspective of a company that is blogging as part of a marketing initiative.

Even if the answer is from someone trying to achieve the exact same thing that you are, they won't be you, shaped by your own experiences and subject to your own personal ups and downs. For this reason I would advise never following someone else's advice slavishly, but pick some approaches based on what appeals to you, and try a selection of them out. You should also apply this to my advice - it's typically based on what has (mostly) worked for me, and I'm not you. 

Every Day

I've seen a number of write ups from people who blog every day. Some reported less traffic, not more - readers deserted them as they weren't able to maintain the quality, or just got overloaded even though the blogger felt that their process had improved. Others found that their engagement went up, sometimes by as much as 1,000%, although the real success stories tend to be a few years ago, possibly because the platforms they were writing on were less crowded so a concerted effort could make a real difference.

Blogging every day definitely isn't for me, as I'm absolutely certain the quality would go downhill. It's easy to underestimate the effort required to write posts at a decent cadence, and I can't tell you the number of times I thought I had a series of 10+ posts on a topic, only to start running out of ideas by part 4 or 5. The only way I could make this happen is by flipping my blog to more of a journal, where I just write about my day, but I'd get bored with that before too long, never mind any readers. 

I am tempted though, as I'm curious if there's a point where it becomes easy to dash out a post during a coffee break, and if in the future I have less demands on my time I might try it. I probably won't try it out on this blog though, I'd likely create a new space on something like Medium, so as not to alienate my current audience. They are likely to be interested in Salesforce, software development and devops (maybe remote working right now), because that's what I've written about for the last decade, and probably wouldn't enjoy the change to a diary approach. That doesn't mean it won't work for you, so it might be worth a try if you think you can take the pace. Most of the accounts of daily blogging I read are about people experimenting with it for 1-3 months, but there are a few that stick with it for years. I doubt they are doing this on top of a day job and a demanding family life, but who knows.

Several Times a Week

Marketing Insider Group recommend 2-4 posts per week to get the top results in terms of traffic and conversions, but this is for companies that are trying to convert blog readers into customers. While I could aim for that, I'm not sure what I'd do with a customer, given the only thing I really have to sell is the Visualforce Development Cookbook.  2-4 posts per week is also a lot given that I'm writing them all myself, and I already have a full time job that consumes quite a bit of my time. I could probably do a couple of posts a week for a short period of time, but I feel like I'd run out of ideas after a few months. I'd also start to resent that I'd put myself in this position and view it as a chore, which never leads to good outcomes in creative endeavours.

Once a Week

This is what I aim for, and I must say it's quite easy to achieve during a pandemic. Looking back at my posts over the last 12 months, I was hitting more than one a week during the periods that we were locked down, or restricted in terms of travel. When we opened up, however, I dropped down to one or two a month as I had more pressing demands on my time.  

When I Have Something to Say

This is my sweet spot. Rather than putting pressure on myself to write at a particular cadence, and beating myself up when I inevitably fall behind, I write longer and more considered posts when I have something to say. If I have something to say then it will typically be about a topic that I am interested in or I care about or that I know a fair bit about. When it's all three, I can't get the words out fast enough, but even if it's one of them then the motivation is there. For a long time I didn't realise this though, and I experimented with a number of other approaches to see if I enjoyed them more, or if they had a positive effect. I reconsider my approach whenever I read a post about blogging every day, every week, or points in between, because what works for me now may not be ideal in a year or two. 

There does seem to be some level of agreement that blogging with a cadence can be helpful, but I'm not sure how well that applies to technical blogs like this one. I can't imagine that if I switched to posting every Friday that there would be a bunch of people out there waiting for the white smoke to indicate a new post had been published, which is why I tend to publish as soon as I'm happy with what I've written. Again, I've tried a number of different approaches to this, trying to find the days and times that get maximum engagement, and I've never really found it makes much difference. Your mileage may vary.


Saturday 30 January 2021

Org Documentor - Custom Header Colors

 


Overview

In my last post about the Org Documentor, I detailed the first customisation option for the template content outside of the actual org detail - the title and subtitle of the header page. Something that also seemed useful to configure was the header background colour and text colour - I like the current purple/dark grey combo, but I can't imagine everyone does.

What I wasn't sure about at the time was how to go about this. The colours come from the styles.ejs file, which is included into the various templates as required. I didn't want to move away from this to have specific style stanzas in the template itself, so considered rewriting the styles file. The downside to this was it would leave me able to override the colour once, which would apply to all pages, whereas I liked the idea of being able to override at any level.

And I've used the US spelling in the title of this post, and for my property names, as otherwise it jars against the CSS names. Hate on me if you want.

Solution


So I did some digging around what was possible when including files in EJS, and it turned out I needn't have worried. I can pass a JavaScript object as part of the include call, and use the properties of this just like I would in the main template:
   <%- include ('./common/styles', {header: content.header}) %>
While it might seem like a simple change to add a header property to the JavaScript object being passed to the template, there was a little more to it as:
  • This is a Salesforce CLI plug-in, and is written in Typescript. This means that if I want to add properties to an object, I have to declare them, as opposed to JavaScript where I'd just chuck them on the end.
  • I want to be able to override the header colours on a per-page basis, falling back on the parent page if no override is defined, and eventually falling back on default values, which meant I needed to add this to every one of my content objects that generates the documentation pages. 
First off I defined the HeaderStyle custom type:
interface HeaderStyle {
    backgroundColor: string;
    color: string;
}
Once I have this, I can add a property to each of my content types:
interface IndexContent {
    links: Array<ContentLink>;
    title: string;
    subtitle: string;
    header: HeaderStyle;
}
Note: there are other options around this in Typescript - I could define the property type as any, which would allow me to put whatever I like in there, much like regular JavaScript. A benefit of strong typing is that VS Code flags up anywhere I've used my content types but haven't added the header property, which saves me figuring it out manually.

I then changed the code that processes the configuration file to look for backgroundColor and color entries at the top level, at each processor level (objects, triggers, auraenabled) and at each group level, defaulting the values from the parent, if defined, and eventually falling back on the standard colours.

Finally, I updated the configuration file of my sample Salesforce metadata to override the objects page:

{
    "title": "Instance Overview",
    "subtitle": "From the metadata source",
    "objects": {
        "name": "objects",
        "description": "Custom Objects", 
        "backgroundColor" : "#ff8b00",
        "color": "#ffffff",
           ...
    }

and after generating my report, I get the default on the Home and most other pages:




while on the objects page, I get a particularly fetching orange background:



choose your colours with care though, as right now the breadcrumb is using the default bootstrap colours, so it's easy to make it hard to see.

Updated Plug-in


Version 3.4.4 of the plug-in has this new functionality and can be found on NPM

If you already have the plug-in installed, just run sfdx plugins:update to upgrade to 3.4.4 - run sfdx plugins once you have done that to check the version.

if you aren't already using it, check out the dedicated page to read more about how to install and configure it.

The source code for the plug-in can be found in the Github repository.

Related Posts


Sunday 24 January 2021

Salesforce Flows, Triggers and CPU - One. More. Time.


 Introduction

The Spring 21 Salesforce release includes the following update, which will be enforced in Summer 22:


Accurately Measure the CPU Time Consumption of Flows and Processes (Update)

With this update enabled, Salesforce accurately measures, logs, and limits the CPU time consumed by all flows and processes. Previously, the CPU time consumed was occasionally incorrect or misattributed to other automation occurring later in the transaction, such as Apex triggers. Now you can properly identify performance bottlenecks that cause the maximum per-transaction CPU time consumption limit to be exceeded. Also, because CPU time is now accurately counted, flows and processes fail after executing the element, criteria node, or action that pushes a transaction over the CPU limit. We recommend testing all complex flows and processes, which are more likely to exceed this limit.


which I was particularly pleased to see, as it was confirmation of what I'd been seeing since before save flows were introduced in Spring 20, namely that the reporting around flow CPU consumption was off. You can read about the various findings by working back through the blog posts,  but the bottom line was that the debug logs reported hardly any CPU consumption for a flow unless you added an Apex debug log about it, in which case it suddenly jumped up and reported the actual value. In effect the act of looking at how much CPU had been consumed caused it to be consumed, at least from a reporting perspective. For a real transaction the CPU obviously had been consumed, but it wasn't always clear what had consumed it, which no doubt led to a lot of finger pointing between low and pro coders, or ISVs and internal admins.

To close the loop on this, I was really keen to re-run some of my previous tests to see what the "real" figures looked like, or as real as you can get, given that performance profiling of Salesforce automation is affected by so many factors outside your control.  When looking at the results below, always remember that the actual values are likely to be different from org to org - the figures I'm seeing from my latest tests are way faster than a year ago in a scratch org, but your mileage may vary.

Also, don't forget to apply the update - I did and couldn't make head or tail of my first test result!


Methodology

The methodology was the same as for the original before save testing in Spring 20 - I'm inserting a thousand opportunities which are round robin'ed across two hundred accounts and immediately deleting them. This means the figures are inflated by the setup/teardown code, but that is constant across all runs. The debug level was turned down to the minimum and I ran the each test five times and took the average.

The simple flow to update the opportunity name came out at 1172 msec. Just out of curiosity, I added a debug statement to Apex code that does the testing, and lo and behold the average went up to 1374 msec. Here we go again, I thought. Before I published and started fighting on the internet again, I disabled all automation and ran the code again - so inserting and deleting the opportunities with and without the debug statement. The averages were : no debug statement - 1108 msec, with debug - 1140. Nothing conclusive, but it's definitely having an impact. Finally, I enabled my simple trigger to do the same thing as the flow and test this with and without the debug statement. Average without - 897 msec, with - 1216 msec. Given that the average without the debug statement was lower than the average when all automaton had been turned off, I decided that the debug statement ensures an accurate report, especially as it has a similar impact across both flow and trigger numbers. Once again, it's really hard to profile Salesforce performance!

Results


Test Flow Trigger Difference
No automation 1140 1140 0
Update record name 1374 1216 158
Update record name with account info (lookup) 2133 1252 881
Combined trigger (set name) and flow (change amount) 1459 1459 0

As expected, triggers are faster than flows, which is good because that's what Salesforce say! The differences aren't huge for a single record but once you scale up to a thousand records with a little complexity, they can become significant - 881msec might not sound like a lot, but it's 8% of your allowance for a transaction. 

Mixing flow and triggers doesn't bring any penalty, for CPU at least. It makes your automation harder to understand, and may mean you can't guarantee the order that the various types fire in, so it's best avoided regardless of the effect on CPU time.

Proceed With Caution

In a follow up post when after save flows were introduced, I found that I could carry out way more work in a transaction using flows rather than triggers, as whatever checks CPU time from a limits perspective was subject to the same reporting issue. Once this feature is activated, the flow CPU starts counting from the beginning. In Summer 20 I could insert 2-3000 opportunities and keep under the 10000 msec CPU limit, with this feature activated I'm hitting it at the 1-2000 mark, so you might find you've inadvertently been breaking the limit because the platform didn't notice and let you. Definitely run some tests before enabling this in production and, per the update information:

      You can enable the update for a single flow or process by configuring it to run in API version 51.0 or later.

so you can start testing on a flow by flow basis.

Hopefully this is the last post I'll have to write on this topic - it's been a wild ride, but it feels like we've reached the end of the road. 

Related Posts



Saturday 16 January 2021

Remote Working - together, isolated

Introduction

As we move into the third week of 2021, the UK is working through the world's worst movie franchise - now showing : Lockdown 3 - Lockdown Harder (but not as hard as Lockdown 1). We're all hopeful that Lockdown 4 - Lockdown without a Vaccine is permanently cancelled, but that remains to be seen.

Everyone that is able to is back working from home and ordering everything they need via the internet. I saw this situation described on twitter recently as "the middle class stay at home while the working class bring them things", which sums it up quite nicely.

The Tech Wars aren't Over

But they have changed.  Back in the day it used to be desktop operating systems - Linux, Windows or Mac. Then came the rise of the mobile device and it was iOS or Android. Sometimes it was programming languages - C++ or Java. In Salesforce we have the UI - Lightning or Classic, and the development paradigm - No, Low, or Pro Code.

In the world of remote work we can now argue about chairs, air purifiers, mechanical versus membrane keyboards, standing desks, microphones and webcams, along with side skirmishes about LED lighting and cable routing. If you aren't engaged in any of these battles, you might want to read some of the billions of blog posts that have been written in the last 10 months about "the perfect home working setup". There's probably been another couple of hundred written while you've been reading this paragraph, so don't delay.

The Great Normalisation (and other upsides)

One upside is the acceptance that working from home doesn't mean your home suddenly becomes a professional office. Children and pets wandering in to video calls is the new normal and not something to be mortified about. In fact, it's not just accepted, but often a welcome break for the hostages desperately waiting for the call to end. A home is a shared resource, and we must all be good multi-tenant citizens and not hog the space.

Community events are mostly virtual, including the Dream'/London's Calling behemoths. While we miss seeing each other in person, this is another upside. When we had to fly all over the world to attend or present, it definitely favoured those earning Western European/US style salaries with passports that gave visa free access to lots of countries. If you were from a wealthy country, you had far more opportunity to raise your profile in the community than someone who needed to wait months for a visa and spend a week's wages on one night in a London hotel. 

What Does the Future Hold

(This is obviously forward looking, and the following is nothing more than my opinion)

There will be no in-person Dreamforce in 2021. The figures in the US are still horrific, and Europe isn't that much better. While it seems likely the vaccine will reduce the death toll by protecting those most at risk, it will take more than a couple months and, as usual, the developed world will take priority. I can't see Salesforce wanting to be the company that brings 100k+ people from anywhere to San Francisco and gets blamed for the next flare up. There will almost certainly be some testing requirements for any in-person events for the rest of the year, and the logistics of that would be overwhelming at that scale - anyone who has been to a World Tour event with metal detectors can attest to that. A gradual return to normal event attendance seems more likely to me, and I can't see a socially distanced Dreamforce with 5k attendees appealing to Marc Benioff and co.

The same goes for the London Salesforce Developers. In the UK right now (16th Jan) we are seeing around 50k+ new cases a day, which is flattening but will take some time to go down. We are likely to stay in a highly restricted environment for a couple of months followed by a gradual easing. It's hard to see any company wanting to open up their offices to bunch of people who could have been mixing with anyone, and speaking as an organiser, I don't want to be remembered as one of the team behind a super spreader event.

Realistically it feels to me like it will be 2022 before we restart the kind of events that aren't vital to an industry, and it will only be when things like football, rugby and the theatre are running at full capacity  that the community-minded events start getting back up to speed. I also think that hybrid events, with a mix of in person and virtual sessions, will be the future. Before then, if we can get back to some kind of normality where I can mix with one or two of my friends and neighbours in my local pub I'll be happy.

Looking a bit further out, I don't think the remote working genie is going back into the bottle. While there will be a return to the office after the pandemic is over, people new to the job market have only known this, will have mostly enjoyed the experience, and will be expecting this to be offered by any company they talk to in the future. They will eventually be the generation of leaders, and will be pushing for more remote when they are in a position of influence. It might take a decade or two, but the days of everyone commuting to an office will seem as quaint as taking your celebration food to the village bakehouse for cooking now does to those of us who live in Europe.

Related Posts

Saturday 9 January 2021

Org Documentor - A Little More Configuration


Overview


I received a feature request in the Org Documentor Github repository this week, which didn't come as a huge surprise as it was from one of my colleagues (Firoz Mirza, who has featured before in this blog) and I'd asked him to raise it. The ask was to make the report title in the home page configurable, rather than the 'Org Report' that is generated by default.

I try to keep the switches on plug-ins of this nature as simple as possible, preferring to keep the granular behaviour in the config file, otherwise you start to run out of letters. I also don't like making people configure behaviour that they don't care about, so if there is no title in the config file, the default of 'Org Report' will be used.

It made sense to make the subtitle configurable, so you can add the following to your json config file to configure one or both of these - in this case I've chosen a title of 'Instance Overview' and a subtitle of 'From the metadata source' :

{
    "title": "Instance Overview",
    "subtitle": "From the metadata source",
    "objects": {
      ...
    }
}

After updating my installed plug-in to the latest version (3.4.3) and executing the doc command against my sample Salesforce metadata, I'm pleased to see that my home page has picked up the changes:


You may also notice the the README has been updated for the plug-in - I left this as the autogenerated version created when building the plug-in, and it was pointed out to me recently that it suggests using npm install to install the plug-in, rather than the sfdx plugins:install command (thanks Lawrence Newcombe!).


Plug-in


Version 3.4 of the plug-in has this new functionality and can be found on NPM

If you already have the plug-in installed, just run sfdx plugins:update to upgrade to 3.4.

if you aren't already using it, check out the dedicated page to read more about how to install and configure it.

The source code for the plug-in can be found in the Github repository.

Related Posts

Sunday 3 January 2021

2020 Year in Review - Part 4

Behind the scenes in the Trailblazer Lounge

October

The London Salesforce Developers gave ourselves a break from organising meetups this month, as we said a fond farewell to Richard Clark and welcomed Erika McEvilly as our new co-organiser.

BrightFORUM launched on the app exchange - our second lightning bolt. I appeared on a couple of podcasts - Salesforce Developer Podcast with Josh Birk and the SFDC Consultant Podcast with Emeric Gabor. 

Einstein Analytics became Tableau CRM. Dreamforce to You was announced, consisting of a Keynote, meetings with account execs(!) and DreamTX for learning about new features and best practice.

November

The UK went back into lockdown for four weeks. Not the same as the first lockdown though, so another word would really have been a better idea. London Salesforce Developers resumed our events programme with a session on our (and others) favourite tools. This was really enjoyable as we had a load of speakers (from the UK, Moscow, USA and the Philippines) who gave us the highlights of their favourite tool and what was great about it. I came away with a list of items to look at that I'm still working through.

The second EMEA cohort of Speaker Academy started their course.

I appeared on a panel for the Ashburn Women in Tech, along with Melissa Hill Dees and Domenique Buxton, to talk about my Salesforce journey. Once again, something that would have been impossible to do in person.

Salesforce reported to be interested in buying Slack. As the Dreamforce keynote was only a week or two away, seemed highly likely this deal was going to complete very soon. Salesforce UK&I got a new CEO from Accenture - Zahra Bahroloumi.

December

The new word for lockdown type events was in place when we came out of Lockdown 2 - Tier. Three tiers were created, with hardly anywhere in the lowest level of tier 1. I was in tier 2 for a couple of weeks, then tier 3 for a few days, then into the newly created tier 4 with Christmas cancelled at 5 days notice. This left me with a 15lb turkey and enough of everything to feed 10 people. Safe to say my freezer is well stocked for the New Year.

As is traditional, the Salesforce London Developer, Admin and Women in Tech groups combined for the Xmas Megameet - a look back at our year, a quiz from Peter Chittum, scavenger hunts, ugly jumpers, wine and mince pies. It's a bit of an odd one to carry out virtually, especially given the sheer number of attendees, but great fun. 

I appeared with Jodi on Supermums podcast to talk about Speaker Academy - 3 podcasts in a couple of months, definitely a sign of the times.

The Dreamforce to You agenda was released - keynote on Dec 2nd followed by four days of learning with DreamTX from 13th-17th December. I was lucky enough to be offered a place in the Trailblazer lounge for the fourth (Trailhead) day, which was a blast. The only downside is you don't get to see the sessions as they are broadcast, but the upside is you get to meet a bunch of great people from around the world, and find out a lot more about what goes into this aspect of the event.

Related Posts

Saturday 2 January 2021

2020 Year in Review - Part 3

July

The London Salesforce Developers held our TrailheaDX Global Gathering. Sadly a lot of this was us explaining how we'd failed to get on to any of the pilots and talking about things rather than demoing them. We still had fun though, which is the main thing.

The EMEA cohort of Speaker Academy completed their six week course and started prepping for their graduation event where they would give a 5 minute lightning talk to a live audience. It's an interesting mixture of relief that the course is over and trepidation that they have to put what they've learnt into practice in front of a bunch of people they don't know.

The Salesforce Summer 20 release went live, and the BrightGen webinar went virtual - not a massive change, but you do miss being able to look over at your co-presenter to see if there are any problems or questions. This release included the Lightning Message Service going GA, and flows that could now be run after a record was saved, getting ever closer to parity with triggers.

Salesforce's inexorable growth continued as their market cap hit $180 billion, passing Oracle's $174 billion. Richard Socher stepped down as Salesforce Chief Scientist to start his own company. 

The UK lockdown officially ended as pubs were allowed to open again!

August

The August meet of the London Salesforce Developers was a Speaker Academy takeover, as our first EMEA cohort gave their graduation talks to an appreciative audience drawn from the developer, admin and women in tech groups. 

As the pandemic started to hit the US, Salesforce had pledged no layoffs for 90 days - this clearly expired in August as 1,000 jobs were cut. In the continuing story of the whole world going virtual, Salesforce replaced Exxon Mobil in the Dow Jones Industrial Average. Marc Benioff also hinted at no digital Dreamforce this year, which sent the community into a bit of a tailspin. 

The UK government launched "Eat Out to Help Out" - an initiative that allowed pubs and restaurant to offer discounted meals Mon-Wed. This was intended to get the economy moving and give people the confidence to mix in public again, but also had the effect of increasing infections - encouraging large numbers of people to congregate indoors was still a bad idea it appeared.

September 

The London Salesforce Developers September meetup was on data factories and presented by Nikos Mitrakis - another remote presenter who would have found it more difficult to attend in person. 

As I took a well earned break from Speaker Academy, a Trailhead badge that I'd written content for was released - Salesforce Skills and Experience Building 

After the layoffs the previous month, Salesforce announced they were creating 4,000 jobs - hopefully giving some of those laid off a better chance of finding another position. There were also a bunch of "new product" announcements : 

Salesforce Meetings - bringing the virtual meeting experience inside Salesforce while still running on third party technology. 

Digital 360 - which felt rather like a repackaging of existing features with an E-Commerce slant. 

Work.com for Vaccines - to help governments and healthcare organisations manage large scale vaccine rollouts (several months before it was needed, it turns out).

The UK continued to open up - I was able to go for a couple of weeks holiday in Norfolk and even go to a few pubs and tea shops. Always socially distanced, but the weather was still glorious so I was mostly walking my dogs on the beach or sat with them in pub gardens. I kept reminding myself (and others) that every other pandemic in history had a second wave, and there was no reason why this time it would be different.

Related Posts

 

Friday 1 January 2021

2020 Year in Review - Part 2



Three months of lockdown took a toll on the grounds of the beach house!


April

April was notable for a full lockdown in the UK, which moved everything that wasn't nailed down into the virtual space. The London Salesforce Developers had their first event run on Zoom, which gave us significant pause for thought as we'd seen a number of reports of Zoom bombing in the media and were keen not to be another example of lax security. Todd Halfpenny and I had a couple of trial runs were we locked everything down and then tried to cause trouble, which were calmed our nerves. Like many things, it's very difficult to guarantee it won't happen, but if you make people register, maintain control of microphone and screen sharing, and be ready to boot anyone that steps out of line you can be fairly confident you won't have a disaster. We had a great turnout to hear Anup Jadhav talk about event driven architecture, no doubt helped by the fact that everyone was stuck at home. We also welcomed attendees from around the world, which was an unexpected upside. The networking in this first event went on for some considerable time, as everyone was a bit starved of company and needing some form of human interaction. This pattern didn't continue though, as people adjusted to the new normal pretty rapidly. 

At BrightGen we took the view that you can't over-communicate when you are working remotely, so each team had regular social/coffee break calls and there was a company-wide pub quiz at regular intervals. Again this turned out to be something that wasn't required every week, but while it was needed there was plenty of it. Probably the hardest aspect was onboarding the new joiners - building those key relationships is harder when the casual conversations around the office aren't possible. On the upside, we saw a huge surge in lunch and learn, both in terms of sessions and attendance. With so much time on our hands, we were keen to make good use of it. We also had the virtual Grand National sweepstake - no prizes in this format, so obviously for the first time in my life I had the winner - Potters Corner!

In an announcement that surprised nobody, Salesforce announced that Dreamforce would be virtual in 2020, as would all their other events. 

May

Emboldened by the success of our first virtual meetup, the London Salesforce Developers pressed on with Devs Love Low Code Too, presented by Narinder Singh. Another great turnout, with attendees from around the world. We were also remarking how much easier it was to organise these events when you don't need a venue and catering! "Have Zoom account, will meetup" was now our mantra. 

Come the 13th May we weren't stuck in front of our screens for quite so much time, as the lockdown started to slowly lift and we were allowed out for exercise as much as we liked, including meeting one person outside who wasn't part of our household! It was like Christmas come early (and pretty much identical to my actual Christmas it turned out).

Jodi Wagner and I onboarded two new teachers for Speaker Academy (Amber Boaz and Julia Doctoroff) so that we could split into EMEA and US cohorts. Somehow this took a four hour Zoom call, and in my case a surprising amount of rum and coke.

Salesforce launched Work.com to help companies return to the office, which in hindsight seems quite optimistic. Gavin Patterson continued his rise to fame at Salesforce, becoming President and Chief Revenue Officer. 

June

The London Salesforce Developers June Meetup saw David Reed join us from the USA to present on Automating the Development Lifecycle with Cumulus CI - something we'd probably have struggled to achieve in person! The Speaker Academy signup for the EMEA cohort attracted 50 applicants for 6 spaces and we kicked off the first session on June 4th.  The restrictions relaxed further in the UK and we were allowed to travel as far as we liked for exercise, although we still had to return the same day. 

The Summer 20 release notes became available in beta, starting another of the thrice-yearly races to get the first blog post out about the key features. 

The much anticipated TrailheaDX took place, re-imagined as a virtual event that bore a striking resemblance to the actual event but with more of a marketing spin. It's fair to say the response to this was positive, but it was nothing like as well received as the in-person event. The chat aspect seemed particularly problematic, descending into an avalanche of spam after a few minutes. Moving events online wasn't something that only Salesforce were wrestling with - I attended what seemed like hundreds during this time and nobody really came up with anything different to a mix of recorded and live sessions, and a virtual expo that wasn't well patronised. 

But the days were long, the weather in the UK was glorious, the COVID-19 case numbers were dropping and it looked like things would be opening up more in the near future.