cgbystrom | 12 years ago | on: Comparing Filesystem Performance in Virtual Machines
cgbystrom's comments
cgbystrom | 13 years ago | on: Show HN: Beeswithmachineguns, lets you use EC2 to DDOS yourself
We used it to load test Battlelog (the online service for Battlefield 3) and successfully simulated over 2 million concurrent users hitting the service using EC2. See http://locust.io for more info. (Disclaimer: I'm one of the authors)
cgbystrom | 13 years ago | on: Integrating WebSockets in Netty
I used https://github.com/cgbystrom/jersey-netty for a one-off project wiring Jersey together with Netty. But it's not async :)
cgbystrom | 13 years ago | on: Ubisoft "Uplay" DRM exposed as rootkit
cgbystrom | 13 years ago | on: Ubisoft "Uplay" DRM exposed as rootkit
cgbystrom | 13 years ago | on: Integrating WebSockets in Netty
For starters, IE has no support, though that is starting to change with IE10. But the biggest issue is with personal firewalls / corporate proxies. These are unfortunately quite horrible at handling Web Sockets. Many popular firewalls such as avast! and Bitdefender can’t handle the WS protocol and completely blocks traffic despite browser support and it being valid HTTP. The socket.io guys did some extensive research on what firewalls are causing these issues. I don’t think their list is exhaustive but it features most major personal firewalls out there. Have a look at https://github.com/LearnBoost/socket.io/wiki/Socket.IO-and-f... , it's no reading of joy.
I’ve deployed quite large installations of Beaconpush (a push server incidentally based on Netty as well). First going from Web Sockets with fallback, over to pure WS and we’re looking at going back to using fallbacks once again due to these incompatibility issues. This time we are looking at using SockJS instead of rolling our own (to be fair, there were no open-source libs doing this when we started). I’ve ported SockJS to Netty (https://github.com/cgbystrom/sockjs-netty) and it’s working although I wouldn’t say it is production ready.
I urge you to have a look at SockJS and socket.io. Personally I prefer SockJS since it aims at emulating the Web Socket interface and nothing more as compared to socket.io (which adds a pub/sub layer). Also, it does not rely on a Flash fallback (which is another story). The socket.io guys are however working on engine.io, which will split the transport fallback mechanisms of socket.io to a separate library. That's a good idea, but it still uses Flash and IMHO a more complex "transport upgrade".
cgbystrom | 14 years ago | on: Redmon - A web interface for managing redis: cli, admin, and live monitoring
cgbystrom | 14 years ago | on: Web-based editor for Kotlin, JetBrains' new JVM language
cgbystrom | 14 years ago | on: Planet - Python realtime framework, the framework behind battlefields battlelog
https://github.com/esnme/ultrajson - Super-fast JSON serializer.
https://github.com/esnme/locust - Scalable load testing tool capable of simulating millions of users.
https://github.com/esnme/amysql - 100% async/event driven MySQL driver.
https://github.com/hjlarsson/gevent-memcache - memcached driver for gevent.
cgbystrom | 14 years ago | on: Planet - Python realtime framework, the framework behind battlefields battlelog
For Planet Framework customers, we offer "partner source". Meaning, that customers will get full access to source code and also submit their own patches.
cgbystrom | 14 years ago | on: Planet - Python realtime framework, the framework behind battlefields battlelog
(I'm one of the developers behind Planet Framework)
cgbystrom | 14 years ago | on: Planet - Python realtime framework, the framework behind battlefields battlelog
cgbystrom | 14 years ago | on: Deploying Node.js on Amazon EC2
cgbystrom | 14 years ago | on: First employee of startup? You are probably getting screwed
And if you, as a job seeker, are dependent to land a potentially low-paying job at a startup to get a "real" job, then you probably aren't that "crucial hire" the startup is looking for.
This ain't no charity business.
cgbystrom | 14 years ago | on: Tabbed PuTTy client
http://www.chiark.greenend.org.uk/~sgtatham/putty/download.h...
cgbystrom | 14 years ago | on: Metrics, Metrics Everywhere [video]
Have used it successfully implementing stats/metrics in Beaconpush, a real-time user presence server (http://beaconpush.com).
cgbystrom | 14 years ago | on: Smooth CoffeeScript
cgbystrom | 15 years ago | on: Chartio develops non-blocking MySQL queries using Tornado
While we could've gotten better performance with more processes, we wanted to stick with one process per core. Given this and a non-blocking driver we naturally got a good performance gain.
amysql, as it's called, is up on GitHub: https://github.com/esnme/amysql
cgbystrom | 15 years ago | on: GitHub, Collaboration, and Haters
Opening a repo actually show useful stuff for me as a developer. The source is there together with an optionally inlined README file, rendered with popular micro markups. Then add the ease of forking and you clearly get something people really like. This style of presentation isn't of course for everybody. But GitHub chose to target developers above end-users.
GitHub could have been "SVNHub" or "hghub" for all I care, the technology is secondary in this case (but close behind).
cgbystrom | 15 years ago | on: ThriftDB a new service from the Octopart Guys
"Thrudb is a set of simple services built on top of the Apache Thrift framework that provides indexing and document storage services for building and scaling websites. Its purpose is to offer web developers flexible, fast and easy-to-use services that can enhance or replace traditional data storage and access layers."
No long under development though.
We ended up using the synchronization feature in PyCharm to continually rsync files from native FS into the VirtualBox instance. Huge perf improvement but a little more cumbersome for the developers. But so far it has been working good, PyCharm's sync feature does what it is supposed to.