Die with another gay

July 28th, 2010
110 views No comments

http://www.javaforums.net/forum/mgallery.html;sa=media;id=2

Arkie Everything else

[NDS] Dragon Quest IX final boss savegame

July 26th, 2010
230 views No comments

http://www.blogcdn.com/www.joystiq.com/media/2008/12/dq8dcro49.jpg
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!

Arkie Everything else

Fasted way to go down hill

July 25th, 2010
29 views No comments


Fat Kid Bounces Down Steps On His Head – Watch more Funny Videos

Arkie Everything else

Dangerous shit

July 19th, 2010
49 views No comments

Srsly, pretty dangerous.

2010_07_19_dangerousv2

Arkie Everything else , ,

Eve online pos bash livestream!

July 10th, 2010
56 views No comments

Watch a random livestream about some guys that are bashing a pos.
mms://96.231.51.225:6666/

Arkie Everything else

JavaZone Trailer- Java 4-ever

July 1st, 2010
91 views No comments

Arkie Code and Stuff

Checking the table size

June 29th, 2010
78 views No comments

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 asc

declare @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
END

update @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

Arkie Everything else ,

Getting the database size in MSSQL

June 29th, 2010
132 views No comments

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.

Arkie Code and Stuff ,

Invisible bike!?

June 28th, 2010
77 views No comments

After the invisible woman and who not, you can add the invisible bike to the invisible list.
http://www.totalprosports.com/wp-content/uploads/2010/06/Invisible-bike-595x436.jpg

Arkie Everything else

Horse boy on google maps

June 25th, 2010
82 views No comments

Some people just do anything to get on google maps.

Arkie Everything else

Eve online free gift!

June 24th, 2010
191 views No comments
reported by CCP Wrangler | 2010.06.24 16:06:43 | NEW

Pilots,

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”.
http://cdn1.eveonline.com/community/devblog/2010/primae.jpg

Arkie Everything else

dutch footballfan wk 2010

June 23rd, 2010
95 views No comments

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

Arkie Everything else

World Premiere: 20 Nao Robots Dancing in Synchronized Harmony

June 22nd, 2010
61 views No comments

For nerds (like me) that drools about anything related to robots, here’s an awesome vid with dancing robots

Arkie Everything else

ASP.NET Databind a repeater control

June 21st, 2010
122 views No comments
<asp:Repeater ID="rptGetData" runat="server">

<ItemTemplate>
<tr>
<td width="100px">Output:<%#Container.DataItem("tableData") %> </td>

<td width="100px">Output: <%# DataBinder.Eval(Container.DataItem, "someOtherData")%></td>
<td>Output: <%# DataBinder.Eval(Container.DataItem, "someMoreData")%> </td>
</tr>
</ItemTemplate>

</asp:Repeater>
ASP.NET DropDownList and RequiredFieldValidator

Arkie Code and Stuff

For fuck sake?

June 16th, 2010
82 views No comments

You better believe it!
http://www.howstrange.com/gallery/fo_fuks_sake.jpg

Arkie Everything else