Jump to content

madscientist56

Member
  • Posts

    901
  • Joined

  • Last visited

Everything posted by madscientist56

  1. This http://linustechtips.com/main/topic/245395-working-apple-1-computer-sold-by-steve-jobs-himself-is-up-for-auction/#entry3368838
  2. amd cpus work fine with planetside 2, I cant even tell the diffrence between them and intel ones, if there is a difference its probably no more than a few fps depending on the cpu
  3. Whenever i turn on m PC I don't get an output but, if I wait a second and then restart it works fine. Never looked into it because I could always get it running it just takes a little longer.
  4. do you think i should repost this topic now that I changed it to names?
  5. not sure is this has been done on this forum yet, i searched a bit and couldn't find anything, if it has tell me. btw i got this idea from "Coconut" on the OPO forums, just remember to adhere to the COC, here's how you play, ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- The Alphabet Game It's easy just text the alphabet with names beginning with of course the letter A follow the next word with the next letter of the alphabet and text a name that begins with the letter B... EX: Adam EX: Bill EX: Cameron etc and when the letter Z gets a name then the next person to post will start the next name with the letter A and we'll start again, so let's begin...
  6. "oculus VR CEO, Brendan Iribe, told the audience at Web Summit 2014 in Dublin, that a consumer-version of the company’s Rift VR headset is “close”. While he understandably declined to offer a timetable for launch, he says the latest version of the headset, Crescent Bay, is “largely finalized for a consumer product.'” source: http://thenextweb.com/facebook/2014/11/04/oculus-ceo-says-consumer-rift-vr-headset-close/ this might be a repost i was in a hurry so i just had a quick look but, at least we have some kind of idea of when the rift will come out now, I might buy it for Christmas in 2015.
  7. Ubisoft just added a little dirt to their hole
  8. They are acids because they are electron donors in a chemical bonding. The "amino" part of the name stems from the fact that they all have an amine group ( -NH2 ) at one end. Amino acids are called this due to the Amine N-R3 group and the O-C=O carboxylic acid group found in all of them. btw i got this from answers.com and it was originally answered by "Rreppy"
  9. right now i'm a junior in high school and our school offers some online courses, I thought some sounded cool so i decided to try them. Right now i'm taking "computer science honors" and need some help or quick suggestions on how to fix this problem. it says there is an illegal start of expression for the underlined portion, but i cant figure out how to fix it, if anyone here knows any java programming using netbeans the help would be appreciated. here is the code, its pretty short: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- package favoritenumber; import java.util.Scanner; public class FavoriteNumber { // Obtain favorite number public static void main(String[] args) { int favoritenumber; Scanner reader = new Scanner (System.in); System.out.println ("What is your favorite number?"); favoritenumber = reader.nextInt (); evenodd (favoritenumber); positivenegative (favoritenumber); } //calculate stuff with number public static boolean evenodd (int favoritenumber){ boolean evenorodd = (favoritenumber%2 == 0); if (evenorodd) { System.out.println ("your favorite number is both even "); } else { System.out.println ("your favorite number is both odd "); return false; } public static boolean positivenegative (int favoritenumber){ <------this is the part that is the "illegal start of expression" boolean positiveornegative = (favoritenumber > 0); if (positiveornegative) { System.out.print ("and positive"); } else { System.out.print ("and negative"); return false; } return false; } } ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- any help is appreciated
×