Massive Fireworks Experiment
I wantz!

Here’s the dragon questIX final boss savegame with a party around 20+/50-ish including 2 sage’s provided by the nice people from www.javaforums.net
Download the savegame here!
TERENA Webcam Koningsplein, Amsterdam
TERENA (Trans-European Research and Education Networking Association) coordinates and carries out technical activities and provides a platform for discussion to encourage the development of a high-quality computer networking infrastructure for the European research and education community.
Watch a random livestream about some guys that are bashing a pos.
mms://96.231.51.225:6666/
I was reading a bit about MSSQL and stumbled on this page. It’s a nice looking script to get the table size and you never know when it might come in handy
If you have your own tricks or tips, let us know!
declare @RowCount int, @tablename varchar(100)
declare @Tables table (
PK int IDENTITY(1,1),
tablename varchar(100),
processed bit
)
INSERT into @Tables (tablename)
SELECT TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_TYPE = ‘BASE TABLE’ and TABLE_NAME not like ‘dt%’ order by TABLE_NAME ascdeclare @Space table (
name varchar(100), rows nvarchar(100), reserved varchar(100), data varchar(100), index_size varchar(100), unused varchar(100)
)
select top 1 @tablename = tablename from @Tables where processed is null
SET @RowCount = 1
WHILE (@RowCount <> 0)
BEGIN
insert into @Space exec sp_spaceused @tablename
update @Tables set processed = 1 where tablename = @tablename
select top 1 @tablename = tablename from @Tables where processed is null
SET @RowCount = @@RowCount
ENDupdate @Space set data = replace(data, ‘ KB’, ”)
update @Space set data = convert(int, data)/1000
update @Space set data = data + ‘ MB’
update @Space set reserved = replace(reserved, ‘ KB’, ”)
update @Space set reserved = convert(int, reserved)/1000
update @Space set reserved = reserved + ‘ MB’select * from @Space order by convert(int, replace(data, ‘ MB’, ”)) desc
To get the current database size in MSSQL 2008 (untested on previous versions) , you can execute this command sp_spaceused using the MSSQL server management studio or any other MSSQL db management tool(s) you prefer.
After the invisible woman and who not, you can add the invisible bike to the invisible list.

Some people just do anything to get on google maps.
reported by CCP Wrangler | 2010.06.24 16:06:43 | NEWPilots,
After an unexpectedly long downtime following the physical relocation and updating of the Tranquility server cluster, we welcome you back to the EVE universe. For those of you not following along at www.eveonline.com, Twitter and Facebook, we discovered an issue during the final testing of the database configuration which, once fixed, required a few more layers of testing before we could begin the process of bringing the server back online. This downtime has been unprecedented in many ways and CCP understands its responsibility to address it as such. Once our database team catches some sleep, they will write a dev blog detailing the delay, our decision process for extending the downtime and the steps we took to bring back New Eden as stable as possible. That will be posted in the dev blog section on www.eveonline.com.
In gratitude for your patience and after consulting the Council of Stellar Management, we will give an extra pool of skillpoints to all accounts (paying and trial) that were active at the beginning of this downtime, on one character per account. This skillpoint pool will be appropriately sized for the downtime time frame, universal across all accounts regardless of character attributes/implants and may be applied as each player wants.
This will be done through a new system in the development pipeline, currently scheduled for deployment next Tuesday’s patching opportunity* during regularly scheduled downtime. Since it has been “hot dropped” into the development plans, we will be providing step-by-step instructions for how to use it as soon as possible.
Thank you again for your understanding and patience. Please feel free to discuss this in this official thread.
Fly Safe,
The EVE Online Development Team
____
*Coincidentally, next week we had already been planning to give another gift to all pilots. More on that gift Soon ™.
Hmm, i wonder what the gift will be.. new ship?
[Update]
Yep, turns out i’m actually right. Each active account can redeem the new ship called “Primae”.

Some people just do anything to get their 5 minutes of fame.