26 October 2020

YouTube revamps its mobile app with new gestures, video chapter lists, and more


YouTube today is rolling out a series of updates to its player page on mobile devices. The changes relocate some elements, add new features — like an expanded set of gesture-based navigation options — and update existing ones, like video chapters, among other things.

Video chapters were introduced in May, as an easier way to get to the “good part” of a video, without having to manually fast-forward. Instead, creators can apply timestamps to their videos that allow users to quickly jump to a specific section of a video or backtrack to rewatch a key part.

These chapters are automatically enabled as a line of timestamps and titles, based on chapter information the creator adds to their video’s description, beginning at segment 0:00.

youtube video chapters (gif)

Image Credits: YouTube

Today, YouTube is extending this feature to include a new list view that lets you see a complete list of all the chapters included in the video, each with their own preview thumbnail. You can access this list view by tapping or clicking on the chapter title in the player, then jump to the part of the video you want to see by tapping the video chapter in the list.

This make chapters easier to navigate, as the thumbnails offer a visual guide to the various parts of the video.

YouTube is also today updating its player page. To make captions more accessible, it’s moving the button to a more prominent position on mobile phones. The auto-play toggle has been moved as well, so it’s easier to turn it on or off while you’re watching a video — a change that will roll out to desktop users soon, too, YouTube says.

youtube caption and autoplay (gif)

Image Credits: YouTube

There are other small improvements on the new player page, including a re-arranged buttons and controls that respond to your input faster than they did before.

Along with the user interface changes, navigation has been updated to include an expanded set of gesture controls. Already, you can double tap on the left or right side of a video to either fast forward or rewind 10 seconds. Now, you’ll be able to swipe up to enter full screen mode and swipe down to exit full screen, too.

youtube gestures (gif)

Image Credits: YouTube

And if you want to see how much time is counting down versus how much time has elapsed in a video you’re watching, you can tap the timestamp to switch back and forth between these numbers.

In another change, YouTube will prompt viewers with “suggested actions” when there’s a way to have a better video experience. For example, you may be prompted to rotate your phone for a landscape video, or play a video in VR. Over time, it will roll out more suggestions, as needed.

Image Credits: YouTube

In its announcement today, YouTube mentioned a bedtime reminders feature which actually launched earlier this year. It’s not clear why it was lumped in with the other changes, as it’s already live. (YouTube says it was just a “recap”).

Many of the other changes may not be new to all users, either, however. YouTube confirmed to TechCrunch that some users will already have these features at the time of the announcement, while others will receive them this week.

The updates will roll out across both iOS and Android, starting today.


Read Full Article

What if a US presidential candidate refuses to concede after an election? | Van Jones

What if a US presidential candidate refuses to concede after an election? | Van Jones

If the 2020 US presidential election is close, the race could drag on in the courts and halls of Congress long after ballots are cast, says lawyer and political commentator Van Jones. Explaining why the customary concession speech is one of the most important safeguards for democracy, Jones exposes shocking legal loopholes that could enable a candidate to grab power even if they lose both the popular vote and the electoral college -- and shares what ordinary citizens can do if there's no peaceful transfer of power.

https://ift.tt/2TsXZia

Click this link to view the TED Talk

Can we create vaccines that mutate and spread? | Leor Weinberger

Can we create vaccines that mutate and spread? | Leor Weinberger

Viruses mutate and spread from person to person, a dynamic process that often leaves us playing catch-up when there's a new disease outbreak. What if vaccines worked the same way? Virologist Leor Weinberger shares a scientific breakthrough: "hijacker therapy," a type of medical treatment that could attack, modify and spread alongside a virus, potentially treating afflicted individuals and slowing the spread of infections like HIV.

https://ift.tt/2J7N7UV

Click this link to view the TED Talk

Google Drive Monitor - Get Email Alerts When Files are Deleted in your Drive


When you delete a file in Google Drive, it moves to the trash folder and stays there indefinitely until you manually empty the bin. That is how it has always been but, sometime this month, Google made one important change to how the trash bin works.

Under the new policy, files that have been in Google Drive’s trash bin for more than 30-days are automatically deleted. This automatic cleanup does help reclaim space but if you happen to accidentally delete some important files or folders from your Google Drive, there’s no way to restore them from the trash after the 30-day window.

Monitor Google Drive Files

If you are like me who is terrified at the prospect of forever losing important files that were deleted by mistake, Google Drive Watch can help.

Google Drive Watch is an open-source Google Script that automatically monitors your Google Drive and sends daily email notifications with a detailed list of files that were deleted the previous day.

Here’s a sample email notification sent by the Google Drive Watch program.

Google Drive Watch Deleted Files

The email includes the file link, the date when the file was first created, and the name/email address of the Google Account that last modified and deleted the file. It monitors files in your regular Google Drive as well as Shared Drive folders.

Watch your own Google Drive

Here’s how you can set up Google Drive watch for your own Google account in few easy steps:

  1. Click here to make a copy of the Google script in your own Google Drive.

  2. Inside the script editor, go to line #9 and specify the email address where you want to receive the Drive notifications. You can also put multiple emails separated by commas.

  3. The script, by default, will create a cron job that will run once per day at the selected hour. If you however wish to change the frequency so that the notifications arrive, say, every 5 days, you can specify 5 in line #10.

  4. We are almost there. Go to the Run menu and choose “Enable Drive Watch” to enable the monitor for your Drive. Allow the script to access your file and you are all set.

Configure Google Drive Watch Email

Important: The first email notification will only arrive the next day at the selected hour.

How Google Drive Monitoring Works

The source code of the Google Drive monitor script is available on Github.

Internally, the script uses the Google Drive API with Google Apps Script to watch for changes in your Google Drive. It then sets up a daily cron job, using triggers in Google Scripts, that sends the email if new file changes are found.

When you first run the script, it gets a starting page token and all changes made to Google Drive after this token is fetched will be monitored by the script. We set supportsAllDrives to true since the script should monitor folders in Team Drives as well.

function getPageToken() {
  const store = PropertiesService.getScriptProperties();
  const token = store.getProperty('token');
  if (token) return token;
  const { startPageToken } = Drive.Changes.getStartPageToken({
    supportsAllDrives: true,
  });
  store.setProperty('token', startPageToken);
  return startPageToken;
}

The change.list endpoint of the Google Drive API fetches all changes made to the authorized user’s Drive since the start page token. We also set the fields property to limit file properties that are available in the response. The newStartPageToken returned in the response will become the new page token for future calls to the Drive API.

const fields = `newStartPageToken,
  items(file(id,title,labels(trashed),
  iconLink,mimeType,createdDate,ownedByMe,
  lastModifyingUser(emailAddress,displayName,picture(url)),
  alternateLink, fileSize))`;

const { newStartPageToken, items = [] } = Drive.Changes.list({
  fields,
  pageToken: getPageToken(),
  includeItemsFromAllDrives: true,
  pageSize: 100,
  supportsAllDrives: true,
});

if (newStartPageToken) {
  propertyStore.setProperty('token', newStartPageToken);
}

The items array holds a list of files that have been modified since the last run. This also includes new files that have added and old files that were edited by the users. Since we are only interested in the file that have been trashed, we’ll filter all files from the response except the ones that have been trashed.

const filteredItems = items
  .map(({ file }) => file)
  // Only interested in files where "I" am the owner
  .filter(({ ownedByMe }) => ownedByMe)
  // Only interested in files that have been "trashed"
  .filter(({ labels: { trashed } = {} }) => trashed === true)
  // Only return fields that are sent by email
  .map((file) => {
    const {
      iconLink,
      alternateLink,
      title,
      lastModifyingUser = {},
      createdDate,
      fileSize,
    } = file;
    return { iconLink, alternateLink, title, createdDate, fileSize };
  });

Now that we have an array of files that have been deleted by the user since the last run, we can use the Gmail service to notify the user.

Also see: Google Drive URL Tricks


Linktree raises $10.7M for its lightweight, link-centric user profiles


Simple, link-centric user profiles might seem might not seem like a particularly ambitious idea, but it’s been big enough for Linktree.

The Melbourne startup says that 8 million users — whether they’re celebrities like Selena Gomez and Dua Lipa or brands like HBO and Red Bull — have created profiles on the platform, with those profiles receiving more than 1 billion visitors in September.

Plus, there are more than 28,000 new users signing up every month.

“This category didn’t exist when we started,” CEO Alex Zaccaria told me. “We created this category.”

Zaccaria said that he and his co-founders Anthony Zaccaria and Nick Humphreys created Linktree to solve a problem they were facing at their digital marketing agency Bolster. Instagram doesn’t allow users to include links in posts — all you get is a single link in your profile, prompting the constant “link in bio” reminder when someone wants to promote something.

Meanwhile, most of Bolster’s clients come from music and entertainment, where a single link can’t support what Zaccaria said is a “quite fragmented” business model. After all, an artist might want to point fans to their latest streaming album, upcoming concert dates, an online store for merchandise and more. A website could do the job in theory, but they can be clunky or slow on mobile, with users probably giving up before they finally reach the desired page.

Linktree founders Anthony Zaccaria, Alex Zaccaria and Nick Humphreys

Linktree founders Anthony Zaccaria, Alex Zaccaria and Nick Humphreys

So instead of constantly swapping out links in Instagram and other social media profiles, a Linktree user includes one evergreen link to their Linktree profile, which they can update as necessary. Selena Gomez, for example, links to her latest songs and videos, but also her Rare Beauty cosmetics brand, her official store and articles about her nonprofit work.

Zaccaria said that after launching the product in 2016, the team quickly discovered that “a lot more people had the same problem,” leading them to fully separate Linktree and Bolster two years ago. Since then, the company hasn’t raised any outside funding — until now, with a $10.7 million Series A led by Insight Partners and AirTree Ventures.

“We had the option to just continue to grow sustainably, but we wanted to pour some fuel on the fire,” Zaccaria said.

In fact, Linktree has already grown from 10 to 50 employees this year. And while the company started out by solving a problem for Instagram users, Zaccaria described it as evolving into a much broader platform that can “unify your entire digital ecosystem” and “democratize digital presence.” He said that while some customers continue to maintain “a giant, brand-immersive website,” for others, Linktree is completely replacing the idea of a standalone website.

Zaccaria added that Instagram only represents a small amount of Linktree’s current traffic, while nearly 25% of that traffic now comes from direct visitors.

Linktree activism

Image Credits: Linktree

Black Lives Matter has also been a big part of Linktree’s recent growth, with activists and other users who want to support the movement using their profiles to point visitors to websites where they can donate, learn more and get involved. In fact, Linktree even introduced a Black Lives Matter banner over the summer that anyone could add to their profile.

Linktree is free to use, but you have to pay $6 a month for Pro features like video links, link thumbnails and social media icons.

Zaccaria said that the new funding will allow the startup to add more “functionality and analytics.” He’s particularly eager to grow the data science and analytics team, though he emphasized that Linktree does not collect personally identifiable information or monetize visitor data in any way — he just wants to provide more data to Linktree users.

In a statement, Insight Managing Director Jeff Lieberman said:

As the internet becomes increasingly fragmented, brands, publishers, and influencers need a solution to streamline their content sharing and connect their social media followers to their entire online ecosystem, ultimately increasing brand awareness and revenue. Linktree has successfully created this new “microsite” category enabling companies to monetize the next generation of the internet economy via a single interactive hub. The impressive traction and growing number of customers Linktree has gained over the last few months demonstrates its proven market fit, and we could not be more excited to work with the Linktree team as they transition to the ScaleUp phase of growth.


Read Full Article

Facebook steps into cloud gaming — and another feud with Apple


Facebook will soon be the latest tech giant to enter the world of cloud gaming. Their approach is different than what Microsoft or Google has built but Facebook highlights a shared central challenge: dealing with Apple.

Facebook is not building a console gaming competitor to compete with Stadia or xCloud, instead the focus is wholly on mobile games. Why cloud stream mobile games that your device is already capable of running locally? Facebook is aiming to get users into games more quickly and put less friction between a user seeing an advertisement for a game and actually playing it themselves. Users can quickly tap into the title without downloading anything and if they eventually opt to download the title from a mobile app store, they’ll be able to pick up where they left off.

Facebook’s service will launch on the desktop web and Android, but not iOS due to what Facebook frames as usability restrictions outlined in Apple’s App Store terms and conditions.

With the new platform, users will  be able to start playing mobile games directly from Facebook ads. Image via Facebook.

While Apple has suffered an onslaught of criticism in 2020 from developers of major apps like Spotify, Tinder and Fortnite for how much money they take as a cut from revenues of apps downloaded from the App Store, the plights of companies aiming to build cloud gaming platforms have been more nuanced and are tied to how those platforms are fundamentally allowed to operate on Apple devices.

Apple was initially slow to provide a path forward for cloud gaming apps from Google and Microsoft, which had previously been outlawed on the App Store. The iPhone maker recently updated its policies to allow these apps to exist, but in a more convoluted capacity than the platform makers had hoped, forcing them to first send users to the App Store before being able to cloud stream a gaming title on their platform.

For a user downloading a lengthy single-player console epic, the short pitstop is an inconvenience, but long-time Facebook gaming exec Jason Rubin says that the stipulations are a non-starter for what Facebook’s platform envisions, a way to start playing mobile games immediately without downloading anything.

“It’s a sequence of hurdles that altogether make a bad consumer experience,” Rubin tells TechCrunch.

Apple tells TechCrunch that they have continued to engage with Facebook on bringing its gaming efforts under its guidelines and that platforms can reach iOS by either submitting each individual game to the App Store for review or operating their service on Safari.

In terms of building the new platform onto the mobile web, Rubin says that without being able to point users of their iOS app to browser-based experiences, as current rules forbid, Facebook doesn’t see pushing its billions of users to accessing the service primarily from a browser as a reasonable alternative. In a Zoom call, Rubin demoes how this  could operate on iOS, with users tapping an advertisement inside the app and being redirected to a game experience in mobile Safari.

“But if I click on that, I can’t go to the web. Apple says, ‘No, no, no, no, no, you can’t do that,’ Rubin tells us. “Apple may say that it’s a free and open web, but what you can actually build on that web is dictated by what they decide to put in their core functionality.”

Facebook VP of Play Jason Rubin. Image via Facebook.

Rubin, who co-founded the game development studio Naughty Dog in 1994 before it was acquired by Sony in 2001, has been at Facebook since he joined Oculus months after its 2014 acquisition was announced. Rubin had previously been tasked with managing the games ecosystem for its virtual reality headsets, this year he was put in charge of the company’s gaming initiatives across their core family of apps as the company’s VP of Play.

Rubin, well familiar with game developer/platform skirmishes, was quick to distinguish the bone Facebook had to pick with Apple and complaints from those like Epic Games which sued Apple this summer.

“I do want to put a pin in the fact that we’re giving Google 30% [on Android]. The Apple issue is not about money,” Rubin tells TechCrunch. “We can talk about whether or not it’s fair that Google takes that 30%. But we would be willing to give Apple the 30% right now, if they would just let consumers have the opportunity to do what we’re offering here.”

Facebook is notably also taking a 30% cut of transaction within these games, even as Facebook’s executive team has taken its own shots at Apple’s steep revenue fee in the past, most recently criticizing how Apple’s App Store model was hurting small businesses during the pandemic. This saga eventually led to Apple announcing that it would withhold its cut through the end of the year for ticket sales of small businesses hosting online events.

Apple’s reticence to allow major gaming platforms a path towards independently serving up games to consumers underscores the significant portion of App Store revenues that could be eliminated by a consumer shift towards these cloud platforms. Apple earned around $50 billion from the App Store last year, CNBC estimates, and gaming has long been their most profitable vertical.

Though Facebook is framing this as an uphill battle against a major platform for the good of the gamer, this is hardly a battle between two underdogs. Facebook pulled in nearly $70 billion in ad revenues last year and improving their offerings for mobile game studios could be a meaningful step towards increasing that number, something Apple’s App Store rules threaten.

For the time being, Facebook is keeping this launch pretty conservative. There are just 5-10 titles that are going to be available at launch, Rubin says. Facebook is rolling out access to the new service, which is free, this week across a handful of states in America, including California, Texas, Massachusetts, New York, New Jersey, Connecticut, Rhode Island, Delaware, Pennsylvania, Maryland, Washington, D.C., Virginia and West Virginia. The hodge-podge nature of the geographic rollout is owed to the technical limitations of cloud-gaming– people have to be close to data centers where the service has rolled out in order to have a usable experience. Facebook is aiming to scale to the rest of the U.S. in the coming months, they say.


Read Full Article

Best iPhone Cases of 2020


iPhone owners should utilize phone cases if they want to protect their phones from damage. They should also utilize them if they want to make a fashion statement. There are various iPhone cases on the market, and many of them possess qualities beyond providing physical protection. Some iPhone cases are budget-friendly, while others are luxurious […]

The post Best iPhone Cases of 2020 appeared first on ALL TECH BUZZ.


Games.lol – A Guide To Playing Android Games On PC


As gaming companies start to shift their focus more on mobile games, there is now an increase in great and entertaining games to play on your smartphone. Even popular games like Call of Duty or PUBG came out with mobile versions of the games. PUBG, in particular, also has PUBG Lite for low to mid-range […]

The post Games.lol – A Guide To Playing Android Games On PC appeared first on ALL TECH BUZZ.