Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. The Back Room
  4. What did you do ?

What did you do ?

Scheduled Pinned Locked Moved The Back Room
comquestion
19 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    ColinDavies
    wrote on last edited by
    #1

    What did you do when CP was down ? I played a few games and did some work :-) Regardz Colin J Davies

    Sonork ID 100.9197:Colin

    I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

    J S M J M 5 Replies Last reply
    0
    • C ColinDavies

      What did you do when CP was down ? I played a few games and did some work :-) Regardz Colin J Davies

      Sonork ID 100.9197:Colin

      I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

      J Offline
      J Offline
      James T Johnson
      wrote on last edited by
      #2

      Played games and chatted on Bob's :) And worked on my flyer, but only for a short while :-p James Simplicity Rules!

      1 Reply Last reply
      0
      • C ColinDavies

        What did you do when CP was down ? I played a few games and did some work :-) Regardz Colin J Davies

        Sonork ID 100.9197:Colin

        I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

        S Offline
        S Offline
        Shog9 0
        wrote on last edited by
        #3

        slept, hungout on Bob's, wrote a script to ping CP... --------_**

        Sip my mind.

        **_

        C 1 Reply Last reply
        0
        • S Shog9 0

          slept, hungout on Bob's, wrote a script to ping CP... --------_**

          Sip my mind.

          **_

          C Offline
          C Offline
          ColinDavies
          wrote on last edited by
          #4

          Shog9 wrote: wrote a script to ping CP... Maybe you could post it as an article, or are you trying to cover your tracks that you were hitting the refresh button every 30 secs ? Regardz Colin J Davies

          Sonork ID 100.9197:Colin

          I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

          S 1 Reply Last reply
          0
          • C ColinDavies

            Shog9 wrote: wrote a script to ping CP... Maybe you could post it as an article, or are you trying to cover your tracks that you were hitting the refresh button every 30 secs ? Regardz Colin J Davies

            Sonork ID 100.9197:Colin

            I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

            S Offline
            S Offline
            Shog9 0
            wrote on last edited by
            #5

            ****Colin Davies wrote: Maybe you could post it as an article I will not sink to article padding:

            'vbscript for determining if CP is up
            set WshShell = WScript.CreateObject("WScript.Shell")
            do while true
            if 0 = WshShell.Run("ping www.codeproject.com", 6, true) then
            MsgBox "WooHoo!"
            else
            WScript.Sleep 240000
            end if
            loop

            --------_**

            Sip my mind.

            **_

            C 1 Reply Last reply
            0
            • S Shog9 0

              ****Colin Davies wrote: Maybe you could post it as an article I will not sink to article padding:

              'vbscript for determining if CP is up
              set WshShell = WScript.CreateObject("WScript.Shell")
              do while true
              if 0 = WshShell.Run("ping www.codeproject.com", 6, true) then
              MsgBox "WooHoo!"
              else
              WScript.Sleep 240000
              end if
              loop

              --------_**

              Sip my mind.

              **_

              C Offline
              C Offline
              ColinDavies
              wrote on last edited by
              #6

              I don't mean to appear rude ? But that looks kinda like VB, no wonder you didn't wanna post an article. :-) Regardz Colin J Davies

              Sonork ID 100.9197:Colin

              I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

              S R 2 Replies Last reply
              0
              • C ColinDavies

                I don't mean to appear rude ? But that looks kinda like VB, no wonder you didn't wanna post an article. :-) Regardz Colin J Davies

                Sonork ID 100.9197:Colin

                I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                S Offline
                S Offline
                Shog9 0
                wrote on last edited by
                #7

                it's true. I'm so ashamed. Ok, JScript version:

                //javascript for determining if CP is up
                var WshShell = WScript.CreateObject("WScript.Shell");
                while (true)
                {
                if (0 == WshShell.Run("ping www.codeproject.com", 6, true))
                WshShell.Popup("Woo Hoo!");
                else
                WScript.Sleep(240000);
                }

                --------_**

                Sip my mind.

                **_

                C C 2 Replies Last reply
                0
                • C ColinDavies

                  I don't mean to appear rude ? But that looks kinda like VB, no wonder you didn't wanna post an article. :-) Regardz Colin J Davies

                  Sonork ID 100.9197:Colin

                  I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                  R Offline
                  R Offline
                  Roger Wright
                  wrote on last edited by
                  #8

                  ****Colin Davies wrote: But that looks kinda like VB, no wonder you didn't wanna post an article. There's no reason not to post VB code. It's just polite to wear protection while typing it, and to wash your hands after. I always do.

                  1 Reply Last reply
                  0
                  • S Shog9 0

                    it's true. I'm so ashamed. Ok, JScript version:

                    //javascript for determining if CP is up
                    var WshShell = WScript.CreateObject("WScript.Shell");
                    while (true)
                    {
                    if (0 == WshShell.Run("ping www.codeproject.com", 6, true))
                    WshShell.Popup("Woo Hoo!");
                    else
                    WScript.Sleep(240000);
                    }

                    --------_**

                    Sip my mind.

                    **_

                    C Offline
                    C Offline
                    ColinDavies
                    wrote on last edited by
                    #9

                    Yeah I shouldn't laugh, Because I don't indestand any of these script languages, And you guys are all making the big bucks now. :-( Regardz Colin J Davies

                    Sonork ID 100.9197:Colin

                    I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                    S 1 Reply Last reply
                    0
                    • C ColinDavies

                      Yeah I shouldn't laugh, Because I don't indestand any of these script languages, And you guys are all making the big bucks now. :-( Regardz Colin J Davies

                      Sonork ID 100.9197:Colin

                      I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                      S Offline
                      S Offline
                      Shog9 0
                      wrote on last edited by
                      #10

                      **Colin Davies wrote: And you guys are all making the big bucks now. No need for sarcasm colin. :) --------_

                      Sip my mind.

                      **_

                      C 1 Reply Last reply
                      0
                      • C ColinDavies

                        What did you do when CP was down ? I played a few games and did some work :-) Regardz Colin J Davies

                        Sonork ID 100.9197:Colin

                        I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                        M Offline
                        M Offline
                        Michael Dunn
                        wrote on last edited by
                        #11

                        Played a handful of games of MiniPutt Part Deux, still don't like it. Did laundry. Got my car washed. Did some coding. Drank 4 bottles of Sapporo beer. Watched tape of last Sunday's Alias. Watched tonight's Alias. Well, ok, not all of those were done during the outage. I think by the time I got into the coding mood I'd given up on hitting refresh every 30 seconds. ;) --Mike-- Actual sign at the laundromat I go to: "No tinting or dying" Like the Google toolbar? Then check out UltraBar, with more features & customizable search engines! My really out-of-date homepage Big fan of Alyson Hannigan and Jamie Salé.

                        1 Reply Last reply
                        0
                        • S Shog9 0

                          **Colin Davies wrote: And you guys are all making the big bucks now. No need for sarcasm colin. :) --------_

                          Sip my mind.

                          **_

                          C Offline
                          C Offline
                          ColinDavies
                          wrote on last edited by
                          #12

                          Shog9 wrote: No need for sarcasm colin. No sarcasm intended Shog9. Regardz Colin J Davies

                          Sonork ID 100.9197:Colin

                          I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                          1 Reply Last reply
                          0
                          • S Shog9 0

                            it's true. I'm so ashamed. Ok, JScript version:

                            //javascript for determining if CP is up
                            var WshShell = WScript.CreateObject("WScript.Shell");
                            while (true)
                            {
                            if (0 == WshShell.Run("ping www.codeproject.com", 6, true))
                            WshShell.Popup("Woo Hoo!");
                            else
                            WScript.Sleep(240000);
                            }

                            --------_**

                            Sip my mind.

                            **_

                            C Offline
                            C Offline
                            Chris Maunder
                            wrote on last edited by
                            #13

                            Nothing wrong with VB - though I'm a little dissapointed it wasn't done in C# ;) cheers, Chris Maunder

                            M 1 Reply Last reply
                            0
                            • C ColinDavies

                              What did you do when CP was down ? I played a few games and did some work :-) Regardz Colin J Davies

                              Sonork ID 100.9197:Colin

                              I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                              J Offline
                              J Offline
                              Jon Sagara
                              wrote on last edited by
                              #14

                              In no particular order:

                              • Watched Law & Order, both Criminal Intent and Special Victims Unit.
                              • Watched The Simpsons.
                              • Watched King of the Hill.
                              • Watched The Masters.
                              • Ate dinner.
                              • Worked on my website.
                              • Sat in a lawnchair and drank beer while my neighbor washed his car. (very King-of-the-Hillish, wouldn't you say?)

                              All in all, a meaningless, and yet somehow satisfying, day in my life. :) Jon Sagara There is no spoon.

                              1 Reply Last reply
                              0
                              • C ColinDavies

                                What did you do when CP was down ? I played a few games and did some work :-) Regardz Colin J Davies

                                Sonork ID 100.9197:Colin

                                I think it's interesting that we often qu-ote each other in our sigs and attribute the qu-otes to "The Lounge". --- Daniel Fergusson, "The Lounge"

                                M Offline
                                M Offline
                                Michael P Butler
                                wrote on last edited by
                                #15

                                Watched the football (come on you Gunners) Played Star Wars Galactic Battlegrounds. Did a support call to an idiot user. Looked at the Return to Castle Wolfenstein source code Read slashdot Michael :-)

                                D 1 Reply Last reply
                                0
                                • C Chris Maunder

                                  Nothing wrong with VB - though I'm a little dissapointed it wasn't done in C# ;) cheers, Chris Maunder

                                  M Offline
                                  M Offline
                                  Michael P Butler
                                  wrote on last edited by
                                  #16

                                  Does C# run with the Windows Script stuff? If it doesn't, it would be cool if it did. Have a word with your buddies at Microsoft :-D Michael :-)

                                  1 Reply Last reply
                                  0
                                  • M Michael P Butler

                                    Watched the football (come on you Gunners) Played Star Wars Galactic Battlegrounds. Did a support call to an idiot user. Looked at the Return to Castle Wolfenstein source code Read slashdot Michael :-)

                                    D Offline
                                    D Offline
                                    Daniel Ferguson
                                    wrote on last edited by
                                    #17

                                    Michael P Butler wrote: Looked at the Return to Castle Wolfenstein source code How did you manage that? I've always been curious about game programming, I don't have a clue about the 3D stuff though. "There is a fine line between lunacy and genius; it is my goal in life to keep them guessing just where the line lies..." -- Unknown

                                    M 1 Reply Last reply
                                    0
                                    • D Daniel Ferguson

                                      Michael P Butler wrote: Looked at the Return to Castle Wolfenstein source code How did you manage that? I've always been curious about game programming, I don't have a clue about the 3D stuff though. "There is a fine line between lunacy and genius; it is my goal in life to keep them guessing just where the line lies..." -- Unknown

                                      M Offline
                                      M Offline
                                      Michael P Butler
                                      wrote on last edited by
                                      #18

                                      It wasn't the 3d engine part, it was the game mechanics. ID have released the source to most of their software in the past. You can download Quake, Doom and Wolfenstein3d from http://www.idsoftware.com/archives/sourcearc.html You can get the Return to Castle Wolfenstein source from http://www.bluesnews.com/files/rtcw/source/wolf_source.shtml Michael :-)

                                      D 1 Reply Last reply
                                      0
                                      • M Michael P Butler

                                        It wasn't the 3d engine part, it was the game mechanics. ID have released the source to most of their software in the past. You can download Quake, Doom and Wolfenstein3d from http://www.idsoftware.com/archives/sourcearc.html You can get the Return to Castle Wolfenstein source from http://www.bluesnews.com/files/rtcw/source/wolf_source.shtml Michael :-)

                                        D Offline
                                        D Offline
                                        Daniel Ferguson
                                        wrote on last edited by
                                        #19

                                        Michael P Butler wrote: It wasn't the 3d engine part, it was the game mechanics That makes sense. I can't see them giving the whole thing away. Michael P Butler wrote: You can get the Return to Castle Wolfenstein source from Cool. I wish I had more free time. :( "There is a fine line between lunacy and genius; it is my goal in life to keep them guessing just where the line lies..." -- Unknown

                                        1 Reply Last reply
                                        0
                                        Reply
                                        • Reply as topic
                                        Log in to reply
                                        • Oldest to Newest
                                        • Newest to Oldest
                                        • Most Votes


                                        • Login

                                        • Don't have an account? Register

                                        • Login or register to search.
                                        • First post
                                          Last post
                                        0
                                        • Categories
                                        • Recent
                                        • Tags
                                        • Popular
                                        • World
                                        • Users
                                        • Groups