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
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.