On a different subject, the weekend is over which means I'm done with work, yay! It was a good weekend at work. There actually wasn't a day that I didn't want to go in. Which is unusual cause I usually dread going in, at least once during the four day span. Oh well, I'm not complaining. There isn't much else going on with me right now. My roommate is already going back home next weekend so if anyone wants to come visit, I have an extra bed in my dorm for the weekend. Just let me know before you come so I can clean a little. Haha.
So like I said in my last post I didn't know what to talk about cause everything I do no one will understand. Well I've decided to just go ahead and talk about it cause thats me and if you don't want to read about it skip it. Well lately in hobowars, I've been training like crazy! I'm almost at 12,000 total battle stats and half of that is speed! Which is really good, also 5,000 of it is power, which for those who don't know, means I get lots of really powerful hits during a battle. Which is the best way to win! So I'm excited about that. Also another accomplishment in hobowars is on the original (there are three versions, hobowars1, hobowars2, and facebook hobowars) I play hobowars1 and facebook hobowars. But in hobowars1 I am still a n0ob and very weak, but I was able to finish the first set of adventures. Which is a very good accomplishment. That about does it for hobowars.
Like I said before, I have been teaching myself Java, specifically GUI, or graphical user interface. Basically what you do is take words and create graphics. It's a rather hard concept to grasp. So I've taught myself how to create a window with stuff within this window. Here is the code behind it:
import javax.swing.*;
class hello {
public static void main(String[] args) {
JFrame f = new JFrame("YO!");
JPanel p = new JPanel();
JButton b = new JButton("Click Here For A Virus");
p.add(b);
f.setContentPane(p);
f.show();
}
}
So it might look a little confusing to the untrained eye but it really is very basic. Here is a picture of what it produces.

As you can see it makes a frame/window and then I created a button inside the frame and chose what to have the button say. I'm now working on making it actually doing something when the button is pushed. So I still have lots to do.
Thats it for now, thanks for reading and until next time, adios.

2 comments:
yea! I'm the first. Its obviously the beatles, one of my favorite bands, and a very good song. Very contemplative (not really the word I was looking for, but you get my drift)
WOW, 12,000 battle stats, I've kind of stopped training, using all my T to beg, I got my Symbiote, but am still like 17 million away from Thor's hammer. I'm thinking in like a week and a half I'll be back to stat training.
when are you coming home for a weekend. Mom said you might make it the weekend after your birthday...
Dang well I am second! and Yes it is the Beatles! I am glad to see you have a blog now. Did you ever find quarters the other day? Have a good day!
Post a Comment