Announcement

Collapse
No announcement yet.

is this board on Hawaiian time?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    ...
    The year is 2261.
    The place.. MURC.


    Guyver, you gotta love it more than any ST realm serie.. do you agree?

    _
    B

    [This message has been edited by Buuri (edited 09-10-1999).]

    Comment


    • #17
      It's there alright. Let's keep the stories going...

      Guyv
      Gaming Rig.

      - Gigabyte GA-7N400-Pro
      - AMD Athlon 3200+ XP
      - 1.5GB Dual Channel DDR 433Mhz SDRAM
      - 6.1 Digital Audio
      - Gigabit Lan (Linksys 1032)
      - 4 x 120GB SATA Drives, RAID 0+1 (Striped/Mirrored)
      - Sony DRU-500A DVD/+/-/R/RW
      - Creative 8x DVD-ROM
      - LS120 IDE Floppy
      - Zip 100 IDE
      - PNY Ultra 5900 (256MB)
      - NEC FE950
      - DTT2500 Cambridge Soundworks

      Comment


      • #18
        Last series I saw was the Murcians vs the Tombed Deprivians, after they first eradicated the Tylaxians from Planet Murc

        Jorden.

        [This message has been edited by Jorden (edited 09-10-1999).]
        Jordâ„¢

        Comment


        • #19
          for some of you, who might read Dutch as well, check http://www.omroep.nl/cgi-bin/tt/nos/.../h777/h318/777 for worldtimes.... check the GMT/UCT time !!!!!
          Jordâ„¢

          Comment


          • #20
            Uh.. Jorden, you sure about that? I could've sworn the last series was the Murcians vs the Deprived Tombians. BTW- There's at least one other confused (timewise) North American here (me). Actually, being in the military, I only need to remember the time of year and the difference between our time and GMT. That, or look at one of the many clocks that display both times strewn all around the offices in my unit.

            ------------------
            Ace
            "..so much for subtlety.."

            System specs:
            Gainward Ti4600
            AMD Athlon XP2100+ (o.c. to 1845MHz)

            Comment


            • #21
              I hope those clocks aren't MS-controlled
              Are your clocks millenium-proof??

              Jorden.
              Jordâ„¢

              Comment


              • #22
                Sorry guys,
                I wasn't awake when I posted that.

                Paul
                "Never interfere with the enemy when he is in the process of destroying himself"

                Comment


                • #23
                  I've heard of sleep walking, do we now have sleep posting.

                  Joel
                  Libertarian is still the way to go if we truly want a real change.

                  www.lp.org

                  ******************************

                  System Specs: AMD XP2000+ @1.68GHz(12.5x133), ASUS A7V133-C, 512MB PC133, Matrox Parhelia 128MB, SB Live! 5.1.
                  OS: Windows XP Pro.
                  Monitor: Cornerstone c1025 @ 1280x960 @85Hz.

                  Comment


                  • #24
                    Sorry for MY confusion, folks.
                    My watch stopped, my electric service sucks (clocks are wrong and pc's are on ups's), and I like my screen SO BIG that I don't have the taskbar visible.
                    As for Java converting the time, it would probably crash doing the calculation.
                    abit kt7-raid athlon 1ghz quantum 20.4gb - 7200 + wd 200bb - 7200 rpm UDMA100-
                    g400 max-
                    256MB pc133 sdram - sblive value 3.0 - 4 Boston Acoustics A40's - 3com 3c905b-tx - cable access - winME
                    dx7.?- V3 steering wheel/pedals - MS sidewinder PRO
                    Kensiko (Netpointe) scrolling mouse

                    Comment


                    • #25
                      A 'top of the line' forum setup would have you specify your time zone when you register, and/or in your prefs. It would then do all the time conversions FOR YOU when it generates the page.

                      Not very hard to implement though, but ubb might not, or they have a lite version etc etc. Otherwise I like ultimate bulletin board a lot.

                      Comment


                      • #26
                        What's the "BST" I see there now? Shouldn't it be Daylight Saving Time?
                        Or is it Baylight after all..

                        _
                        B

                        Comment


                        • #27
                          Here you go Ant, float this around somewhere.
                          You asked us not to post running applets, so I didn't. But you are free to use the code if you want.
                          It shows the local time.

                          chuck

                          Code:
                          // Chuck Jolley
                          // Clock Banner
                          import java.applet.Applet;
                          import java.util.Date;
                          import java.awt.*;
                          import java.net.*;
                          public class clock extends Applet implements Runnable 
                          {
                             static Button button;
                             Thread myThread;
                             public void run()
                             {
                                while(true)
                                {
                                   try
                                   {
                                      Thread.sleep(250);        //try to check clock 4 times per sec
                                   }
                                   catch( InterruptedException e)
                                   {
                                      e.printStackTrace();
                                   }
                                   doDate();
                                }
                             }
                             public void doDate()
                             {
                                Date date = new Date();
                                if(date.getHours() < 12)
                                   button.setLabel(date.toLocaleString() + " Good Morning!");
                                else
                                {
                                   if(date.getHours() < 18)
                                      button.setLabel(date.toLocaleString() + " Good Afternoon!");
                                
                                   else
                                      button.setLabel(date.toLocaleString() + " Good Evening!");
                                }
                             }
                             public boolean action(Event e, Object o)
                             {
                                if(e.target == button)
                                {
                                   try
                                   {
                                      getAppletContext().showDocument(new URL("http://www.geocities.com/SiliconValley/Bay/2433/clocksrc.html"));
                                   }
                                   catch(MalformedURLException m)
                                   {
                                      showStatus("Bad URL");
                                   }
                                }
                                return true;
                             }
                             public void init()
                             {
                                button = new Button("Clock Applet Starting!");
                                setLayout( new GridLayout(1,1,0,0));
                                add(button);
                             }
                             public void start()
                             {
                                myThread = new Thread(this, "myThread");
                                myThread.start();
                             }
                             public void stop()
                             {
                                myThread.stop();
                             }
                          }
                          PS. A running version is on my homepage.




                          [This message has been edited by cjolley (edited 09-11-1999).]
                          Chuck
                          秋音的爸爸

                          Comment


                          • #28
                            British Summer Time we call it

                            Comment


                            • #29
                              As if wishful thinking will keep the rain out
                              P3@600 | Abit BH6 V1.01 NV | 256MB PC133 | G400MAX (EU,AGP2X) | Quantum Atlas 10K | Hitachi CDR-8330 | Diamond FirePort 40 | 3c905B-TX | TB Montego A3D(1) | IntelliMouse Explorer | Iiyama VisionMaster Pro 17 | Win2K/NT4

                              Comment


                              • #30
                                setting it for GMT or UTC is great. Makes for easy conversion to local time

                                AST/ADT=UTC-4/UTC-5
                                EST/EDT=UTC-5/UTC-6
                                CST/CDT=UTC-6/UTC-7
                                MST/MDT=UTC-7/UTC-8
                                PST/PDT=UTC-8/UTC-9

                                etc...



                                ------------------
                                Dean
                                -----------------------------------------------------------------------------
                                PDP-11, Dec-writer & ZD-11 Terminal Unit, RSTS-OS


                                PDP-11, Dec-writer & ZD-11 Terminal Unit, RSTS-OS

                                Comment

                                Working...
                                X