Emojis Missing from Chrome in Ubuntu

Search for a command to run...

No comments yet. Be the first to comment.
Here's the TLDR. Create a file to where all the methods will be present. // s3.js import * as AWS from '@aws-sdk/client-s3'; const bucket = process.env.AWS_BUCKET_NAME; const region = process.env.AWS_REGION; const endpoint = process.env.AWS_ENDPOIN...
Back in my previous company, we ran into issues where our MongoDB server became very slow and affected all our queries. Fortunately, we used Atlas and Profiler was available to us to analyse what was going on. Here are some things we looked at. High...

Uploading file to google drive requires the following steps: Authenticate with google drive Uploading a file to a specific folder by the name of the folder If the folder does not exist, we need to create the folder first Finally, upload the file....
While naming variables, functions and classes is one of the hardest things to do as a programmer, writing comments is also hard. It’s easier to express our logic in code vs English. Let’s look at the best ways to write comments in code. YAGNI — You a...

With an increasing number of users using google sheets to maintain data, it has become essential to access google sheets in your development environment. You have a few options: Use API from services like sheetsu, sheety, etc Use Official Google sh...

I recently installed Ubuntu 19.04 from 16.04 and I was happy with how quickly Ubuntu evolved over the years.
Since I use Notion a lot, I quickly realised the emojis are not showing properly on chrome.
Turns out the problem was ubuntu’s minimal install which did not include the emojis package as discussed here. https://discourse.ubuntu.com/t/emoji-support-missing-from-ubuntu-19-04-minimal-install/11083
So I went ahead and installed “fonts-noto-color-emoji” package using
sudo apt-get install fonts-noto-color-emoji
My terminal now says, the package is already installed, which was strange, maybe they added the package but there was no change.
On further research, I found I had to remove and install it again as suggested here. https://askubuntu.com/a/1196561
sudo apt-get remove fonts-noto-color-emoji
sudo apt-get install fonts-noto-color-emoji
Then restart Chrome, and you will get all the fancy emojis you need. :)