If you think your management doesn't know what it's doing or that your organisation turns out low-quality software crap that embarrasses you, then leave.
I am being sponsored by Syntress! They bought me an amazing dedicated server to run catonmat on. If you're looking web services, I highly recommend the Syntress guys!
Education Sponsors
I am being sponsored by A-Writer! If you ever need help with essay writing, look no further than A-Writer! They will help you with your writing in as quickly as 3 hours!
You could do it using the Twisted Python framework in a three lines or so (Twisted is asynchronous and event driven like nodejs) :)
Comment Responses
Can you show me how to do it in 3 loc of Twisted?
from twisted.web import proxy, http
from twisted.internet import reactor
class ProxyFactory(http.HTTPFactory):
protocol = proxy.Proxy
reactor.listenTCP(8080, ProxyFactory())
reactor.run()
Bah, this is pre-packaged class, not the actual proxy implemented in Twisted.
Um, what did you think the node.js one was? Did you not see the require('http') and require('sys') at the top?
Reply To This Comment