What I did today

I have a 13" monitor, and it looks giant here.
Also, where the heck did you get 22 feet monitor?! :smiley:

lol

I wrote this naughty little bastard to handle all my casting needs.



public class Caster<T>{
       private Class<T> t;
		public Caster(Class<T> t){
			this.t = t;
		}
		public T[] cast(Object[] in){
			
			if(t == null){
				return null;
			}
			
			@SuppressWarnings("unchecked")
			T[] temp = (T[])Array.newInstance(t, in.length);
			for(int i = 0;i < in.length;i++){
				if(in[i] != null){
					temp[i] = (T)in[i];
				}
			}
			return temp;
		}
			
	}

First I think I only one, who put the monitor on the stand(books, etc ^^)
But now when I see same like 10 times from different ppl I think its normal XD

oh, is that a fender-amp ?

It’s all about ergonomics :slight_smile:

Mike

It is indeed.

Trying my best to make a gui for my rpg :slight_smile:

Thats… pretty evil.

made a notebook stand :wink:

Spent the whole night trying to figure out why the Xbox controller library was crashing the entire JVM. The weird part was that it was crashing in random places all the time. The most fun (not) crash was when it crashed on this function:


	public int getID(){
		return id;
	}

Yep. After spending several hours thinking about what kind of insane concurrency issue that could cause this, we finally found a crash report which seemed to imply that it was a HotSpot JIT compiler bug. We updated our JDKs and the error seems to have disappeared… X___X

Gah. Which JDK was it?

Cas :slight_smile:

Discovered a really great pixel art / animation program: http://www.aseprite.org/
My daughter promptly took over my computer and made this:

ā€œWalking Man Plays Flappy Birdā€

That’s genius.

Spent the entire day learning my german writing off by heart , ugh 400 words.

An ancient Java 7 Update 45 one…

Haha , look , I got more medals this month than heroes grave dev! My entire life is complete now!

I remember the one time I got on that chart… good times… good times…

I think I was once Top 3 or something. Felt good, gamification ftw :smiley:

AHHHHH
SOOO GOOOD

(As you can tell i’m horrendous at art)