Month: April 2008

  • Understand a person from his/her blog comments

    What if there exists a system that goes out to all blogs, reads the comments, aggregates them into individual profiles. Each comment often has the name and website. A person shares her opinion at this blog, another one at another blog. Soon enough, you will be able to understand her thoughts. It’s a behavioral data…

  • Nested JavaScript inclusions and IE

    Consider the following scenario: file.html contains inline JS code to load remote.js and call a function in remote.js And in remote.js function remoteFunction() { alert(‘In remote function’); } You would expect the output in this order and Firefox actually honors this order correctly: Before loading remote.js After loading remote.js In remote function IE on the…