Thread: What is this called?(Brain Fart)

Results 1 to 6 of 6
  1. #1 What is this called?(Brain Fart) 
    Registered Member
    Join Date
    Apr 2010
    Posts
    392
    Thanks given
    24
    Thanks received
    26
    Rep Power
    16
    Hey, well I had a discussion with a freind about my, i guess ill call it "Code Optimization" for now, any ways, when we were talking, i had a Epic Brain Fart, on what its called when you would do:
    Code:
    public void HERPDERP() {
         if (HERPDaRP) {
                 DoSomeShitHere();
          } else {
                 DoSomeOtherShitHere();
          }
    }
    instead of:
    Code:
    public void HERPDERP() {
    if (HERPDaRP) {
    DoSomeShitHere();
    } else {
    DoSomeOtherShitHere();
    }
    }
    Reply With Quote  
     

  2. #2  
    Registered Member (x²)'s Avatar
    Join Date
    Aug 2011
    Posts
    59
    Thanks given
    1
    Thanks received
    4
    Rep Power
    11
    Conventions.
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member
    Join Date
    Apr 2010
    Posts
    392
    Thanks given
    24
    Thanks received
    26
    Rep Power
    16
    Quote Originally Posted by (x²) View Post
    Conventions.
    Thanks lol
    Reply With Quote  
     

  5. #4  
    Respected Member

    Join Date
    Jan 2009
    Posts
    5,682
    Thanks given
    1,093
    Thanks received
    3,494
    Discord
    View profile
    Rep Power
    5000
    Conventions and it makes no difference in performance just makes programming easier.
    Reply With Quote  
     

  6. #5  
    Registered Member
    thim slug's Avatar
    Join Date
    Nov 2010
    Age
    25
    Posts
    4,142
    Thanks given
    1,079
    Thanks received
    1,137
    Discord
    View profile
    Rep Power
    5000
    Quote Originally Posted by tombeast View Post
    Hey, well I had a discussion with a freind about my, i guess ill call it "Code Optimization" for now, any ways, when we were talking, i had a Epic Brain Fart, on what its called when you would do:
    Code:
    public void HERPDERP() {
         if (HERPDaRP) {
                 DoSomeShitHere();
          } else {
                 DoSomeOtherShitHere();
          }
    }
    instead of:
    Code:
    public void HERPDERP() {
    if (HERPDaRP) {
    DoSomeShitHere();
    } else {
    DoSomeOtherShitHere();
    }
    }
    Bad naming conventions...
    Reply With Quote  
     

  7. #6  
    Banned

    Join Date
    Jul 2011
    Age
    27
    Posts
    748
    Thanks given
    2,207
    Thanks received
    451
    Rep Power
    0
    tabs jk, what they all said
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. Fart Spelling Bee
    By 2ndOfMay in forum Humor
    Replies: 0
    Last Post: 11-21-2009, 08:37 AM
  2. [508] Fart Command
    By *~Pwnt~* in forum Configuration
    Replies: 12
    Last Post: 01-17-2009, 02:25 AM
  3. Fart skill
    By *~Pwnt~* in forum Tutorials
    Replies: 38
    Last Post: 12-30-2008, 07:44 PM
  4. Fart command
    By *~Pwnt~* in forum Tutorials
    Replies: 4
    Last Post: 11-29-2008, 08:06 PM
  5. Fragrant fart?
    By Hack Yah in forum Videos
    Replies: 4
    Last Post: 03-05-2008, 11:18 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •