So, here's my contrarian take on Why Trunk-Based Development Is Great But Probably Won't Work For You. Buckle up, it's a long one.
* pairing skills
* schedules built around pairing
* atomic commit practices
* sync work over async work
* WIP limits
* adequate feedback loops
* "just in time" planning
* local pre-commit builds
* fast builds
* reliable builds
* trustworthy test coverage
* keep-it-green practice + rapid rollbacks
* robust feature toggles
* robust observability
* rapid deploys
* robust continuous deployment model
* A mutual-support & learning culture
* Trust in others
* Rapid failure recovery
* Openness to risk-taking in approach
https://t.co/cVc4gUWYmO
This is in contrast to what I think of as sync/team\u2014a culture that leans into interdependence and collaboration. If you've never worked on a team that collaborates very closely every day for months or years on end (and likes it) you've likely not experienced a team like this.
— A Brian For All Four Seasons (@bguthrie) January 4, 2021
More from For later read
https://t.co/w7koHyMJjL
The article mentions a “10 nucleotide linker” (GCAUAUGACU) in the poly-A tail. This is described in the patent link below (Modification of RNA, producing an increased transcript stability and translation
Here is a link to the full mRNA code if you wish to download it, blast it or make up a batch in your garage
The mRNA sequences used for Moderna mRNA-1273 & Pfizer BNT162b2 mRNA vaccines for COVID-19 (Direct link in Word Format). WHO International Nonproprietary Name Program # 11889 "Messenger RNA encoding the full-length SARS-CoV-2 spike glycoprotein"https://t.co/zTb7B0Apic pic.twitter.com/8tZxAZWI5S
— Roland Baker (@RolandBakerIII) December 24, 2020
An overview of the encoded spike
Moderna's mRNA-1273 & Pfizer's BNT162b2 consist of mRNA 3821 nucleotides long encoding *all* 1273 amino acids of the Spike including a 2 Proline-stabilized RBD and this includes the NTD (blue in monomer, dark gray in trimer attached to antibodies). AA 64, 66, 187, 213, 214 red. pic.twitter.com/4MX1ByAsrR
— Roland Baker (@RolandBakerIII) December 19, 2020
Initial mouse
News: NIH-Moderna investigational COVID-19 vaccine shows promise in mouse studies https://t.co/7JYuUyZT45
— NIH (@NIH) August 5, 2020
How did Silicon Valley die? It was killed by the internet. I will explain.
Yesterday, my friend IRL asked me "Where are good old days when techies were
Where are good old days when techies were libertarians.
— Cranky (@rushingdima) January 9, 2021
2. In the "good old days" Silicon Valley was about understanding technology. Silicon, to be precise. These were people who had to understand quantum mechanics, who had to build the near-miraculous devices that we now take for granted, and they had to work
3. Now, I love libertarians, and I share much of their political philosophy. But you have to be socially naive to believe that it has a chance in a real society. In those days, Silicon Valley was not a real society. It was populated by people who understood quantum mechanics
4. Then came the microcomputer revolution. It was created by people who understood how to build computers. One borderline case was Steve Jobs. People claimed that Jobs was surrounded by a "reality distortion field" - that's how good he was at understanding people, not things
5. Still, the heroes of Silicon Valley were the engineers. The people who knew how to build things. Steve Jobs, for all his understanding of people, also had quite a good understanding of technology. He had a libertarian vibe, and so did Silicon Valley
You May Also Like
Legacy site *downloads* ~630 KB CSS per theme and writing direction.
6,769 rules
9,252 selectors
16.7k declarations
3,370 unique declarations
44 media queries
36 unique colors
50 unique background colors
46 unique font sizes
39 unique z-indices
https://t.co/qyl4Bt1i5x

PWA *incrementally generates* ~30 KB CSS that handles all themes and writing directions.
735 rules
740 selectors
757 declarations
730 unique declarations
0 media queries
11 unique colors
32 unique background colors
15 unique font sizes
7 unique z-indices
https://t.co/w7oNG5KUkJ

The legacy site's CSS is what happens when hundreds of people directly write CSS over many years. Specificity wars, redundancy, a house of cards that can't be fixed. The result is extremely inefficient and error-prone styling that punishes users and developers.
The PWA's CSS is generated on-demand by a JS framework that manages styles and outputs "atomic CSS". The framework can enforce strict constraints and perform optimisations, which is why the CSS is so much smaller and safer. Style conflicts and unbounded CSS growth are avoided.