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.

Friday, 31 January 2020

Elon Musk just dropped an EDM track on SoundCloud

Friday typically brings a bunch of new music releases, but this Friday’s new drops includes a new track from an unlikely source – Elon Musk. The SpaceX and Tesla CEO said earlier this week he had written a new song called “Don’t doubt yer vibe,” to be released on “Emo G Records,” but as usual it was hard to tell if Musk was being serious or just having his evening internet fun.

Turns out, he was serious, and we didn’t have to wait long to hear the track. The lyrics probably didn’t take him too long to write – the whole song consists of “Don’t doubt your vibe / because it’s true / don’t doubt your vibe / because it’s you” repeated over and over. Musk says he performed the lyrics, which are modified and distorted to an airy electronic, supernatural sounding final product.

The track itself is backed by a pulsing, ambient kind of EDM arrangement, and all in all it’s not a bad representation of the genre. Listen for yourself and judge:

Musk also tweeted photos of himself in the studio actually recording the track, and shared that the process of putting together the song was maybe harder than he’d anticipated. In the midst of his music-making tweets, he also took time to educate some of his followers on why some of the more dire predictions floating around about the Coronavirus are blown way out of proportion.

No word on whether there’s going to be a full album, but Musk’s timing with this drop actually makes a lot of sense when you consider how things have been going for him lately: Tesla stock skyrocketed on positive earnings reported yesterday; he beat a defamation accusation in court last month; his Starlink project is coming together; and SpaceX is making good progress on its commercial crew flight program, nailing its last major test flight before crewed missions earlier this month.



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

Indian ride-hailing firm Ola to launch in London on February 10

After opening an office in the city last year, Indian ride-hailing firm Ola said it would officially begin operations in London on February 10. London is one of the world’s biggest markets for ride-hailing services, and the expansion is a key development in Ola’s international strategy as the company widens its competition with Uber, another SoftBank portfolio firm.

Ola said it will be “fully operational from day one” in London, where it has signed up over 20,000 drivers since late November.

The company, which has raised about $3.5 billion to date, emphasized that its platform offers a range of security features such as a 24/7 helpline for drivers and customers and an in-app emergency button.

Ola’s emphasis on safety comes as its rival Uber is engaging with London’s transport regulator to continue its operation in the city, which stripped the American giant of that license — for the second time — late last year. In November, TfL ruled that Uber did not meet the “fit and proper” requirements for private hire operators.

In the ruling, TfL noted that it had found more than 14,000 trips on Uber’s platform that were taken with drivers who had faked their identity. Uber CEO Dara Khosrowshahi had expressed his disappointment at TfL’s decision. “This TfL decision is just wrong. Over the last 2 years we have fundamentally changed how we operate in London,” he said at the time.

Uber’s cabs remain operational in London as the company appeals the decision. Ola says it will continue its “collaborative approach with regulators and local authorities, as well as its clear focus on safety, drawing on industry-leading and global best practices.”

Additionally, Ola says to incentivize drivers on its platform, it will not charge them any commission for six weeks. The company, like Uber, roughly charges between 20% to 25% commission on the final fare paid by a passenger, for instance. (It is also offering £25 worth of ride credit to passengers who sign up in the first week after the launch.)

Simon Smith, Head of Ola International, said the platform has received “overwhelming positive” reception since launching in the UK in 2018. The startup is operational in 28 boroughs in the UK, including cities such as Birmingham, Coventry and Warwick, where it claims to have seen more than double-digit growth in rides in the last quarter. To date, Ola has provided over 3 million rides with more than 11,000 drivers already operating on the platform in the UK.

“We are working closely with drivers to build a high quality and reliable service for Londoners. Launching in London is a major milestone for us and we are keen to offer a first class experience for all our customers,” he said in a statement.

Expansion into the UK capital, one of the world’s most lucrative markets, is a major step for Ola, which has provided about 3 million rides in the UK to date with more than 11,000 driver partners. Over the years, Ola has also expanded to Australia and New Zealand. The company says it is operational in over 250 cities.



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

Twitter suspends notorious UK hate preacher for violating abuse rules

Twitter has confirmed it has temporarily suspended the account of controversial rightwing commentator, Katie Hopkins. The move was reported earlier by the BBC.

Hopkins, a former MailOnline columnist and presenter on LBC radio, is a veteran of the social media platform, joining Twitter just under a decade ago — and using it amplify her brand of far-right leaning, liberal-baiting politics. She regularly tweets anti-immigration and anti-Islam sentiments, and has claimed that white British people are now a discriminated against minority.

It’s not clear which of Hopkins’ tweets led Twitter to finally pull the trigger, although she had recently targeted black British rapper Stormzy for a series of abusive tweets.

In a statement confirming the account suspension, Twitter told us:

Keeping Twitter safe is a top priority for us — abuse and harassment have no place on the service. We take enforcement action against any account that is violative of our rules – which includes violations of our hateful conduct policy and abusive behaviour policy. These rules apply to everyone using our service — regardless of the account involved.

At the time of writing Hopkins’ account is still visible — although all but one of her tweets has been deleted.

It is not clear whether Hopkins herself deleted the majority of her tweets. Twitter pointed out that users may choose to delete their own Tweets at any time, including by using third-party services which provide the option of deleting all tweets

Two non-visible tweets on Hopkins’ feed are listed as ‘no longer available’ for violating Twitter’s rules.

The remaining visible tweet is a retweet of another user accusing her of inciting racial hatred — which contains a screengrab of a number of abusive tweets Hopkins made targeting Stormzy.

Hopkins’ Twitter biog lists her as “Milo’s Mum” — a reference to Milo Yiannopoulos, another controversial rightwing troll who Twitter banned in 2016 after he incited his followers to harass Ghostbusters actress Leslie Jones.



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

Skymind Global Ventures launches $800M fund and London office to back AI startups

Skymind Global Ventures (SGV) appeared last year in Asia/US as a vehicle for the previous founders of a YC-backed open-source AI platform to invest in companies that used the platform.

Today it announces the launch of an $800 million fund to back promising new AI companies and academic research. It will consequently be opening a London office as an extension to its original Hong Kong base.

SGV Founder and CEO Shawn Tan said in a statement: “Having our operations in the UK capital is a strategic move for us. London has all the key factors to help us grow our business, such as access to diverse talent and investment, favorable regulation, and a strong and well-established technology hub. The city is also the AI growth capital of Europe with the added competitive advantage of boasting a global friendly time zone that overlaps with business hours in Asia, Europe and the rest of the world.”

SGV will use its London base to back research and development and generate business opportunities across Europe and Asia.

The company helps companies and organizations to launch their AI applications by providing them supported access to “Eclipse Deeplearning4j”, an open-source AI tool.

The background is that the Deeplearning4j tool was originally published by Adam Gibson in late 2013 and later became a YC-backed startup, called Pathmind, which was cofounded to commercialize Deeplearning4j. It later changed its name to Skymind.

SGV is a wholly separate investment company that Adam Gibson joined as VP to run its AI division, called Konduit. Konduit now commercializes the Deeplearning4j open source tools.

Adam Gibson now joins SGV as Vice President, to run its software division, Konduit, which delivers and supports Eclipse Deeplearning4j to clients, as well as offering training development.

SGV firm says it plans to train up to 200 AI professionals for its operations in London and Europe.

In December last year “Skymind AI Berhad”, the Southeast Asia arm of Skymind and Huawei Technologies signed a Memorandum of Understanding to develop a Cloud and Artificial Intelligence Innovation Hub, commencing with Malaysia and Indonesia in 2020.



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

Facebook Gaming launches a toolkit for creators, letting them remove comments, mute viewers for short periods, or ban people from the stream, in real time (Dean Takahashi/VentureBeat)

Dean Takahashi / VentureBeat:
Facebook Gaming launches a toolkit for creators, letting them remove comments, mute viewers for short periods, or ban people from the stream, in real time  —  Facebook is launching a dashboard and toolkit for streamers and video makers so they can more easily manage their communities, including viewers who don't follow the rules.



from Techmeme https://ift.tt/390S8q5
Share:

Thursday, 30 January 2020

Social Captain, which helps boost follower counts on Instagram, exposes thousands of Instagram passwords in its web page source code (Zack Whittaker/TechCrunch)

Zack Whittaker / TechCrunch:
Social Captain, which helps boost follower counts on Instagram, exposes thousands of Instagram passwords in its web page source code  —  A social media boosting startup, which bills itself as a service to increase increase a user's Instagram followers, has exposed thousands of Instagram account passwords.



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

Where All the Pieces Fall Into Place


By BY DEB AMLEN Crosswords & Games https://ift.tt/2GHAnQ8
Share:

Microsoft will now pay up to $20k for Xbox Live security exploits

Think you’ve found a glaring security hole in Xbox Live? Microsoft is interested.

The company announced a new bug bounty program today, focused specifically on its Xbox Live network and services. Depending on how serious the exploit is and how complete your report is, they’re paying up to $20,000.

Like most bug bounty programs, Microsoft is looking for pretty specific/serious security flaws here. Found a way to execute unauthorized code on Microsoft’s servers? They’ll pay for that. Keep getting disconnected from Live when you play as a certain legend in Apex? Not quite the kind of bug they’re looking for.

Microsoft also specifically rules out a few types of vulnerabilities as out-of-scope, including DDoS attacks, anything that involves phishing Microsoft employees or Xbox customers, or getting servers to cough up basic info like server name or internal IP. You can find the full breakdown here.

This is by no means Microsoft’s first foray into bounty programs; they’ve got similar programs for the Microsoft Edge browser, their “Windows Insider” preview builds, Office 365, and plenty of other categories. The biggest bounties they offer are on their cloud computing service, Azure, where the bounty for a super specific bug (gaining admin access to an Azure Security Lab account, which are closely controlled) can net up to $300,000.



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

Blog Archive

Definition List

Unordered List

Support