Jump to content

rFayjW98ciLoNQLDZmFRKD

Dedicated Members
  • Posts

    1,219
  • Joined

  • Last visited

Everything posted by rFayjW98ciLoNQLDZmFRKD

  1. Ohhh... Purdy! It's going to take me sixty seconds to get used to the new forums.
  2. When I was a dishwasher they called my the "IT dishdog." I wrote bash scripts to print ASCII art though the chef's printer. :-)
  3. The wii is not meant for the hard core gamer, it is meant to play unique games, such as wii sports, not first person shooters.
  4. I should of took a picture when my Twilight princess clock was at 13:37
  5. I'm a full time linux user, windows is icky!
  6. #include <stdio.h> #define SCALE 10000 #define MAXARR 2800 #define ARRINIT 2000 main() { int i, j; int carry = 0; int arr[MAXARR+1]; for (i = 0; i <= MAXARR; ++i) arr[i] = ARRINIT; for (i = MAXARR; i; i -= 14) { int sum = 0; for (j = i; j > 0; --j) { sum = sum*j + SCALE*arr[j]; arr[j] = sum % (j*2-1); sum /= (j*2-1); } printf("%04d", carry + sum/SCALE); carry = sum % SCALE; } } do I win? :-D
  7. real men compile Linux systems from scratch! :-D
  8. I think he is ashamed that he was looking at men :-)
  9. Have you looked at Magic-1? Is a whole computer built from TLL logic gates. You could use a low powered processor such as the Z80.
  10. "good hacker like template" What you should do is set up a BBS! That is the best hacker like template. Communicating via telnet, you cant get any more hackish then that.
  11. At some wal-marts (usually the super wal-marts) the have the price check scanners that use some sort of wireless networking to grab info. What i interesting about these if you push two of the buttons at the same time (I cant remember witch ones) you get an on screen keyboard. my two cents.
  12. I have an Idea, go to your local Barns & Noble, Amazon, or local library, get a book on C, C++, C#, or any other language of your choice, study it, and become semi skilled. Code your game, and release it over the tubes under a GNU license. You learn a new language tat you can use to do other things with, have the game that you want, and another free piece of free software that everyone can enjoy! :-D
  13. la la la, I cant hear you!!!! I honestly don't see the the point in MMORPG, If I want social interaction, I will go to an IRC room, they are free. :-D
  14. my vista decison upgrade chart: do you want to upgrade ----> use linux! :-)
  15. you could place a frame in the page that you want the streaming image on, and set the framed page to stream every second. This way you dont need any player.
×
×
  • Create New...