Resolved: Adding MX Record(s) in AWS

 Recently, I was migrating MX records from WIX to AWS. I was using GSuite and I was unable to do the same. Then after a little bit of research, I found this stackoverflow link , which helped me resolve the problem. Here is how you should be adding the records in AWS. Record Name: @ Record Type: MX Value: <Priority> <Route Traffic to> example: 10 aspx.alt1.google.com And if you have multiple records, simply add the records in the same text area in the new line and no commas. This will resolve your problem. :)

Syntax highlighting in blogger

Problem: I want to have syntax highlighting for the code I share on my blog

Solution:

  1. I checked out this website: https://highlightjs.org/
  2. I downloaded the resources and upload them on to my server i.e. default.min.css and highlight.min.js
  3. Logged into my blogger and clicked on Edit HTML
  4. Find the closing 'head' tag and paste the following code there:
          
              <link rel="stylesheet" href="path_to_default.min.css"/>
              <script src="path_to_highlight.min.js"></script>
              <script>hljs.highlightAll();</script>
          
          
  5. Please note that in case of closing and opening tags of html, I used html entities.
  6. Yay! The syntax highlighting should be working now.