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. Autism

Autism

Scheduled Pinned Locked Moved The Back Room
comtools
52 Posts 13 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.
  • I Ian Shlasko

    Hahaha... Gotta love that... The guy's my favorite actor, and I never even realized he was the one playing Gordon in the new Batman movies until I checked the credits.

    Proud to have finally moved to the A-Ark. Which one are you in?
    Author of the Guardians Saga (Sci-Fi/Fantasy novels)

    R Offline
    R Offline
    ragnaroknrol
    wrote on last edited by
    #35

    Best part of all this, he has a Bacon # of 1. :) Witness for the Prosecution or something like that with him and Christian Slater if I remember correctly.

    If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

    I 1 Reply Last reply
    0
    • J JHizzle

      I was impressed with his chinese accent (being chinese descent myself). Followed up by the "[What do I farm?]...I'm a lead farmer mofo!"

      I Offline
      I Offline
      Ian Shlasko
      wrote on last edited by
      #36

      Haha... Yeah, that movie would have been complete crap without him. (As it stands, it was only semi-complete crap - Hey, the man can only do so much)

      Proud to have finally moved to the A-Ark. Which one are you in?
      Author of the Guardians Saga (Sci-Fi/Fantasy novels)

      1 Reply Last reply
      0
      • R ragnaroknrol

        JHizzle wrote:

        Doom beats Batman but Batman had already planned for this and thus turn the tables on what would, eventually, turn out to be a Doombot.

        I think I found out how they came up with Recursion...

        If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

        J Offline
        J Offline
        JHizzle
        wrote on last edited by
        #37

        dangit. Now I just came up with this rather than writing documentation:

        Public Enum Character
            Batman
            Doom
        End Enum
        
        Public Function WhoWins(ByVal Winner As Character) As Character
            Dim objWinner As Character
            Dim objActualWinner As Character
            If Winner = Character.Batman Then
                objActualWinner = Character.Doom
            Else
                objActualWinner = Character.Batman
            End If
            objWinner = WhoWins(objActualWinner)
            Return objWinner
        End Function
        

        My brain is weird

        R 1 Reply Last reply
        0
        • R ragnaroknrol

          Best part of all this, he has a Bacon # of 1. :) Witness for the Prosecution or something like that with him and Christian Slater if I remember correctly.

          If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

          I Offline
          I Offline
          Ian Shlasko
          wrote on last edited by
          #38

          Jack: "You want the truth?" Chris: "Yeah!" Jack: "The truth is, you walk like me, you talk like me, you don't have an original bone in your body!" Chris (Same accent): "That's a freakin' lie!" -- "The Critic"

          Proud to have finally moved to the A-Ark. Which one are you in?
          Author of the Guardians Saga (Sci-Fi/Fantasy novels)

          R 1 Reply Last reply
          0
          • J JHizzle

            dangit. Now I just came up with this rather than writing documentation:

            Public Enum Character
                Batman
                Doom
            End Enum
            
            Public Function WhoWins(ByVal Winner As Character) As Character
                Dim objWinner As Character
                Dim objActualWinner As Character
                If Winner = Character.Batman Then
                    objActualWinner = Character.Doom
                Else
                    objActualWinner = Character.Batman
                End If
                objWinner = WhoWins(objActualWinner)
                Return objWinner
            End Function
            

            My brain is weird

            R Offline
            R Offline
            ragnaroknrol
            wrote on last edited by
            #39

            JHizzle wrote:

            My brain is weird

            Cause you code in some obscure language? ;P /ducks

            If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

            J 1 Reply Last reply
            0
            • I Ian Shlasko

              Jack: "You want the truth?" Chris: "Yeah!" Jack: "The truth is, you walk like me, you talk like me, you don't have an original bone in your body!" Chris (Same accent): "That's a freakin' lie!" -- "The Critic"

              Proud to have finally moved to the A-Ark. Which one are you in?
              Author of the Guardians Saga (Sci-Fi/Fantasy novels)

              R Offline
              R Offline
              ragnaroknrol
              wrote on last edited by
              #40

              The Critic was before its time. Had they done it 5 years later it would have been a hit.

              If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

              I 1 Reply Last reply
              0
              • R ragnaroknrol

                JHizzle wrote:

                My brain is weird

                Cause you code in some obscure language? ;P /ducks

                If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                J Offline
                J Offline
                JHizzle
                wrote on last edited by
                #41

                Quack! Fiiiinnneee:

                    public enum Character
                    {
                        Batman,
                        Doom
                    }
                
                
                    public Character WhoWins(Character Winner)
                    {
                        Character objWinner;
                        Character objActualWinner;
                        if (Winner == Character.Batman)
                        {
                            objActualWinner = Character.Doom;
                        }
                        else
                        {
                            objActualWinner = Character.Batman;
                        }
                        objWinner = WhoWins(objActualWinner);
                        return objWinner;
                    }
                
                R 1 Reply Last reply
                0
                • R ragnaroknrol

                  The Critic was before its time. Had they done it 5 years later it would have been a hit.

                  If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                  I Offline
                  I Offline
                  Ian Shlasko
                  wrote on last edited by
                  #42

                  Totally... Awesome show, even if they did reuse the same parody clips over and over and over...

                  Proud to have finally moved to the A-Ark. Which one are you in?
                  Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                  R 1 Reply Last reply
                  0
                  • J JHizzle

                    Quack! Fiiiinnneee:

                        public enum Character
                        {
                            Batman,
                            Doom
                        }
                    
                    
                        public Character WhoWins(Character Winner)
                        {
                            Character objWinner;
                            Character objActualWinner;
                            if (Winner == Character.Batman)
                            {
                                objActualWinner = Character.Doom;
                            }
                            else
                            {
                                objActualWinner = Character.Batman;
                            }
                            objWinner = WhoWins(objActualWinner);
                            return objWinner;
                        }
                    
                    R Offline
                    R Offline
                    ragnaroknrol
                    wrote on last edited by
                    #43

                    Ah, better. I could sorta read the first. This still hurts my brain... but I can read it better. This is like the buttered toast on a cat's back thing.

                    If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                    J 1 Reply Last reply
                    0
                    • I Ian Shlasko

                      Totally... Awesome show, even if they did reuse the same parody clips over and over and over...

                      Proud to have finally moved to the A-Ark. Which one are you in?
                      Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                      R Offline
                      R Offline
                      ragnaroknrol
                      wrote on last edited by
                      #44

                      I think Family Guy learned a lot from that show though. Timing, lightning fast parodies, mocking the right celebs, it was all just waiting for someone to refine it.

                      If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                      I 1 Reply Last reply
                      0
                      • R ragnaroknrol

                        Ah, better. I could sorta read the first. This still hurts my brain... but I can read it better. This is like the buttered toast on a cat's back thing.

                        If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                        J Offline
                        J Offline
                        JHizzle
                        wrote on last edited by
                        #45

                        Given a good runup, I could probably do it in java for you too :D Apparently someone did try to get a grant to do the buttered toast thing. Even though that fell through, they still tried it. It then failed due to not seperating the cats from the bread and butter supplies.

                        R 1 Reply Last reply
                        0
                        • R ragnaroknrol

                          I think Family Guy learned a lot from that show though. Timing, lightning fast parodies, mocking the right celebs, it was all just waiting for someone to refine it.

                          If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                          I Offline
                          I Offline
                          Ian Shlasko
                          wrote on last edited by
                          #46

                          Family Guy annoys me, though... Too many pointless flashbacks with stupid gags... It's like Cartman says in the Cartoon Wars episodes of South Park...

                          Proud to have finally moved to the A-Ark. Which one are you in?
                          Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                          1 Reply Last reply
                          0
                          • J JHizzle

                            Given a good runup, I could probably do it in java for you too :D Apparently someone did try to get a grant to do the buttered toast thing. Even though that fell through, they still tried it. It then failed due to not seperating the cats from the bread and butter supplies.

                            R Offline
                            R Offline
                            ragnaroknrol
                            wrote on last edited by
                            #47

                            JHizzle wrote:

                            I could probably do it in java for you too

                            No that's okay... I'm good.

                            JHizzle wrote:

                            It then failed due to not seperating the cats from the bread and butter supplies.

                            Cats are so devious they make sure to maintain the mystery of their powers by eating anything that might be able to experiment on these powers. I swear, if they had opposible thumbs, they would own us.

                            If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                            J 1 Reply Last reply
                            0
                            • R ragnaroknrol

                              JHizzle wrote:

                              I could probably do it in java for you too

                              No that's okay... I'm good.

                              JHizzle wrote:

                              It then failed due to not seperating the cats from the bread and butter supplies.

                              Cats are so devious they make sure to maintain the mystery of their powers by eating anything that might be able to experiment on these powers. I swear, if they had opposible thumbs, they would own us.

                              If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                              J Offline
                              J Offline
                              JHizzle
                              wrote on last edited by
                              #48

                              ragnaroknrol wrote:

                              No that's okay... I'm good.

                              *cue evil laughter*

                              ragnaroknrol wrote:

                              I swear, if they had opposible thumbs, they would own us.

                              You know... Some of them do... I'm actually sure mine can generate Portals. She walked into the study one day, went under my desk on the other side of the room and then came back in through the study door.

                              R 1 Reply Last reply
                              0
                              • J JHizzle

                                ragnaroknrol wrote:

                                No that's okay... I'm good.

                                *cue evil laughter*

                                ragnaroknrol wrote:

                                I swear, if they had opposible thumbs, they would own us.

                                You know... Some of them do... I'm actually sure mine can generate Portals. She walked into the study one day, went under my desk on the other side of the room and then came back in through the study door.

                                R Offline
                                R Offline
                                ragnaroknrol
                                wrote on last edited by
                                #49

                                JHizzle wrote:

                                I'm actually sure mine can generate Portals. She walked into the study one day, went under my desk on the other side of the room and then came back in through the study door.

                                One of our cats can do this too. If he hears me in the basment messing with the cat food he will suddenly be in front of me trying to trip me...

                                If I have accidentally said something witty, smart, or correct, it is purely by mistake and I apologize for it.

                                1 Reply Last reply
                                0
                                • C Christian Graus

                                  I had my swine flu shot on the weekend. I'll keep you posted if any signs of autism occur. I'm hoping to be a savant with special abilities and so on. Nothing so far, tho.

                                  Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

                                  C Offline
                                  C Offline
                                  CaptainSeeSharp
                                  wrote on last edited by
                                  #50

                                  You better get another one just in case the potency has dropped from over a year of storage.

                                  Invisible Empire: A New World Order Defined (High Quality 2:14:01)[^] Watch the Fall of the Republic (High Quality 2:24:19)[^] The Truthbox[^]

                                  1 Reply Last reply
                                  0
                                  • S Simon_Whale

                                    nah you wont be that lucky as it only occurs in the 1% of sufferers, 3% get aspergers.

                                    Marc Clifton wrote:

                                    That has nothing to do with VB. - Oh crap. I just defended VB!

                                    J Offline
                                    J Offline
                                    Joe Simes
                                    wrote on last edited by
                                    #51

                                    Simon_Whale wrote:

                                    3% get aspergers.

                                    Mmm I love aspergers lightly grilled with olive oil and then sprinkled with a bit of Parmigiano-Reggiano. I also love Brussels sprouts! :)

                                    1 Reply Last reply
                                    0
                                    • R R Giskard Reventlov

                                      Christian Graus wrote:

                                      I had my swine flu shot on the weekend.

                                      Why? I thought the efficacy of these shots was, at best, a tad iffy: what is the likelihood that the vaccine will have any potency with a possibly mutated virus? My one and only flu jab was rubbish. I never got the flu... :)

                                      me, me, me "The dinosaurs became extinct because they didn't have a space program. And if we become extinct because we don't have a space program, it'll serve us right!" Larry Niven

                                      C Offline
                                      C Offline
                                      Christian Graus
                                      wrote on last edited by
                                      #52

                                      Because it was free, and I figured I could post about it :-)

                                      Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.

                                      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