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.

Wednesday 31 March 2021

Spain’s Glovo picks up $528M as Europe’s food delivery market continues to heat up

On the heels of Deliveroo raising more than $2 billion ahead of its debut on the London Stock Exchange this week, another hopeful in the food delivery sector has closed a super-sized round. Glovo, a startup out of Spain with 10 million users that delivers restaurant take-out, groceries and other items in partnership with brick-and-mortar businesses, has picked up a Series F of $528 million (€450 million).

Glovo aims to become the market leader in the 20 markets in Europe where it is live today, in part by expanding its “q-commerce” service — the delivery of items to urban consumers in 30 minutes or less — and it will be using the money to double down on that strategy, including hiring up to 200 more engineers to work in its headquarters in Barcelona, as well as hubs in Madrid and Warsaw, Poland.

This is a milestone funding round not just for the company, but its home country: it marks the largest-ever round raised by a Spanish startup.

“We started in Spain, where you have access to far less capital than other countries in Europe. We do more with less and that’s made us leaner,” said Sacha Michaud, the co-founder of the company, in an interview this week. “We’ve got our own strategy and it seems to be working.”

The funding is being led by Lugard Road Capital and Luxor Capital Group (the former is an affiliate of the latter), with Delivery Hero, Drake Enterprises and GP Bullhound also participating. All are previous backers of Glovo.

“We’re thrilled to have the continued backing of Luxor Capital Group and all of our existing investors. Over the last few months, we’ve moved very, very quickly but our vision remains unchanged,” said Oscar Pierre, Glovo’s other co-founder and CEO, in a statement. “This investment will allow us to double-down in our core markets, accelerate our leadership position in places where we are already very strong and continue to expand our excellent Q-Commerce division, as well as bring new innovations to our unique multi-category offering to extend more choice to our customers.”

Valuation is not being disclosed with this round, but when it raised its $166 million Series E in December 2019 — just ahead of the Covid-19 pandemic that truly changed the face of delivery services in many parts of the world — the company had a valuation of $1.18 billion, according to PitchBook data. Michaud would only confirm to me that it was “definitely an up-round,” which would put it at at least $1.7 billion, based on that estimate.

The funding comes on the heels of a very busy period of fundraising in the sector as investors the race to get in on the delivery of hot food, groceries and other necessities in Europe — a fast-growing business model in the most normal of times that blasted off in the last year as an essential service for consumers confined to their homes, often by government mandate, to stave off the spread of the coronavirus.

Just in the last few days, Gorillas in Berlin raised $290 million on a $1 billion+ valuation for its on-demand grocery business; Everli out of Italy (formerly called Supermercato24) raised $100 million (Luxor is one of its investors too); and reportedly Zapp in London has also closed $100 million in funding. Earlier in March, Rohlik out of the Czech Republic bagged $230 million.

Amid all those private raises, we also had Deliveroo’s IPO yesterday, which — as IPOs so often do — exposed some of the trickier aspects of the business. The company — which is backed by Amazon, a formidable player in food and essentials delivery — easily raised the most of money of the month — $2.1 billion in the private placement ahead of the listing — but then proceeded to slog out its debut on the LSE with shares progressively slumping throughout the day and ending up significantly lower than its offer price.

Areas of concern around Deliveroo serve as cautionary tales for all of them: not just how you price an IPO and what allocation you give to future shareholders, but also the unit economics of your business model, the price of competition, and where labor costs will fit into the bigger picture (and the bottom line).

“We’ve got our own road and we’re doing a pretty good job,” Michaud said in an interview when the subject of Deliveroo IPO came up. “We’re still David versus the Goliath out there.” Part of that for Glovo has also included some decisions made on rationalizing its own business: the company sold off its Latin American operations in a $272 million deal to its backer Delivery Hero last year to focus solely on Europe and adjacent geographies.

But even before the Series F being announced today, Glovo itself was one of the companies raising money for specific purposes, and those efforts point to how it plans to proceed in the weeks and months ahead on its own growth plan.

In January Glovo announced a strategic deal with Swiss real-estate firm Stoneweg, which pitched in €100 million ($117 million), to co-develop a number of “dark stores” in areas where Glovo already operates to improve its distribution networks and help speed up its delivery times.

It’s part of a fulfillment operation that complements the hot food that Glovo sells on behalf of its restaurant partners: the dark stores are stocked with items Glovo sells on behalf of other companies such as Carrefour, Continente, and Kaufland, as well as a lot of independent retailers, companies that have not built their own (costly) B2C delivery networks but have wanted to provide that service to consumers nonetheless.

Although the company today promises deliveries in 29 minutes, in many markets, Michaud said, it’s already averaging 10-15 minutes and the aim is to make that the norm everywhere.

Restaurant delivery of hot food remains the biggest category of business for Glovo, he added, but the company has seen a surge of demand for the other kinds of items and is expanding that accordingly.

“With Covid, we’ve been delivering pretty much anything you want in your city,” Michaud said. “Covid has been an accelerator and has educated the market. Instead of crossing city and spending time waiting and buying items, anything I want and Glovo will bring it to me. Why wouldn’t I do this?” He believes the more traditional rush of people doing in-person shopping is “definitely not gong to come back,” with groceries to be in the same position as restaurants in a couple of years. That’s leading the company to expand into more areas: “clothing, fashion and pharmacy, flowers. Hopefully we’re now in a good position to do that.”

That position, of course, will involve an important component of this three-sided marketplace. In addition to the restaurants and retailers that partner with Glovo, and the consumers who use the app to buy and get things delivered, there are the delivery people and couriers that do the first- and last-mile work to get the goods into the system, and then to customers. The couriers in the system work today largely on a freelance basis, often balancing jobs on competing apps, and their efforts, and how they are compensated for them, have been the focus of a lot of scrutiny both here and in the U.S.

In short: the companies say couriers have an amazing opportunity to earn money; but many couriers and organizations supporting their cause believe the reality to be far from that.

That has played out with a number of very public protests and is starting now to trickle into formal legal moves to ensure these workers’ rights. Apart from the ethical angle here, it’s of concern also to investors focused more on the bottom line and the costs that they might mean for businesses that already work on thin margins (or in many cases, losses). Indeed, it’s very likely that these issues formed part of what weighed on Deliveroo in its public listing and poor debut.

This has also been playing out for Glovo very directly. The company lost a supreme court case in Spain in September last year, where the court rejected its attempt to classify a courier as self-employed rather than an employee. Now, the country is working on more formal reforms to put in place guidelines and requirements for companies to mandate benefits to those workers. That will take some time to play out, and in the meantime there are also wider European efforts underway to harmonize the approach across all countries in the EU.

This is a complicated issue, but essentially Glovo advocates to keep the couriers as self-employed, but supports the idea of benefits provided to those workers nonetheless by those taking their services (such as Glovo), and it wants the approach to be Europe-wide.

“We think there needs to be more social rights for workers,” Michaud said. “We believe in a freelance model with additional social rights that companies like Glovo would give them, but in many countries the regulations are not there for that to happen.”

But it’s also not all cut-and-dry since it doesn’t support some of the other aspects of that labor reform. “We think the rigid strict tables and minimum wages are not the way to fix the problem,” he added, explaining that the flexibility of the business model does not support that. In short, it’s negotiating and hoping that it can claw in some expenses while conceding others.

Investors seem ready for these kinds of questions and their longer-term impact, given that the trade-off for them is a foothold in what has been one of the most successful tech efforts in the region.

“Our investment in Glovo reflects our commitment to a company and leadership team that continues to innovate and disrupt in the on-demand delivery space,” said Jonathan Green, founder and porfolio manager at Lugard Road Capital, in a statement. “As a long-term investor in Glovo, we are excited to watch the company continue to delight its customers through its unique multi-category offering, amidst an enormous market opportunity in both existing and new geographies.”



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

Celonis announces significant partnership with IBM to sell its process mining software

Before you can improve a workflow, you have to understand how work advances through a business, which is more complex than you might imagine inside a large enterprise. That’s where Celonis comes in. It uses software to identify how work moves through an organization and suggests more efficient ways of getting the same work done, also known as process mining

Today, the company announced a significant partnership with IBM where IBM Global Services will train 10,000 consultants worldwide on Celonis. The deal gives Celonis, a company with around 1200 employees access to the massive selling and consulting unit, while IBM gets a deep understanding of a piece of technology that is at the front end of the workflow automation trend.

Miguel Milano, chief revenue officer at Celonis says that digitizing processes has been a trend for several years. It has sped up due to COVID, and it’s partly why the two companies have decided to work together. “Intelligent workflows, or more broadly spoken workflows built to help companies execute better, are at the heart of this partnership and it’s at the heart of this trend now in the market,” Milano said.

The other part of this is that IBM now owns Red Hat, which it acquired in 2018 for $34 billion. The two companies believe that by combining the Celonis technology, which is cloud based, with Red Hat, which can span the hybrid world of on premises and cloud, the two together can provide a much more powerful solution to follow work wherever it happens.

“I do think that moving the [Celonis] software into the Red Hat OpenShift environment is hugely powerful because it does allow in what’s already a very powerful open solution to now operate across this hybrid cloud world, leveraging the power of OpenShift which can straddle the worlds of mainframe, private cloud and public cloud. And data straddle those worlds, and will continue to straddle those worlds,” Mark Foster, senior vice president at IBM Services explained.

You might think that IBM, which acquired robotic process automation vendor, WDG Automation last summer, would simply attempt to buy Celonis, but Foster says the partnership is consistent with the company’s attempt to partner with a broader ecosystem.

“I think that this is very much part of an overarching focus of IBM with key ecosystem partners. Some of them are going to be bigger, some of them are going to be smaller, and […] I think this is one where we see the opportunity to connect with an organization that’s taking a leading position in its category, and the opportunity for that to take advantage of the IBM Red Hat technologies…” he said.

The companies had already been working together for some time prior to this formal announcement, and this partnership is the culmination of that. As this firmer commitment to one another goes into effect, the two companies will be working more closely to train thousands of IBM consultants on the technology, while moving the Celonis solution into Red Hat OpenShift in the coming months.

It’s clearly a big deal with the feel of an acquisition, but Milano says that this is about executing his company’s strategy to work with more systems integrators (SIs), and while IBM is a significant partner it’s not the only one.

“We are becoming an SI consulting-driven organization. So we put consulting companies like IBM at the forefront of our strategy, and this [deal] is a big cornerstone of our strategy,” he said.



from TechCrunch https://ift.tt/2PQAJfu
Share:

TSMC says it plans to spend $100B over the next three years to expand its chip fabrication capacity (Debby Wu/Bloomberg)

Debby Wu / Bloomberg:
TSMC says it plans to spend $100B over the next three years to expand its chip fabrication capacity  —  Taiwan Semiconductor Manufacturing Co. plans to spend $100 billion over the next three years to expand its chip fabrication capacity, the company said Thursday.



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

Microsoft has officially discontinued its Cortana mobile app for both iOS and Android (Tim Hardwick/MacRumors)

Tim Hardwick / MacRumors:
Microsoft has officially discontinued its Cortana mobile app for both iOS and Android  —  As expected, Microsoft today discontinued its Cortana mobile app.  As a result, the company has ended all support for third-party Cortana skills and eliminated the Cortana app for iOS and Android devices.



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

Cryptocurrency wallet and blockchain tech startup imToken raises $30 million Series B

imToken, the blockchain tech startup and crypto wallet developer, announced today it has raised $30 million in Series B funding led by Qiming Venture Partners. Participants included returning investor IDG Capital, and new backers Breyer Capital, HashKey, Signum Capital, Longling Capital, SNZ and Liang Xinjun, the co-founder of Fosun International.

Founded in 2016, the startup’s last funding announcement was for its $10 million Series A, led by IDG, in May 2018. imToken says its wallet for Ethereum, Bitcoin and other cryptocurrencies now has 12 million users and over $50 billion in assets are currently stored on its platform, with total transaction value exceeding $500 billion.

The company was launched in Hangzhou, China, before moving to it current headquarters to Singapore, and about 70% of its users are in mainland China, followed by markets including South Korea, the United States and Southeast Asia.

imToken will use its latest funding to build features for “imToken 3.0.” This will include keyless accounts, account recovery and and a suite of decentralized finance services. It also plans to expand its research arm for blockchain technology, called imToken Labs and open offices in more countries. It currently has a team of 78 people, based in mainland China, the United States and Singapore, and expects to increase its headcount to 100 this year.

In a press statement, Qiming Venture Partners founding managing partner Duane Kuang said, “In the next ten to twenty years, blockchain will revolutionize the financial industry on a global scale. We believe that imToken is riding this trend, and has strongly positioned itself in the market.”



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

Remote-controlled forklifts have arrived in France, courtesy of Phantom Auto

Global logistics company Geodis has tapped startup Phantom Auto to help it deploy forklifts that can be controlled remotely by human operators located hundreds, and even thousands, of miles away.

The aim is to use the technology to reduce operator fatigue — and the injuries that can occur as a result — as well as reduce the number of people physically inside warehouses, according to the Geodis. The use of remotely operated forklifts won’t replace employees — just where they work. It’s that detail that Geodis, which often has operations outside of city centers, finds appealing.

Stéphanie Hervé, chief operating officer for Geodis’ Western Europe, Middle East and Africa operations, told TechCrunch that use of the remotely operated forklifts will help the company attract a new group of workers, including those with physical disabilities. The intent isn’t to outsource workers to other countries, but to find more workers within a region, according to the company.

Under the partnership, Phantom Auto’s remote operation software is integrated into KION Group forklifts. The forklifts are equipped with 2-way audio so that remote operators, which Geodis also describes as ‘digital drivers’, can communicate with their co-workers inside the warehouses.

Geodis Phantom Auto forklift

Image Credits: Geodis

Phantom Auto and Geodis have been working together for more than two years via pilot program conducted in Levallois and Le Mans, France. This announcement signals a deeper relationship and one that could be a boon for Phantom Auto.

The initial deployment is focused on France, Hervé said. For now, Phantom Auto’s software will be used to remotely operate forklifts in the initial pilot sites of Levallois and Le Mans and will then expand throughout the country over the next year. Geodis employees at the two initial sites have already been trained to remotely operate the forklifts, Phantom Auto co-founder Elliot Katz said.  

Geodis’ footprint extends far beyond the boundaries of France. The company has some 165,000 clients in 120 countries. They own 300 warehouses, which are located throughout the world, and also provide third-party logistics services to thousands of other customers, including Amazon and Shopify.

Phantom Auto’s tie-up with Geodis is another example of the company seeking business outside of the fledging autonomous vehicle industry, which was its initial focus. The company, founded in 2017, developed vehicle-agnostic software to remotely monitor, assist operate fleets of unmanned vehicles such as forklifts, robots, trucks and passenger vehicles.

The company is adjacent to the AV industry. While AV operators rarely talk publicly about the need for teleoperations, it is viewed as a necessary support system to commercially deploy robotaxis and for other AV applications. But as autonomous vehicle developers pushed back timelines to commercialize the technology, Phantom Auto expanded into new areas.

Phantom Auto, which has raised $25 million to date, expanded a logistics business targeting sidewalks, warehouses and cargo yards, all the places where autonomy and teleoperation are being deployed today.



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

Facebook gets a C – Startup rates the ‘ethics’ of social media platforms, targets asset managers

By now you’ve probably heard of ESG (Environmental, Social, Governance) ratings for companies, or ratings for their carbon footprint. Well, now a UK company has come up with a way of rating the ‘ethics’ social media companies. 
  
EthicsGrade is an ESG ratings agency, focusing on AI governance. Headed up Charles Radclyffe, the former head of AI at Fidelity, it uses AI-driven models to create a more complete picture of the ESG of organizations, harnessing Natural Language Processing to automate the analysis of huge data sets. This includes tracking controversial topics, and public statements.

Frustrated with the green-washing of some ‘environmental’ stocks, Radclyffe realized that the AI governance of social media companies was not being properly considered, despite presenting an enormous risk to investors in the wake of such scandals as the manipulation of Facebook by companies such as Cambridge Analytica during the US Election and the UK’s Brexit referendum.

EthicsGrade Industry Summary Scorecard – Social Media

The idea is that these ratings are used by companies to better see where they should improve. But the twist is that asset managers can also see where the risks of AI might lie.

Speaking to TechCrunch he said: “While at Fidelity I got a reputation within the firm for being the go-to person, for my colleagues in the investment team, who wanted to understand the risks within the technology firms that we were investing in. After being asked a number of times about some dodgy facial recognition company or a social media platform, I realized there was actually a massive absence of data around this stuff as opposed to anecdotal evidence.”

He says that when he left Fidelity he decided EthicsGrade would out to cover not just ESGs but also AI ethics for platforms that are driven by algorithms.

He told me: “We’ve built a model to analyze technology governance. We’ve covered 20 industries. So most of what we’ve published so far has been non-tech companies because these are risks that are inherent in many other industries, other than simply social media or big tech. But over the next couple of weeks, we’re going live with our data on things which are directly related to tech, starting with social media.”

Essentially, what they are doing is a big parallel with what is being done in the ESG space.

“The question we want to be able to answer is how does Tik Tok compare against Twitter or Wechat as against WhatsApp. And what we’ve essentially found is that things like GDPR have done a lot of good in terms of raising the bar on questions like data privacy and data governance. But in a lot of the other areas that we cover, such as ethical risk or a firm’s approach to public policy, are indeed technical questions about risk management,” says Radclyffe.

But, of course, they are effectively rating algorithms. Are the ratings they are giving the social platforms themselves derived from algorithms? EthicsGrade says they are training their own AI through NLP as they go so that they can automate what is currently very human analysts centric, just as ‘sustainalytics’ et al did years ago in the environmental arena.

So how are they coming up with these ratings? EthicsGrade says are evaluating “the extent to which organizations implement transparent and democratic values, ensure informed consent and risk management protocols, and establish a positive environment for error and improvement.” And this is all achieved, they say, all through publicly available data – policy, website, lobbying etc. In simple terms, they rate the governance of the AI not necessarily the algorithms themselves but what checks and balances are in place to ensure that the outcomes and inputs are ethical and managed.

“Our goal really is to target asset owners and asset managers,” says Radclyffe. “So if you look at any of these firms like, let’s say Twitter, 29% of Twitter is owned by five organizations: it’s Vanguard, Morgan Stanley, Blackrock, State Street and ClearBridge. If you look at the ownership structure of Facebook or Microsoft, it’s the same firms: Fidelity, Vanguard and BlackRock. And so really we only need to win a couple of hearts and minds, we just need to convince the asset owners and the asset managers that questions like the ones journalists have been asking for years are pertinent and relevant to their portfolios and that’s really how we’re planning to make our impact.”

Asked if they look at content of things like Tweets, he said no: “We don’t look at content. What we concern ourselves is how they govern their technology, and where we can find evidence of that. So what we do is we write to each firm with our rating, with our assessment of them. We make it very clear that it’s based on publicly available data. And then we invite them to complete a survey. Essentially, that survey helps us validate data of these firms. Microsoft is the only one that’s completed the survey.”

Ideally, firms will “verify the information, that they’ve got a particular process in place to make sure that things are well-managed and their algorithms don’t become discriminatory.”

In an age increasingly driven by algorithms, it will be interesting to see if this idea of rating them for risk takes off, especially amongst asset managers.



from TechCrunch https://ift.tt/39s7lmo
Share:

Nested, the UK-based ‘modern’ estate agent, raises additional £5M to improve the home-selling experience

Nested, the London-based startup that is using technology to build a “modern” estate agency and improve the home-selling experience, has raised an additional £5 million. Backing comes from Axel Springer, alongside previous backers Balderton Capital and Northzone.

Described as a “strategic investment,” Nested co-founder and CEO Matt Robinson tells TechCrunch that the round brings the “vast industry experience and resources” of Axel Springer to the board, in advance of a U.K. nationwide launch this year — meaning that the proptech is expanding beyond its current footprint of London.

Pitched as a “modern estate agent,” Nested’s offering pairs local agents with what it claims is industry leading tools and technology to help them better-support home-sellers (and buyers). It initially launched by offering to front the cash needed to buy your next home before you had sold your existing one, but now covers the entire house-selling journey.

Most recently, Robinson says Nested has been testing a new “hyper-local” approach so it can better service different neighbourhoods in a huge city like London. The idea, he says, is to give customers the best of both worlds: “a fantastic local agent who knows their area inside out, powered by Nested’s unique technology”.

This saw Nested launch 5 hyper-local areas in 2020 and Robinson says it has quickly gained up to 15% market share in those local markets. It is planning to launch an additional 30 areas over the next 18 months, as well as moving outside London for the first time.

“We find the best local agents and empower them with unique technology and services versus anyone else in the industry, traditional or online,” says Robinson. “There are some good traditional agents out there but the tools they have to do their job and for the customer to see what’s happening are pre-internet. We take the best local agents and give them tools to instantly be better at their job and give customer a better experience”.

He says that this is very different to online estate agencies, such as Purplebricks, which effectively offer “a DIY option where the agents are set up to fail by having to serve too many customers to give any of them a good service”. Meanwhile, he notes, traditional agents have barely changed in 50 years.

“Customers used to pick us because we had great features and services they couldn’t get anywhere else and great people but it was clear that the vast majority of customers also really value the knowledge and experience of a local agent and we were forcing them to pick between superior features, service and people versus most local,” adds Robinson.

“Our approach now is to give them both. We hire the absolute best local agents, and empower them and our customers with features to manage their sale better than they could anywhere else. For example, our customer account, buying agent and advance”.

Furthermore, Robinson argues that by focusing on each local market, customers benefit from local network effects through cross-selling homes. “We are [also] able to give agents a healthier workload with less travel, meaning more time for clients and better tailored advice”.

As an example of how Nested’s tech helps local agents do a better job, the company recently released updates to its mobile app which gives home-sellers instant access to every aspect of their sale — from viewing feedback and scheduled viewings to even showing what actions their agent has taken to generate enquiries and how many times they have chased up specific enquiries. “All at the tap of a button instead of playing phone tag with your agent,” is how Robinson frames it.



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

Blog Archive

Definition List

Unordered List

Support