Jump to content
xisto Community

Csshih

Members
  • Content Count

    185
  • Joined

  • Last visited

Everything posted by Csshih

  1. I got the camera immediatley after it came out, its was 900$, I think, with lens,( I forgot which one), and It came with nothing, unless you count the Ritzcamera bonus package, which had a bit of photo paper.Oh wait, after purchase of camera, I got a decent photo printer.
  2. Copied from my article on digg, so don't start yelling at me.. edit: sorry about that, I should have put in in quotes.LINK: http://forums.xisto.com/no_longer_exists/
  3. oofph!My eyes feel like they've been struck by a cannonball. o_OTwice.Someone should email the webmaster and tell them to think of the children visiting the site. Remember, every time someone creates a website as bad as that, someone goes blind.Some good info, though.
  4. I am currently 15, but I have not had a job yet, unless you can consider volunteering at the school lunch line, or volunteering at non-profit organizations.I'm planning, though, to get a job over the summer. Time to mass email companies.
  5. I have an iPod Video 30GB myself.Pros:Mods available - not supported by Apple, of course (rockbox is a good one)Supports mp3, mp4, aac, Itunes Lossless - not wmaMost popular out there! :)easy to use iTunes softwareCons:Too easy to scratch - buy a case once you get itdoes not support Atrac3, wma, ra - iTunes should be able to convert it automatically - I thinkEasy to break - only hard drive ones - drop from table onto conrete should break hard drive one.iTunes store too costly - use some other music service that give you unprotected content onlyEarphones they give you are not so great - but new ones at store, 30$ ones are ok.
  6. I'm starting to get annoyed at using Google though, It keeps thinking I'm a bot, somehow? Why would anyone do massive searches? To bring down Google? Weird.
  7. Trap Feedbacker,What are you trying to format?Without that information, I can't really help you. Keep in mind that this is a 2 year old topic
  8. Nice Idea with the index +=2, that should reduce the number of steps by 1/2.Thanks!and about the functions,my teacher said that I have to have only calls to functions in main. >.<
  9. Not many pests here in California, in Saratoga, I've had some problem with ants, but they are gone now.I used to sprinkle baby powder, or talcum powder onto the cracks that they came out of.For some reason, they don't like the powder and stop coming out, even though they can just dig through the powder.Too slippery? maybe?I've had many fruit flies though when I take a plant outside, and bring it back in, You'll find at least 2 fruit flies in each room, or whichever one has the most lights >.<.and A200, I'll have to say "LOL"!
  10. You could always use google translate and try to understand the horrible translation,anyways, thanks! It should be enough to get something cheap on eBay.I hope.EDIT:But wait!The link seems to be down.
  11. And in the movie, 42 was calculated by the second most powerful computer in the world.The most powerful being Earth, of course.What would be the question to the answer?
  12. MythBusters!(don't know what else to write)I like the show because it is educational and fun!
  13. Another surreptitious insult to Microsoft, of course.
  14. And for when you get even more advanced, there's always Maya!price tage is rather big though...6995$ for the most expensive version, cheaper for students, I think.
  15. Revan, you got the 10,000th post in this forum :)I hate runescape for the fact that you have to pay money to get special features.End of story.It should be equal for all.
  16. Whenever I leave my computer on for a long time, it always hangs when I try using it again, but aren't start/restart cycles bad for hardware?
  17. When my code gets a prime number, it already removes all multiples of it.I think that should be complete though.I compared the output to a online list of primes, it was correct.
  18. You can always take a video with the camera, upload the video to your computer, and submit to YouTube, If that's what you're asking.
  19. It's best for you to ask your doctor, I'm not an expert on this subject, but, it may not be from the painkillers. FROM http://forums.xisto.com/no_longer_exists/ Looks like it may be a side effect, on the more common side effects, it include abdominal cramps and pain.
  20. If you use SBC yahoo internet (DSL), you should have an internet box. It has a big "2WIRE" on the side, or whatever they gave you. To reset your rapidshare limit, just reset the 2wire box by either pulling out the power cable, or by going to http://forums.xisto.com/no_longer_exists/ and going to the System tab on top, Details on the lower tab, and click system reset. WARNING: You will not have internet for around 2 minutes, make sure you are done downloading anything you were previously downloading. If you have comcast, you can't really do anything except use proxies. It does have a service though, that allows you to have up to 4 more IP addresses, so you can have 5 downloads an hour if you change your IP. Correct me if I'm wrong.
  21. There are many website that talk about painkiller addiction, here is one. Link: http://forums.xisto.com/no_longer_exists/ according to the site, the more painkillers you take, the more pain you feel if you don't continue taking them. always read the label on the painkiller box, can, etc. It should tell you side effects. What painkiller are you using?
  22. Can anyone write a more efficient code than this to get the prime numbers from 1 -999? // Assignment: sieve.cpp// Purpose: To write the most efficient program// that outputs prime numbers.#include<iostream.h>#include<iomanip.h>#include<math.h>// declare constant MAX_NUMBER to be the # of arrays.const MAX_NUMBER = 1000;// declare array primes.bool primes[MAX_NUMBER];// function prototypesvoid initializeArray();void findMultiples();void printSubscripts();int main(){ // call to functions initializeArray(); findMultiples(); printSubscripts(); return 0;}//*****************************************************// function initializeArray//// Purpose: to initialize the Aray//// Input: none// Output: nonevoid initializeArray(){ // start from index 2, ignoring 1 and 0 for(int index = 0; index < MAX_NUMBER; index++) primes[index] = true; primes[0] = false; primes[1] = false;}//*****************************************************// function findMultiples//// Purpose: assign false to multiples of prime numbers//// Input: none// Output: nonevoid findMultiples(){ int steps = 0; // for loop, starting the primes at 2, incrementing every loop for(int index = 2; index < sqrt(MAX_NUMBER); index++) // if true, then continue if(primes[index] == true) // all multiples of primes are assigned false for(int multiplier = 2; multiplier * index < MAX_NUMBER; multiplier++) { primes[multiplier * index] = false; steps++; } cout << "Number of steps are : " << steps << endl;}//*****************************************************// function printSubscripts//// Purpose: print prime numbers to console//// Input: none// Output: prime numbersvoid printSubscripts(){ cout << "The prime numbers from 1 to " << MAX_NUMBER-1 << " are:\n" << endl; // output primes starting from primes[2] for(int index = 0; index < MAX_NUMBER; index++) { if(primes[index]) // a "tab" between every prime number. cout << index << "\t"; } cout << endl;} Some of the comments may not be correct because I'm just learning programming :PI'm using Visual C++ 6.0.Thanks,Craig
  23. Is your computer a laptop or a desktop?IT is the BIOS battery(what keeps the settings and the time)If its a laptop, I cant help you replace the battery,If its a desktop, the battery is probably a CR2032, you can probably get one at Radioshack for ripoff prices or look around.You open up your case, and look for the shiny silver, coin- like battery, pop it out with a screwdriver or somethings, and put a new one in.As a precaution, be sure to ground yourself and not touch anything else.
  24. Csshih

    Gmail Imap

    Gmail has forwarding and POP/IMAPgo to --> settings -->forwarding and pop/imapand edit your settings, make sure to enable imap in the imap access portion.The "configure your email client" function is very useful.
  25. Gummy worms for me.It's just a matter of how chewy they are.I'm weird this way, but I like very chewy candy, gummy bears are alwasy soft and slimy?At least, the ones I buy..Worms are hard and chewy!
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.