May 14, 2008

Java Simple Physics



Well with classes over, I wanted to at least do something with the year of University Physics torture I have endured. Thus I present Java Simple Physics. It is just a quick physics example that uses the kinetic and potential relationship to have balls with different gravity constants drop then bounce with no loss of energy. It took a few hours to get right, mostly because I either did not know what I was doing, or was over complicating things. I hope to slowly improve on this concept till I have a VERY simple physics engine. Hey, it can only help to have a physics engine laying around, one day I might actually need one.


import javax.swing.*;
import java.awt.*;

public class Physics extends Thread
{
private int worldx = 200, worldy = 900, worldtime = 15;
private JFrame frame = new JFrame();
private Ball ball,ball1;

public Physics()
{
// Set up frame
frame.setSize(worldx,worldy);
frame.setVisible(true);
// Make new ball
ball = new Ball(400,450,9.8,worldx,worldy,worldtime);
ball1 = new Ball(400,450,3.8,worldx,worldy,worldtime);
}

public void run()
{
while(true)
{
try
{
// Cover old draw with fresh screen
frame.getGraphics().fillRect(0,0,worldx,worldy);

// Move and paint ball
ball.move();
ball.draw(frame.getGraphics());
ball1.move();
ball1.draw(frame.getGraphics());
Thread.sleep(worldtime);

}
catch(Exception e){System.out.print(e);}
}
}

public static void main(String args[])
{
Physics p = new Physics();
p.start();
}
}

class Ball
{
private double gravity = 9.8, t;
private double x,y,v,a,m,dx,dy,dv,k,u;
private int worldx,worldy,dir=-1,width = 90;

public Ball(int xin, int yin, double g, int wx,int wy, int time)
{
// Set Constants
worldx = wx; worldy = wy-width; t = time;
// Reduce gravity to fit with drawing refresh rate
gravity = g * .02;

// Center ba;; on x axis
x = worldx/2 + width/2;

// Set varables
y = yin;
v = 0;
a = 0;
m=.8;

// Preset u and k values based on varables
k = (m * gravity * (worldy - width)) - (m * gravity * y);
if(k < 0){ k = 0; }
u = m * gravity * y;
}

// Catch and reverse
public void move()
{
// Calculate u and k
k += u - (m * gravity * y);
u = m * gravity * y;
//Find dv based on k = .5mv^2
dv = ((2 * k) / m) - v;

// Catch and reverse on k or u < 0
if(k <= 0 && dir == 1)
{
dir = -1;
v = v*(-1);
a = a*(-1);
k = 1;
u = m * gravity * worldy-width/10;
dv = -1;
}
else if(u <= 0 & dir == -1)
{
dir = 1;
v = v*(-1);
a = a*(-1);
u = 0;
k = m * gravity * worldy-width/10;
dv = ((2 * k) / m);
}

// Finalise new movement
y += ((1+dv)*dir)/t;

// Print out values when needed
//System.out.println("x:"+x+" y:"+y+" u:"+u+" k:"+k+" - dv"+dv*dir);
}



public void draw(Graphics g)
{
// Draw to screen
g.setColor(Color.GREEN);
g.fillOval(worldx - (int)x, worldy - (int)y - width/3, width, width);
}

}

May 4, 2008

Student Senate Issues

I rarely get into politics, especial with the student government on campus, however this year the student senate has been quite poor in my opinion. Normally, student government is for the students in majors that are not quite as time consuming as the science majors or some of the arts majors, and do not have a decent job to keep them otherwise preoccupied during the semester. You can see why I generally ignore what they are up to, because I am usually far too busy with school and work, and at the same time nothing they do really has any effect on me. Other then somewhat interesting requests for equipment from the department I work for on campus.

What has greatly annoyed me this year is the utter lack of sense that the senate in general (not everyone) has displayed in their attempts to deal with some of the issues we have had on campus this year. One of the main things was a majority of the senate actually wanting to charge all the students (aka me who was sleeping at the time) for the student rioting earlier this year. Then they create "Task Forces" to deal with these issues, but to my knowledge nothing has come from these decisions. Non of this really surprises because I have actually been in classes with a few members of the current student senate and the dedication to their class work was just as lacking as the senates current abilities.

Interestingly, this is not just my single opinion. I know quite a few people in the senior and junior classes, and most of us do not have any great affinity for the student senate. More the one of us has actually witnesses a member of the senate displaying their opinion of how they apparently deserve a superior status then their follow students. Of course this is not going to go unnoticed, and one of the more entertaining results is an article in the clock stating on the status of the student senate this year. I think it sums them up perfectly in one sentence...

"I hope that this letter speaks to the more sensible members of Senate, and uses next year to rebuild the bridges that they have burned in their unethical reign as perceived supreme lords of the University."

Full article => Student org speak out about Student Senate behavior. Please note that I almost never read the clock, their opinions on things are generally very different from mine, however this was actually interesting enough for a friend to mention the article to me. Now I am sharing it as well, enjoy!

April 9, 2008

Download files from terminal

I had come across a mp3 file online that would only load half way, or so I though. Apparently it wold load the whole thing but Safari thought that it was bigger than that, so it would never give me the option to download it. Frustrated after having it load a few different times I looked for a better solution, the Terminal! I figured that there must be some way to download file from terminal. I knew of wget, however that is not installed by default in 10.4, and I did not feel like downloading and installing the fink packages. Instead I found the cURL command...


curl -o "address"


The -o is for file output, see the curl manpage for more info.

April 5, 2008

PHP RC4 Encryption

One of the harder encryption problems comes when you need to encrypt something but need to also be able to decrypt it as well. I ran into such a problem recently in PHP. The regular simple methods such as sha1 or MD5 with a simple salt would not work because they are only one way, and to make matters worse the crypto modules I needed for a solution where not installed on the server.

Luckily I stumbled upon RC4Cript a simple php class that supports a simple RC4 encryption. Although RC4 is not exactly the safest encription Wikipedia, it was fine for simply securing the data I had, and I did not feel up to the task of coming up with a better solution. It took a while to get it to work because I was confused into thinking that I needed bin2hex() after encrypting it, however that is simply to give a more readable form, leave it as is when using the encrypted text in the decrypt function. Other than that, the source has an example that is pretty self explanatory.

April 4, 2008

Sonic CD in XP




After such a ridiculous week I felt like digging out my copy of Sonic CD. I had found this at a game store at home many years ago. It was one of the best purchases I have ever made, not just because the game is awesome, but because the soundtrack is in CD form so you can just pop the cd in a player and listen. Something I was ecstatic about finding out back when I was quite a bit younger and CD players where all the rage. Ah, that was a while ago back before IPods ever existed.

This was also one of my favorite sonic games because of two levels, wacky workbench, which had electrified floors which would shoot sonic to the ceiling for better or worse, and stardust speedway which was just long twist and runs with a awesome background and music. However after getting to the last level I was reminded of the one really horrible part in the game, the huge pit you must cross at the last level, which I always fall and die over and over again at.

If you even get a chance you grab this game take it, a great addition to a classic game collection, definitely better then the rather lame 3D attempts at a sonic games that have come out in recent years. 2D Side Scrolling FTW!

The game was coded for Windows 95/98 so you will need this patch to play it in XP however no idea about Vista.

April 3, 2008

Fortran 95 BattleShip


Because I want to try taking every programing the CS Department offers this semester was Fortran. Definitely not quite like the other languages I know, but after getting used to it, I can do almost everything I can with C short of graphics and some string manipulation. After some short homework assignments, we where given our first big assignment, two player ascii battleship. Simple enough to complete in the 4 weeks we where given. I decided however to up the ante and add a simple ai system for one player games. Nothing fancy, just a random seek, with a focus on areas when something was hit, sill very easy to beat every-time. Yet it was somewhat impressive and if nothing else made it easier to test the program because I did not have to play against myself everytime.

I have uploaded it here with the Mac and Windows compiled versions plus source.

Fortran was definitely not designed with games in mind, but as with most programing languages with some careful planing and a bit of force you can easily get around such constraints.

March 30, 2008

Best 404 Page EVER!

I was working on the AMS 404 page to make things more user friendly and also add some security, and ended up I stumbling upon this. Needless to say I was very amused.

Depressed Server 404

March 26, 2008

Interesting webcomic


It is not often I find a good web-comic that relates to my major. (Thanks Norman!) xkcd is one of the better ones I have seen, with the topics ranging from programing to zeppelins to the inappropriate. The image above is the comics map of online communities, which is awesome. Some other favorites include Useless (mathematics can't explain love), Compiling, Exploits of a Mom, A Minus Minus (Very Funny) and IN UR REALITY (i can has cheeseburger). However there are many more, just be careful it has already caused a massive amount of procrastination... You have been warned!

March 23, 2008

Happy Easter

Well easter has come once again, which means...

1. Lent is over!
2. Going to eat a lot of candy!
3. The beard is gone!
4. Spring changes for the blog.

I watched my cousins hunt for easter eggs, which we all colored yesterday, and this got me thinking. Easter eggs are not only in the real world. A quick search for easter egg reminded that there are a lot of computer ones to find. So happy hunting... EggHeaven

March 21, 2008

Laser + Moon = Fake

While on vacation a relative of mine was some what excited about a certain beer company and their viral advertising. Apparently they claim that on the 21 (Full Moon) they will be shooting a laser projector at the moon and displaying their logo. I am not very convinced. Also I will not mention the company, because I do not drink beer, nor am I going to support their fake sounding viral advertising campaign.

First of all I had not even heard of this stunt, which most of the gadget blogs that I read would have had this covered. The shooting down of the satellite is a good example. Also there where some other things that just did not add up, after doing some research I came up with some interesting facts that seem to say that this is fake.

It is not unheard of to shoot a laser at the moon, it is how we get a actuate distance, however...
"They beam the laser out through a large (5 meter class) telescope, and look for the reflection in that same telescope. By sending the beam out through the telescope, you get a much tighter beam than you would from just the raw laser, and the large telescope gathers 700 thousand times as much light as your eyeball would, making it much easier to see the reflection. (5 m vs. 6 mm squared = 700,000. A fully dilated human pupil is about 6 mm IIRC.) <-Full Page" That alone makes this impossible, however what makes it worse is that they chose a full moon. Looks great, but the laser would not be nearly powerful enough to be visible over the raw sunlight bouncing off. A new moon would be much more realistic.

Oh well, I will be looking up to see if there is something on the moon, but I highly doubt that I will see anything. I guess they could still try, at least then it would not be fake, just an example of poorly thought out design,

UPDATE: After seeing nothing last night, and looking online it looks like this was indeed fake. "The Boston Globe assures us this is a hoax. From the short article: To repeat: This is viral advertising; the company isn't actually going to project a laser beam 237,000 miles into space."

There you have it, a good example of poor and arguably FALSE advertising.

March 17, 2008

Ph34r the Gr33n





I have always loved the look of clovers, sitting in the grass during summer it is hard to miss them, so I was happy this morning to see google had them on the banner in honor of St Patrick's Day. Although I was not taking part in the alcoholic side of the holiday I was definitely wearing green today. Note: my favorite color is green.

Happy St Patrick's Day Everyone

March 16, 2008

School and Sleep Don't Mix

Recently I over heard someone saying that they rarely get 8 hours of sleep, which got me thinking that I also rarely get 8 hours as well. Normally sleep is around 11:45PM to 6:45AM so on average about 7 hours, which is not bad, but still leaves me tired in the morning, daylight savings did not help either. Luckily for me I do not have heavy physical activity in my daily schedule which helps reduce my sleep needs. Sitting in class, sitting at work, sitting at lunch, sitting doing homework and sitting in bed. Recently I have come to notice school does not help you stay physically fit, luckily going to school near mountains fixes that. Oh well, such is the life of a college student.

6 Hours and I am Sleepy
7 Hours if I am Lucky
8 Hours and I am Spoiled
9+ Hours and I am lazy.

I did a little research about why eight hours are recommended, because we always hear it, but why is it eight?
"Before the experiment began, the subject routinely got about six and a half hours of sleep. During the first night of the experiment he slept eight hours, the second night 10 hours, the third night 12 hours, and the fourth night 14 hours. Over the next several days, he began to reduce the number of hours slept, eventually falling to a steady eight hours and 13 minutes. This experiment was performed repeatedly with all types of people, with similar results, and this is where the recommendation of eight hours comes from."
Taken From Here...

There you have it, that is why they recommend eight hours of sleep, well I found it interesting at least.