shark amongst salmon

Drops in the bit bucket.
Jul 22
Permalink

I have discovered something

life would be boring if we had all the answers. I need to stop looking for them. I’ll find them eventually.

Jun 25
Permalink

No use for a title

Sometimes I use tumblr as a place to post the tangents I go off into in my mind. This is one of them. What the hell?…. Ill explain later…

Jun 13
Permalink
Jun 02
Permalink

He listened to the music, long after it stopped playing.

Well, she really managed to cause a decent amount of havoc. Eh, can’t say I didn’t try.

May 26
Permalink

bwahahha

sudo make me sandwich

May 25
Permalink
Yeah… 

Yeah… 

May 23
Permalink

My teacher makes NO sense.

/* Maus Stearns CIS 15 AGThis program converts Fahrenheit to Celsius then Farenheit to Rankine and then Celsius to Kelvin.*/
#include
//This converts fahernheit to celsisus, this also returns the value of the celsius in order to calculate celsius to kelvin later
float f2c (float far) { const float fahren2cel = 100 / 180.0 ; const int thirtytwo = 32; float celsius = (far - thirtytwo) * fahren2cel; printf(“Fahrenheit to Celsius\t\t%.2f\n”, celsius); return(celsius);}
//Same princepal here but the return is void because the value isnt going to be used for anything else
void f2r (float far) { const float addednumber = 491.67; const int thirtytwo = 32; float rankine = (far -thirtytwo) + addednumber; printf(“Fahrenheit to Rankine\t\t%.2f\n”, rankine ); }//This one grabs the result ouput from function f2c to calculate the kelvin
void c2k (float result) { const float addednumber2 = 273.16; float kelvin = result + addednumber2; printf(“Celsius to Kelvin\t\t%.2f\n”, kelvin); }
//Main just grabs the data and also helps move the variable over
int main () { float far; printf(“This Application takes the tempature in Fahrenheit and converts it to Celsius, Rankine, and then the Celsius to Kelvin\n”); printf(“Please enter the Fahrenheit to calculate: “); scanf (“%f”, &far); float result = f2c(far); f2r(far); c2k(result);}

He docks me for putting the scanf information in the main function…. Die evil teacher…

May 22
Permalink
I finally purchased this poster. I have wanted it for years. ;D

I finally purchased this poster. I have wanted it for years. ;D

May 19
Permalink
Permalink
Huzza, seems simple but I’m happy I get it! Now functions make sense although I don’t understand why our teacher wanted us to use the extra math functions when the goal of the whole thing is just to get the basics of how functions work and the return values of them… Doc Oldham….

Huzza, seems simple but I’m happy I get it! Now functions make sense although I don’t understand why our teacher wanted us to use the extra math functions when the goal of the whole thing is just to get the basics of how functions work and the return values of them… Doc Oldham….