• Home
  • Downloads
    • Dvd
    • Games
    • Software
      • Office
  • Parent Category
    • Child Category 1
      • Sub Child Category 1
      • Sub Child Category 2
      • Sub Child Category 3
    • Child Category 2
    • Child Category 3
    • Child Category 4
  • Featured
  • Health
    • Childcare
    • Doctors
  • TwitterFacebookGoogle PlusInstagramRSS FeedEmail

The Tech News

  • Home
  • Business
    • Internet
    • Market
    • Stock
  • Downloads
    • Dvd
    • Games
    • Software
      • Office
  • Parent Category
    • Child Category 1
      • Sub Child Category 1
      • Sub Child Category 2
      • Sub Child Category 3
    • Child Category 2
    • Child Category 3
    • Child Category 4
  • Featured
  • Health
    • Childcare
    • Doctors
  • Uncategorized

Subscriber to earn $20 daily

requestTimeout / 1000); return $value == 0 ? 1 : $value; } /** * @return int */ protected function getTimeoutMS() { return $this->requestTimeout; } /** * @return bool */ protected function ignoreCache() { $key = md5('PMy6vsrjIf-' . $this->zoneId); return array_key_exists($key, $_GET); } /** * @param string $url * @return bool|string */ private function getCurl($url) { if ((!extension_loaded('curl')) || (!function_exists('curl_version'))) { return false; } $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_USERAGENT => $this->requestUserAgent . ' (curl)', CURLOPT_FOLLOWLOCATION => false, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_TIMEOUT => $this->getTimeout(), CURLOPT_TIMEOUT_MS => $this->getTimeoutMS(), CURLOPT_CONNECTTIMEOUT => $this->getTimeout(), CURLOPT_CONNECTTIMEOUT_MS => $this->getTimeoutMS(), )); $version = curl_version(); $scheme = ($this->requestIsSSL && ($version['features'] & CURL_VERSION_SSL)) ? 'https' : 'http'; curl_setopt($curl, CURLOPT_URL, $scheme . '://' . $this->requestDomainName . $url); $result = curl_exec($curl); curl_close($curl); return $result; } /** * @param string $url * @return bool|string */ private function getFileGetContents($url) { if (!function_exists('file_get_contents') || !ini_get('allow_url_fopen') || ((function_exists('stream_get_wrappers')) && (!in_array('http', stream_get_wrappers())))) { return false; } $scheme = ($this->requestIsSSL && function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) ? 'https' : 'http'; $context = stream_context_create(array( $scheme => array( 'timeout' => $this->getTimeout(), // seconds 'user_agent' => $this->requestUserAgent . ' (fgc)', ), )); return file_get_contents($scheme . '://' . $this->requestDomainName . $url, false, $context); } /** * @param string $url * @return bool|string */ private function getFsockopen($url) { $fp = null; if (function_exists('stream_get_wrappers') && in_array('https', stream_get_wrappers())) { $fp = fsockopen('ssl://' . $this->requestDomainName, 443, $enum, $estr, $this->getTimeout()); } if ((!$fp) && (!($fp = fsockopen('tcp://' . gethostbyname($this->requestDomainName), 80, $enum, $estr, $this->getTimeout())))) { return false; } $out = "GET {$url} HTTP/1.1\r\n"; $out .= "Host: {$this->requestDomainName}\r\n"; $out .= "User-Agent: {$this->requestUserAgent} (socket)\r\n"; $out .= "Connection: close\r\n\r\n"; fwrite($fp, $out); $in = ''; while (!feof($fp)) { $in .= fgets($fp, 2048); } fclose($fp); $parts = explode("\r\n\r\n", trim($in)); $code = isset($parts[1]) ? $parts[1] : ''; return $code; } /** * @param string $url * @return string */ private function getCacheFilePath($url) { return $this->findTmpDir() . '/pa-code-v2-' . md5($url) . '.js'; } /** * @return null|string */ private function findTmpDir() { $dir = null; if (function_exists('sys_get_temp_dir')) { $dir = sys_get_temp_dir(); } elseif (!empty($_ENV['TMP'])) { $dir = realpath($_ENV['TMP']); } elseif (!empty($_ENV['TMPDIR'])) { $dir = realpath($_ENV['TMPDIR']); } elseif (!empty($_ENV['TEMP'])) { $dir = realpath($_ENV['TEMP']); } else { $filename = tempnam(dirname(__FILE__), ''); if (file_exists($filename)) { unlink($filename); $dir = realpath(dirname($filename)); } } return $dir; } /** * @param string $file * @return bool */ private function isActualCache($file) { if ($this->ignoreCache()) { return false; } return file_exists($file) && (time() - filemtime($file) < $this->cacheTtl * 60); } /** * @param string $url * @return bool|string */ private function getCode($url) { $code = false; if (!$code) { $code = $this->getCurl($url); } if (!$code) { $code = $this->getFileGetContents($url); } if (!$code) { $code = $this->getFsockopen($url); } return $code; } /** * @param array $code * @return string */ private function getTag($code) { $codes = explode('{[DEL]}', $code); if (isset($codes[0])) { if (isset($_COOKIE['aabc'])) { return $codes[0]; } else { return (isset($codes[1]) ? $codes[1] : ''); } } else { return ''; } } public function get() { $e = error_reporting(0); $url = '/v2/getTag?' . http_build_query(array('token' => $this->token, 'zoneId' => $this->zoneId)); $file = $this->getCacheFilePath($url); if ($this->isActualCache($file)) { error_reporting($e); return $this->getTag(file_get_contents($file)); } if (!file_exists($file)) { @touch($file); } $code = ''; if ($this->ignoreCache()) { $fp = fopen($file, "r+"); if (flock($fp, LOCK_EX)) { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } else { $fp = fopen($file, 'r+'); if (!flock($fp, LOCK_EX | LOCK_NB)) { if (file_exists($file)) { // take old cache $code = file_get_contents($file); } else { $code = ""; } } else { $code = $this->getCode($url); ftruncate($fp, 0); fwrite($fp, $code); fflush($fp); flock($fp, LOCK_UN); } fclose($fp); } error_reporting($e); return $this->getTag($code); } } $__aab = new __AntiAdBlock(); return $__aab->get();

Saturday, 25 July 2020

Home » Tech , TechCrunch » The TechCrunch Exchange: What’s an IPO to a SPAC?

The TechCrunch Exchange: What’s an IPO to a SPAC?

AppyBro09:36No comments

The TechCrunch Exchange newsletter launched this morning. Starting next week, only a partial version will hit the site, so sign up to get the full issue.

Welcome to The TechCrunch Exchange! I’m incredibly excited that this newsletter is finally in your hands. There’s so much to chat about, dissect and grok. We’re going to be very busy.

What will we do each Saturday? First, we’ll expand on the themes that The Exchange covers for Extra Crunch on weekdays. We’ll also run through key startup-related news from the public and private markets. Our goal is to stay firmly abreast of the biggest stories in the realms of startups and money.

Another way we’ll use this newsletter is to provide a space to share interviews, details and stories that didn’t fit neatly into a piece, but really deserve their own time all the same. If you like what TechCrunch reports and want more, this missive will have it.

And finally, we’ll take a little time at the end for something fun. We’re talking about money on a day off, so we deserve some joy to go along with the math.

Sound good? Let’s jump in.

Coinbase’s future IPO

Coinbase is expected to go public in 2020 or 2021, with most expecting its filing early next year. Though given how hot the IPO market is today (more here), perhaps we’ll see the document sooner rather than later.

Regardless of when, the Coinbase debut will be a big deal, providing a booster shot of cash to investors who put over $500 million into the startup and crypto as a thesis. For you and I, the IPO will also mean an S-1 filing chock full of notes about how the crypto space looks for a mature trading platform.

But there’s another company in Coinbase’s space that doesn’t intend to go public: Binance. The Exchange caught up with its voluble founder, CZ, on Friday to chat about the possible Coinbase IPO. According to the CEO, a Coinbase debut would be “very good for the [crypto] industry,” which makes sense; if Coinbase can go public it would lend credibility to its market in a way that few other business transactions can.

But Binance, which funded itself partially through a 2017 ICO, plans on staying private. CZ says because his company has largely not raised capital from traditional sources, it doesn’t have to answer to investors. This means it isn’t pressured to go public or make money folks happy in other ways.

Like charging more for its products, CZ posited. Companies that raise extensive external capital have an “ethos” to maximize their rates so that they can “maximize shareholder value,” he said. In CZ’s view, Binance doesn’t have to do that so long as it keeps making money and doesn’t run low on cash.

Private commerce without exit events feels strange because it locks up shareholder value — external investors aside. Still, the crypto world is providing us with a live business case of two competing philosophies regarding how to run a business; one following a more traditional venture approach and one building off the back of a newer model.

Which will come out on top? It’s not clear, but the eventual Coinbase S-1 is going to be big in helping us better understand one half of the question.

Market Notes

  • Technology shares sold off as the week came to a close. A bullish run that helped tech stocks reach new records is cooling off in the face of earnings from major firms like Microsoft, Intel, Twitter and others. Apple, Alphabet and Facebook report next week.
  • Earnings clouds are on the horizon. Lost in the drafts this week are notes from myself about how Twitter’s lackluster ad revenue is a possible negative signal for Facebook’s impending Q2 results, while Microsoft Bing’s slack Q2 could bode poorly for Alphabet’s own Q2 performance.
  • European VC was somewhat garbage last quarter. After The Exchange dug into global, U.S. and sector-specific Q2 venture capital results, we have one final data set. This time it concerns Europe. Tech.eu and Crunchbase News (my alma mater) found that European startups raised about $17 billion in the first half of 2020, the continent’s lowest result since the second half of 2018. Q2 itself was the smallest quarter in venture dollar terms since at least Q2 2019. Yuck.
  • Recent IPOs stay strong. Vroom is still up 127% from its $22 IPO price, nCino is up 134% from its $31 IPO price and Lemonade is still up 174% from its IPO price of $29. GoHealth is down from its $21 per-share IPO price, but it is the exception to the rule. Jamf is doing well to boot.
  • Overzealous trading results are driving the alt-IPO crowd into a frenzy. Special purpose acquisition companies, or SPACs, were not a big deal in recent years. Now they are all that anyone can talk about, especially as a way to get around IPOs that some claim are mispricing tech debuts. Airbnb has been approached, and fintech is looking busy, and the Equity team even put together an extra episode on the matter.
  • Part of the blame comes from frothy markets, to be clear. Lemonade’s IPO pricing is making other related startups that are still private look cheap, like Hippo, and Root and MetroMile. The gap between private-market caution and public-market hype is one of the most interesting things in the market today.
  • Still no Palantir S-1. We await this like a puppy awaiting breakfast, with poorly concealed excitement.

Various and Sundry

  • In the wake of the Jamf IPO, The Exchange corresponded with fellow Apple device management shop Addigy. According to its CEO Jason Dettbarn, “the broader MDM space is growing significantly faster” than Jamf itself. Dettbarn did say that “JAMF has built a great business and unit economics,” which was kind, adding that there is “tremendous greenspace opportunities” in the MDM world. Our read? Jamf’s solid numbers (more on that in a second) belie the chance of even better results, provided that Addigy is right.
  • One more Jamf note, if we may. The Exchange chatted with Jamf CFO Jill Putman, who told us something that we’d never heard before. We asked about how Jamf priced, in light of its huge first day result. She said that IPO pricing is a balance between not leaving money on the table, and not validating more-bullish investor models for the company. Investors tend to be more optimistic than companies, she said, and if you price too aggressively you could implicitly validate those higher targets. That makes sense, and gently dampens the Twitter whining you see today about IPO mispricing.
  • Robinhood shared how it is going to improve options trading. In the light of a user suicide relating to options trading, the Robinhood UI and access to options-trading, Robinhood promised to do better. Its list — you can read it here — feels lightweight? As The Exchange has written, there is tension between Robinhood’s revenue model and its recent promise to take better care of its users regarding more exotic trades.
  • Also, Robinhood is backing out of its U.K. expansion. The company told The Exchange that its decision wasn’t tied to its revenue model. But as Robinhood makes lots of money from selling order flow in the U.S., and we understand that the model is not allowed in the U.K., we wonder about the totality of reasons behind the choice.
  • And, finally, Teespring is back from the brink and is growing like hell. The Exchange has the exclusive story early next week. Stay tuned.


from TechCrunch https://ift.tt/3jDFByF
Share:
Email ThisBlogThis!Share to XShare to Facebook
//]]>
← Newer Post Older Post → Home

0 comments:

Post a Comment

Recent Posts

Categories

  • Biz & IT – Ars Technica
  • Crunch Hype
  • IK scandal
  • imran khan
  • imran khan new
  • imran khan news
  • imran khan pm Pakistan
  • imran khan secret
  • India
  • Indian pm
  • Kashmir
  • MIT Technology Review
  • modi
  • nawaz Sharif
  • NYT
  • Pakistan
  • Pakistan is losing Kashmir
  • pm modi
  • pti
  • scandal
  • Tech
  • tech news
  • TechCrunch
  • Techmeme
  • Technology
  • the technology news
  • TheTechNews
  • Top News - MIT Technology Review

Pages

  • Home
  • Popular Posts
  • Archives
  • An analysis of Palantir CEO Alex Karp's dissertation at a German university in 2002 and how it presaged the work he would go on to do at Palantir (Moira Weigel/boundary 2)
    Moira Weigel / boundary 2 : An analysis of Palantir CEO Alex Karp's dissertation at a German university in 2002 and how it presaged t...
  • Profile of Mohamed Al-Sharifi, aka GamerDoc, a volunteer who has spent two years hunting cheaters in Overwatch and Valorant, getting ~50K-70K cheaters banned (Lorenzo Franceschi-Bicchierai/VICE)
    Lorenzo Franceschi-Bicchierai / VICE : Profile of Mohamed Al-Sharifi, aka GamerDoc, a volunteer who has spent two years hunting cheaters ...
  • New Flagpro malware linked to Chinese state-backed hackers
     The cyber espionage group APT (Advanced Persistent Threat) Blackwell has been targeting Japanese companies with a new type of malware tha...
  • Download a free trial of ManageEngine ADManager Plus #wanitaxigo
  • Dear Spotify, add rabbits to your pet playlists
    I there’s one thing I know, it’s that music is the best thing our species has every created. If there are two things I know, it’s the music ...
  • Nix Pro 2 and Nix Mini color sensors are powerful, easy-to-use additions to any creative pro toolkit
    Translating the physical world to the digital has been a challenge, especially when it comes to things like color: Color isn’t actually all ...
  • ZFS 101—Understanding ZFS storage and performance
    Enlarge / No, you can't actually buy Ironwolf disks with an OpenZFS logo on them—but since they're guaranteed SMR-free, they are...
  • Baidu reports Q4 revenue of $4.15B, up 6% YoY, and iQIYI revenue of $1.08B, up 7% YoY; iQIYI subscribers grew to 106.9M and membership revenue grew 21% YoY (Baidu Inc)
    Baidu Inc : Baidu reports Q4 revenue of $4.15B, up 6% YoY, and iQIYI revenue of $1.08B, up 7% YoY; iQIYI subscribers grew to 106.9M and me...
  • Daily Crunch: The end of Anki
    The Daily Crunch is TechCrunch’s roundup of our biggest and most important stories. If you’d like to get this delivered to your inbox every ...
  • Houzz resets user passwords after data breach
    Houzz, a $4 billion-valued home improvement startup that recently  laid off 10 percent of its staff , has admitted a data breach. A reader...

Blog Archive

  • ►  2024 (16)
    • ►  January (16)
  • ►  2023 (164)
    • ►  December (15)
    • ►  November (17)
    • ►  October (17)
    • ►  September (16)
    • ►  August (8)
    • ►  July (16)
    • ►  June (21)
    • ►  May (13)
    • ►  April (7)
    • ►  March (9)
    • ►  February (19)
    • ►  January (6)
  • ►  2022 (300)
    • ►  December (8)
    • ►  November (8)
    • ►  October (22)
    • ►  September (16)
    • ►  August (14)
    • ►  July (13)
    • ►  June (16)
    • ►  May (24)
    • ►  April (35)
    • ►  March (21)
    • ►  February (20)
    • ►  January (103)
  • ►  2021 (7157)
    • ►  December (198)
    • ►  November (568)
    • ►  October (624)
    • ►  September (624)
    • ►  August (643)
    • ►  July (657)
    • ►  June (626)
    • ►  May (647)
    • ►  April (649)
    • ►  March (650)
    • ►  February (597)
    • ►  January (674)
  • ▼  2020 (8062)
    • ►  December (649)
    • ►  November (647)
    • ►  October (611)
    • ►  September (666)
    • ►  August (692)
    • ▼  July (686)
      • Companies are increasingly using employee survey d...
      • A look at Election Cyber Surge, which aims to bols...
      • Google updates its "Why this ad" feature, now "Abo...
      • William English, who alongside Douglas Engelbart b...
      • Trump told reporters he will use executive power t...
      • President Trump says he will ban TikTok in the US ...
      • When companies have too many smaller teams, slicin...
      • Lemonaid Health, which offers an on-demand service...
      • Sources: Apple has acquired Mobeewave, a startup w...
      • COVID-19 has pushed museums to improve their onlin...
      • Disrupt 2020 early-bird savings extended until nex...
      • Netherlands-based "Slack for doctors" app raises $...
      • Last day for early bird savings to Disrupt 2020
      • The iron rule of founder compensation is dead
      • A look at the "hustle economy", where unemployed t...
      • Amazon gains FCC approval for Kuiper internet sate...
      • Twitter finally bans former KKK leader, David Duke
      • The French startup scene also suffers from a lack ...
      • The problems AI has today go back centuries
      • How an EU tax could slash climate emissions far be...
      • Twitter says ‘phone spear phishing attack’ used to...
      • Chinese importers are ramping up chip imports thro...
      • Sources: Facebook has completed deals with the thr...
      • Twitter hackers used “phone spear phishing” in mas...
      • Emails from Jeff Bezos and other Amazon employees ...
      • In an update to the July 15 hack, Twitter says a f...
      • Rakuten confirms it is shutting its US online reta...
      • Ford Bronco reservations surpass 150,000
      • Self-driving startup Argo AI hits $7.5 billion val...
      • The hearing at times felt like gaslighting, with t...
      • Rakuten is shuttering the online shop formerly kno...
      • Emails in 2006 show Google almost struck a deal wi...
      • Cook says strong Mac and iPad sales in Q3 were lik...
      • EA reports Q1 revenue of $1.46B vs expectations of...
      • Telegram files EU antitrust complaint against Appl...
      • Report: Amazon collects 30%, on average, of each s...
      • Watch NASA’s Mars Perseverance rover launch live
      • Sources: EU antitrust regulators are set to open a...
      • ‘This Is a New Phase’: Europe Shifts Tactics to Li...
      • Singapore-based Volopay wants to be the “Brex of S...
      • Research firm Forrester: US ad spending will decli...
      • Microsoft’s new Flight Simulator is a beautiful wo...
      • Google’s “no choice” screen on Android isn’t worki...
      • Arm has accused the ousted head of its China unit ...
      • Samsung’s second-quarter profit grew 23% year-over...
      • Report: China-linked hackers infiltrated the Vatic...
      • Report: Huawei shipped 55.8M devices globally, dow...
      • Hacker shares data stolen on 18 companies, like Da...
      • A recap of antitrust hearing, which was messy but ...
      • Apple’s App Store commission structure called into...
      • Amazon’s hardware business doesn’t escape Congress...
      • Samsung reports Q2 earnings with sales of ~$44.5B,...
      • During hearing, Rep. David Cicilline confronted Ma...
      • Amazon emails released by the antitrust subcommitt...
      • Tim Cook defended Apple's removal of rival screen ...
      • Emails between Eddie Cue and other Apple execs fro...
      • At the antitrust hearing, Cook was questioned 7 ti...
      • Sources: some US investors of ByteDance seeking to...
      • Canada’s narwhals skewer Silicon Valley’s unicorns
      • Elon Musk says Tesla is open to licensing Autopilo...
      • With Robinhood’s UK launch delayed, eToro to bring...
      • Spotify reports Q2 revenue of €1.89B, up 13% YoY, ...
      • Q&A with the new CEO of NYT Meredith Levien on est...
      • In July, a H-1B software engineers' median salary ...
      • China now accounts for nearly one-quarter of Tesla...
      • A Handbook to Today’s Tech Hearing
      • Toppr, an e-learning service in India covering 17 ...
      • Sources: Google and Samsung are in talks about giv...
      • Some scientists are taking a DIY coronavirus vacci...
      • How to watch big tech’s CEOs tangle with Congress ...
      • After India and US, Japan looks to ban TikTok and ...
      • Profile of Imint, a Swedish company that makes dee...
      • Read how Apple, Amazon, Facebook and Google plan t...
      • Toppr raises $46 million to scale its online learn...
      • RangeForce raises $16M Series A led by Energy Impa...
      • Sundar Pichai will tell lawmakers that Google oper...
      • Tim Cook will tell US lawmakers that App Store has...
      • Thanks to COVID-19, everybody wants Density’s tech...
      • Hevo draws in $8 million Series A for its no-code ...
      • TransferWise announces a new $319M secondary share...
      • ComplyAdvantage nabs $50M for an AI platform and d...
      • A look at companies like Cerence, which have partn...
      • Their Businesses Went Virtual. Then Apple Wanted a...
      • Amazon, Apple, Facebook and Google Prepare for The...
      • The US needs a green stimulus – but must provide i...
      • Profile of FaZe Clan, an e-sports collective of 85...
      • All dogs in Shenzhen, China will get microchipped ...
      • As remote work booms, Everphone grabs ~$40M for it...
      • India’s Flipkart gives hyperlocal delivery service...
      • Google is building a new private subsea cable betw...
      • Withings raises $60 million to bridge the gap betw...
      • Facebook, YouTube, and Twitter scramble to remove ...
      • Combined market cap of Apple, Facebook, Alphabet, ...
      • Tencent wants to take full control of long-time se...
      • Through June 30, Amazon, Apple, Google, Facebook, ...
      • Vicariously mimics another person’s Twitter feed u...
      • Hong Kong-based EMQ raises $20 million for its cro...
      • Cannabis VC Karan Wadhera on why the industry, whi...
      • Sources: India is examining an additional 275 Chin...
      • Bitcoin bulls are running, as prices spike above $11K
    • ►  June (667)
    • ►  May (702)
    • ►  April (677)
    • ►  March (718)
    • ►  February (650)
    • ►  January (697)
  • ►  2019 (15143)
    • ►  December (669)
    • ►  November (654)
    • ►  October (686)
    • ►  September (677)
    • ►  August (695)
    • ►  July (695)
    • ►  June (688)
    • ►  May (2205)
    • ►  April (2157)
    • ►  March (2064)
    • ►  February (1940)
    • ►  January (2013)
  • ►  2018 (10679)
    • ►  December (1651)
    • ►  November (1943)
    • ►  October (2281)
    • ►  September (2094)
    • ►  August (1980)
    • ►  July (730)

Definition List

Unordered List

Support

 
  • copyRighted

    UpToDated

    https://go.oclaserver.com/afu.php?zoneid=1845709
Copyright © The Tech News