We should have a white-listed survival server where all the developers can play survival. It's fun to do and we can easily discover bugs since we're actually playing survival on a server with multiple people.
Im not a developer, but it would be funny, and I'd like to join. We also need a host, I could host it, but ill start to do some tests for my public server so I cant roght now.
Also, MCServer has no whitelist I think, but a plugin could do the job.
If I remember correctly Core has a whitelist
After lots of struggle I finaly got
https://github.com/bastibe/lunatic-python to compile and work with MCServer. It allows you to execute Python scripts in Lua. Sadly it doesn't like x64 MCServers so it only works with x86 executable files, but still it's pretty cool

It's fun to experiment with it

Well, I'm currently doing thing with templates that seem crazy as an experiment.
given this struct
Code:
template<class T>
struct X
{
template<class U>
void Foo(U a);
};
How do you call Foo?
[spoiler]
Code:
X<char> bar;
bar.template Foo<int>(3);
[/spoiler]
I almost fell off my chair when I read this:
Quote:Well, you haven't said what source control system you use, which greatly influences your choices.
(not comprehensive)
Git -> GitHub or Gitorious are the obvious choices
Mercurial -> BitBucket, Google Code is adding support too
SVN -> Savannah, Google Code, SF.net
Bazaar -> Launchpad
CVS -> upgrade to a newer source control system
It looks about right to me?