New Section: C Stuff
ט' תשרי תשס"ז - September 30, 2006I've been collecting nifty tricks and useful factoids about C, and I think I'll start posting them here.
Look for the first post sometime on Tuesday, with 3-4 posts weekly after that!
I've been collecting nifty tricks and useful factoids about C, and I think I'll start posting them here.
Look for the first post sometime on Tuesday, with 3-4 posts weekly after that!
Thanks in part to people like Jameel begging me for a link, I've added a blogroll (*shudder*... I hate that word!) to my site. Like all tabs, it's collapsable if you don't like it. I've tried to categorize those blogs I read frequently by their defining attributes, although being in one category doesn't mean they don't also belong in others.
Also, the category of Israel is not labeled Zionist for a reason. Thoughtful doesn't negate Jewish; the main criteria is what methodologies / assumptions go into posts. Blogs updated in the last 36 hours are in italics with a darker gray background color.
Most PHP tasks are designed to be run concurrently, that is, several instances of the same task can run simultaneously. For example, my home page should be displayed to all viewers, even if they're trying to access it at the same time.
Other tasks, however, should only be run one at a time. For instance, an update (cron) task should probably refuse to run (or wait) if it sees another task running. Here's how to implement that.
(more...)