Posted: January 20th, 2013 | Author: admin | Filed under: Uncategorized | 2 Comments »
Latest Update: 01/19/13
Eclipse Version: Juno
To import an existing Ant Project, select New->Other

Select Java Project from Existing Ant Buildfile and hit “Next”



Posted: June 13th, 2011 | Author: admin | Filed under: Uncategorized | 1 Comment »
I’ve been searching for easy ways to post rich content and so far Google Docs is the easiest way for me. The workflow is to update images to a designated album on Picasa, and insert those the images from the album to Google Docs.
For users that could not access Google Docs, the document can be downloaded as PDF and
If you can’t view Google Doc, view this PDF file test
Posted: March 17th, 2011 | Author: admin | Filed under: Uncategorized | 8 Comments »
Step 1: Install PowerShell
PowerShell 2.0 is included in Windows 7. If running any prior version, download and install Windows Management Framework Core from Microsoft support site http://support.microsoft.com/kb/968929
Step 2: Download Windows Automation Snapin for PowerShell at http://wasp.codeplex.com/ And Unzip WASP.zip to a Directory
Step 3: Change PowerShell Execution Policy
Go to Start->”Programs”->”Accessories”->”Windows PowerShell” Or just type “powershell” at the Run prompt.
Get the current execution policy:
To be able to run all scripts, including the unsigned ones (take your own risk!), change the PowerShellexecution policy from the default “Restricted” to “Unrestricted”.
To check the current execution policy, type
get-executionpolicy
at the PowerShell prompt.
To change the execution policy to “Unrestricted”, type
set-executionpolicy Unrestricted
Then do get-executionpolicy again to check that the policy has been changed
You may also read more on script signing by typing “get-help about_signing”.
Step 4: Start Windows PowerShell editor by “Start”->”Programs”-> “Accessories” ->”Windows PowerShell ISE”
Type the following text to the “Untitle1.ps1”.
Import-Module C:/install/WASP/wasp.dll
Select-Window | ft -auto
Then test it by clicking the “Run Script” button.