My Blog 160 posts

notes & snippets
Generate Apple push notification APNS KEY for ASP.NET
openssl x509 -in aps_development_mms_notif.cer -inform DER -out aps_developer_identity.pem -outform PEM
openssl pkcs12 -nocerts -out APSCertificates.pem -in Certificates.p12
openssl pkcs12 -export -in aps_developer_identity.pem -out aps_developer_identity.p12 -inkey APSCertificates.pem




openssl x509 -in aps_production_mms_notif.cer -inform DER -out aps_developer_identity.pem -outform PEM
openssl pkcs12 -nocerts -out APSCertificates.pem -in Certificates.p12
openssl pkcs12 -export -in aps_developer_identity.pem -out aps_developer_identity_mms_prod.p12 -inkey APSCertificates.pem


http://stackoverflow.com/questions/3142095/add-iphone-push-notification-using-asp-net-server
How to Get IE8 to Support HTML5 Tags and Web Fonts
How to Get IE8 to Support HTML5 Tags and Web Fonts

http://tatiyants.com/how-to-get-ie8-to-support-html5-tags-and-web-fonts/


@font-face {
font-family: 'OpenSans';
src: url('fonts/OpenSans-Light-webfont.eot');
src: url('fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/OpenSans-Light-webfont.woff') format('woff'),
url('fonts/OpenSans-Light-webfont.ttf') format('truetype'),
url('fonts/OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
font-weight: 300;
font-style: normal;
}


1 2 3 4 5 6 7 8 9 10 »