0
so, I may actually end up with a summer internship this summer... Today I got an email through the GLLUG (greater lansing linux users group) about a local startup computer security company (periscan.com). they were letting the group know that they were interviewing for both full-time positions and summer internships. well, i spiffed up my resume and sent it over. hopefully i'll at least get...
Read More
3am:
That sounds like a great opportunity! Good luck!

I hope you did well on you tests!
0
Man, i love wireless.... im sitting here outside in the sun stealing someone's unencrypted wireless connection. i love it when i can enjoy the weather and the internet at the same time. i
0
spring has finally arrived... beautiful day out today, spent 2 hours walking around campus enjoying the weather. if only my camera hadnt run out of batteries I could have taken some good pictures of life being breathed back into the area. the other day i realized how much i love this time of year. the time between the shit of winter and the muck of...
Read More
3am:
Philosophers make the world go round.

Good luck on your tests! I'll send positive juju your way.
vitriol:
Yeah....cheap candies make the world look better sometimes wink
0
well, it seems im settling in well here... finished up a few more things in my profile here and started posting to groups and the boards, should be a fun stay here in my new home...
0
First post, oh boy... So i finally got around to joining up. Now im checking out all that there is to do on the site. will actually update when i have time between classes
eternalidiot:
The only thing that matters.

#include <iostream.h>

void binary(int);

void main(void) {
int number;

cout << "Please enter a positive integer: ";
cin >> number;
if (number < 0)
cout << "That is not a positive integer.\n";
else {
cout << number << " converted to binary is: ";
binary(number);
cout << endl;
}
}

void binary(int number) {
int remainder;

if(number <= 1) {
cout << number;
return;
}

remainder = number%2;
binary(number >> 1);
cout << remainder;
}