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.

Google Maps Help Screen

For those of you who need a little help with Google Maps, Google offers a screen with all the keyboard shortcuts available in Maps. Just open up Maps, click anywhere in the map area, then hold down the [Shift] and [?] keys – you’ll get the screen below:

Google Maps shortcut screen.
Google Maps shortcut screen.

Gmail Turns 15 Screen

Gmail has been celebrating its 15th birthday by changing the login screen and its usual icon. Here is the new login screen:

Gmail's login screen celebrating its 15th birthday.
Gmail’s login screen celebrating its 15th birthday.

And here is the new Gmail icon used in the upper left hand corner of the web app:

The Gmail logo now shows balloons and a party hat!
The Gmail logo (upper left) now shows balloons and a party hat!

Bloomberg Global News On YouTube

I love YouTube live streaming for all the interesting information it has. Recently I’ve been watching the Bloomberg Global News channel, located at https://www.youtube.com/watch?v=dp8PhLsUcFE . They keep up a constant stream of business news and information about the economy.

It’s definitely a channel to bookmark if you’re interested in business, or just want some background talk while coding.

Bloomberg News screenshot on YouTube.
Bloomberg News screenshot on YouTube.

Inbox Is Gone…

Google shut down Inbox this month, which is disappointing because I LOVED the app. It was a fast way to categorize and mark-as-read huge quantities of email.

For posterity, here is the Inbox iOS app icon and the screen that pops up when you attempt to use the app after the shutdown date:

The Inbox screen after the April shutdown of the application - no longer able to use the app.
The Inbox screen after the April shutdown of the application.
The icon for Google's Inbox iOS application.
The icon for Google’s Inbox iOS application.

Turning A Date Into A Folder Path – Node

This short code segment turns today’s date into a folder path. For example, today’s date of April 2, 2019 would be turned into 2019/04/02. I use it for categorizing date related documents into appropriate folders within GCS.

var datestamp_obj = new Date( (new Date()).getTime() + (-6) * 3600 * 1000 );
var datestamp_slash = datestamp_obj.getFullYear() + "/";
    datestamp_slash += datestamp_obj.getMonth().toString().padStart(2, "0") + "/" + datestamp_obj.getDate().toString().padStart(2, "0");
    

Google Blog: 15 Year Anniversary Of Gmail

Screenshot of Google's blog celebrating 15 years of Gmail.
Screenshot of Google’s blog celebrating 15 years of Gmail.

Today Google made a blog post celebrating the 15th year anniversary of Gmail:
https://blog.google/products/gmail/hitting-send-on-the-next-15-years-of-gmail/ .

When Gmail was first introduced, it was truly revolutionary. Most other email providers offered a handful of MB of total storage. Webmail interfaces were slow, crowded with ads, and were a mess to use. When Gmail was announced, many thought it was an April Fools joke: who would offer 1 GB of storage when that was 2 magnitudes above what most providers offered?

I think what surprises me the most about Gmail is how completely it has won the email market for the past 15 years. An email service is relatively straightforward to implement: the protocols are all open, there’s open source software that can scale reliably; and yet Gmail is the undisputed king of email. Even many corporations use Gmail through G Suite.

Now that Gmail has essentially won the email market, it looks like it is slowly pivoting to become an application delivery platform in itself. Just like how the web pivoted from delivering simple HTML pages to full Single Page Applications (SPA): games, word processors, custom applications – Gmail is doing the same thing. If you look at the original blog post, Google is introducing many new actions with email: reply to a comment post, browsing hotel recommendations, and generally interact with other web sites and services. Gmail will slowly turn into a one-stop shop for all your messaging needs – it’s not too hard to imagine Gmail being able to add items to your todo list, to create posts to be sent to your blog to post, to send texts to friends, etc.

Here’s to another 15 years of Gmail transforming our lives. Thanks for everything.