Category: Web Development

Apple Hints HOWTOs Web Development

How to fix: svn: error: The subversion command line tools are no longer provided by Xcode

As I was getting ready to do my first svn check in today – I got an error that I had not seen yesterday: “svn: error: The subversion command line tools are no longer provided by Xcode” My operating system: macOS Catalina 10.15.3 Apple’s documentation on how to fix this: https://developer.apple.com/documentation/macos_release_notes/macos_catalina_10_15_release_notes The solution: Open: The […]

Web Development

Have You Tried Vivaldi?

A few weeks ago I was introduced to a new browser I had never heard of before: Vivaldi. I have been known to like alternative browsers (iCab, Flock) and was excited to see what this new browser was all about.

CSS Hints HOWTOs

Fix for Bold Fonts Looking Bolder in Chrome

If you noticed your fonts in Chrome looking more bold in Chrome than Safari – there is an easy fix. Add this in to your stylesheet (body or specific CSS class/ID): Example: h1 {-webkit-font-smoothing: antialiased;} You can see the difference: Before: After: