iPhone - Send SMS instead of iMessage

A friend of mine had purchased an iPhone a few months back and shortly thereafter had dropped it.  It was broken and unrepairable so she had to switch to an Android phone which was free (she was at the beginning of her contract with Verizon - full price iPhone was not an option).  

The challenge in the switch was the dearth of text messages from her friends who had iPhones. Their iPhones refused to stop sending iMessages because they had a previous conversation marked as iMessage.

It was maddening.  She was losing conversations and iPhone folks thought she was ignoring them.

Lo and behold there was any easy fix that was not readily apparent (after deleting contacts, conversations, recreating contacts).

All that was needed is for the iPhone folks to double tap on the iMessage (blue bubble) and a set of options appears.  One of those options allows you to choose "Send as text".  Do this a few times and you'll be good to go!

Stylesheet Limits Of Internet Explorer 6..9

One of my colleagues recently discovered that our site was not functioning 100% correctly (CSS styles not being respected by the browser).  After doing some investigation he found that there is a hard limit of 4,095 rules.  (Why there were so many rules on that page is another discussion).

You can find the mention of the rule limit on the Microsoft Support site.   It states the following:

This problem occurs because the following conditions are true in Internet Explorer:

  • All style tags after the first 31 style tags are not applied.
  • All style rules after the first 4,095 rules are not applied.
  • On pages that uses the @import rule to continuously import external style sheets that import other style sheets, style sheets that are more than three levels deep are ignored.

Note: IE 10 bumps up the limit to 65,534 rules.

New Relic Goodness

Send deployment information directly to New Relic via HTTP.

Ever wish you knew what impact a new deployment had on your web app and when?  Trying to keep track of deployments (especially in a continuous deployment environment) can be error prone and tedious.  Why not just send those details automatically to New Relic?  You can - check it out from the New Relic site:

To notify New Relic of a deployment, you can POST to

https://rpm.newrelic.com/deployments.xml

and add the API key as a header

x-api-key: 8d00e2869400597af4a114d31789088e3724f391f287a4c

To use the API Key turn on API access in your account integration settings.

This example uses the application id.  If you were to specify the optional description, revision, changelog, and user fields, the curl command would look like this: