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

Members of rehab groups like Alcoholics Anonymous say moving meetings online was helpful due to the convenience of virtual sessions, which feel more intimate (Matt Richtel/New York Times)

Matt Richtel / New York Times:
Members of rehab groups like Alcoholics Anonymous say moving meetings online was helpful due to the convenience of virtual sessions, which feel more intimate  —  It began as a stopgap way to get through the pandemic, but both participants and providers say virtual sessions have some clear advantages …



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

Singapore-based mental health app Intellect reaches one million users, closes seed funding

Theodoric Chew, co-founder and chief executive officer of mental health app Intellect

Theodoric Chew, co-founder and chief executive officer of mental health app Intellect

Intellect, a Singapore-based startup that wants to lower barriers to mental health care in Asia, says it has reached more than one million users just six months after launching. Google also announced today that the startup’s consumer app, also called Intellect, is one of its picks for best personal growth apps of 2020.

The company recently closed an undisclosed seed round led by Insignia Ventures Partners. Angel investors including e-commerce platform Carousell co-founder and chief executive officer Quek Siu Rui; former Sequoia partner Tim Lee; and startup consultancy xto10x’s Southeast Asia CEO J.J. Chai also participated.

In a statement, Insignia Ventures Partners principal Samir Chaibi said, “In Intellect, we see a fast-scaling platform addressing a pain that has become very obvious amidst the COVID-19 pandemic. We believe that pairing clinically-backed protocols with an efficient mobile-first delivery is the key to break down the barriers to access for millions of patients globally.”

Co-founder and chief executive officer Theodoric Chew launched Intellect earlier this year because while there is a growing pool of mental wellness apps in the United States and Europe that have attracted more funding during the COVID-19 pandemic, the space is still very young in Asia. Intellect’s goal is encourage more people to incorporate mental health care into their daily routines by lowering barriers like high costs and social stigma.

Intellect offers two products. One is a consumer app with self-guided programs based on cognitive behavioral therapy techniques that center on issues like anxiety, self-esteem or relationship issues.

The other is a mental health platform for employers to offer as a benefit and includes a recently launched telehealth service called Behavioural Health Coaching that connects users with mental health professionals. The service, which includes one-on-one video sessions and unlimited text messaging, is now a core part of Intellect’s services, Chew told TechCrunch.

Intellect’s enterprise product now reaches 10,000 employees, and its clients include tech companies, regional operations for multinational corporations and hospitals. Most are located in Singapore, Hong Kong, Indonesia and India, and range in size from 100 to more than 3,000 employees.

For many small- to mid-sized employers, Intellect is often the first mental health benefit they have offered. Larger clients may already have EAP (employee assistance programs), but Chew said those are often underutilized, with an average adoption rate of 1% to 2%. On the other hand, he said Intellect’s employee benefit program sees an average adoption rate of 30% in the first month after it is rolled out at a company.

Chew added that the COVID-19 pandemic has prompted more companies to address burnout and other mental health issues.

“In terms of larger trends, we’ve seen a huge spike in companies across the region having mental health and wellbeing of their employees being prioritized on their agenda,” said Chew. “In terms of user trends, we see a significantly higher utilization in work stress and burnout, anxiety and relationship-related programs.”

Intellect’s seed round will be used to expand in Asian markets and to help fund clinical research studies it is currently conducting with universities and organizations in Singapore, Australia and the United Kingdom.



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

China’s tech firms rush to deliver solutions for grocery shopping

Nearly all of China’s largest internet firms have established a presence in online grocery. Just this week, news arrived that Alibaba co-led the $196 million C3 funding round of Nice Tuan, the two-year-old grocery group-buying firm’s fourth round year to date.

People in China shop online for almost everything, including groceries. At first, grocery e-commerce appears to have caught on mainly among the digitally-savvy who have grown reliant on the convenience of e-commerce and don’t mind paying a bit more for delivery. Many elderly shoppers, on the other hand, still prefer visiting traditional wet markets where ingredients are generally cheaper.

Now tech companies in China are scrambling to capture grocery shoppers of all ages. A new business model that’s getting a lot of funding is that of Nice Tuan, the so-called community group buying.

In conventional grocery e-commerce, an intermediary platform like Alibaba normally connects individual shoppers to an array of merchants and offers doorstep delivery, which arrives normally within an hour in China.

A community group-buying, in comparison, relies on an army of neighborhood-based managers — often housewives looking for part-time work — to promote products amongst neighbors and tally their orders in group chats, normally through the popular WeChat messenger. The managers then place the group orders with suppliers and have the items delivered to pick-up spots in the community, such as a local convenience store.

It’s not uncommon to see piles of grocery bags at corner stores wating to be fetched these days, and the model has inspired overseas Chinese entrepreneurs to follow suit in America.

Even in China where e-commerce is ubiquitous, the majority of grocery shopping still happens offline. That’s changing quickly. The fledgling area of grocery group-buying is growing at over 100% year-over-year in 2020 and expected to reach 72 billion yuan ($11 billion) in market size, according to research firm iiMedia.

It sounds as if grocery group-buying and self-pickup is a step back in a world where doorstep convenience is the norm. But the model has its appeal. Texting orders in a group chat is in a way more accessible for the elderly, who may find Chinese e-commerce apps, often overlaid with busy buttons and tricky sales rules, unfriendly. With bulk orders, sales managers might get better bargains from suppliers. If a group-buying company is ambitious, it can always add last-mile delivery to its offering.

Chinese tech giants are clearly bullish about online grocery and diversifying their portfolios to make sure they have a skin in the game. Tencent is an investor in Xingsheng Youxuan, Nice Tuan’s major competitor. Food delivery service Meituan has its own grocery arm, offering both the traditional digital grocer as well as the WeChat-based group-buy model. E-commerce upstart Pinduoduo similarly supports grocery group purchases. Alibaba itself already operates the Hema supermarket, which operates both online and offline markets.



from TechCrunch https://ift.tt/37rFf96
Share:

AWS brings the Mac mini to its cloud

AWS today opened its re:Invent conference with a surprise announcement: the company is bringing the Mac mini to its cloud. These new EC2 Mac instances, as AWS calls them, are now available in preview. They won’t come cheap, though.

The target audience here — and the only one AWS is targeting for now — is developers who want cloud-based build and testing environments for their Mac and iOS apps. But it’s worth noting that with remote access, you get a fully-featured Mac mini in the cloud, and I’m sure developers will find all kinds of other use cases for this as well.

Given the recent launch of the M1 Mac minis, it’s worth pointing out that the hardware AWS is using — at least for the time being — are i7 machines with six physical and 12 logical cores and 32 GB of memory. Using the Mac’s built-in networking options, AWS connects them to its Nitro System for fast network and storage access. This means you’ll also be able to attach AWS block storage to these instances, for example.

Unsurprisingly, the AWS team is also working on bringing Apple’s new M1 Mac minis into its data centers. The current plan is to roll this out “early next year,” AWS tells me, and definitely within the first half of 2021. Both AWS and Apple believe that the need for Intel-powered machines won’t go away anytime soon, though, especially given that a lot of developers will want to continue to run their tests on Intel machines for the foreseeable future.

David Brown, AWS’s vice president of EC2, tells me that these are completely unmodified Mac minis. AWS only turned off Wi-Fi and Bluetooth. It helps, Brown said, that the minis fit nicely into a 1U rack.

“You can’t really stack them on shelves — you want to put them in some sort of service sled [and] it fits very well into a service sled and then our cards and all the various things we have to worry about, from an integration point of view, fit around it and just plug into the Mac mini through the ports that it provides,” Brown explained. He admitted that this was obviously a new challenge for AWS. The only way to offer this kind of service is to use Apple’s hardware, after all.

Image Credits: AWS

It’s also worth noting that AWS is not virtualizing the hardware. What you’re getting here is full access to your own device that you’re not sharing with anybody else. “We wanted to make sure that we support the Mac Mini that you would get if you went to the Apple store and you bought a Mac mini,” Brown said.

Unlike with other EC2 instances, whenever you spin up a new Mac instance, you have to pre-pay for the first 24 hours to get started. After those first 24 hours, prices are by the second, just like with any other instance type AWS offers today.

AWS will charge $1.083 per hour, billed by the second. That’s just under $26 to spin up a machine and run it for 24 hours. That’s quite a lot more than what some of the small Mac mini cloud providers are charging (we’re generally talking about $60 or less per month for their entry-level offerings and around two to three times as much for a comparable i7 machine with 32GB of RAM).

Image Credits: Ron Miller/TechCrunch

Until now, Mac mini hosting was a small niche in the hosting market, though it has its fair number of players, with the likes of MacStadium, MacinCloud, MacWeb and Mac Mini Vault vying for their share of the market.

With this new offering from AWS, they are now facing a formidable competitor, though they can still compete on price. AWS, however, argues that it can give developers access to all of the additional cloud services in its portfolio, which sets it apart from all of the smaller players.

“The speed that things happen at [other Mac mini cloud providers] and the granularity that you can use those services at is not as fine as you get with a large cloud provider like AWS,” Brown said. “So if you want to launch a machine, it takes a few days to provision and somebody puts a machine in a rack for you and gives you an IP address to get to it and you manage the OS. And normally, you’re paying for at least a month — or a longer period of time to get a discount. What we’ve done is you can literally launch these machines in minutes and have a working machine available to you. If you decide you want 100 of them, 500 of them, you just ask us for that and we’ll make them available. The other thing is the ecosystem. All those other 200-plus AWS services that you’re now able to utilize together with the Mac mini is the other big difference.”

Brown also stressed that Amazon makes it easy for developers to use different machine images, with the company currently offering images for macOS Mojave and Catalina, with Big Sure support coming “at some point in the future.” And developers can obviously create their own images with all of the software they need so they can reuse them whenever they spin up a new machine.

“Pretty much every one of our customers today has some need to support an Apple product and the Apple ecosystem, whether it’s iPhone, iPad or  Apple TV, whatever it might be. They’re looking for that bold use case,” Brown said. “And so the problem we’ve really been focused on solving is customers that say, ‘hey, I’ve moved all my server-side workloads to AWS, I’d love to be able to move some of these build workflows, because I still have some Mac minis in a data center or in my office that I have to maintain. I’d love that just to be on AWS.’ ”

AWS’s marquee launch customers for the new service are Intuit, Ring and mobile camera app FiLMiC.

“EC2 Mac instances, with their familiar EC2 interfaces and APIs, have enabled us to seamlessly migrate our existing iOS and macOS build-and-test pipelines to AWS, further improving developer productivity,” said Pratik Wadher, vice president of Product Development at Intuit. “We‘re experiencing up to 30% better performance over our data center infrastructure, thanks to elastic capacity expansion, and a high availability setup leveraging multiple zones. We’re now running around 80% of our production builds on EC2 Mac instances, and are excited to see what the future holds for AWS innovation in this space.”

The new Mac instances are now available in a number of AWS regions. These include US East (N. Virginia), US East (Ohio), US West (Oregon), Europe (Ireland) and Asia Pacific (Singapore), with other regions to follow soon.



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

Amazon launches EC2 Mac instances bringing the Intel-based Mac mini to its cloud for $1.083 per hour billed by the second (Frederic Lardinois/TechCrunch)

Frederic Lardinois / TechCrunch:
Amazon launches EC2 Mac instances bringing the Intel-based Mac mini to its cloud for $1.083 per hour billed by the second  —  AWS today opened its re:Invent conference with a surprise announcement: the company is bringing the Mac mini to its cloud.  These new EC2 Mac instances, as AWS calls them, are now available in preview.



from Techmeme https://ift.tt/39t1EWa
Share:

Cyber Monday scams? Fakespot says it can identify fraudulent reviews and sellers online

The pandemic has made it all but impossible for a retail company without an online presence to survive. Yet while companies heavily dependent on foot traffic like J.Crew and Sur la Table have filed for bankruptcy this year, companies that are expert in e-commerce have thrived, including Target and Walmart. Amazon alone now attracts roughly one quarter of all dollars spent online by U.S. shoppers.

Unfortunately, as more shopping moves online, fraud is exploding, too. The problem is such that startups working with enterprises — flagging transactions for banks, for example — are raising buckets of funding. Meanwhile, one New York-based startup, Fakespot, is taking a different approach. It’s using AI to notify online shoppers when the products they’re looking to buy are fake listings or when reviews they’re reading on marketplaces like Amazon or eBay are a fiction.

We talked earlier today with Kuwaiti immigrant Saoud Khalifah about the four-year-old business, which got started in his dorm room after his own frustrating experience in trying to buy nutritional supplements from Amazon. After he’d nabbed his master’s degree in software engineering, he launched the company in earnest.

Like many other companies, Fakespot was originally focused on helping enterprise customers identify counterfeit outfits and fake reviews. When the pandemic struck, company spied an “opening crack on the internet,” as Khalifah describes it, and began instead catering directly to consumers who are increasingly using platforms that are struggling to keep up — and whose solutions are often more focused on protecting sellers from buyers and not the other way around.

The pivot seems to be working. Fakespot just closed on $4 million in Series A funding led by Bullpen Capital, which was joined by SRI Capital, Faith Capital and 500 Startups among others in a round that brings the company’s total funding to $7 million.

The company is gaining more attention from shoppers, too. Khalifah says that a Chrome browser extension introduced earlier this year has now been downloaded 300,000 times — and this on the heels of “millions of users” who have separately visited Fakespot’s site, typed in a URL of a product review, and through its “Fakespot analyzer,” been provided with free data to help inform their buying decisions.

Indeed, according to Khalifah, since Fakespot’s official founding it has amassed a database of more than 8 billion reviews — around 10 times as many as the popular travel site Tripadvisor — from which its AI has learned. He says the tech is sophisticated enough at this point to identify AI-generated text; as for the “lowest-hanging fruit,” he says it can easily spot when reviews or positive sentiments about a company are posted in an inorganic way, presumably published by click farms. (It also tracks fake upvotes.)

As for where shoppers can use the chrome extension, Fakespot currently scours all the largest marketplaces, including Amazon, eBay, Best Buy, Walmart, and Sephora. Soon, says Khalifah, users will also be able to use the technology to assess the quality of products being sold through Shopify, the software platform that is home to hundreds of thousands of online stores. (Last year, it surpassed eBay to become the No. 2 e-commerce destination in the U.S., according to Shopify.)

Right now, Fakespot is free to use, including because every review a consumer enters into its database helps train its AI further. Down the road, the company expects to make money by adding a suite of tools atop its free offering. It may also strike lead-generation deals with companies whose products and reviews it has already verified as real and truthful.

The question, of course, is how reliably the technology works in the meantime. While Khalifah understandably sings Fakespot’s praises, a visit to the Google Play store, for example, paints a mixed picture, with many enthusiastic reviews and some that are, well, less enthusiastic.

Khalifah readily concedes that Fakespot’s mobile apps need more attention, which he says they will receive. Though Fakespot has been focused predominately on the desktop experience, Khalifah notes that more than half of online shopping is expected to be conducted over mobile phones by some time next year, a shift that isn’t lost on him, even while it hinges a bit on the pandemic being brought effectively to an end (and consumers finding themselves on the run again).

Still, he says that “ironically, a lot of [bad] reviews are from sellers who are angry that we’ve given them F grades. They’re often mad that we revealed that their product is filled with fake reviews.”

As for how Fakespot moves past these to improve its own rating, Khalifah suggests that the best strategy is actually pretty simple.

“We hope we’ll have many more satisfied users,” he says, adding: “No one else really has consumers’ backs.”



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

Mursion, which offers VR training to practice human skills, such as emotional intelligence, in the workplace, announces $20M Series B led by Leeds Illuminate (Lee Clifford/Fortune)

Lee Clifford / Fortune:
Mursion, which offers VR training to practice human skills, such as emotional intelligence, in the workplace, announces $20M Series B led by Leeds Illuminate  —  Hugo is furious.  —  He's sitting across from me, arms crossed, face scowling, exuding bad energy.  Sitting next to him is Maia.



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

Sources: Gitlab is letting employees sell their equity in an offering that values the company over $6B, up from a valuation of $2.7B in September 2019 (Ari Levy/CNBC)

Ari Levy / CNBC:
Sources: Gitlab is letting employees sell their equity in an offering that values the company over $6B, up from a valuation of $2.7B in September 2019  —  - GitLab competes with GitHub, which Microsoft acquired in 2018 for $7.5 billion.  — The company had originally aimed to go public …



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

EU lawmakers to push audio-visual sector on geoblocking

European Union lawmakers are considering whether current rules aimed at limiting the practice of geoblocking across the bloc should be extended to cover access to streaming audio-visual content.

Access to services like Netflix tends to be gated to individual EU Member States, meaning Europeans can be barred from accessing libraries of content offered elsewhere in the region. So if you’re trying to use your Netflix subscription to access the service after moving to another Member State, or want to access inventory offered by Netflix elsewhere in Europe, the answer is typically a big fat no, as we’ve reported before.

This undermines the core concept of the EU’s Single Market (and the Digital Single Market — aka the frictionless ecommerce end-goal which rules such as those limiting geoblocking aim to deliver).

The Commission is alive to ongoing issues around online access to audio-visual content. In a review of the two-year-old Geo-blocking Regulation published today, it says it will kick off discussions with the audiovisual sector on ways to improve consumer access to this type of copyrighted content across the bloc.

It says the planned talks will feed its upcoming Media and Audiovisual Action Plan — which aims to help European market players scale up and reach new audiences. However it’s not committing to any specific actions as yet. So whether the push yields anything more nuanced than another ‘no’ remains to be seen. (The movie industry being a blocker to freer digital flows of content is, after all, not a new story.)

“Increased access and circulation of audiovisual content will benefit an increasing demand across-borders, including in border regions and with linguistic minorities,” the Commission suggests in a press release on its review of the current rules.

It notes that on average a European consumer only has access to 14% of the films available online in all the Member States as a whole (the EU27), with “significant variations” by country (such as viewers in Greece having access only to 1.3% of the films available online in the EU, vs those in Germany having access to 43.1%).

Its review also highlights growing demand (especially for younger age ranges) to access audio-visual content offered in other Member States — noting it almost doubled between 2015 and 2019 (from 5% to 9%).

“A 2019 Eurobarometer confirmed that there is interest in gaining access to audio-visual content offered in different Member States,” it adds.

For other types of copyrighted content — including music, e-books and videogames — the Commission sounds less convinced of the need for regulatory reform.

“The Report concludes that a further extension of the scope would not necessarily bring substantial benefits to consumers in terms of choice of content, as the catalogues offered are rather homogeneous (in many instances beyond 90%) among Member States,” it writes, also flagging “potential impacts” on the price of such services in Member States (which can vary).

After 18 months of application of the current Geo-blocking Regulation (in force since December 2018), the Commission review lauds progress in reducing some obstacles — claiming there’s been “a stark reduction in barriers caused by location requirements, from 26.9% down to 14% of approximately 9,000 websites surveyed”.

“Such restrictions prevent users from attempting to register to foreign websites due to a postal address in another Member State, and is important because registration is a key stage of the online shopping process,” it notes.

“A further decrease in restrictions that users faced when trying to access websites cross-border was reported (e.g. users were denied access or automatically rerouted), the remainder of which was residual (only 0.2% of websites blocking access).”

It also credits the regulation with boosting the amount of cross-border delivery purchases, saying the increased access to cross-border websites provided by regulation led to an increase of 1.6% in the EU27 compared to 2015, adding that a third of the surveyed websites offered cross-border delivery.

Commenting in a statement, the internal market commissioner, ThierryBreton, said: “This first review of the Geo-blocking Regulation already shows first positive results. We will further monitor its effects and discuss with stakeholders, notably in the context of the Media and Audio-visual Action Plan to ensure the industry can scale up and reach new audiences, and consumers can fully enjoy the diversity of goods and services in the different EU Member States.”



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

Blog Archive

Definition List

Unordered List

Support