Announcement

Collapse
No announcement yet.

Can somebody (meaning Asher) explain to me why this is even legal?

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

  • #16
    Microsoft is well-known for its humorous code samples.

    SP
    I got the Jete from C.C. Sabathia. : Jon Miller

    Comment


    • #17
      nerds




      sorry



      funny movie

      Comment


      • #18
        What's that? I can't hear you, Berz, over the overpowering sound of money funneling into my bank account.

        HC: http://news.usethesource.com/
        "The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
        Ben Kenobi: "That means I'm doing something right. "

        Comment


        • #19
          yes yes, that was 1 of the morals of the story

          I just wish I could understand basic troubleshooting

          whats the link for?

          Comment


          • #20
            Links to beautiful code
            "The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
            Ben Kenobi: "That means I'm doing something right. "

            Comment


            • #21
              Originally posted by Asher View Post
              What's that? I can't hear you, Berz, over the overpowering sound of money funneling into my bank account.

              HC: http://news.usethesource.com/
              Bad physics programmers get paid more than good compsci programmers...
              12-17-10 Mohamed Bouazizi NEVER FORGET
              Stadtluft Macht Frei
              Killing it is the new killing it
              Ultima Ratio Regum

              Comment


              • #22
                Originally posted by KrazyHorse View Post
                Bad physics programmers get paid more than good compsci programmers...
                Most physics programmers don't get paid ****.
                "The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
                Ben Kenobi: "That means I'm doing something right. "

                Comment


                • #23
                  That's because they choose to do physics....
                  12-17-10 Mohamed Bouazizi NEVER FORGET
                  Stadtluft Macht Frei
                  Killing it is the new killing it
                  Ultima Ratio Regum

                  Comment


                  • #24
                    Yeah, well, while you physics types waste time programming theoretical **** no one uses, people like me do all the real work in the world.

                    I just wrote a program this week to spam terribly-produced, cheap small business video commercials to about twenty different video websites in one shot online.

                    Suck on that.
                    "The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
                    Ben Kenobi: "That means I'm doing something right. "

                    Comment


                    • #25
                      Originally posted by Asher View Post
                      The main problem with Javascript is that the people who write in it tend to be stupid.

                      Here's code MS wrote for Sharepoint:
                      Code:
                      function DeferCall() {
                          if (arguments.length == 0) {
                              return null;
                          }
                          var args = arguments;
                          var fn = null;
                          if (browseris.ie5up || browseris.nav6up) {
                              eval("if (typeof(" + args[0] + ")=='function') { fn=" + args[0] + "; }");
                          }
                          if (fn == null) { return null; }
                          if (args.length == 1) {
                           return fn();
                          } else if (args.length == 2) {
                              return fn(args[1]);
                          } else if (args.length == 3) {
                              return fn(args[1], args[2]);
                          } else if (args.length == 4) {
                              return fn(args[1], args[2], args[3]);
                          } else if (args.length == 5) {
                              return fn(args[1], args[2], args[3], args[4]);
                          } else if (args.length == 6) {
                              return fn(args[1], args[2], args[3], args[4], args[5]);
                          } else if (args.length == 7) {
                              return fn(args[1], args[2], args[3], args[4], args[5], args[6]);
                          } else if (args.length == 8) {
                              return fn(args[1], args[2], args[3], args[4], args[5], args[6], args[7]);
                          } else if (args.length == 9) {
                              return fn(args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8]);
                          } else if (args.length == 10) {
                              return fn(args[1], args[2], args[3], args[4], args[5], args[6], args[7], args[8], args[9]);
                          } else {
                              var L_TooManyDefers_Text = "Too many arguments passed to DeferCall"
                              alert(L_TooManyDefers_Text);
                          }
                          return null;
                      }
                      (the purpose of the code is to get around IE5 Javascript limitations, but there's much better ways to do this)
                      This should be a xkcd comic. :wiglaf:
                      “As a lifelong member of the Columbia Business School community, I adhere to the principles of truth, integrity, and respect. I will not lie, cheat, steal, or tolerate those who do.”
                      "Capitalism ho!"

                      Comment


                      • #26
                        Originally posted by Asher View Post
                        Yeah, well, while you physics types waste time programming theoretical **** no one uses, people like me do all the real work in the world.

                        I just wrote a program this week to spam terribly-produced, cheap small business video commercials to about twenty different video websites in one shot online.

                        Suck on that.
                        I am a layman and a babe in the woods in respect to technology, however, whenever I want expert advice, I have allways known Asher to be the man on most issues, including ruling most debates
                        Hi, I'm RAH and I'm a Benaholic.-rah

                        Comment


                        • #27
                          Originally posted by Asher View Post
                          Yeah, well, while you physics types waste time programming theoretical **** no one uses, people like me do all the real work in the world.

                          I just wrote a program this week to spam terribly-produced, cheap small business video commercials to about twenty different video websites in one shot online.

                          Suck on that.
                          This week I wrote a program to check data quality on a few thousand timeseries and investigate the effect of bad data on various risk measures.

                          The results caused us to change the sourcing of a number of datastreams...
                          12-17-10 Mohamed Bouazizi NEVER FORGET
                          Stadtluft Macht Frei
                          Killing it is the new killing it
                          Ultima Ratio Regum

                          Comment


                          • #28
                            OK, I have an actual javascript question now for Asher/Kuciwalker:

                            Let's say I'm doing a regular expression so I have
                            someString.replace(/^@/,"")
                            What does the /stuff/ mean? If I were using regexes in another programming language, could I just replace it with quotes?
                            If there is no sound in space, how come you can hear the lasers?
                            ){ :|:& };:

                            Comment


                            • #29


                              According to some documentation I'm reading right now AUD = Austrian Dollar.

                              Somebody post that photograph with kangaroos and Hitler...
                              12-17-10 Mohamed Bouazizi NEVER FORGET
                              Stadtluft Macht Frei
                              Killing it is the new killing it
                              Ultima Ratio Regum

                              Comment


                              • #30
                                Originally posted by Hauldren Collider View Post
                                OK, I have an actual javascript question now for Asher/Kuciwalker:

                                Let's say I'm doing a regular expression so I have
                                someString.replace(/^@/,"")
                                What does the /stuff/ mean? If I were using regexes in another programming language, could I just replace it with quotes?
                                Depending on the language, yes. /pattern/ is just how regexp patterns are denoted in JS. That particular expression, as I'm sure you know, removes preceding '@' from a string.
                                "The issue is there are still many people out there that use religion as a crutch for bigotry and hate. Like Ben."
                                Ben Kenobi: "That means I'm doing something right. "

                                Comment

                                Working...
                                X