Archive for December, 2007
[WSJ] With Online Services, Foreign Texts Can Get Lost in Translation
WSJ 12/20/2007
http://ptech.allthingsd.co
It looks like machine translation is still far from conquering human translation ![]()
In my previous MT attempts on google, it was definitely not enough for interpreting professional & sophisticated documents, but it was more than enough for short and simple text. It would be awesome if FB uses MT to translate multilingual wall posts on the fly.
How To Create PayPal Storefront
It’s pretty easy to do:
1. Create a PayPal account - http://www.paypal.com
2. Go to http://storefront.paypallabs.com and Login using your PayPal account.
3. Complete Step 1 - Modify your storefront
4. Complete Step 2 - Update your storefront
5. Click on “Help sell these projects”
6. Click on “Get Store” button.
This will copy the necessary html code to your clipboard.
7. Ctrl + V to paste your store to your blogs, homepages, etc.
8. You are now a online store owner. Get the word out that you are now in business
Kinako Shop (PayPal Storefront)
Let me know if it is too expensive.
The price is negotiable!!!
How to Set Up Remote-Debugging in Idiom WS with Eclipse
How to Set Up Remote-Debugging in Idiom WS with Eclipse
Where to download Eclipse: http://www.eclipse.org/downloads/
Here are two common ways to achieve this:
1. Using Eclipse Plugin
1. Download Eclipse Tomcat plugin (Sysdeo/SQLI Eclipse Tomcat Launcher plugin):
http://www.eclipsetotale.com/tomcatPlugin.html#A3
2. Unzip and copy it to your Eclipse plugin directory: e.g. C:\eclipse\plugin
3. Start Eclipse.
You should see your Tomcat icons on your menu bar.
4. Start Tomcat
5. Click Debug.
6. Login to Idiom WS and make Idiom load your java code that you are trying
to debug.
Make sure to set some breakpoints.
7. You should see your debugger stops at the breakpoints.
2. Using JPDA
1. Stop Idiom App server
2. Open startWS.bat file.
e.g. if you installed Idiom in C:\Idiom, it is in C:\Idiom\svc\startWS.bat
3. Replace the line:
net start IdiomRun
With:
cd C:\Idiom\tomcat\bin
set JPDA_TRANSPORT=dt_socket
set JPDA_ADDRESS=8000
catalina.bat jpda start
4. Start tomcat by clicking on the startWS.bat
5. Open you project with Eclipse
6. Run -> Debug…
7. Configure Remote Java Application. The port should be same as “set JPDA_ADDRESS=8000″
that you specified in the startWS.bat.
8. Click Debug.
9. Login to Idiom WS and make Idiom load your java code that you are trying
to debug.
Make sure to set some breakpoints.
10. You should see your debugger stops at the breakpoints.
No comments