Plurrrr

Fri 29 Mar 2019

Google Search Console

After midnight I added Plurrrr to Google's Search Console. Right now it's processing data and I have to check again in a few days. I want to keep track of how well this site behaves on the Internet and if it attracts readers. Even though it's mostly a public notebook I do like to see other people visiting and hopefully enjoying this site.

Stylesheet made easy

I converted the stylesheet for this blog to Sass, a CSS extension language. This makes it easier to maintain the stylesheet and create other ones using different color schemes.

I generate the style sheet using:

sass --sourcemap=none \
     -t compressed \
     soothe.scss styles/soothe.css

The --sourcemap=none prevents /*# sourceMappingURL=soothe.css.map */ from being added to the end of the generated CSS file.