This is another great open source font from the Adobe Type Team.
I love coding with it in SublimeText.
My only request would be to have a true italics version, I hate the way fake italics look.
Further reading here.
This is another great open source font from the Adobe Type Team.
I love coding with it in SublimeText.
My only request would be to have a true italics version, I hate the way fake italics look.
Further reading here.
If you know a dev manager who suffers from chronic depression, know that you can help them turn that frown upside down.
Show them some cute baby animals, head over to Cute Overload or ZooBorns if you need help finding some.
Continue readingI've replaced the fonts on this site with open sourced fonts from the Adobe Type Team.
You can (and must) contribute your time and skills to these priceless fonts.
The projects are hosted on GitHub: Source Sans Pro & Source Code Pro.
"All MySQL collations are of type PADSPACE. This means that all CHAR and VARCHAR values in MySQL are compared without regard to any trailing spaces. This is true for all MySQL versions, and it makes no difference whether your version trims trailing spaces from VARCHAR values before storing them. Nor does the server SQL mode make any difference in this regard." – MySQL Documentation
Nice that they explain it in the documentation, but in my world 'abc ' (there is a space at the end of that) is not equal to 'abc' (no space at the end here).
mysql> select 'abc' = 'abc', 'abc ' = 'abc', ' abc' = 'abc', ' abc ' = 'abc'; +---------------+----------------+----------------+-----------------+ | 'abc' = 'abc' | 'abc ' = 'abc' | ' abc' = 'abc' | ' abc ' = 'abc' | +---------------+----------------+----------------+-----------------+ | 1 | 1 | 0 | 0 | +---------------+----------------+----------------+-----------------+ 1 row in set (0.00 sec)
This week I learned that even people whose day job is MySQL can be unaware of or forget this.
Moving my Drupal instance to another domain and putting wordpress here.