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 30 September 2020

Allbirds CEO Joey Zwillinger on the startup’s $100 million round, profitability, and SPAC mania

As people spend less time out in the world and more time daydreaming about when a vaccine will arrive, lifestyle shoes are only gaining traction.

One obvious beneficiary is Allbirds, the San Francisco-based maker of comfortable, sustainable kicks that launched in 2016 and quickly became a favorite in Silicon Valley circles before taking off elsewhere.

Though the company saw its business slow this year because of the pandemic, its products are now available to purchase in 35 countries and its 20 brick-and-mortar stores are sprinkled throughout the U.S. and Europe, with another outpost in Tokyo and several shops in China.

Investors clearly see room for more growth. Allbirds just closed on $100 million in Series E funding at roughly the same $1.6 billion valuation it was assigned after closing on $27 million in Series D funding earlier this year, and blank-check companies have been calling, says cofounder and CEO Joey Zwillinger. He talked with us earlier this week in a chat that has been edited for length and clarity.

TC: Your shoes are sold worldwide. What are your biggest markets?

JZ: The biggest market by far is the U.S., and the same day that we started here in 2016, we also launched in New Zealand, so that’s been very good to us over the last four years, too. But we’ve seen growth in Japan and Korea and China and Canada and Australia. We have a network of warehouses globally that lets us reach 2.5 billion people [who], if they were so inclined, could get their product in three days. We’re proud of the infrastructure we’ve set up.

TC: We’ve all worn shoes a lot less than we might have expected in 2020. How has that impacted your business?

JZ: We’re growing but definitely not at the same pace we would be had the pandemic not occurred. We’re predominantly digital in terms of how we reach people, but stores are important for us. And we had to switch [those] off completely and lost a portion of our sales for a long time.

TC: Did you have to lay off your retail employees?

JZ: A large portion of our retail force was unable to work, but we were luckily able to keep them fully paid for four months, plus [some received] government benefits if they got that. And now all of our 20 stores are up and running again in a way that’s totally safe and everyone feels really comfortable.

We also donated shoes to frontline workers — 10,000 pairs or around a million dollars’ worth.

TC: What does Allbirds have up its sleeve, in terms of new offerings?

JZ: We just launched our native mobile app, and through it we’re able to give our more loyal fans exclusives. It’s a really cool experience that blends technology with fashion. You can try on shoes in a virtual mirror; you’re given information [about different looks] that you wouldn’t have otherwise.

We also launched wool-based weather-proofed running shoes in April that have blown away our expectations but [were fast discovered by] people who haven’t really been running for 10 to 15 years and are running again [because of gym closures]. It’s a super high-stakes category and one that’s hard to break into because people buy on repeat. But we spent two years making it. It’s not like we launched it because of the pandemic. It’s a shoe for 5K to 10K distances — it’s not a marathon shoe or a trail shoe — and that we’ve been able to clearly articulate that speaks to its success, I think.

TC: What about clothing?

We launched underwear and socks last year in a small launch. We developed a textile that hasn’t been used before — it’s a blend of tree fiber and merino wool because our view is that nature can unlock magic. Underwear is typically synthetic — it’s made from plastics — or cotton, which isn’t a great material for a whole bunch of reasons. [Meanwhile] ours is phenomenal for temperature control; it also feels like cashmere.

TC: Patagonia really advertises its social and environmental values. Do you see Allbirds evolving in a similar way, with a growing spate of offerings?

JZ: I’m incredibly humbled by [the comparison]. Given their environmental stewardship of the retail sector, we hope we’re compared to them. But they are much more of an outdoor brand — not a competitor so to speak. And we’d love to share more of the retail world with them so we can do our environmental thing together.

TC: You just raised funding. Are you profitable and, if not, is profitability in sight?

JZ: We’ve been profitable for most of our existence. Having some discipline as we grow is good. We’re not close to the profitability that we’ll eventually have, but we’re still a small company in investment mode. After we emerge from the pandemic, we’ll enter a ramping-up phase.

TC: Everyone and their brother is raising money for a blank-check company, or SPAC, which can make it a lot faster for a private company to go public. Have you been approached, and might this option interest you?

JZ: Yes and no. Yes we’ve been approached, and no, we’re [not interested]. We want to build a great company and being public might be something that helps enable that for a whole bunch of reasons. But we want to do it at the right time, in a way that helps the business grow in the most durable and sustainable fashion. Just jumping at the opportunity of a SPAC without doing the rigorous prep the way we want to, we’re not super focused on that



from TechCrunch https://ift.tt/36koNIO
Share:

Indian startups explore forming an alliance and alternative app store to fight Google’s ‘monopoly’

Google, which reaches more internet users than any other firm in India and commands 99% of the nation’s smartphone market, has stumbled upon an odd challenge in the world’s second largest internet market: Scores of top local entrepreneurs.

Dozens of top startups and firms in India are working to form an alliance and toying with the idea of launching an app store to cut their reliance on Google, five people familiar with the matter told TechCrunch.

The list of entrepreneurs include high-profile names such as Vijay Shekhar Sharma, co-founder and chief executive of Paytm (India’s most valuable startup), Deep Kalra of travel ticketing firm MakeMyTrip, and executives from PolicyBazaar, Sharechat and many other firms.

The growing list of founders expressed deep concerns about Google’s “monopolistic” hold on India, and discussed what they alleged was unfair and inconsistent enforcement of Play Store’s guidelines in the country.

The conversations, which began in recent weeks, escalated on Tuesday after Google said that starting next year developers with an app on Google Play Store must give the company a cut of as much as 30% of several app-related payments.

Dozens of executives “from nearly every top startup and firm” in India attended a call on Tuesday to discuss the way forward, some of the people said, requesting anonymity. A 30% cut to Google is simply unfeasible, people on the call unanimously agreed.

Vishal Gondal, the founder of fitness startup GOQii, confirmed the talks to TechCrunch and said that an alternative app store would immensely help the Indian app ecosystem.

TechCrunch reached out to Paytm on Monday for comment and the startup declined the request.

In recent months, several major startups in India have also expressed disappointment over several of the existing industry bodies, which some say have failed to work on nurturing the local ecosystem.

The tension between some firms and Google became more public than ever late last month after the Android-maker reiterated Play Store’s gambling policy, sending a shockwave to scores of startups in the country that were hoping to cash in on the ongoing season of Indian Premier League cricket tournament.

Google temporarily pulled Paytm’s marquee app from the Play Store citing repeat violation of its Play Store policies. Disappointed by Google’s move, Paytm’s Sharma said in a TV interview, “This is the problem of India’s app ecosystem. So many founders have reached out to us… if we believe this country can build digital business, we must know that it is at somebody else’s hand to bless that business and not this country’s rules and regulations.”

Google has sent notices to several firms in India including Hotstar, TechCrunch reported last month. Indian newspaper Economic Times reported on Wednesday that the Mountain View giant had also sent warnings to food delivery startups Swiggy and Zomato.

Vivek Wadhwa, a Distinguished Fellow at Harvard Law School’s Labor and Worklife Program, lauded the banding of Indian entrepreneurs and likened Silicon Valley giants’ hold on India to the rising days of East India Company, which pillaged India. “Modern day tech companies pose a similar risk,” he told TechCrunch.

Some of the participating members are also hopeful that the government, which has urged the citizens in India to become self-reliant to revive the declining economy, would help their movement.

Other than its reach on Android, Google today also leads the mobile payments market in India, TechCrunch reported earlier this year.

The giant, which has backed a handful of startups in India and is a member of several Indian industry bodies, invested $4.5 billion in Mukesh Ambani’s telecom giant Jio Platforms earlier this year.

India’s richest man Ambani, who runs oil-to-retails giant Reliance Industries, is an ally of Indian Prime Minister Narendra Modi. Jio Platforms has attracted over $20 billion in investment from Google, Facebook, and 11 other high-profile investors this year.

The voluminous investment in Jio Platforms has puzzled many industry executives. “I see no business case for Facebook investing in Jio beyond saying we need regulatory help,” said Miten Sampat, a high-profile angel-investor on a podcast published Wednesday.

“This is a white-collar way of saying there is corruption involved, and if the government gets upset, I have invested somewhere with some friend of the government. All of us are losing at the benefit of one company,” he said. Sampat’s views are shared by many industry executives, though nobody has said it on record and in such clear terms.

Google said in July that it would work with Jio Platforms on low-cost Android smartphones. Jio Platforms is planning to launch as many as 200 million smartphones in the next three years, according to a pitch the telecom giant has made to several developers. Bloomberg first reported about Jio Platform’s smartphone production plans.

These smartphones, as is the case with nearly 40 million JioPhone feature phones in circulation today, will have an app store with only a few dozen apps, all vetted and approved by Jio, according to one developer who was pitched by Jio Platforms. An industry executive described Jio’s store as a walled-garden.

A possible viable option for startup founders is Indus OS, a Samsung-backed third-party store, which last month said it reaches over 100 million monthly active users. As of earlier this week, Paytm and other firms had not reached out to IndusOS, a person familiar with the matter said.



from TechCrunch https://ift.tt/33hW59N
Share:

Facebook says, as part of its recent crackdown on QAnon and "militia" movements, it has removed 6,500 groups belonging to 300 organizations (Karissa Bell/Engadget)

Karissa Bell / Engadget:
Facebook says, as part of its recent crackdown on QAnon and “militia” movements, it has removed 6,500 groups belonging to 300 organizations  —  Facebook has removed more than 6,500 pages and groups associated with “militarized social movements,” since the company announced …



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

Facebook says it will ban Facebook and Instagram ads that seek to delegitimize the outcome of an election, including calling specific voting methods fraudulent (Salvador Rodriguez/CNBC)

Salvador Rodriguez / CNBC:
Facebook says it will ban Facebook and Instagram ads that seek to delegitimize the outcome of an election, including calling specific voting methods fraudulent  —  - Facebook on Wednesday announced that it will not allow any ads on its service that seek to delegitimize the outcome of an election …



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

Google introduces a new Android feature called Hold for Me, which uses Assistant to monitor held phone calls and notify the user when taken off hold (Sarah Perez/TechCrunch)

Sarah Perez / TechCrunch:
Google introduces a new Android feature called Hold for Me, which uses Assistant to monitor held phone calls and notify the user when taken off hold  —  Google has been pushing forward the capabilities of what a smartphone can do when it comes to one of the device's most basic — if these days often overlooked — features: phone calls.



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

TravelPerk launches an open API platform to extend its work trip SaaS

Business travel SaaS startup, TravelPerk, has launched an open API-based platform — letting its customers and partners build custom integration and apps.

The initial APIs covers HR and expense management use-cases but more are set to be added as usage and demand grows.

“Applications we’ve seen being built on the platform already include HR functionality (think BambooHR), expense management systems, company payment cards, financial reporting, and ERP,” says co-founder and CEO Avi Meir, discussing the launch.

Longer term he says the hope is the platform generates “a huge range” of additional functionality for customers to draw on.

“Many of our customers are tech companies full of developers, so we’re confident that if we give them the tools it will be boundless what they can create,” he adds. “In fact, we’re working with one customer already who is using our API to build a custom approvals process because they need a more complex system than the standard offering.”

TravelPerk has been running a private beta over the last few months with 20+ partners and customers but is now flipping the switch to open it to all users.

“We are providing a fully fledged toolkit for developers, from the most curated developer hub and API documentation, to a sandbox environment to test their solutions for quality assurance,” adds Ross McNairn, TravelPerk’s chief product officer, in a statement.

“We do not see TravelPerk as a silo tool, but rather one that needs to coexist with hundreds of other SaaS tools. Our ultimate goal is for partners and developers to consider TravelPerk as the platform to build and grow with us. Easy to understand, easy to build, and easy to grow.”

Business downtime resulting from the coronavirus pandemic slashing global travel has given TravelPerk a window of opportunity to focus on product dev.

“It’s no surprise that the [business travel]  market isn’t yet back to normal but we know that if we keep investing in creating the products businesses need to travel confidently we’ll emerge from this stronger,” says Meir, who notes that it’s been seeing signs of a recovery in some of its markets — with domestic segment usage in Germany and the US having returned to “pre-pandemic levels”.

Returning to the API, Meir says customer demand was a factor in the decision to augment its business travel SaaS with a free and fully open API platform: “Part of the reason we’ve brought this in was the huge demand for this kind of product from many of our customers, particularly SMEs. On the back of that demand, we’re expecting to see tens or hundreds of applications and customer integrations built in the coming months.”

The other driver is cultural, per Meir — who says the startup has a “philosophy of being open, collaborative and innovative” which he claims sets it apart from the “current, closed systems” offered by legacy travel industry players.

“Creating this marketplace means we can provide customers with a wide choice of expert-created functionality, rather than forcing a single proprietary solution on them,” he adds.



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

Baidu's Smart Living Group division, which focuses on voice assistants and smart devices, raises an undisclosed sum at a $2.9B valuation (Arjun Kharpal/CNBC)

Arjun Kharpal / CNBC:
Baidu's Smart Living Group division, which focuses on voice assistants and smart devices, raises an undisclosed sum at a $2.9B valuation  —  - Chinese internet giant Baidu has raised an undisclosed sum of money for its business division focused on voice assistants and smart devices.



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

Taipei-based travel startup KKday raises $75M Series C, says a pivot to domestic package tours has helped after sales plunged 90% in March (Debby Wu/Bloomberg)

Debby Wu / Bloomberg:
Taipei-based travel startup KKday raises $75M Series C, says a pivot to domestic package tours has helped after sales plunged 90% in March  —  - KKday closes $75 million Series C funding despite Covid-19  — Sales from domestic travel in Taiwan grew five times in summer



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

Tuesday 29 September 2020

The joke is on consumers as Liquid Death raises $23 million more

In what began as a kind of funny, savvy marketing stunt that has since gained traction, a nearly three-year-old, Santa Monica-based startup that sells water from the Austrian Alps under the brand Liquid Death, has raised $23 million in Series B funding. Backers in the round include an unnamed family office; Convivialité Ventures, which is Pernod Ricard Group’s venture arm; the musician known as Fat Mike; and earlier backer Velvet Sea Ventures.

The company, originally incubated with the help of the L.A.-based startup studio Science, has now raised a little more than $34 million altogether.

We talked with Liquid Death founder Mike Cessario, who was formerly a West Coast agency exec, not long after he launched the company to the public, and he argued at the time that canned water could give sugary energy drinks like Rockstar, Monster and Red Bull a run for their money if it was also named like a heavy metal act.

Indeed, our favorite part of the product has long been its promise to “murder your thirst.” (It’s water in an aluminum can, after all, so other differentiators are hard to come by.)

Clearly, plenty of other people are amused enough by the company’s inventive marketing that its products are selling, including at Whole Foods. It put the cans on its shelves back in February, around the same time that Velvet Sea led the company’s $9 million Series A round.

Liquid Death also sells at more than 1,000 7-Eleven stores in California, and it sells, as it always has, directly to customers, who can select either mountain water or sparkling water, and buy a T-shirt or hoodie from a growing merchandise store on their way out of its online store.

A 12-pack of tallboys costs $16. A “Hydrate or Die” T-shirt can be had for $26.



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

E-scooter startup Neuron Mobility adds $12M to its Series A for expansion in Australia and New Zealand

Neuron Mobility, a Singapore-based e-scooter rental startup, announced today that it has added $12 million to its Series A. Led by Square Peg, an Australian venture capital firm and GSR Ventures, this increases the round’s new total to $30.5 million. The company, which operates in Australia and New Zealand in addition to Southeast Asian markets, first announced its Series A in December 2019.

Part of Neuron Mobility’s growth plans hinges on the increased adoption of electric scooters and bikes during the COVID-19 pandemic. Many people are using their cars less frequently because they are working remotely or there are movement restrictions where they live. When they do go out, electric bikes and scooters offer an alternative to public transportation and ride-hailing services for short trips.

Neuron Mobility’s chief executive Zachary Wang said the company raised a Series A+ instead of moving onto a Series B because more cities are “opening up to the possibility of micromobility, particularly rental e-scooters as they present an individual transport option that takes pressure off public transport and allows people to continue social distancing.”

“We’ve been experiencing tremendous growth in ANZ and the pandemic has made us fast track our plans,” he added.

Though Neuron Mobility currently does not operate in other Southeast Asian countries besides Singapore, Wang said it is “constantly evaluating opportunities across APAC.”

The new funding will be used to speed up Neuron Mobility’s expansion plans in Australia and New Zealand, where it claims to be the leading electric scooter rental operator. The company is currently present in nine locations, including Auckland, New Zealand, and Australian cities Adelaide, Brisbane, Darwin, Canberra and Townsville. Neuron Mobility plans to expand into five new cities over the next two months and part of that involves hiring 400 more people in Australia, New Zealand and Singapore. In addition to the Asia-Pacific, Neuron Mobility will also launch in Slough, it’s first location in the United Kingdom, by the end of this year.

Neuron Mobility’s research found that before the COVID-19 lockdowns in Australia, one in five of its users had never used an e-scooter before. But now Australian and New Zealand users have increased their average e-scooter trip distances by 23% to 2.6 kilometers, with the average duration of rides rising by 10% to more than 14 minutes. Neuron Mobility’s pricing is meant to be affordable depending on different markets. For example, in Brisbane, users pay one Australian dollar (about 68 U.S. cents) to begin a trip and then 38 Australian cents for each minute of the ride. Its e-scooters can go up to speeds of about 25 kilometers (15.5 miles) per hour.

Other “micromobility” companies, including Ofo, Reddy Go, Obike and Lime, have also offered rental services in Australia and New Zealand, but ran into trouble. Bike-sharing startups Ofo, Reddy Go and Obike withdrew from Australia in part because city councils were frustrated by bikes were being abandoned on sidewalks and in parks. Lime still operates in Australian cities, but in June, the Australian Competition and Consumer Commission found that the company failed to disclose safety issues with its Generation 2 scooters (in response, Lime said it would implement new compliance procedures and upgrade to its new Generation 3 scooter).

Wang said Neuron Mobility avoids those issues by strategically planning which cities it will launch in, instead of focusing on rapid expansion, partnering with city councils and “continually shifting and adapting to meet their needs.” Several of Neuron Mobility’s features, including geofencing to control where and how fast e-scooters can be ridden, and a “Helmet Lock” to make helmets available for all scooters, were developed after discussions with city councils. Neuron Mobility’s scooters, designed by the company specifically for renting, also use swappable batteries to decrease pollution.

After launching in Singapore, Neuron Mobility decided to focus on Australia and New Zealand because “both countries have cities that are highly suitable for micromobility in terms of infrastructure and regulations,” Wang said. City councils have also “been keen to push the boundaries of what can be done with technology to make programs better and safer and that really suits our way of thinking.”

 



from TechCrunch https://ift.tt/349A38h
Share:

Blog Archive

Definition List

Unordered List

Support