By Ryan on January 20, 2009
Tyler left a comment on one of my early blog posts, Mootools is not dead. His comment follows:
What would you say about this now? I agree with the subtext suggested by the authors of your excerpted posts. There has been an undercurrent in the MooTools-o-sphere for more than a year now: that developers’ insolence leaves [...]
Posted in Mootools | Tagged disconnection, Mootools, solution, state
By Ryan on August 29, 2008
Often during development you use firebug to figure things out. You might have wanted to test your code in another browser and you discover a bug! But it isn’t, it’s just because you forgot to take out that firebug debug line. You know all about these types of errors caused by console.log.
console.log(window);
The line above could [...]
Posted in Javascript | Tagged console, firebug, Javascript, solution
By Ryan on August 25, 2008
KS95 is a local radio station in the Twin Cities, Minnesota, United States. It’s a top-40 station and also has some interesting personality hosts set in block of four or six hours.
I have a few online radio stations that I listen to depending on the time of day and my mood/mind set. Today, I wanted [...]
Posted in Abstract | Tagged itunes, music, solution, wmp
By Ryan on August 24, 2008
While working on some validation required in CakePHP, I came across this annoying error.
Warning (2): preg_match() [function.preg-match]: Delimiter must not be alphanumeric or backslash [CORE\cake\libs\model\model.php, line 2202]
That error has come up before in the CakePHP trac tickets, but it was for a different part of validation. Here’s what it means and how to fix it.
The [...]
Posted in PHP | Tagged CakePHP, errors, fix, PHP, solution, warning
By Ryan on August 6, 2008
While working on my mini-framework, I came across this error. I was looking for a reason of why it showed up, since everything in the class seemed to be just fine. This error is pretty vague.
Here’s what’s it’s saying, in reality, even though it does not seem that way. It says, “There is a member [...]
Posted in PHP | Tagged Error, PHP, reason, solution