Skip to main content

What will happen when the bad times come?

Here in America we are now in the longest economic expansion in history. That doesn’t mean it’s about to end. But it does raise the question: what happens when it does? When the economic cycle finally inverts into recession, perhaps unexpectedly and with no obvious cause, perhaps because of some geopolitical crisis? We know what happens to the overall economy — but what happens to the tech sector?

Last time around, the answer was: “surprisingly little.” Late 2008 saw widespread expectations that tech was about to crater along with all other sectors. This was the era of Sequoia Capital’s infamous “R.I.P. Good Times” deck. They could hardly have been more wrong.

Instead the Great Recession everywhere else was more of a speed bump in Silicon Valley. In fact it was arguably the birth of the modern startup boom. The number of startups tracked by CrunchBase rose rapidly from 1200 in 2007, by at least 25% every year, to 5700 five years later.

Meanwhile, YoY revenue growth at Google did drop into single digits in 2008-09 … but only for a few quarters, never actually stalled, and quickly returned to 20%+. Amazon growth never fell below double digits. Apple’s went negative for one lonesome quarter, but otherwise stayed north of 20%.

Go back a little further, though, and you come to the dot-com crash, in which tech was — of course, and rightly — hit hard. This was not entirely a bad thing. Even at the time it was clear that to some extent the chaff was being sifted from the industry, albeit at widespread painful personal cost. However, that unpleasant correction set the stage for the nonstop growth since.

So: will the next downturn parallel 2008, or 2001? Will tech growth slow but not stop, or has the time come again for a great economic threshing which will separate wheat from chaff? Or will the next downturn take its own, very different shape? Tech is both much larger now, and much more tightly woven into every other sector.

One could argue a recession will accelerate the demise of legacy businesses and systems, and their replacement with newer, more efficient, software- / API- / AI-driven ones, so the tech industry will actually see a net benefit from any downturn. I’m skeptical of this vulture theory, though. A sinking tide ultimately lowers all boats.

Still, the Big Five — Alphabet, Amazon, Apple, Facebook, Microsoft — will probably sail though relatively untouched. They may stop hiring as aggressively (Google has grown by 18,000 employees to 107,000 in just the last year) but they have enough cash on hand, and diverse enough revenue streams, to weather a storm. Even Google is no longer totally reliant on ads, now that it’s making $8 billion/year from GCP.

The one possible exception is Facebook, which remains the most precarious of the Big Five, given the increasing vitriol it attracts, its relative lack of room to grow in wealthy markets, and, probably most important, the fact it remains a one-trick revenue pony. Could the next recession see Facebook drop from Big Five status? Very possibly.

Lesser companies, though — those outside of tech proper, and even the herd of growth-stage unicorns — will almost certainly be forced into major layoffs. Will the newly-laid-off flock back to school, as happened in 2008? Or will they rush to roll the dice with new startups? Given the rising costs of, and increasing skepticism aimed at, traditional higher education, it seems likely that instead we’ll suddenly see an enormous bloom of new startups.

On the one hand, this means more ideas flung at the proverbial wall, and so more innovation. But on the other, these will presumably mostly be low-cost web / app startups, which as I’ve argued before are increasingly played out, from people who are founding them as a reaction to being laid off rather than because they have a vision they can’t ignore, in a downturn during which funding will presumably grow ever harder to acquire.

There’s a school of thought which says more startups is always better, and another which says that bad startups are like an algal bloom, choking the oxygen (money, attention, talent) from the ambient environment and making things worse for the overall ecosystem. It seems likely that the next downturn will serve as a natural experiment testing these hypotheses. Let’s hope the former is more true. And if (but only if) you have your own burning startup idea in you, it might be best to beat the eventual recessionary rush.



from TechCrunch https://ift.tt/2K6P4h6

Comments

Popular posts from this blog

How To Play Doom – And More – On An NES

Doom was a breakthrough game for its time, and became so popular that now it’s essentially the “Banana For Scale” of hardware hacking. Doom has been ported to countless devices, most of which have enough processing ability to run the game natively. Recently, this lineup of Doom-compatible devices expanded to include the NES even though the system definitely doesn’t have enough capability to run it without special help. And if you want your own Doom NES cartridge, this video will show you how to build it . We featured the original build from [TheRasteri] a while back which goes into details about how it’s possible to run such a resource-intensive game on a comparatively weak system. You just have to enter the cheat code “RASPI”. After all the heavy lifting is done, it’s time to put it into a realistic-looking cartridge. To get everything to fit in the donor cartridge, first the ICs in the cartridge were removed (except the lockout IC) and replaced with custom ROM chips. Some modifica...

Try NopSCADlib for your Next OpenSCAD Project

Most readers of this site are familiar by now with the OpenSCAD 3D modeling software, where you can write code to create 3D models. You may have even used OpenSCAD to output some STL files for your 3D printer. But for years now, [nophead] has been pushing OpenSCAD further than most, creating some complex utility and parts libraries to help with modeling, and a suite of Python scripts that generate printable STLs, laser-ready DXFs, bills of material, and human-readable assembly instructions complete with PNG imagery of exploded-view sub-assemblies. Recently [nophead] tidied all of this OpenSCAD infrastructure up and released it on GitHub as NopSCADlib . You can find out more by browsing through the example projects and README file in the repository, and by reading the announcement blog post on the HydraRaptor blog . Some functionality highlights include: a large parts library full of motors, buttons, smooth rod, et cetera many utility functions to help with chamfers, fillets, precis...

The Newbie’s Guide To JTAG

Do you even snarf? If not, it might be because you haven’t mastered the basics of JTAG and learned how to dump, or snarf, the firmware of an embedded device. This JTAG primer will get you up to snuff on snarfing, and help you build your reverse engineering skills. Whatever your motivation for diving into reverse engineering devices with microcontrollers, JTAG skills are a must, and [Sergio Prado]’s guide will get you going. He starts with a description and brief history of the Joint Test Action Group interface, from its humble beginnings as a PCB testing standard to the de facto standard for testing, debugging, and flashing firmware onto devices. He covers how to locate the JTAG pads – even when they’ve been purposely obfuscated – including the use of brute-force tools like the JTAGulator . Once you’ve got a connection, his tutorial helps you find the firmware in flash memory and snarf it up to a file for inspection, modification, or whatever else you have planned. We always apprec...