robashton2 | 9 years ago | on: A response to “Why you can't be a good .NET developer” (2016)
robashton2's comments
robashton2 | 11 years ago | on: MSBuild is now open source on GitHub
It's all just a bit of fun; there is no need to get directly insulting over it.
robashton2 | 11 years ago | on: MSBuild is now open source on GitHub
Seriously - I remember at one client there was a specific machine set up to edit the build on because it was the only one that could open the workflow editor without crashing. Why there was a workflow editor to edit MSBuild stuff I don't know but that's that world in a nutshell.
robashton2 | 11 years ago | on: MSBuild is now open source on GitHub
robashton2 | 11 years ago | on: Crowdsourced home page
robashton2 | 12 years ago | on: Working for free and what it taught me
If you asked me tomorrow to go and start doing system programming in a language I knew well, I'd probably be screwed. Ask me to work on a database engine, compiler or web app and I'd be okay.
I'm mainly focusing that ire on the typical enterprise stuff LOB stuff, where it truely is all the same and just because you'd been writing Foo v1 for three years doesn't mean you won't be able to write Bar v300
robashton2 | 12 years ago | on: Working for free and what it taught me
I feel confident that if I was asked to do C at one of these gigs I'd have been able to deliver something useful. Perhaps less if it was C++ because it's a bit swiss-army knife and there are a lot more "don'ts" to pick up.
robashton2 | 12 years ago | on: Working for free and what it taught me
robashton2 | 12 years ago | on: Working for free and what it taught me
robashton2 | 12 years ago | on: Working for free and what it taught me
robashton2 | 12 years ago | on: Working for free and what it taught me
robashton2 | 12 years ago | on: Working for free and what it taught me
Paying a couple hundred quid to hire me for two weeks is free. When I said expenses, it was the cost of getting there and putting me somewhere to sleep (not hotels mostly, thankfully).
By charging that small amount, it means they're serious about bringing me in because it demonstrates commitment.
I paid for my own upkeep over this time and burned through the best part of 25k EUR - all worth it.
robashton2 | 13 years ago | on: Lessons learned building a multiplayer game in NodeJS and WebGL
robashton2 | 13 years ago | on: Lessons learned building a multiplayer game in NodeJS and WebGL
The thing about a chatroom and load, is that your server is effectively just message passing, and if there is any CPU spike, that is all it is - a spike, which VPSs for the most part are fine with.
When you are executing physics and logic 30 times a second constantly regardless of load (so I made a mistake in phrasing there in my blog post), then you will be throttled on a cheap VPS because you're no longer being a good citizen - which was my point in that post if I recall correctly.
To my recollection, this hasn't got much to do with memory at all. I hope this clarifies what I meant to say a bit more.