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.

Sunday, 31 January 2021

Elon Musk goes live on Clubhouse, but with the room full, fans stream audio on YouTube

As I write this Elon Musk has joined Clubhouse for his first-ever in-person session and the boundaries of the app have already been tested. Only 5,000 people are in the room, BUT… the session is being live-streamed from here or here. I am dusting off my creaky live-blogging skillz to cover the session… and will update this post as we go (apologies for appalling typos in the interim). Musk initially talked about going gong to Mars and said it was...
Share:

English learning app ELSA lands $15 million Series B for international growth and its B2B platform

Speaking is one of the hardest parts of learning a new language, especially if you don’t have someone to practice with regularly. ELSA is an app that helps by using speech recognition technology to correct pronunciation. Based in San Francisco and Ho Chi Minh City, ELSA announced today it has raised a $15 million Series B, led by VI (Vietnam Investments) Group and SIG. Other participants included returning investors Google’s AI-focused fund Gradient...
Share:

Ben raises $2.5M seed to fix employee benefits for SMEs

Ben, a London-based employee benefits and rewards platform, has raised $2.5 million in funding. The seed round is led by Cherry Ventures, and Seedcamp. A number of angel investors with backgrounds in fintech and HR tech also participated. They include Paul Forster (founder of Indeed), Taavet Hinrikus (founder of TransferWise), Carlos Gonzalez-Cadenas (previously an exec at GoCardless but now a partner at Index Ventures), Philip Reynolds (VP of Engineering...
Share:

New rule reins in China’s flourishing self-publishing space

Despite China’s history of stringent media control, an industry of uninstitutionalized, individual publishers has managed to flourish on social media platforms like Tencent’s WeChat and ByteDance’s Toutiao. These self-publishers are called “We Media” in the Chinese internet lexicon, denoting the independent power of citizen journalists and content creators. Meanwhile, self-publishers have always had to tread carefully on what they post or risk being...
Share:

Internet connectivity drops in Myanmar after the military detains Aung San Suu Kyi and other leading politicians

Access to the internet in Myanmar dropped sharply after the military detained leaders of ruling party National League for Democracy, including Aung San Suu Kyi, and declared a state of emergency. The NLD won a wide majority of parliamentary seats in November’s general election, which the military alleges was the result of election fraud. In a statement on military-owned television, the army said a year-long state of emergency would be declared in...
Share:

Human Capital: Alpha Global forms to unite Alphabet workers worldwide

You’ve just landed on the web version of my weekly newsletter, Human Capital. It’s where we look at the recent events of the week pertaining to diversity, equity, inclusion and labor in tech. You can sign up here to get Human Capital delivered straight to your inbox every Friday at 1 p.m. PT. Let’s jump in. Alpha Global forms to unite Alphabet workers around the world Alpha Global announced its formation earlier this week to unite Alphabet workers...
Share:

The pandemic has exacerbated the brutal conditions of workers at e-commerce and delivery companies in Asia even as average earnings per delivery declined (Steven Borowiec/Nikkei Asia)

Steven Borowiec / Nikkei Asia: The pandemic has exacerbated the brutal conditions of workers at e-commerce and delivery companies in Asia even as average earnings per delivery declined  —  How the pandemic economy relies on overburdened and underpaid couriers  —  DAEGU, South Korea — The last time Park Mi-suk … from Techmeme https://ift.tt/3tdD1...
Share:

Apple releases an iCloud Passwords browser extension for Chrome on Windows (Abner Li/9to5Google)

Abner Li / 9to5Google: Apple releases an iCloud Passwords browser extension for Chrome on Windows  —  Besides iTunes, Apple's biggest offering on Microsoft's operating system is the iCloud sync client for files, photos, and mail.  Apple is now extending its presence on Windows with an iCloud Passwords Chrome extension. from Techmeme https://ift.tt/3cuwZ...
Share:

Microsoft says revenue from its various cybersecurity offerings crossed $10B over the past 12 months, up 40% YoY and ~7% of its total revenue for the year (Daniel Howley/Yahoo Finance)

Daniel Howley / Yahoo Finance: Microsoft says revenue from its various cybersecurity offerings crossed $10B over the past 12 months, up 40% YoY and ~7% of its total revenue for the year  —  Microsoft (  —  MSFT) is officially a cybersecurity giant.  For the first time on Tuesday, Microsoft disclosed revenue from its various security offerings as from Techmeme https://ift.tt/3ae8I...
Share:

Definition List

Unordered List

Support