cryptwizard
Members-
Content Count
84 -
Joined
-
Last visited
About cryptwizard
-
Rank
Member [Level 2]
-
Scrutinize My Chess Game! Check out my coding skillz
cryptwizard replied to eubanksd's topic in Programming
There's just a few features missing:- Pawn promotion- En passant- Turns (ie. each player has their turn instead of someone being allowed to move over and over again)- And of course, capturing the king can't be done -
I personally like avast! the best, since it looks better than AVG and it has that cool voice that says "[siren] A virus has been detected [siren]".Of course, I hate all the one's that I have to pay for (reason is obvious).
-
Astahost's servers are very good.I think it may be because of server load.
-
MySQL Problem - Too Many Connections
cryptwizard replied to gotcha411405241475's topic in Programming
It's pretty much the same, except this is phpBB and that is IPB. -
Please Help! SQL Problem - Thanks For Reading
cryptwizard replied to musichere's topic in Programming
This is strange, I've never ran into a problem with IPB before.Just go into Fantastico, uninstall your current one and install again. -
Hotkeys / Keyboard Quick Launch Keys In Linux
cryptwizard replied to intrepid's topic in Websites and Web Designing
Good point.That happened to me a few times at school once.Even if your keyboard doesn't have hotkeys, the F1 (Help) button can be annoying when you're reaching for the F2 (Rename) button. -
Add Smf To Cpanel Addon Script Installer please?
cryptwizard replied to daniel151405241469's topic in Web Hosting Support
Obviously this forum needs IPB, which is much more professional and needs better software.SMF is fine for smallish forums, but not for larger ones. -
Commuity Survey asathost commuity demographics
cryptwizard replied to hashbang's topic in Web Hosting Support
Survey of Xisto Web Community [age range?] 10-14 11 to be specific 15-19 20-25 26-30 31-40 40+ [amount of time online in this community/week?] <1 hour 1-2 hours About 1 and a quarter to be specific 2-3 hours 3-5 hours 5-7 hours 8-10 hours 10 hours + [occupation?] Normally student. Now holidays[country?] Australia [native language?] Cantonese [number of web communities you actively participate?] A hell lot [how should this community be moderated?] ie ... (this list is not all inclusive ... feel free to add your own) not at all by community peer pressure by community appointed/elected moderators by board owner appointment [Other than free hosting, is there anything else that keeps you active here?]The interesting topics -
Tsunami How does it happen.
cryptwizard replied to Nathan1405241474's topic in Science and Technology
Also, the bump was only 4 minutes after your initial post. -
Actually, I've never heard of PostSQL, unless you mean PostgreSQL.I don't know much about PostgreSQL, but I'm fine with mySQL.mySQL has 2 kinds of storage engines: MyISAM, which is geared towards speed and InnoDB, which is transaction based, and hence, geared towards reliability.
-
You simply go to a DOS prompt and type "telnet <host> port". You needn't see the words Microsoft Telnet. I'll give you a full demonstration of me sending a message to myself: C:\Documents and Settings\user>telnet gsmtp171.google.com 25220 mx.gmail.com ESMTP 59si1198747rnbHELO gmail.com250 mx.gmail.com at your serviceMAIL FROM:<cryptwizard@gmail.com>250 2.1.0 OKRCPT TO:<cryptwizard@gmail.com>250 2.1.5 OKDATA354 Go aheadTo: Myself <cryptwizard@gmail.com>From: Myself <cryptwizard@gmail.com>Subject: Testing SMTP from TelnetHello World!.250 2.0.0 OK 1104091397QUIT221 2.0.0 mx.gmail.com closing connection Line 1: The command you type in the DOS prompt (You get to the DOS prompt by typing "cmd" in a run box). Line 2: - Line 3: Welcome message from the SMTP server. The numeric response 220 means ready. Line 4: Introuducing my server (You would not type gmail.com here, you would type your own host, that was just an example). Line 5: The numeric response 250 means the command was OK. Line 6 foward: Sending the message.