Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 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
    #11

    Re: Programming Poetry/Humor?

    Lol yeah, I often found nobody got any of my jokes outside my colleagues.

    One of my favorites I heard one of my professors say:

    Q: why aren't jokes in octal funny?
    A: because 7, 10, 11

    I find whenever I tell my friends that one, they usually respond with groans rather than laughs.


  2. Registered TeamPlayer Phyrelight's Avatar
    Join Date
    07-18-07
    Location
    Arizona
    Posts
    3,620
    Post Thanks / Like
    Stat Links

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

    Steam ID: Phyrelight Phyrelight's Originid: Phyrelightaz
    #12

    Re: Programming Poetry/Humor?

    What do you call a programmer from Finland? Nerdic
    Why did the programmer quit his job? He didn't get arrays
    Why do java programmers have to wear glasses? Because they don't C#
    Likes DJ Ms. White liked this post

  3. 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
    #13

    Re: Programming Poetry/Humor?

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

  4. 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
    #14

    Re: Programming Poetry/Humor?

    Likes salty99 liked this post
    enf-Jesus its been like 12 minutes and you're already worried about stats?! :-P
    Bigdog-
    Sweet home Alabama you are an idiot.

  5. 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
    #15

    Re: Programming Poetry/Humor?

    Quote Originally Posted by DJ Mr. White View Post
    hah! one of the best reads I've seen lately. Thanks for sharing


  6. 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
    #16
    enf-Jesus its been like 12 minutes and you're already worried about stats?! :-P
    Bigdog-
    Sweet home Alabama you are an idiot.

  7. Registered TeamPlayer
    Join Date
    09-13-07
    Location
    Tomball, TX
    Posts
    689
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor?
    #17

    Re: Programming Poetry/Humor?

    The coding love

    I love the intern ones...
    Likes DJ Ms. White liked this post

  8. Registered TeamPlayer
    Join Date
    09-13-07
    Location
    Tomball, TX
    Posts
    689
    Post Thanks / Like
    Stat Links

    Programming Poetry/Humor? Programming Poetry/Humor?
    #18

  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
    #19

    Re: Programming Poetry/Humor?

    Hahaha shatter, great post. There were some hilarious ones, my personal favorite was this one:

    //Code sanitized to protect the foolish.
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Reflection;
    using System.Web.UI;

    namespace Mobile.Web.Control
    {
    /// <summary>
    /// Class used to work around Richard being a fucking idiot
    /// </summary>
    /// <remarks>
    /// The point of this is to work around his poor design so that paging will
    /// work on a mobile control. The main problem is the BindCompany() method,
    /// which he hoped would be able to do everything. I hope he dies.
    /// </remarks>
    public abstract class RichardIsAFuckingIdiotControl : MobileBaseControl, ICompanyProfileControl
    {
    protected abstract Pager Pager { get; }

    public void BindCompany(int companyId) { }

    public RichardIsAFuckingIdiotControl()
    {
    MakeSureNobodyAccidentallyGetsBittenByRichardsStup idity();
    }

    private void MakeSureNobodyAccidentallyGetsBittenByRichardsStup idity()
    {
    // Make sure nobody is actually using that fucking bindcompany method
    MethodInfo m = this.GetType().GetMethod("BindCompany", BindingFlags.DeclaredOnly |
    BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
    if (m != null)
    {
    throw new RichardIsAFuckingIdiotException("No!! Don't use the fucking BindCompany method!!!");
    }
    // P.S. this method is a joke ... the rest of the class is fucking serious
    }

    /// <summary>
    /// This returns true if this control is supposed to be doing anything
    /// at all for this request. Richard thought it was a good idea to load
    /// the entire website during every request and have things turn themselves
    /// off. He also thought bandanas and aviator sunglasses were "fuckin'
    /// gnarly, dude."
    /// </summary>
    protected bool IsThisTheRightPageImNotSureBecauseRichardIsDumb()
    {
    return Request.QueryString["Section"] == this.MenuItemKey;
    }

    protected override void OnLoad(EventArgs e)
    {
    if (IsThisTheRightPageImNotSureBecauseRichardIsDumb() )
    {
    Page.LoadComplete += new EventHandler(Page_LoadComplete);
    Pager.RowCount = GetRowCountBecauseRichardIsDumb();
    }
    base.OnLoad(e);
    }

    protected abstract int GetRowCountBecauseRichardIsDumb();
    protected abstract void BindDataBecauseRichardIsDumb();

    void Page_LoadComplete(object sender, EventArgs e)
    {
    BindDataBecauseRichardIsDumb();
    }

    // the rest of his reduh-ndant interface members
    public abstract string MenuItemName { get; set; }
    public abstract string MenuItemKey { get; set; }
    public abstract bool IsCapable(CapabilityCheck checker, int companyId);
    public abstract bool ShowInMenu { get; }
    public virtual Control CreateHeaderControl()
    {
    return null;
    }
    }
    }
    Likes DJ Ms. White liked this post


  10. 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
    #20

    Re: Programming Poetry/Humor?



Page 2 of 3 FirstFirst 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