Monday, January 6, 2014

To determine why SSL is failing

use tracert to get all hops and use telnet to attempt https
if the last hop fails good chance its the router not set up, as mentioned below

difference between iqueryable and ienumerable

here

Undefined and Defaults in Javascript


K =  {};
K.T = K.T || {};
K.T.F = K.T.F || {};


the first line raises an undefined error - the other lines are ok


This and That in Javascript

var i ={
a:89,
herby:function(){
var that = this;
return function()
{
return that.a;
}
}

};
alert(i.herby()());

Mr Crockford's words on the subject are unreadable - I think the editor may have screwed up