Wed, 28 Oct 2009 17:59:32 -0500
Zend engine actually does have support for innerException
This concept of inner Exception is unusual for someone who programmes only in PHP, but in reality the inner Exception is a very common concept in other languages like java, .NET,
...
Mon, 12 Oct 2009 20:22:32 -0500
Use the If-Modified-Since/If-None-
Match headers in the http request when requesting rss feeds from the feedburner. Otherwiser they may block you if you request the same feed too frequently.
Mon, 12 Oct 2009 18:59:42 -0500
SELECT id, subject, keywords FROM ELIST_MESSAGE WHERE MATCH(subject) AGAINST ($thisSubject)
This should actually be modified to find ONLY thread starter messages
Tue, 06 Oct 2009 08:47:38 -0500
I wrote this small class as a part of this project but also decided to release it as separate class because it can be useful to many people. The main use for it is when you want to send an email in
plaintext format buy you only have HTML as an input.
...
Sat, 03 Oct 2009 11:22:54 -0500
SELECT MONTHNAME(counter_date), SUM(items_count)
FROM DAILY_COUNTER
GROUP BY YEAR(counter_date), MONTH(counter_date)
Tue, 29 Sep 2009 20:40:38 -0500
qpopper is a pop3 server, free and open source. Unfortunately its not installed by default on most linux distros, so you can download it from ftp://ftp.qualcomm.com/eudora/servers/unix/popper/
and then build yourself:
./configure
...
Fri, 25 Sep 2009 09:39:12 -0500
Why does Eclipse PDT "Gallileo" freezes up like a dead cunt?
Sun, 20 Sep 2009 12:16:38 -0500
Looks like submit by email is now working. So far tested only without an attachment
Sun, 20 Sep 2009 11:49:44 -0500
eclipse pdt is not that good
Tue, 15 Sep 2009 14:39:03 -0500
If object is serialized and it contained an instance of another objectwhich is a singleton, then after the parent object is unserialized, themember object still exists, but its a new instance of a
class, not thesame instance as before the
...