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.

Tuesday 31 March 2020

Analysis finds that almost 4,000 jobs across 40+ US startups, operating in sectors including hospitality, transportation, and AI, were eliminated in March (Lauren Feiner/CNBC)

Lauren Feiner / CNBC:
Analysis finds that almost 4,000 jobs across 40+ US startups, operating in sectors including hospitality, transportation, and AI, were eliminated in March  —  - Over 3,500 start-up jobs were eliminated this month as the coronavirus crisis disrupted business-as-usual across the economy.



from Techmeme https://ift.tt/34742xd
Share:

Investors tell Indian startups to ‘prepare for the worst’ as Covid-19 uncertainty continues

Just three months after capping what was the best year for Indian startups, having raised a record $14.5 billion in 2019, they are beginning to struggle to raise new capital as prominent investors urge them to “prepare for the worst”, cut spending and warn that it could be challenging to secure additional money for the next few months.

In an open letter to startup founders in India, ten global and local private equity and venture capitalist firms including Accel, Lightspeed, Sequoia Capital, and Matrix Partners cautioned that the current changes to the macro environment could make it difficult for a startup to close their next fundraising deal.

The firms, which included Kalaari Capital, SAIF Partners, and Nexus Venture Partners — some of the prominent names in India to back early-stage startups — asked founders to be prepared to not see their startups’ jump in the coming rounds and have a 12-18 month runway with what they raise.

“Assumptions from bull market financings or even from a few weeks ago do not apply. Many investors will move away from thinking about ‘growth at all costs’ to ‘reasonable growth with a path to profitability.’ Adjust your business plan and messaging accordingly,” they added.

Signs are beginning to emerge that investors are losing appetite to invest in the current scenario.

Indian startups participated in 79 deals to raise $496 million in March, down from $2.86 billion that they raised across 104 deals in February and $1.24 billion they raised from 93 deals in January this year, research firm Tracxn told TechCrunch. In March last year, Indian startups had raised $2.1 billion across 153 deals, the firm said.

New Delhi ordered a complete nation-wide lockdown for its 1.3 billion people for three weeks earlier this month in a bid to curtail the spread of COVID-19.

The lockdown, as you can imagine, has severely disrupted businesses of many startups, several founders told TechCrunch.

Vivekananda Hallekere, co-founder and chief executive of mobility firm Bounce, said he is prepared for a 90-day slowdown in the business.

Founder of a Bangalore-based startup, which was in advanced stages to raise more than $100 million, said investors have called off the deal for now. He requested anonymity.

Food delivery firm Zomato, which raised $150 million in January, said it would secure an additional $450 million by the end of the month. Two months later, that money is yet to arrive.

Many startups are already beginning to cut salaries of their employees and let go of some people to survive an environment that aforementioned VC firms have described as “uncharted territory.”

Travel and hotel booking service Ixigo said it had cut the pay of its top management team by 60% and rest of the employees by up to 30%. MakeMyTrip, the giant in this category, also cut salaries of its top management team.

Beauty products and cosmetics retailer Nykaa on Tuesday suspended operations and informed its partners that it would not be able to pay their dues on time.

Investors cautioned startup founders to not take a “wait and watch” approach and assume that there will be a delay in their “receivables,” customers would likely ask for price cuts for services, and contracts would not close at the last minute.

“Through the lockdown most businesses could see revenues going down to almost zero and even post that the recovery curve may be a ‘U’ shaped one vs a ‘V’ shaped one,” they said.



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

Zoom Windows client vulnerability could allow attackers to steal Windows login credentials of users who click on malicious links in chat messages (Lawrence Abrams/BleepingComputer)

Lawrence Abrams / BleepingComputer:
Zoom Windows client vulnerability could allow attackers to steal Windows login credentials of users who click on malicious links in chat messages  —  The Zoom Windows client is vulnerable to UNC path injection in the client's chat feature that could allow attackers to steal the Windows credentials of users who click on the link.



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

Marriott discloses data breach from mid-January affecting 5.2M hotel guests, exposing personal contact information including mailing addresses and phone numbers (Catalin Cimpanu/ZDNet)

Catalin Cimpanu / ZDNet:
Marriott discloses data breach from mid-January affecting 5.2M hotel guests, exposing personal contact information including mailing addresses and phone numbers  —  Marriott says a hacker gained access to the accounts of two employees.  —  Hotel chain Marriott disclosed today a security breach …



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

[Thread] Security researcher finds Zoom uses a "shady" technique to install its Mac app without user interaction, applying tricks used by macOS malware (Felix/@c1truz_)

Felix / @c1truz_:
[Thread] Security researcher finds Zoom uses a “shady” technique to install its Mac app without user interaction, applying tricks used by macOS malware  —  Ever wondered how the @zoom_us macOS installer does it's job without you ever clicking install? Turns out they (ab)use preinstallation scripts, manually unpack the app using a bundled 7zip and install it to /Applications if the current user is in the admin group (no root needed). https://twitter.com/...



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

Microsoft President Brad Smith calls Washington state's facial recognition law that regulates how public agencies use the tech a "significant breakthrough" (Monica Nickelsburg/GeekWire)

Monica Nickelsburg / GeekWire:
Microsoft President Brad Smith calls Washington state's facial recognition law that regulates how public agencies use the tech a “significant breakthrough”  —  Microsoft President Brad Smith took a break from responding to the COVID-19 outbreak Tuesday to praise Washington state's landmark facial recognition regulations.



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

Historic Town in Veszprém County


By BY DEB AMLEN Crosswords & Games https://ift.tt/346FOmL
Share:

Sources: Microsoft plans to make most public and some internal events digital-only through first half of 2021, including Ignite, Build, and Inspire conferences (Mary Jo Foley/ZDNet)

Mary Jo Foley / ZDNet:
Sources: Microsoft plans to make most public and some internal events digital-only through first half of 2021, including Ignite, Build, and Inspire conferences  —  Microsoft is moving to make most of its external (and some internal) events digital-only for its FY'21 in light of impacts of the coronavirus.



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

Facebook expands its Community Help hub globally to allow people to request or offer help during the pandemic, first in US, Canada, UK, France, and Australia (Sarah Perez/TechCrunch)

Sarah Perez / TechCrunch:
Facebook expands its Community Help hub globally to allow people to request or offer help during the pandemic, first in US, Canada, UK, France, and Australia  —  Facebook first launched its Community Help feature in 2017, to give users a way to offer assistance, search for and receive help in the wake of a crisis.



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

Vericool raises $19.1 million for its plant-based packaging replacement for plastic coolers

Vericool, a Livermore, Calif.-based startup that’s replacing plastic coolers and packaging with plant-based products, has raised $19.1 million in a new round of financing.

The company’s stated goal is to replace traditional packaging materials like polystyrene with plant-based insulating packaging materials.

Its technology uses 100% recycled paper fibers and other plant-based materials, according to the company, and are curbside recyclable and compostable.

Investors in the round include Radicle Impact PartnersThe Ecosystem Integrity FundID8 Investments and AiiM Partners, according to a statement.

“We’re pleased to support Vericool because of the company’s track record of innovation, high-performance products, well-established patent portfolio and focus on environmental resilience. We are inspired by the company’s social justice commitment to address recidivism and provide workplace opportunity to formerly incarcerated individuals,” said Dan Skaff, managing partner of Radicle Impact Partners and Vericool’s new lead director. 



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

Snapchat preempts clones, syndicates Stories to other apps

If you can’t stop them, power them. That’s the strategy behind Snapchat App Stories, which launches today to let users show off their ephemeral content in other apps too. The first partners will let you post Stories to your dating profile in Hily, share them alongside [music] videos in Triller, watch them while screensharing in Squad, or give people a peek at your life in augmented reality network Octi.

Snapchat’s Stories format has been widely cloned, most famously by Instagram and Facebook, but with versions in various states of development for YouTube, Twitter, LinkedIn, SoundCloud, and more. Snapchat hopes to retain some grip on Stories and dissuade more copycats by letting developers bake the original version into their apps rather than building a bootleg attempt from scratch.

If you need Snapchat to share Stories to popular apps, that could boost content production plus subsequent viewership and ad impressions inside of Snapchat, remind people to shoot Stories, and make sure having a Snapchat account stays relevant. “We definitely think there’s a potential for monetization in App Stories but not yet” Snap’s VP of partnerships Ben Schwerin tells me. For now, Snapchat isn’t injecting ads into alongside Stories into other apps, though that’s clearly the plan.

“There are certain platforms out there that have decided they want to invest in building their own Stories product and their own camera, but it’s not a trivial thing to do. It takes resources and time. We think we think we can help developers do that” Schwerin explains. “Getting more people oput there, regardless of age or where they live, comfortable using Stories probably makes them more likely to be able to pick up and enjoy Snapchat.”

Snapchat initially announced the plan for App Stories at its Partner Summit exactly a year ago. Unfortunately, its second annual developer conference that was set for this week was cancelled due to coronavirus.

Though advertising spend may be reduced, at least the app has experienced an increase in usage while everyone shelters in place. That includes third-party apps built on its Snap Kit platform that lets developers piggyback on Snapchat’s login, Bitmoji, and camera effects.

“We continue to see incredible growth from established apps like Reddit and Spotify and TikTok, and from startups that are really building from the ground up on Snap Kit like Yolo” Schwerin reveals. People are spending more time at home and less time with friends. We’re seeing increased usage of Snapchat.”

Snap Kit has allowed Snapchat to rally would-be copycats into a legion of allies as it fights to stave off the Facebook empire. That strategy combined with a high-performance rebuild of its Android app led Snapchat’s share price to grow from $11.36 a year ago to a recent high of $18.98 before coronavirus dragged almost all the way back down.

Now, when people shoot a photo or video in the Snapchat camera, they’ll get options to share it not just to their Story or Snap Map and the crowdsourced community Stories, but also to their Story within other apps integrated with Snap Kit. Users will see options to syndicate their Story to products equipped with App Stories where they’re already logged in.

Unlike on Snapchat where Stories disappear after 24 hours, with they default to a 7-day expiration in other App Stories. That relieves users of having to constantly post ephemeral Snaps to keep their dating or social app profiles stocked with biographical content.

For Snapchat to gain momentum it needs two things: a constant influx of new users, eager to use its augmented reality camera and Bitmoji wherever they’re available, and more impressions to monetize with ads after Instagram stole the Stories use case for untold millions of older users. App Stories could help with both.



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

Damon Motorcycles makes acquisition, raises $3M and extends pre-orders

EV startup Damon Motorcycles has acquired the IP of Mission Motors, raised $3 million in funding and announced a special production run of its debut model.

The Vancouver-based venture unveiled the 200 mph Hypersport in January and began taking pre-orders for the e-moto, with a base price of $24,995. Damon has positioned its EV entry as an ultra-fast, smart and safe motorcycle.

In addition to its go-straight-to-jail top-speed, the Hypersport boasts 200 miles of highway range, 147 ft-lbs of torque, charges to 80% in 20 minutes and weighs less than 500 pounds, Damon CEO Jay Giraud told TechCrunch earlier this year.

These features, along with digitally controlled riding-modes, are just part of Damon’s signature. The seed-stage startup has also engineered the cloud-connected Hypersport with proprietary safety and ergonomics technology that provide adjustable riding positions and blind-spot detection.

Damon Motorcycles

Image Credits: Damon Motorcycles

Damon packed a lot into its latest announcement and shared some insight on appealing to the elusive millennial market and weathering the economic tremors of the COVID-19 crisis.

On the acquisition, the startup purchased the IP of Mission Motors, a now defunct San Francisco e-motorcycle venture that powered down in 2015. Though Mission’s EV development outran its capital, the company’s motorcycles achieved a number of performance benchmarks and captured the attention of Jay Leno.

Mission Motors was also one of first e-moto companies to roll into the competition arena, fielding an entry in the famed Isle of Man TT race in 2009.

Damon will draw on Mission’s product and racing tech, including the company’s full stack development for EV drive-trains and battery power.

“There are certain bits of that we’re going to roll into the commercialized Hypersport,” Damon COO Derek Derek Dorresteyn told Techcrunch on a call with CEO Jay Giraud.

“Specifically, we’re using the motor development that they had as a platform to advance our motor design…We’re looking at achieving 12 newton-meters per kilogram of torque output from an electric motor,” Dorresteyn said.

Giraud explained that could translate to Damon producing an electric motorcycle with roughly 160 kilowatts of power, 200 horsepower and 200 ft-lbs of torque. That would outdo one of the fastest production e-motorcycles, Energica’s EGO, with 145 horsepower and 159 ft-lbs of torque.

Energica’s Ego, Image Credits: TechCrunch

On funding, Damon Motors now has $3 million in additional capital, raised at the pre-seed level from undisclosed angel investors.

The startup will use the backing on product development and accelerating time to market, Giraud said.

Damon’s founder also noted that the company was on track to fill its initial target of 1000 pre-orders for both its Hypersport standard and Premiere models. As such, the startup will extend orders on a limited run, $34,995 Hypersport Premiere founder edition in two different color-schemes: Arctic Sun and Midnight Sun.

Damon is highlighting the demographics of those placing deposits on its Hypersport e-motorcycles.

“Half the people ordering are under the age of 40,” said Giraud. “It really speaks to product market fit.”

The ability to draw millennials to motorcycle purchases is significant, given they’ve been the hardest market segment to crack. Young buyers used to be a mainstay of the industry, but the last 10 years have seen sharp declines in motorcycle ownership by everyone under 40, according to Motorcycle Industry Council stats.

Damon believes its proprietary tech and plans for a direct-to-consumer sales and service model can attract affluent younger buyers and the Tesla crowd to its fast and safe motorcycles.

Though TechCrunch hasn’t yet ridden a Hypersport, the two-wheeler’s specs offer unique features compared to any current production gas or electric motorcycle. On safety, Damon’s CoPilot system uses sensors, radar and cameras to track moving objects around the motorcycle and alert riders to danger.

Damon Motorcycles Hypersport Sensors

Image Credits: Damon Motorcycles

The startup’s debut EV also brings smart ergonomics in Damon’s patented Shift system that allows riders to electronically adjust the motorcycle’s windscreen, seat, foot-pegs and handlebars to different riding positions and conditions.

Even with the demand Damon has seen for the Hypersport, it still faces a stagnant motorcycle market that has become crowded with EV competitors.

Harley Davidson introduced its all electric LiveWire in 2019, becoming the first of the big gas manufacturers to offer a street-legal e-moto for sale in the U.S.

Harley’s entry followed several failed electric motorcycle startups — including Mission Motors — and put it in the market with existing EV ventures, such as Italy’s Energica and U.S. startup Zero  — which launched its $19,000, 120 mph SR/F in 2019.

On top of strong competition in the e-moto space, there’s a growing uncertainty on the buying appetite for motorcycles of any kind that could exist for the remainder of 2020, and potentially beyond, given the COVID-19 pandemic gripping the world.

As of this week, Harley Davidson had halted all motorcycle production due the coronavirus and Energica confirmed to TechCrunch it had shutdown all operations per a decree of the Italian government.

Zero Motorcycles — located in Scott’s Valley, California — is still producing motorcycles “following the standard health orders of the CDC”, according to a company spokesperson.

Damon’s leadership believes the company can power through whatever lies ahead. The company has a global supply-chain across Europe, Asia and North America, but builds its battery packs and assembles its motorcycles in Canada.

“There are real challenges to get anyone to do anything today. We don’t expect that to be true forever,” COO Derek Dorresteyn said of supply-chain and meeting production demand. 

CEO Jay Giraud believes the current situation with COVID-19 will likely create an economic slump that could drag on longer than the 2008 Great Recession.

On how Damon Motorcycles will manage, “Like every core startup in the world, we’re gonna have to raise a lot of money no matter what. But we’re in a good place right now,” he said.



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

Blog Archive

Definition List

Unordered List

Support