• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

First Date. Terrible. Sigh.

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

    #21
    do while not.EndOfEvening

    If Dodgy chat up lines = true then enchanted = enchanted -1
    If rubbishy seduction technique = true then Arousal = arousal -1

    If sense of humour bypass = true then BeatAHasty = true:Exit loop

    Loop


    (\__/)
    (>'.'<)
    ("")("") Born to Drink. Forced to Work

    Comment


      #22
      Originally posted by EternalOptimist View Post
      do while not.EndOfEvening

      If Dodgy chat up lines = true then enchanted = enchanted -1
      If rubbishy seduction technique = true then Arousal = arousal -1

      If sense of humour bypass = true then BeatAHasty = true:Exit loop

      Loop




      Code:
      /**
          NB: this code uses the new human-aware pseudo-Booleans 
              taking values such as "perhaps"
      */
      
      var woman = {
          enchanted: perhaps,
          aroused: possibly,
          stiletto: WeaponOfMassDestructionFactory.create(Woman.shoe.stiletto)
      };
      
      var man = {
          chatUpLines: inadequate,
          seductionTechnique: rubbish,
          senseOfHumour: false,
          head: UselessAndUnsightlyLumpOfOrganicMatterFactory.create(Man.head)
      };
      
      var taxi = {
          call: function(callback) {
              Thread.run(function() {
                  var thereYet = false;
                  while (!thereYet) {
                      thereYet = Taxi.accelerateThroughRedLights(this); 
                      // static method, returns either true or 
                      // "he's just around the corner, he'll be with you any second"
                      // (== false)
                  }
                  callback();
              });
          },
          fleeIn: function() {
              Taxi.vroom(this);
          }
      };
      
      var retreat = {
          beat: function() {
              taxi.call(function() {
                  taxi.fleeIn();
              });
              woman.stiletto.apply(man.head);
          }
      };
      
      
      while (evening) {
          woman.enchanted = man.chatUpLines != inadequate;
          woman.arousal = man.seductionTechnique != rubbish;
          if (!man.senseOfHumour) {
              retreat.beat();
              break;
         }
      }
      Last edited by NickFitz; 22 November 2009, 06:10. Reason: Forgot to implement taxi.call() asynchronously

      Comment


        #23
        Originally posted by MaryPoppins View Post
        I have never really done "dating", that's quite sad isn't it. Ex was a friend, so it never really happened.

        So, last night, I got back in the game.

        Started off fine, but then he began saying how we should go back to his when the pub closes, so he can play me his guitar. Cue many elbow nudges from me, nudge nudge, wink wink. Turns out he doesn't have much of a sense of humour (strike one) and insists that he is a great guitar player and would love to play for me. I squirm uncomfortably as I realise he's serious.

        A couple of drinks later, I'm wobbling around putting my coat on and everything has a rosy glow - of course I will go back to his to listen to him play the guitar; perhaps I even fancy him a bit more now - what the heck.

        However in the taxi on the way there, I start to sober up a bit, and realise I am beginning to regret my decision.

        I fully regret my decision soon enough.

        He insists I sit on the sofa "come on, get comfy!" while he actually does go and get an acoustic guitar. My heart sinks as he then stands directly in front of me, one leg up on the sofa (affording me a very uncomfortable view).

        He begins to play a ropey version of some Oasis song, while I squirm and wish I was at home in my jimmers. He then grabs a song book and throws it to me, still playing, and tells me to "sing along".

        Lord, no. I beat a hasty retreat and only felt slightly bad this morning when I thought about how rude I'd been.

        Judging by his miffed text message, I think I was in the minority of females who have not been seduced by this piffle.

        Anyone else care to share bad date stories?
        Sounds bad, sounds like a guy who needs 'an instrument' to impress the ladies, I bet he read somewhere be a musician - the chicks will dig that !

        Comment


          #24
          He should have 'strummed' on the tenth date after NOT mentioning he could play the guitar.

          Added mystery.

          MP swoon.

          Comment


            #25
            Originally posted by Tingles View Post
            He should have 'strummed' on the tenth date after NOT mentioning he could play the guitar.

            Added mystery.

            MP swoon.
            good point. I have been married eleven years and the missus still doesn't know about 'my secret talent'



            (\__/)
            (>'.'<)
            ("")("") Born to Drink. Forced to Work

            Comment


              #26
              Originally posted by EternalOptimist View Post
              good point. I have been married eleven years and the missus still doesn't know about 'my secret talent'




              Confession is good for the soul, so they say.

              The field is yours Sir.

              Comment


                #27
                Originally posted by EternalOptimist View Post
                good point. I have been married eleven years and the missus still doesn't know about 'my secret talent'



                If you put one leg on the floor it dampens the rocking motion of the bed. I believe in Viz parlance it's known as an outrigger.

                HTH
                Knock first as I might be balancing my chakras.

                Comment


                  #28
                  Originally posted by NickFitz View Post


                  Code:
                  /**
                      NB: this code uses the new human-aware pseudo-Booleans 
                          taking values such as "perhaps"
                  */
                  
                  var woman = {
                      enchanted: perhaps,
                      aroused: possibly,
                      stiletto: WeaponOfMassDestructionFactory.create(Woman.shoe.stiletto)
                  };
                  
                  var man = {
                      chatUpLines: inadequate,
                      seductionTechnique: rubbish,
                      senseOfHumour: false,
                      head: UselessAndUnsightlyLumpOfOrganicMatterFactory.create(Man.head)
                  };
                  
                  var taxi = {
                      call: function(callback) {
                          Thread.run(function() {
                              var thereYet = false;
                              while (!thereYet) {
                                  thereYet = Taxi.accelerateThroughRedLights(this); 
                                  // static method, returns either true or 
                                  // "he's just around the corner, he'll be with you any second"
                                  // (== false)
                              }
                              callback();
                          });
                      },
                      fleeIn: function() {
                          Taxi.vroom(this);
                      }
                  };
                  
                  var retreat = {
                      beat: function() {
                          taxi.call(function() {
                              taxi.fleeIn();
                          });
                          woman.stiletto.apply(man.head);
                      }
                  };
                  
                  
                  while (evening) {
                      woman.enchanted = man.chatUpLines != inadequate;
                      woman.arousal = man.seductionTechnique != rubbish;
                      if (!man.senseOfHumour) {
                          retreat.beat();
                          break;
                     }
                  }


                  get a life !

                  Comment


                    #29
                    Be thankful he didn't take you down the local park and show you how to cast a fly line.

                    Comment


                      #30
                      Originally posted by Tingles View Post
                      Confession is good for the soul, so they say.

                      The field is yours Sir.
                      I can do a mean blue-vein steak
                      (\__/)
                      (>'.'<)
                      ("")("") Born to Drink. Forced to Work

                      Comment

                      Working...
                      X