Jump to content
xisto Community

coolcat50

Members
  • Content Count

    303
  • Joined

  • Last visited

Posts posted by coolcat50


  1. Very nice Kansuke, I advise though using a better form of stopping it. Also, labels suck in Ti-BASIC. They can cause the calculator to output an error message.

    Here is a little better version of the code.

    :ClrHome:A=0:While(A=0):getKey -> K:Output(1,1,"--Slot Machine--"):Output(2,1,randInt(0,9,1)):Output(2,4,randInt(0,9,1)):Output(2,7,randInt(0,9,1)):If K=105:Stop:End

    EDIT: Fixed Output statements

  2. Ok, this tutorial is designed to teach you how to remotely shutdown a Windows computer on a Local Area Network. I have not been able to test this on wireless and successfully do it, but it will work on computers connected to a LAN. Well here is how to do it.

     

    1.Open Command Prompt on the computer you wish to shutdown from. Press Win + R and type in cmd or command.

     

    2.Type in ipconfig on the computer you wish to shut down. If you know the IP address of the computer you wish to shutdown go to Step 4.

     

    3.Get the IP address from the computer.

     

    4.Go to the computer you wish to shutdown from.

     

    5.Type in the following command.

    CONSOLE

    shutdown -m \\IP HERE -t TIME IN SECONDS HERE -c MESSAGE HERE -s

    If you see a box on the computer you wish to shutdown you did it successfully.

     

    To abort simply type in:

    CONSOLE

    shutdown -m \\IP HERE -a

     

    Congrats on remotely shutting down your computer.


  3. Um Kansuke try this.

    <?//the host, name, and password for your mysqlmysql_connect("localhost","not tellin you!","not tellin");//select the databasemysql_select_db("not tellin");$submit = $_POST['submit'];$name = $_POST['name'];$message = $_POST['message'];if($submit){  //use the PHP date function for the time   $time=date("h:ia d/j/y");      // inserting it into the shoutbox table which we made in the mysql statements before   $result=MYSQL_QUERY("INSERT INTO shoutbox (id,name,message,time)".	  "VALUES ('NULL','$name', '$message','$time')");   $_POST['submit'] = 0;   $_POST['message'] = "";   $_POST['name'] = "";}?><?//returning the last 5 messages$result = mysql_query("select * from shoutbox order by id desc limit 5");//the while loopwhile($r=mysql_fetch_assoc($result)){//variables from tableecho $r["time"]."<br/>\n".$r["id"]."<br/>\n".$r["name"].":<br/>\n".$r["message"]."<br/>\n";}?><form action="" method="post"><INPUT TYPE='TEXT' value='name' NAME='name' SIZE=30 maxlength='100' /><br /><INPUT TYPE='TEXT' value='message' NAME='message' SIZE=30 maxlength='100' /><br /><input type="submit" name="submit" value="submit"></form>

    EDIT: Fixed BBCode

  4. True I could have done that, but again only two polls were affected by the person who did so I could have just edited them and be done with it. However, I did what was right because after going through the polls, some of them had 7 to 11 invalid votes, and of course I had one person from Tennessee, (Yeah I am talking to you :lol:), go through most of the polls two at least two votes a piece. Yet it wouldn't be fair either to start it over again, and make people vote again, but taking over the reigns has been a bit tricky just because of how busy I was so everything was done quite hastily. You are right about the dial up users however, I came across very few of those and although some of the numbers we close it still is hard to prove that one.
    I have notice that not all polls have receive the same amount attention though, and best guess is that not everyone know everyone and so that is understandable, of course I now non mods have been voting in the reported post poll, but that is fine. So hopefully those who didn't vote for everything can go back and vote in the polls they did not vote for.


    Yeah that's kinda mean considering I'm from Tennessee. I didn't do it though. :P And do you know what city it came from? I might have an idea of who did it if I can get the IP Address.

  5. Well, all of the code above is great. As for getting the map to have links is a big thing as well. You could always use CSS and position each element, but this would be very time consuming. You also could use image maps in HTML, but I'm not quite sure if that is the preferred method. There also are tables with image links and you could use borders as a way to show a grid for clicking. I would probably use image maps or tables for simplicity.


  6. I myself do not fear death itself, but how I will die. I wish to die naturally and without suffering, but there is the chance of murder or something similar. There is no reason to fear death because it is destined to happen. It is a natural part of life. Fearing your cause of death is understandable though. As long as you have followed a good life, then you should be fine when you die. I myself am a Christian and hope to go to heaven when I die.


  7. Lol, This is a personal project. Me and Kansuke are making a graphics site called EnygmaDesigns. We are doing significant planning on that one. This site is ust a learning tool for me to get into really in depth web design. I probably will try to design my own SMF skin. Thanks for the comments though. Also, the banner was thrown together in a short time.


  8. Well, extracting both at the same time would slow down the extraction due to higher CPU usage, but they would both most likely finish at the same time. If you did them one after another, both would extract faster, but it would most likely take the same amount of time for both of them to extract, making the extraction time be X+X, which could be much longer than extracting them both at the same time. The first method would have the extraction time about the same for both of them. You also could give the extraction process higher priority, making it have more CPU power and letting it extract faster.

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