See here for example:
<meta name="theme-color" content="#123456">
See here for example:
<meta name="theme-color" content="#123456">
A handy tool for code metrics: sloccount… use it to count lines-of-code (LOC) and other software metrics.
See here for details.
See here for a list of US time zones.
Eastern ........... America/New_York Central ........... America/Chicago Mountain .......... America/Denver Mountain no DST ... America/Phoenix Pacific ........... America/Los_Angeles Alaska ............ America/Anchorage Hawaii ............ America/Adak Hawaii no DST ..... Pacific/Honolulu
Today I read A Better Way to Say Sorry:
Check out Ubuntu’s Release Plan Details…
Found Using Multiple SSL Certificates in Apache with One IP Address today. Basically:
<NameVirtualHost *:443> <VirtualHost *:443> ServerName www.yoursite.com DocumentRoot /var/www/site SSLEngine on SSLCertificateFile /path/to/www_yoursite_com.crt SSLCertificateKeyFile /path/to/www_yoursite_com.key SSLCertificateChainFile /path/to/DigiCertCA.crt </Virtual Host> <VirtualHost *:443> ServerName www.yoursite2.com DocumentRoot /var/www/site2 SSLEngine on SSLCertificateFile /path/to/www_yoursite2_com.crt SSLCertificateKeyFile /path/to/www_yoursite2_com.key SSLCertificateChainFile /path/to/DigiCertCA.crt </Virtual Host>
Today I learned about @preserveGlobalState and @runTestsInSeparateProcesses in PHPUnit.
On my TODO list is reading the Fat-Free Framework API Reference.