Skip to content

Instantly share code, notes, and snippets.

View blalond's full-sized avatar

Brian LaLonde blalond

  • Servant Systems
  • Lansing, MI
View GitHub Profile
@sebreh
sebreh / iOS8ReadinessChecklist.md
Created July 25, 2014 07:52
iOS 8 Readiness Checklist

iOS 8 Readiness Checklist

UIKit

  • Adopt size classes and be aware of the old derecated rotation APIs. Test your app on the resizable simulator.
  • Push Notifications: The API to register for push notifications has changed on iOS 8 with new methods on UIApplication.
  • If you use app icon badges, you need to ask for user permission in order to do so.

Foundation

@impressiver
impressiver / raven-config.html
Last active February 27, 2024 14:27
Raven.js configuration for logging JavaScript exceptions to Sentry (https://getsentry.com/). Without the added ignore options, you'll quickly find yourself swamped with unactionable exceptions due to shoddy browser plugins and 3rd party script errors.
<!-- Raven.js Config -->
<script src="{{ JS_PATH }}/lib/raven.js" type="text/javascript"></script>
<script type="text/javascript">
// Ignore list based off: https://gist.github.com/1878283
var ravenOptions = {
// Will cause a deprecation warning, but the demise of `ignoreErrors` is still under discussion.
// See: https://github.com/getsentry/raven-js/issues/73
ignoreErrors: [
// Random plugins/extensions
'top.GLOBALS',