Jump to content
xisto Community

Csshih

Members
  • Content Count

    185
  • Joined

  • Last visited

Posts posted by Csshih


  1. Copied from my article on digg, so don't start yelling at me..

    This game is very similar to an RPG, but it is text based, please join through my referral link. In this game, you can attack other people and get experience based on the attacks. With the experience, you can train many stats, and climb to the top!

    edit: sorry about that, I should have put in in quotes.LINK:
    http://forums.xisto.com/no_longer_exists/

  2. 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.


  3. 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"!


  4. 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/

    More common motrin side effects may include:Abdominal cramps or pain, abdominal discomfort, bloating and gas, constipation, diarrhea, dizziness, fluid retention and swelling, headache, heartburn, indigestion, itching, loss of appetite, nausea, nervousness, rash, ringing in ears, stomach pain, vomiting

    Less common or rare motrin side effects may include:
    Abdominal bleeding, anemia, black stool, blood in urine, blurred vision, changes in heatbeat, chills, confusion, congestive heart failure, eepression, dry eyes and mouth, emotional volatitity, fever, hair loss, hearing loss, hepatitis, high or low blood pressure, hives, inability to sleep, inflammation of nose, inflammation of the pancreas or stomach, kidney or liver failure, servere allergic reactions, shortness of breath, skin eruptions or peeling, sleepiness, stomach or upper intestinal ulcer, ulcer of gums, vision loss, vomiting blood, wheezing, yellow eyes and skin.

    Looks like it may be a side effect, on the more common side effects, it include abdominal cramps and pain.

  5. 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.


  6. 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


  7. 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 :P 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.

×
×
  • 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.