Category: Uncategorized
-
UW – School of CS got $25M
The University of Waterloo received a huge “Google dividend” yesterday when David Cheriton, one of the search engine giant’s early investors, donated $25-million to the school’s well-respected computer science department. Mr. Cheriton estimates the return on his US$200,000 investment in Google at about 5,000%. CS School renamed to David R. Cheriton School of Computer Science.…
-
Referrer & AJAX
Firefox does not pass referrer string while IE does.
-
RSLite – A cookie-based AJAX solution
This is another solution written by Brent Ashley for asynchronous information fetching, way before the term AJAX were coined var RSLite; function RSLiteObject(){ this.interval = 1000; this.attempts = 3; this.i = new Image(); this.call = function (page){ var d = new Date(); document.cookie = ‘RSLite=x; expires=Fri, 31 Dec 1999 23:59:59 GMT; path=/;’; this.i.src = page+’&time=’+d.getTime();…
-
map – Google Search
If you search for “map” or “maps” on Google, the first result is not maps.google.com but MapQuest. This surprised me!
-
TV: PRISON BREAK
FOX Broadcasting Company: PRISON BREAK With too many pathetic reality TV shows these years. One of the best TV show I’ve ever seen. It’s an excellent show. Very original and high level of suspense.
-
Funny Video – I Love Sky Video
I Love Sky Video on Metacafe
-
Make your files immutable in Linux which even root can’t delete
Root account in Linux is considered all powerful. You can make or break the system if you have root access to a Linux box. Here is a cool tip to make your files immutable even by root. read more | digg story
-
Math and the Computer Science Major
Computer science majors tend to struggle for reasons that have very little to do with computers. More often than not, such struggles are rooted in weaknesses related to math. If you plan on getting a CS degree, you need to come to grips with one important fact first: computer science has more to do with…
-
Using JavaScript to dynamically add CSS
-
How to insert a block of javascript code to a html page…
Issue: innerHTML simply writes HTML as a string; it doesn’t call the javascript interpreter to parse and execute any scripts that are part of the string Reference: http://www.webmasterworld.com/forum91/2912.htm Solution: manually find these scripts inside the text string and append them to the document $vPat = new RegExp(‘’,’g’); RegExp.lastIndex = 0; // making sure while (($vResult=$vPat.exec($vTxt))!=null)…