Could be an intriguing way to detect other developers visiting the site and communicate with them. Last time I checked, the front page of https://vimeo.com was using the inspector console as a recruiting tool.
Great idea!
91–92 of 92 posts
Could be an intriguing way to detect other developers visiting the site and communicate with them. Last time I checked, the front page of https://vimeo.com was using the inspector console as a recruiting tool.
Earlier quoted context omitted.
Not only that, you have to save a reference to the parts of the console that you want to use just in case they attempt to destroy those. var c = console var l = console.log var log = function(){ l.apply(c, arguments) } Now they can't break the console from working with stuff like: console.log = function(){}
well in that case i guess you could always do var _console = console; console = undefined;