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();

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Monday, 1 March 2021

Online reviews site Trustpilot unveils plans for London IPO with plans to raise $50M and hopes for a market value of ~£1B (Tim Bradshaw/Financial Times)

Tim Bradshaw / Financial Times:
Online reviews site Trustpilot unveils plans for London IPO with plans to raise $50M and hopes for a market value of ~£1B  —  Online review site looks to take advantage of booming demand from investors  —  Trustpilot has unveiled plans to list in London, handing the UK …



from Techmeme https://ift.tt/2ZZamWv
Share:

Swedish payments startup Klarna raises $1B at a valuation of $31B, triple its valuation in its last funding round in September (Natalia Drozdiak/Bloomberg)

Natalia Drozdiak / Bloomberg:
Swedish payments startup Klarna raises $1B at a valuation of $31B, triple its valuation in its last funding round in September  —  - Swedish firm raised $1 billion in new funding from investors  — Klarna to donate 1% of new funds to climate change initiatives



from Techmeme https://ift.tt/3uEKb5o
Share:

Rocket Lab debuts plans for a new, larger, reusable rocket for launching satellite constellations

Because news of its SPAC-fueled public market debut wasn’t enough, Rocket Lab also unveiled a new class of rocket it has in development on Monday. The launch vehicle, called Neutron, will be able to carry 8 metric tons (around 18,000 lbs) to orbit, far exceeding the cargo capacity of Rocket Lab’s current Electron vehicle, which can host only around 660 lbs. Neutron will also have a fully reusable first-stage, designed to launch on an ocean landing platform, not unlike SpaceX’s Falcon 9 booster.

Rocket Lab says that Neutron will be designed to service increased demand from customers launching large multi-satellite constellations. The heavier lift will mean that it can take more small satellites up at one time to get those constellations in orbit more quickly. Its cargo rating also means it should be able to deliver up to 98% of all currently-forecasted spacecraft launching through 2029, according to Rocket Lab, and provide resupply services to the International Space Station. Rocket Lab also says it’ll be capable of human spaceflight missions, indicating an ambition to make it the company’s first human-rated spacecraft.

Neutron could significantly expand Rocket Lab’s customer base, and it’ll also improve costs and economics vs. what Electron can do now, thanks to a design focus don efficiency and reusability. The rocket will launch from Rocket Lab’s Wallops, Virginia facility, and since there’s already a launch pad in place for it, the company expects it’ll be able to fly Neutron for the first time by 2024. In addition to its LA-based HQ and the Wallops launch site, Rocket Lab anticipates it’ll be building a new Neutron production facility somewhere in the U.S. to build the new rocket at scale.

While it won’t have the launch capacity of SpaceX’s Falcon 9, it’s still intended to be a rocket that can also carry smaller payloads to the Moon and even deep space beyond. The medium-lift category in general is generating a lot of interest right now, given the projections in the amount and variety of constellations that both private and public organization are expected to put into orbit over the next decade. Constellations are offering advantages in terms of cost and coverage for everything from communications to Earth observation. Another rocket startup, Relativity Space, just unveiled similar plans for a larger launch vehicle to complement its first small rocket.



from TechCrunch https://ift.tt/3sFf3B8
Share:

Rocket Lab to go public via SPAC at valuation of $4.1 billion

The SPAC run is on for space startups, which have been relatively slow in their overall exit pace before the current special purpose acquisitions company merger craze got underway. Rocket Lab is the latest, and likely the most notable to jump on the trend, with a deal that will see it combine with a SPAC called Vector and subsequently list on the NASDAQ under the ticker RKLB, with the transaction expected to close in the second quarter of this year.

Rocket Lab, which got its start in New Zealand, and which still launches rockets there with its HQ now shifted to LA, will have a pro forma enterprise value of $4.1 billion via the transaction, with a total cash balance of $750 million once the deal goes through thanks to a PIPE of $470 million with funds invested via Vector, BlackRock and others. At close, existing Rocket Lab shareholders will retain 82% of the total equity in the combined company.

The launch company was founded in 2006, and is led by founder Peter Beck. In 2013, it opened its California headquarters, and it has already completed its first U.S. launch facility at Wallops Island, Virginia. The company’s Electron launch vehicle can carry small payloads to orbit, and is designed to cater to the growing small satellite market, with a focus on responsive and flexible launch options.

Rocket Lab has performed launches on behalf of the U.S. government, including national security payloads, and that’s a key revenue opportunity for it gown forward. Currently, it says it has a backlog of customers, with a projection that it will be ‘EBITDA positive’ in 2023 after adjustments, and fully cash-flow positive by 2024, with a projected run rate of over $1 billion in revenue by 2026.

The company has focused on increasing its ability to launch more frequently in a number of ways. It’s been steadily improving its production capacity, with a focus on its large automated carbon fiber production capabilities. It has also established its U.S. launch site, as mentioned, and will soon open its second launch pad at its existing New Zealand launch site, which is fully privately-owned by Rocket Lab itself. It’s also working on making its Electron vehicle partially reusable, which founder Beck says will help it turn around launches more quickly.

Finally, it also just announced a new heavier-lift launch vehicle called Neutron, with a launch payload capacity of 8 tons – around 16,000 lbs.



from TechCrunch https://ift.tt/3b5H6DE
Share:

Klarna confirms new $31B valuation

Klarna, the Swedish buy now, pay later behemoth and upstart bank, has raised $1 billion in new funding at a post-money valuation of $31 billion. That sees the company retain the crown as the highest valued private fintech in Europe.

Backers of this round are said to be combination of new and existing investors, while Klarna claims it was 4 times oversubscribed. That’s likely prompted by reports the company is eyeing up a direct public listing and the current appetite for public tech stocks in general.

As a reference point, Affirm, which is viewed in the U.S. as one of Klarna’s most direct competitors, recently IPO’d. If you want further data points, read Alex’s Extra Crunch analysis of Klarna, Affirm and AfterPay’s most recent earnings.

In addition to confirming the new fund raise — which had been widely leaked given that there dozens of frenzied investors involved — Klarna is also announcing that the company will pledge 1% of the capital raised to a newly created initiative that focuses on “key sustainability challenges around the world”. The initiative will be formally launched April 22 on World Earth Day.

A very early mover in what is now widely called buy-now-pay-later (BNPL), Klarna has been built on the concept of giving consumers a way to buy things online without having to pay for them upfront, and without resorting to a credit card. It does this both by offering online retailer integrations where Klarna appears as an option at check out, and through its own “shopping mall” app, where users can browse all the stores that let you pay with Klarna.

On the back of this, the company hopes to foster a bigger financial relationship with its users as a fully-fledged challenger bank. It has a range of licensed banking services, such as savings and current accounts, in Sweden and Germany, with more countries to follow.

On the BNPL front, Klarna is active in over 17 countries, and has over 250,000 retail partners including Macys, H&M, IKEA, Expedia Group, Samsung, ASOS, Peloton, Abercrombie & Fitch, Nike and AliExpress.

The fintech has been backed by Sequoia Capital since 2010. More recent investors include Dragoneer, Bestseller Group, Permira, Visa, Atomico, Ant Group, Commonwealth Bank of Australia, Silver Lake, HMI Capital, TCV, Northzone, GIC (Singapore’s sovereign wealth fund) and funds and accounts managed by BlackRock.

Meanwhile, Klarna was founded all the way back in 2005 and has a fascinating story from startup to scale-up — a story that almost certainly has a few more twists and turns yet. If you need to catch up, check out this 8,000 word opus on the company for Extra Crunch.



from TechCrunch https://ift.tt/3q58FRQ
Share:

Axonius, a security startup developing an end-to-end device management platform, raises $100M Series D led by Stripes, at a $1.2B post-money valuation (Ingrid Lunden/TechCrunch)

Ingrid Lunden / TechCrunch:
Axonius, a security startup developing an end-to-end device management platform, raises $100M Series D led by Stripes, at a $1.2B post-money valuation  —  Remote work has become the norm for many businesses in the last year, and today a startup that has built a cybersecurity platform …



from Techmeme https://ift.tt/303JgNI
Share:

Axonius nabs $100M at a $1.2B valuation for its asset management cybersecurity platform

Remote work has become the norm for many businesses in the last year, and today a startup that has built a cybersecurity platform to help manage all the devices connecting to organizations’ wide-ranging networks — while also providing a way for those organizations to take advantage of all the best that the quite fragmented security market has to offer — is announcing a major round of funding and a big boost to its valuation after seeing its annual recurring revenues grow ten-fold over 15 months.

Axonius, which lets organizations manage and track computing-based assets that are connecting to their networks — and then plug that data into some 300 different cybersecurity tools to analyse it — has closed a round of $100 million, a Series D that values the company at over $1 billion ($1.2 billion, to be exact).

“We like to call ourselves the Toyota Camry of cybersecurity,” Axonius co-founder and CEO Dean Sysman told me in an interview last year. “It’s nothing exotic in a world of cutting-edge AI and advanced tech. However it’s a fundamental thing that people are struggling with, and it is what everyone needs. Just like the Camry.” It will be using the funding to continue scaling the company, it said, amid surging demand, with ARR growing to $10 million last year.

This latest round — led by Stripes, with past investors Bessemer Venture Partners (BVP), OpenView, Lightspeed, and Vertex also participating — represents a huge jump for the startup.

Not only is this the company’s biggest round to date, but last year’s $58 million Series C — which closed just as the Covid-19 pandemic was kicking off and remote working, to better enforce social distancing, was starting to take off with it — valued the company at just over $302 million, according to PitchBook data. Axonius has now raised around $195 million in funding.

Last week BVP announced a new pair of funds totaling $3.3 billion, with one dedicated to later stage growth rounds: this indicates that this money is already getting put to work. Amit Karp, the BVP partner who sits on Axonius’ board, describes the startup as one of the “fastest-growing companies in BVP history.”

When I last covered Axonius, one of the details that really struck me is that its platform is especially useful in today’s market, not just because of its focus on identifying devices on networks may well — and today genuinely do — extend outside of a traditional “office”, but also because of how it views the cybersecurity industry.

It’s a very fragmented market today, with hundreds of companies all providing useful tools and techniques to safeguard against one threat or another. Axonius essentially accepts that fragmentation and works within it, and it has its job cut out for it. Last year when I covered the company’s funding, it integrated with and ran network assets through 100 different cybersecurity tools; now that number is 300.

The crux of what Axonius provides starts with a very basic but critical issue, which is being able to identify how many devices are actually on a network, where they are, and what they do there. The idea for the company came when Dean Sysman, the CEO who co-founded Axonius with Ofri Shur and Avidor Bartov, was previously working at another firm, the Integrity Project (now a part of Mellanox).

“Every CIO I met I would ask, do you know how many devices you have on your network? And the answer was either ‘I don’t know,’ or big range, which is just another way of saying, ‘I don’t know,’” Sysman told me last year. “It’s not because they’re not doing their jobs but because it’s just a tough problem.”

He said part of the reason is because IP addresses are not precise enough, and de-duplicating and correlating numbers is a gargantuan task, especially in the current climate of people using not just a multitude of work-provided devices, but a number of their own.

Axonius’s algorithms — “a deterministic algorithm that knows and builds a unique set of identifiers that can be based on anything, including timestamp, or cloud information. We try to use every piece of data we can,” said Sysman — are built to bypass some of this.

The resulting information then can used across a number of other pieces of security software to search for inconsistencies in use (bringing in the behavioural aspect of cybersecurity) or other indicators of malicious activity.

The fact of that platform play — and how it can grow with both the range of devices that are added, as well as technology built to counteract increasingly sophisticated threats — is what attracted investors. 

“It’s always exciting to invest in fast-growing, innovative, category-creating companies, but what Axonius has accomplished in such a short time is remarkable,” said Stripes founding partner Ken Fox in a statement. “With its commitment to solving a fundamental challenge with a simple, powerful platform that collects and correlates data from hundreds of products its customers already use, Axonius has built one of the most beloved products in security. We look forward to partnering with the Axonius team as they continue to invest in technical innovation and grow to meet global demand in 2021 and beyond.” Fox will join the Axonius board of directors with this round.



from TechCrunch https://ift.tt/3bN5Gbv
Share:

Paytm claims top spot in India’s mobile payments market with 1.2B monthly transactions

Paytm, India’s most valuable startup, said on Monday it processed 1.2 billion transactions in the month of February, illustrating the level of penetration it has made in one of the world’s fastest-growing payments markets where it competes with Google, Facebook, Amazon, and Flipkart-backed PhonePe.

Paytm said its users made 1.2 billion transactions last month across several payments modes including wallets, plastic cards, internet banking, and UPI. This is the largest volume of transactions reported by any payments firm in India and Paytm claimed that it has consolidated its leadership position.

A Paytm spokesperson told TechCrunch that the startup clocked over 1 billion transactions in the month of January as well. A PhonePe spokesperson told TechCrunch that its app crossed a billion transactions in December, and its last month’s transacting volume was “over a billion” across UPI, wallet, and credit and debit cards.

Paytm’s figure shows how the SoftBank-backed startup has continued to grow despite not being a dominant player in the UPI ecosystem.

A payments railroad built by a coalition of retail banks and backed by the government, UPI has emerged as the most popular way users transact online in recent years though it does not offer any business model.

Last month, UPI services processed 2.29 billion transactions, the governing body NPCI said on Monday. PhonePe and Google Pay are the dominant UPI players in India, commanding over 85% of the person-to-person payments market. PhonePe processed about 970 million UPI transactions in February. (NPCI has said that it will enforce a market share cap on its member firms.)

Unlike Paytm, which leads among wallet players, and PhonePe, Google Pay and relatively new entrant WhatsApp solely operate on UPI.

Paytm has expanded to cater to merchants in recent years as several international firms launched their offerings to solve person-to-person payments in India. The startup claimed that its service dominates in offline merchant payments and is growing 15% month-on-month. The startup, led by Vijay Shekhar Sharma, said it serves over 17 million merchants. PhonePe told TechCrunch it serves over 17.5 million merchants.

Paytm said it has been “the main driving force behind building and expanding digital villages and now empowers over 6 lakh (600,000) villages in India with digital payments.” The startup said over 50% of its merchant partners have an account with Paytm Payments Bank — the startup’s digital bank — and it also commands the market with its digital wealth management service, Paytm Money.

At stake is India’s payments market that is estimated to be worth $1 trillion in the next three years, up from about $200 billion last year, according to Credit Suisse.

“We are humbled by the trust India has shown in us & made Paytm their preferred digital payments & financial service provider. We have consistently maintained industry-leading market share & growing at an impressive rate,” said Narendra Yadav, Vice President of Paytm, in a statement.

“We have been promoting all digital payment methods giving multiple-choices to consumers that have helped us in consolidating our leadership position. In fact, a large percentage of our users who started their digital journey with Paytm, have now adopted & embraced our financial services.”



from TechCrunch https://ift.tt/3b3Vw7n
Share:

Blog Archive

Definition List

Unordered List

Support