Flow Flash AD using JavaScript and SWFObject

This article shows how to create a flow flash ad by using javascript together with swfobject. @see getScroll.js @see http://code.google.com/p/swfobject/ [codesyntax lang="html4strict"] <!DOCTYPE html>… Continue reading
Posted in Flash, JavaScript| Tagged , | Leave a comment

JavaScript Get Scroll Information

The script goes here : getScroll.js [codesyntax lang="javascript"] // get scroll information (cross-browser compatibility) function getScroll() { // t for top, l for left, w for width, h for height va… Continue reading
Posted in JavaScript| Tagged | Leave a comment

Introduction to MongoDB

Installation on Windows : 1. Download and install http://fastdl.mongodb.org/win32/mongodb-win32-i386-1.6.5.zip unzip mongodb-win32-i386-1.6.5.zip to D:\mongodb 2. Create folder where database located … Continue reading
Posted in MongoDB| Tagged | Leave a comment

Version Control with SVN

1. Create trunk from proj_src(source code) : [codesyntax lang="bash"] $ mv /root/proj_src /home/projects/ $ cd /home/projects/ $ svn import proj_src svn://192.168.1.119/proj/trunk -m "create proj trun… Continue reading
Posted in SVN| Tagged | Leave a comment

Introduction to NodeJS

1. What is node.js and what does it do? Evented I/O for V8 JavaScript. To provide a purely evented, non-blocking infrastructure to script highly concurrent programs. 2. Basic concept : blocking and no… Continue reading
Posted in JavaScript| Tagged , | Leave a comment