[ Content | View menu ]

Archive for 'Languages'

PHP Insanity IX

Mark Mzyk May 8, 2008

Recently, on Hacker News, this question was asked: What do hackers think of PHP? If you’re thinking about PHP, I suggest you read the comments.  You’ll notice there is a constant refrain: You can use PHP, but you had better have discipline. Sure, you can use PHP or any language, but of course you need [...]

Languages - 0 Comments


PHP Insanity VIII

Mark Mzyk May 1, 2008

If you’d rather not read what I have to say about today’s PHP Insanity, you can attempt to find it for yourself on the php.net error_log man page. In my daily work, I use the error_log function often.  It was shown to me by a coworker and I’ve found it handy ever since.  However, my [...]

Languages - 0 Comments


PHP Insanity VII

Mark Mzyk April 14, 2008

I discovered an interesting bit of insanity in PHP while at work the other day. Define a function in PHP and make sure it has at least one argument, but that argument should not have a default. So the function should be something like: public function foo( $bar ) Not: public function foo( $bar=fubar ) [...]

Languages - 0 Comments


Erlang Garbage Collection

Mark Mzyk March 30, 2008

When I asked the question about how Erlang Garbage Collection works, I expected that because of Erlang’s focus on concurrency its garbage collection algorithm would be incredibly complicated. I was wrong.  Turns out, it’s rather simple as far as garbage collection algorithms go, thanks in large part to how Erlang uses processes.

Languages - 1 Comments


PHP Insanity VI

Mark Mzyk March 21, 2008

Today’s quote comes from CoffeeGhost.net: PHP is simple to set up for web apps and easy to learn. Nearly all web hosts support it and there are many easy to install applications (like, for example, WordPress). But it has a lot of quirks and inconsistencies (too long to go into here) that it doesn’t need [...]

Languages - 0 Comments