Blogs
1.620 results found
-
Hide and Show | Tuan Vo (dot) info
Link info:
Hide and Show. Click on the button to hide or show this content. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ...
http://tuanvo.info/?p=235
-
Installing IIS 7 on Window 7 Home | Tuan Vo (dot) info
Link info:
Installing IIS 7 on Window 7 Home. I. Objective. This post is to show you how I install IIS 7 on my computer. II. How to install IIS 7. First of all, make sure that you have Window 7 installed on your computer. Then follow some ...
http://tuanvo.info/?p=99
-
Tu@n's blog: WIP illustration
-
Setting Site Location | Tuan Vo (dot) info
Link info:
Setting Site Location. I. Objective. This post is to show you how to add a website using IIS 7. Make sure that you installed IIS 7. If not, you can read my instruction set. at here. II. How to set site location. 1/ Type “inetmgr” in the ...
http://tuanvo.info/?p=113
-
Drag and Drop 2 | Tuan Vo (dot) info
Link info:
Leave a Reply Cancel reply. Your email address will not be published. Required fields are marked *. Name *. Email *. Website. Comment. You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> ...
http://tuanvo.info/?p=196
-
quickSort | Tuan Vo (dot) info
Link info:
quickSort. function quickSort(dataArray) { qSort(dataArray, 0, dataArray.length - 1); return (dataArray); } function qSort(dataArray, left, right) { var pivot = dataArray[left], lHold = left, rHold = right; while (left > right) { ...
http://tuanvo.info/?p=192
-
ShellSort | Tuan Vo (dot) info
Link info:
ShellSort. function shellSort(dataArray) { var j, increment = 3, temp; while (increment > 0) { for (var i = 0, il = dataArray.length; i < il; i++) { j = i; temp = dataArray[i]; while ((j >= increment) && (dataArray[j - increment] > temp)) { ...
http://tuanvo.info/?p=190
-
Insertion Sort | Tuan Vo (dot) info
Link info:
Insertion Sort. /** * This function, insertionSort, takes an array of data (/p_dataArray/) and sorts * it using the /Insertion/ sort algorithm. It then returns the sorted array. * * @param {Array} p_dataArray The array of values to sort.
http://tuanvo.info/?p=187
-
The Object Type in JavaScript | Tuan Vo (dot) info
Link info:
DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head> <meta http-equiv=”Content-Type” ...
http://tuanvo.info/?p=144
-
JSON | Tuan Vo (dot) info
Link info:
JSON. JSON is a data format, not a programming language. For example: OBJECT { “name”: “Nicholas”, “age”: 29, “school”: { “name”: “Merrimack College”, “location”: “North Andover, MA” } }. ARRAY OF OBJECTS var book = ...
http://tuanvo.info/?p=155
Users that added this link to their profile:
Tuan Vo