Warning: Undefined array key "layout" in /home/bateeqjg/public_html/news/wp-content/plugins/wp-about-author/wp-about-author.php on line 94
Will 3D Printing Change the World?
Will 3D Printing Change the World? | Off Book – by PBS Digital Studios
Will 3D Printing Change the World?
Will 3D Printing Change the World? | Off Book – by PBS Digital Studios
New Honda Robot ASIMO 2012 – All features and behaviors
BigDog Evolution
A Swarm of Nano Quadrotors
Freaky Life Like A.I Robot
Awesome Robot For Kids, 15 inches High

// Javascript version
var getRandomNum = function( i, decLen ){
return (Math.random() * (i||1) ).toFixed(decLen);
};
# My Coffee-script version getRandomNum = ( i=1, decLen ) -> (Math.random()*i).toFixed(decLen) |
# js2coffee.org Coffee-script verison getRandomNum = (i, decLen) -> (Math.random() * (i or 1)).toFixed decLen |
Awesome huh?
Check out a demo of Coffeescript here.
I’ll like to leave you with a HTML5 Coffee-script presentation.
Here’s a quick post over how to install applications that encounter the Windows Installer Error.

Error Message:
Windows Installer
This installation package could not be opened.
Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
Alternative Solutions not presented in the video.
1) Avoid msi files and go for an alternative file format to install your application.
2) Install the application using the hidden Administrator account.
Here’s a Guide
3) Reinstall Windows on your computer.
4) Re-download the file from a different website.
5) System Restore to a period where the problem didn’t exist.
6) Extract the content of the MSI file and run the executable from there.
Extract MSI contents.batch
REM Extracts the filename.msi file to C:\extracted_files
msiexec /a filename.msi /qb TARGETDIR=C:\extracted_files |