YouTube Marks Notre Dame Fire As Conspiracy

An interesting story out of Bloomberg: Youtube accidentally marked a livestream on yesterday’s Notre Dame fire as a 9/11 conspiracy.

Bloomberg Twitter post with screenshot of Notre Dame fire.

The article is here: https://www.bloomberg.com/news/articles/2019-04-15/youtube-flags-notre-dame-fire-as-9-11-conspiracy-in-wrong-call – it comments that YouTube’s automated anti-hoax systems mislabeled the video.

It’s an interesting and difficult problem to algorithmically categorize videos – in this case, it’s easy to see how the Google AI fouled up: both 9/11 and Notre Dame fires were in tall buildings, with a cityscape surrounding them – from an AI perspective both look very similar. YouTube is such an important source for fresh news, I almost think that they should have people on 24/7 monitoring popular livestreams.

Notre Dame Fire

During today’s Notre Dame fire, Google updated the search results for Notre Dame to indicate the emergency. Here is what Google Maps showed (note the little fire icon above the cathedral):

Screenshot of Notre Dame on Google Maps.
Screenshot of the Notre Dame on Google Maps. Note the little fire icon above the Notre Dame cathedral itself.

If you Google searched for the fire, or clicked the link from Maps, you’ll see the following screenshot. Note the emergency alert at the top, and the map of the fire’s affected area underneath the news section.

Google search for Notre Dame fire.
A Google search for Notre Dame fire.

Google Introduces before: And after: Date Searching

Google recently posted the below Twitter thread, introducing the before: and after: search operators. Now instead of using advanced search to limit searches by date, you can use these operators straight in the search box.

Google Twitter thread discussing the before: and after: search operators.
Google Twitter thread discussing the introduction of the before: and after: search operators. Click the image to expand.

For example, if I need to search for Star Wars content before 2018, I can try:

star wars before:2018
Star Wars 2018, Google Search
A search for Star Wars content, limited to documents before 2018.

Compare that to a regular search for Star Wars content, which includes news released in this year – 2019.

star wars
A Google search for Star Wars.

PhantomJSCloud Error: Invalid Character ‘u’ – Python

I use PhantomJSCloud to take screenshots of web apps. While writing new code, I noticed this error coming back from the server:

{  
   "name":"HttpStatusCodeException",
   "statusCode":400,
   "message":"Error extracting userRequest. innerException: JSON5: invalid character 'u' at 1:1",
   "stack":[  
      "no stack unless env is DEV or TEST, or logLevel is DEBUG or TRACE"
   ]
}

The problem came because the request wasn’t JSON-encoding the object; the fix looks like this (using the requests library):

    post_data_string = json.dumps(python_object_here, sort_keys=True, indent=3, separators=(',', ': '))
    r = requests.post('https://phantomjscloud.com/api/browser/v2/', data=post_data_string)

Google Testing New GoogleBot – Capable Of Rendering More Web Apps

Search Engine Land announces they’ve spotted a new version of GoogleBot in the wild – it’s based on a more recent version of Chrome and can therefore render (and index for search) more advanced web applications:
https://searchengineland.com/google-spotted-testing-version-of-googlebot-that-can-render-more-content-315322 . A Googler even confirms the story through Twitter.

While we know that the GoogleBot is constantly improving, it’s good to see that Google is investing more time into GoogleBot being able to see modern web applications.

Microsoft’s Chromium-based Edge Browser

Microsoft has released the first build of its Chromium-based Edge browser – in other words, an Edge browser that uses Chromium (the open-source base for Google Chrome) to render web pages.

Microsoft Twitter post announcing availability of the Edge browser.
Microsoft Twitter post announcing availability of the Edge browser.

The link goes to:
https://www.microsoftedgeinsider.com/en-us .

I’ve been playing around with it, and it’s surprisingly fast. It’s definitely worth keeping an eye on.