Jump to content

g-ram

Active Members
  • Posts

    95
  • Joined

  • Last visited

Everything posted by g-ram

  1. heres mine, 3 of the PC's were free, and one of them is an old "Hppav" xbox's were about $40 a peice. my pc was $800 the acer was $350 my Touch pro was $200 so in all, I have spent about $1430.
  2. Is it possible for someone to update the AIR app with the new IRC? #hakhouse @ irc.revision3.com
  3. I two saw that bundle.... and cried accordingly Last month I spent about $900 and got no where near that beast of a computer setup.
  4. On the website it says to run 1024x768 you need a 5mbit down/1mbit up connection (i.e. FIOS) which is only available in VERY select areas in the US.
  5. I may have a whole set of links on my other computer for a similar project i was going to do. I may have deleted them though when the project was scrapped because i lost my funding. IIRC, none of the companies that sell them list the prices, you have to set up a sales inquiry and stuff. I should be able to find out tomorrow.
  6. or be super 1337 and edit his hosts file
  7. Hi... I'm old. My name is Graham aka CyKeD Favourite game: TF2 Favourite OS: Slackware Favourite console: Xbox360 Nationality: American Accent: Midwestern? Sex: Male Age:61 Race: Mutt Height: 8' 11" Status: Single Build: Very fat Favourite band: Tool Favourite book: Shampoo Planet Favourite author: Doug Coupland Favourite movie: High School Musical 1,2, and 3!! Favourite director: none Favourite TV Show: Hannah Montanah Favourite actor: Zac Efron Favourite actress: Ashley Tisdale Favourite Pinup: Boy George Favourite Comedian: George Carlin Other hobbies: Non Car: 01 Toyota Echo Occupation: Rape bystander
  8. they only have limited quantities right now. (only enough for the cast?) but darren said "sometime in the near future" they were going to open a hak5 store with all kinds of stuff in small quantities to see if they sold well and if they did they'd get more.
  9. everyone who has done a portable xbox has just put it into a smaller case and slapped a screen on it. None of the mods that I have looked through use a battery solution.
  10. http://hackedgadgets.com/ http://www.uchobby.com/index.php http://www.evilmadscientist.com/index.php http://dailyduino.com/ doesn't really count, but great blog anyway http://lifehacker.com/
  11. Its even in the hak5 wiki! http://wiki.hak5.org/wiki/Vinyl_Dye
  12. UPDATE: Dev kits on sale for $99 http://www.globalscaletechnologies.com/p-2...ug-dev-kit.aspx
  13. Technically a mac is a personal computer
  14. its has a USB port, and it'll prolly have to be re-reverse-engineered (which is fun :] ).
  15. what was the signature?
  16. It's due to the death of ask jeeves I swear.
  17. it dont see it having much potential for jasager.... but for the interceptor... mmmmmmmmmm
  18. you mean it should be sent to the mac address right?
  19. is there some sort of promo code or link?
  20. I watch the big bang theory and half the time when sheldon or any of the other "nerds" talk about something, i usually know what they are talking about.. then I go on to explain it during the next commercial break.
  21. Here it is in java. (I even took time to document it!! :) ) EDIT: Finally got it right :) public static int recurse(int[] a, int x) { //a: the array your looking for //x: your location in the array if (x == a.length -1) // base case (end of the array) return a[x]; else if (x >= a.length - 3) // if one or two spots away from the end of the array add current value + end value return a[x] + a[a.length - 1]; else { if (a[x + 1] > a[x + 2]) // if "b" is greater than "c" we make "c" the current value return recurse(a, x + 2) + a[x]; else { if (x == a.length - 4) //if it's only 3 away from the end, we can't use x+4... { if (a[x + 2] + a[x + 3] < a[x + 1] + a[x + 3]) // so we use x+3 instead (while doing the same thing) return recurse(a, x + 2) + a[x]; else // same thing here return recurse(a, x + 1) + a[x]; } else { if (a[x + 2] + a[x + 4] < a[x + 1] + a[x + 3]) // if (c + e) < (b + d) we make c the current value return recurse(a, x + 2) + a[x]; else //Otherwise, make b the current value return recurse(a, x + 1) + a[x]; } } } }
  22. I was going to post something along the lines of your post but right before i posted i realized that i was missing that part and I didn't feel like solving it but yea. thats how I would do it too. I even wrote up the code for it and will post it if you guys want..
  23. I didn't know anyone listened to that show here... I used to listen to it but trailed off about 6 months ago, now im gonna have to go back and at least listen to the feb episodes, if not the entire last 6 months. :)
  24. That's the reason for the new rules... more crashes = more viewers.
×
×
  • Create New...