How can I make SmartScreen Filter trust a self-signed certificate

To quote from MSDN’s website: Detractors may claim that SmartScreen is “forcing” developers to spend money on certificates. It should be stressed that EV code signing certificates are not required to build or maintain reputation with SmartScreen. Files signed with standard code signing certificates and even unsigned files continue to build reputation as they have … Read more

Is there a way to detect if the browser has subpixel precision?

I’m not sure where you got the idea that IE9 is the only browser that supports fractional pixel units, but that assumption is totally incorrect. From section 4.3 of the spec (emphasis added): The format of a length value (denoted by <length> in this specification) is a <number> (with or without a decimal point) immediately … Read more

IE9 JavaScript error: SCRIPT5007: Unable to get value of the property ‘ui’: object is null or undefined

Many JavaScript libraries (especially non-recent ones) do not handle IE9 well because it breaks with IE8 in the handling of a lot of things. JS code that sniffs for IE will fail quite frequently in IE9, unless such code is rewritten to handle IE9 specifically. Before the JS code is updated, you should use the … Read more

Stupefyingly weird IE 9 Javascript bug: Altering doc title makes subsequent code execute

like InvertedSpear mentions, check your doc type out, i’ve had problems with IE9 recently and most of it boiled down to the Doc type tags triggering a compatability mode i didn’t need, the same can be true of the meta tags so it might boil down to your Meta tags. You can always impose a … Read more

ffmpeg convert mov file to mp4 for HTML5 video tag IE9

For ffmpeg: ffmpeg -i {input}.mov -vcodec h264 -acodec aac -strict -2 {output}.mp4 You may also add the -q:v/-q:a parameter to specify the quality of the video. You may also use HandBrake which is a simpler encoder than ffmpeg. For HandBrake: handbrakecli -i {input}.mov -e x264 -E facc -o {output}.mp4   EDIT: I found the solution! … Read more