Search results

  1. natsuki

    The Ctrl+V game

    private: char look; // the lookup char int _look; // an int version of lookup char std::string token; // the current token int tokentype; // the type of token int tokencount; // the total number of characters parsed int line; // the current line...
  2. natsuki

    Visual Basic... OOP!!

    VB was my start it was semi OO back then (they argued it was OOP) VB5 then VB6. Then came VB .NET it was fine but the biggest drawback was that it was not backwards compatible. It won't compile old code at all. It was kinda slow and has a lot of overhead. But I did manage to make a lot of apps...
  3. natsuki

    The Ctrl+V game

    case 'h': // halt on error t.setErrorType(M_ERROR_HALT); compiletype = OPT_COMPILE_BUILD; break; case 'n': // no halt on error t.setErrorType(M_ERROR_NO_HALT)...
  4. natsuki

    Game: Ban the Person above you!!!!!!!!!!!

    I ban Smith6612 because he is offline.
  5. natsuki

    Word Assoation Game

    FireWire > volcano
  6. natsuki

    select onchange

    I think also use window.open(blah); return false; so it will just open a new window and do nothing with the original one
  7. natsuki

    Password one way encryption.

    I use md5 but you can use sha or crc or any other encryption. This procedure works on all one-way encryption algorithms. from register pw ==> md5(pw) ==> DB login page: md5(login pw) == pw from DB ? characters will have one and only one hash so you need not worry about it changing ex...
  8. natsuki

    Best PHP editor:

    I always and only use notepad++ for my PHP codes. I have a php debugger called XDebug that can be hooked up in the zend extensions (replace zend optimizer) but I don't really use it. There is also some PHP IDE I read somewhere, but I have forgotten what that name is. It was 100+MB. If you want...
  9. natsuki

    problem with $_SERVER['POST']

    <tr><td><input class="buttonchenger" type="button" value="Checkup Winners" name="check"/></td></tr> <tr><td><input class="buttonchenger" type="button" value="Create DB print" name="create"/></td></tr> <tr><td><input class="buttonchenger" type="button" value="Update DB"...
  10. natsuki

    Word Assoation Game

    cd > usb
  11. natsuki

    Game: Ban the Person above you!!!!!!!!!!!

    i ban alexandgruntz for posting before me
  12. natsuki

    Guess Who Posts Next

    i guess smith or mattura or mitch
  13. natsuki

    Count to 1 Million

    423 for two trees
  14. natsuki

    New Browser Based Game!

    is there an easier way to level up lol 87/700 to lv2 o_O the ring navigation was nice though
  15. natsuki

    The Ctrl+V game

    else { $error="You have entered incorrect information. Try again!<br>"; }
  16. natsuki

    [PHP] Using it in forms!

    add to it the error check... if you have the $link it would be better though.. <?php require_once 'config.inc.php'; $error = ''; $submit = $_POST['submit']; if ($submit) { $user = $_POST['user']; $code = $_POST['code']; $result = mysql_query("SELECT count(*) FROM 'login' WHERE...
  17. natsuki

    PHP Screwing Up

    then it must be the include that is the problem, either some php related restriction is doing it or some server thing... or as TheMan177 said it might be a url_fopen issue or something .....
  18. natsuki

    The Ctrl+V game

    %include "asm_io.inc" extern ExitProcess segment .data int1_ dd 68557 int2_ dd 879 segment .bss it resd 1 segment .data I_01 equ 0199284249 I-01 equ 001232H segment .text global _asm_main _asm_main: enter 0,0 pusha mov eax, int1_ call print_string mov eax, int2_ call...
  19. natsuki

    Count to 1 Million

    417 is for one seven
  20. natsuki

    Guess Who Posts Next

    nahhhh i guess smith6612 or mitch
Top