Install simple Node.js based TCP socket proxy server in Windows by Batch File
by Eric Guo on April 22nd, 2012, under Script
In my working Semiconductor factory, some of the machine is heavily protected by network isolate (You can image those machine a very frangible PC which have no windows update turn on), the network is so isolate that only certain bridge PC can connect in both inside intranet and outside - still intranet
. To make things even worse, the isolated network is nested; the real machine need cross two level bridge PC to reach the application server.
That's why we need many proxy server to relay the network between Client/Server ..more
One line to convert ePub file into the mobi file in PowerShell
by Eric Guo on April 8th, 2012, under Script
- gci *.epub | % {iex $("kindlegen {1} -c2 -o '{0}.mobi'" -f $($_.BaseName -replace "\."," "),$_.Name)}
Silverlight poker game calculate 24 points
by Eric Guo on April 7th, 2012, under Life
It’s is required by my college as a part of party game, based on Bishoy Labib’s version on CodeProject, I make a large picture version base on the blogs started something. the full source code can be folked at github.com.
Install Ruby 1.9.3 p125 & Rails 3.2.3 on Windows 7
by Eric Guo on April 1st, 2012, under Dev
Some blogs says Windows is not a right platform to start Learning Ruby, maybe it's right, but anyway, I just successfully install the latest Ruby&Rails web stack following below steps:
- Install RailsInstaller as a whole exe (56.6MB), if you want to access that file in China, please use this link instead, you may have to register 115 account first.
After install, ..more
Some thought after attending the Cloud Foundry 2012 tour in Shanghai
by Eric Guo on March 31st, 2012, under Cloud
I just attend the CFOpenTour2012 in Shanghai yesterday; its a little surprise that tour didn’t require any register fee although I always believe a small amount of register fee can help make audience more concertrate.
Mark Lucovsky’s opening keynotes is not shock me. Either I’m already tried the Cloud Foundry before the conference or I’m also running my blog in GAE. I didn’t known Mark as familiar as Ballmer or Dave Cutler. But it do shock me after I check the Wikipedia that Mark is the one few guy who make Ballmer threw the chair. The web stack of Cloud Foundry are all open source, the method and system archtecutre of Mark's key notes final program, maybe name stac2 was very different with existing web application, it is totally spread to 20+ different vm server and seems quite scalable. ..more