• 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!

test please delete

Collapse
This is a sticky topic.
X
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    Can someone give me a kick up the arse and tell me to do somework I am totally unmotivated at the moment and have deadlines to meet, but for some reason I just dont care this time

    Comment


      Originally posted by voodooflux View Post
      Morning folks
      Morning VF. What time did you make it back to ClientCo?

      Think they are just realising the patch doesn't fix infected systems. Genius.

      Comment


        Originally posted by FiveTimes View Post
        so how do I wrap up a confirmation email ?
        1 - Print the email.

        2 - Put said printout in an envelope, preferably a pretty one.

        3 - Put ribbon around envelope.

        4 - Get the biggest box you can find.

        5 - Weigh down said box with old books / magazines / bricks / anything heavy to make it weigh lots.

        6 - Put envelope in box.

        7 - Wrap box.

        That's what I did for Christmas when I was taking (then) Girlfriend away for Christmas and birthday.
        Best Forum Advisor 2014
        Work in the public sector? You can read my FAQ here
        Click here to get 15% off your first year's IPSE membership

        Comment


          Aaaaaaaaaaaargh!

          The joy of combining assembler macros with a machine that can only skip over the next instruction after a test...

          Code:
          	andlw	0xff			;key pressed?
          	btfss	STATUS,Z
          	fcall	LCDPUTCHAR		;macro display on LCD
          	movf	TEMP_W,W		;restore key/status
          	return
          should be...

          Code:
          	andlw	0xff			;key pressed?
          	btfss	STATUS,Z
          	goto	CALL_LCDPUTCHAR
          	goto	RESTORE_W
          
          CALL_LCDPUTCHAR
          	fcall	LCDPUTCHAR		;macro display on LCD
          
          RESTORE_W
          	movf	TEMP_W,W		;restore key/status
          	return
          Ho hum.

          It did interesting and original things the first way though.

          Comment


            Combined with memory paging and banking and you don't know where the feck you are...
            Last edited by zeitghost; 26 November 2008, 12:02.

            Comment




              Website is even more FUBAR now

              Was working; then I "upgraded" it; then it failed; then I got it working; activated a plugin (or tried to) and now it's giving me a "500 Internal Server Error"

              Sometimes, I really just want to cry.
              Best Forum Advisor 2014
              Work in the public sector? You can read my FAQ here
              Click here to get 15% off your first year's IPSE membership

              Comment


                Hurrah!

                I've killed the thread.

                All centuries and millennia are mine.

                Sorted

                Comment


                  Originally posted by zeitghost View Post
                  Hurrah!

                  I've killed the thread.

                  All centuries and millennia are mine.

                  Sorted
                  Oh.

                  Never mind.

                  As you were.

                  Back to this PIC assembler crap again.

                  Comment


                    Morning All
                    Just call me Matron - Too many handbags

                    Comment


                      Originally posted by Bumfluff View Post
                      Can someone give me a kick up the arse and tell me to do somew*rk I am totally unmotivated at the moment and have deadlines to meet, but for some reason I just dont care this time
                      no swearing!!!

                      You should drivel here a while - you while feel much better.....

                      Comment

                      Working...
                      X