ProtusMose.com

A slick and polished mess.


follow protusmose at http://twitter.com

Archive for Apr, 2009

Apr

30

What? Wait, really?

Posted by: mose

Posted in: Life

Subject: XXX added you as a friend on Facebook…

XXX added you as a friend on Facebook. We need to confirm that you know XXX in order for you to be friends on Facebook.

This actually kind of floored me. What do you do when someone who was involved to a degree in almost killing you and radically altering your life in a traumatic way wants to add you on facebook out of blue? Do I ignore it and hope he goes away? Do I add him and pretend like it never happened? What doe she think is going to happen? What is he expecting out of this? Should I accept it as a sign of maturity and forgiveness? Do I forgive them? I do. I’m not sure that means I want to talk to either of them.

Man.

I’m supposed to be studying…

Comments (2)


Apr

15

My “Saturday” morning.

Posted by: mose

Posted in: Fantastic!

I don’t care what conventional wisdom says. A homemade chocolate milkshake and porkrinds is a perfectly acceptable 9:30 AM snack.

Read Comments (1)


Apr

05

It’s two things at once!

Posted by: mose

Posted in: Fantastic!

import javax.swing.JOptionPane;

public class FahrenheitToCelciusTwo {
public static void main(String[] args) {
//Prompt the user for input
String inputValueString = JOptionPane.showInputDialog(
null, “Please enter a temperature in Fahrenheit:”);

// Convert string to double
double inputValue =
Double.parseDouble(inputValueString);

// Calculate temperature in Celcius
double temperatureInCelcius =
(5.0 / 9) * (inputValue – 32);

// Display Results
String output = “The temperature in Celcius is ” + temperatureInCelcius;
JOptionPane.showMessageDialog(null, output);
}
}
********************

This program is both boring and awesome.

If you know programing, it’s probably readily apparent that this is a beginner’s work and you could probably think of 10 different ways to do it better.

If you don’t know programming, that’s pretty impressive, eh? The best part is, after two hours of tweaking, it works.

Finally.

Now I can go take a shower and go to bed.

Read Comments (0)


Apr

04

I’m tired. Here’s a video.

Posted by: mose

Posted in: Just for lolz.

I get sick of watching concert footage of great bands and seeing horrible lame crowds. Here’s a good video describing what is horrible hardcore dancing and what is awesome hardcore dancing.

Enjoy.

Comments (3)