Feb 29, 2012

GWT - Getting Started

As developer, I want something different too. Knowing other stuff As I can. :)

In getting started I use this URL: http://code.google.com/webtoolkit/usingeclipse.html

Step 1: Create a GWT Project

Step 8: Compiling a GWT Application
Deploying to Google App Engine

Issue:
* When you run your browser it ask to to install GWT Plugin this this case I use Firefox 3.6.9 and after the plugin install still prompting me to install again.
Resolution:
I update my firefox to 10.xx.x WOW, AT this time I only found the my firefox is too too old man.. :(


winzter143.appspot.com

Hope you can do it too.

Learning is no ending.

Feb 27, 2012

How to Create Your Own Web Proxy

In long time looking on how to do this stuff. Now, I think I already get the idea by this authors.

Best Proxy
http://www.labnol.org/internet/setup-proxy-server/12890/

http://www.darkpolitricks.com/2009/12/create-your-own-web-proxy-server/

I think this not really what I looking for but I know I get some idea on doing other stuff
http://codescribes.blogspot.com/2007/01/how-to-make-your-own-web-proxy-parts-i.html

Feb 23, 2012

Linux: Find old files

This important to remove unused logs.

Examples
Find files more than or equal to 3 days
find . -name '*.log' -mtime +3

Feb 14, 2012

Linux: Getting Directory size.

du --max-depth=1 /home/ | sort -n -r
du -sh *

Reference:
http://www.labtestproject.com/linuxcmd/du_command.html

Feb 13, 2012

My Dictonary

This is a collection of New words to me.
ju·ve·nile
Young/immaturify/beta/now develop well

Feb 9, 2012

Linux: Convert AVI to 3GP

ffmpeg -i file.avi -strict experimental -s qcif -vcodec libxvid -acodec aac -ac 2 -ar 8000 -r 25 -ab 65535 -y file.avi.3gp