Page 1 of 3 123 LastLast
Results 1 to 10 of 21

Thread: Programming Poetry/Humor?

  1. Registered TeamPlayer salty99's Avatar
    Join Date
    05-13-09
    Location
    Arizona
    Posts
    6,117
    Post Thanks / Like
    Blog Entries
    3
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor?
    Gamer IDs

    Gamertag: salty99 PSN ID: mynameisfatmike salty99's Originid: mynameisfatmike
    #1

    Programming Poetry/Humor?

    As October 12 approaches, I am reminded of a Haiku I wrote in remembrance of the late Dennis Ritchie

    "Ode to Dennis"

    The beauty of C,
    Procedural ecstasy.
    Memory frees me.

    I was inspired by one of the great haiku's:

    One-hundred ten.
    One-hundred eleven.
    One-hundred twelve.

    Anybody else know any good programming artistry or jokes?


  2. Administrator Kanati's Avatar
    Join Date
    05-15-08
    Location
    Pekin, Illinois, United States
    Posts
    17,724
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor?
    #2

    Re: Programming Poetry/Humor?

    Likes DJ Ms. White, salty99, BrockSamson liked this post

    Krakkens and shit. stop tempting them.
    -- Bigdog

  3. Registered TeamPlayer
    Join Date
    07-21-09
    Posts
    4,096
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor?
    #3

    Re: Programming Poetry/Humor?

    Quote Originally Posted by salty99 View Post
    [...]

    Anybody else know any good programming artistry or jokes?

    This might have gone in the "But Is It Art?" thread:

    Code:
    float InvSqrt (float x){
       float xhalf = 0.5f*x ;
       int i = *(int*)&x;
       i = 0x5f3759df - (i>>1);
       x = *(float*)&i;
       x = x*(1.5f - xhalf*x*x);
       return x;
    }

    ... except that there's no question.


    Æ
    Likes salty99 liked this post

  4. Registered TeamPlayer chray00's Avatar
    Join Date
    01-15-10
    Posts
    1,333
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor?
    Gamer IDs

    Steam ID: chray00 chray00's Originid: Chray00
    #4

    Re: Programming Poetry/Humor?

    // what the fuck?

  5. Registered TeamPlayer chray00's Avatar
    Join Date
    01-15-10
    Posts
    1,333
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor?
    Gamer IDs

    Steam ID: chray00 chray00's Originid: Chray00
    #5

    Re: Programming Poetry/Humor?

    Here's a good joke. It's related to Java so you know it's going to be hilarious.

    Did you know that using, say, "scanner.nextInt()" instead of the righteous "clavier.lireInt()" French equivalent is absolutely unacceptable programming behavior, and shall be granted with a grade of 0 should you dare putting that in a test? No? Welp, too fucking late. Have a nice zero next to your name.

    This is so fucking funny. I'd be out of breath if I wasn't busy smashing my skull on my desk.
    Likes salty99 liked this post

  6. Registered TeamPlayer salty99's Avatar
    Join Date
    05-13-09
    Location
    Arizona
    Posts
    6,117
    Post Thanks / Like
    Blog Entries
    3
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor?
    Gamer IDs

    Gamertag: salty99 PSN ID: mynameisfatmike salty99's Originid: mynameisfatmike
    #6

    Re: Programming Poetry/Humor?

    While not strictly software related, I came across a meme one of my buddies made when we were in a complex state space variables class in our undergrad - This one had me LOLing for a good few minutes.



    I've seen automata theory, disgusting physics, abstract mathematics of various kinds, but nothing I have ever witnessed came even close to the level of absurdity I've seen in control theory mathematics. Out of a total 6 questions, I got one question right on my final in that class, attempted 2, and left 3 blank and got a B+. I thought I wanted to specialize in controls - that class made me change my mind faster than a jackrabbit in heat.

    In other news, I think there needs to be some sort of capchta QA/QC standardization - some of these are just getting out of hand



  7. Registered TeamPlayer DJ Ms. White's Avatar
    Join Date
    11-13-07
    Location
    Plano, TX and Ruston, LA
    Posts
    32,364
    Post Thanks / Like
    Blog Entries
    43
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor?
    Gamer IDs

    Steam ID: DJMrWhite
    #7

    Re: Programming Poetry/Humor?

    That one's easy.
    "Fuck you"
    enf-Jesus its been like 12 minutes and you're already worried about stats?! :-P
    Bigdog-
    Sweet home Alabama you are an idiot.

  8. Registered TeamPlayer
    Join Date
    07-21-09
    Posts
    4,096
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor?
    #8

    Re: Programming Poetry/Humor?

    Quote Originally Posted by salty99 View Post
    While not strictly software related, I came across a meme one of my buddies made when we were in a complex state space variables class in our undergrad - This one had me LOLing for a good few minutes.


    Complex numbers are of the form:

    a + bi


    Æ

  9. Registered TeamPlayer salty99's Avatar
    Join Date
    05-13-09
    Location
    Arizona
    Posts
    6,117
    Post Thanks / Like
    Blog Entries
    3
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor? Programming Poetry/Humor?
    Gamer IDs

    Gamertag: salty99 PSN ID: mynameisfatmike salty99's Originid: mynameisfatmike
    #9

    Re: Programming Poetry/Humor?

    Ah I should have specified - in electrical engineering fields, such as electromagnetics and signals and systems, convention uses j to denote the imaginary component rather than i, as i is also used for current in many cases.

    One of the fundamental identities being Euler's formula which states e^(jz) = cos(z) + j*sin(z) using this convention. This meme is a parody of that identity
    Likes Phyrelight liked this post


  10. Registered TeamPlayer
    Join Date
    07-21-09
    Posts
    4,096
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor?
    #10

    Re: Programming Poetry/Humor?

    Quote Originally Posted by salty99 View Post
    Ah I should have specified - in electrical engineering fields, such as electromagnetics and signals and systems, convention uses j to denote the imaginary component rather than i, as i is also used for current in many cases.

    One of the fundamental identities being Euler's formula which states e^(jz) = cos(z) + j*sin(z) using this convention. This meme is a parody of that identity

    Friggin' engineers.

    The j/i swap made me miss Euler's Identity. I'm way out of practice: no pi for me.

    It's a great joke. I fear its memetic potential will be limited to those who recognize the notation.

    ... also, Easy-E isn't as fresh as he used to be.


    Æ

Page 1 of 3 123 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Title