1. Thecreator767 Builder
    Builder ⛰️ Ex-President ⚒️⚒️

    Joined:
    Apr 22, 2012
    Messages:
    3,164
    Trophy Points:
    40,440
    Gender:
    Male
    Ratings:
    +248
    Found this on the internet.... Basically sums up what happens every time I try to make something :3

    I also think that KHobbits can relate to this
     
  2. Thecreator767 Builder
    Builder ⛰️ Ex-President ⚒️⚒️

    Joined:
    Apr 22, 2012
    Messages:
    3,164
    Trophy Points:
    40,440
    Gender:
    Male
    Ratings:
    +248
  3. JamieSinn Retired Lead Administrator/Developer
    Builder ⛰️ Ex-Tycoon ⚜️⚜️⚜️ Premium Upgrade

    Joined:
    Jun 4, 2011
    Messages:
    5,447
    Trophy Points:
    82,090
    Gender:
    Male
    Ratings:
    +4,567
    Any regular programmer would say, "Why is my code working, oh wait, it isn't"
     
  4. kukelekuuk C͕̹̲̽ͪ͐ͩ̔L̜̦̝͈ͦ̿̾̿ḘA̻̗̤̳̐ͭ̆̿̃̑ͭN̊̓͑̇ͯ
    Builder ⛰️ Ex-EcoLeader ⚜️⚜️⚜️ Premium Upgrade

    Joined:
    May 25, 2011
    Messages:
    10,007
    Trophy Points:
    84,160
    Ratings:
    +6,910
    Most of these errors don't happen when you use an IDE! The problems are usually much more subtle. like a number being wrong in a complex algorithm, or script with a couple of nested loops that has a mistake in them.
    Or.. Fixing regexes like these:
    Code:
    /((^\[.*\]\s?(\[.+\])\s?((\[.+\]){0,3})\s?(.*): (.*))|(^\[.*\]\s?\*\*\*(\[SHOUT\]).*)|(^\[.*\]\s?(\[Broadcast\]|\[Server\]).*)|(^\[.*\]\s?(.*)\s?won the Survival Games.*)|(^\[.*\]\s?(\[LOTTERY\])(\s?Congratulations\s?go\s?to\s?(.*)\s?for\s?winning\s?(.*)\s?with \s?(.*)\s?tickets\..*|\s?There\s?was\s?a\s?total\s?of\s?.*\s?player.?\s?buying\s?.*\s?ticket.?)))/
    ^ that's the regex I use to parse out chat, shouts, lottery and sg from my logs, looks great, doesn't it?
    They can give you quite the headache sometimes.
     
    #4 kukelekuuk, Feb 2, 2014
    Last edited: Feb 2, 2014
  5. Thecreator767 Builder
    Builder ⛰️ Ex-President ⚒️⚒️

    Joined:
    Apr 22, 2012
    Messages:
    3,164
    Trophy Points:
    40,440
    Gender:
    Male
    Ratings:
    +248
    True, but if you're a n00b like me, you find ways to screw things up completely.