Christmas is coming!
- Publication date
I want to focus this post on the macro environment for tech, startups, web3, and climate because that is where my head is at right now.
I believe that sometime in the first half of 2023, the central banks around the world will start backing off the tightening that they have been engaged in as inflation continues to ease and the economy continues to cool. Interest rates will level off in the first half of 2023 and I think there is a good chance of a “soft landing” or a very mild recession in 2023.
With that macro view in mind, what would that mean for tech, startups, and web3?
The largest tech companies will emerge from this downturn leaner and more profitable and growing more slowly. They will be mature businesses that behave like the blue chips that they are. I think these companies, like Apple, Amazon, and possibly Google, will see their stocks come back into favor ahead of everything else in tech. I am hedging on Google because I believe the massive advances in AI/ML that we are seeing right now may be a threat to their core search franchise.
Startups are going to have a tough year in 2023. While many have gotten their burn rates way down, most startups still are losing money and will eventually need to raise capital in 2023. Because most startups avoided raising in 2022, there will be a glut of startup companies in the market for capital this year and while there is plenty of venture capital sitting on the sidelines waiting to be deployed, VCs will be much more selective, instead of funding everything that moves as we’ve done over the last few years.
Good businesses with product market fit, positive unit economics, and strong leadership teams will raise capital although it will be at the new normal in terms of valuation. I believe that “new normal” is more or less where we were in 2015 where seed rounds were done around $10mm, A rounds were done around $15mm to $25mm, B rounds were done around $25mm to $50mm, and growth rounds had a cap at 10x revenues. This new normal will lead to many flat rounds, down rounds, inside rounds, and rounds with a lot of structure on them. None of that is good, but the worst of those options is rounds with a lot of structure. I believe founders and CEOS and Boards should take the pain of a new valuation (flat, down, whatever) over structure.
But there is a huge number of startups out there that have not really found product market fit, have not created positive unit economics, and have unresolved issues in their founding teams and leadership teams. These startups will struggle to raise capital at any price and most of them will fail. This has already started to happen but because so much capital was raised in 2021 and the early part of 2022, it has taken longer for these companies to fail. I think we will see a lot of startups in this category go under or taken out in fire sales in the first half of 2023.
While all of that sounds gloomy and downright horrible, I do think the startup sector will end the year in a much better place. The good companies will have gotten funded, the bad ones will have shut down, and VCs will be back to competing with each other to win deals, which is where founders always want VCs to be.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
export default class Vector2D {
constructor(x, y) {
this.x = x;
this.y = y;
}
add(vector) {
this.x += vector.x;
this.y += vector.y;
}
}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
Check out the Bridgetown docs for more info on how to get the most out of Bridgetown. File all bugs/feature requests at Bridgetown’s GitHub repo. If you have questions, you can ask them on Bridgetown Discussions on GitHub.