Here are the notes I took from my first NYC Drupal Meetup. I highly recommend the group. I learned an enormous amount, I got to see the legendary Earl Miles, and the space where it’s held is nothing short of breathtaking (think Hudson River views + floor to ceiling windows).
Drupal NYC Meetup 5/13/09
Speakers:
- Ezra Gildesgame
- Earl Miles (merlinofchaos)
- George Weiner, CTO of dosomething.org
Nodequeue The nodequeue module can:
- Keep track of how to notify users
- Be used for granular permissions:
- Ex: separate editors for designers, developers, admins
- Works very well with Nodes and Panels
- You can create Views specific to one queue
- Recently added international support
- You can have a MAX SIZE to the nodequeue
- Once you’ve exceeded the max, the oldest story will be kicked out.
- That’s why nodequeue works so well for lead stories
- USE CASE: Read more »
Filed in: Drupal, media, programming, technology | am | May 29, 2009 | Comments (2)
Tags: awesome office space, Drupal, drupal notes, meetup, merlinofchaos, panels, views
There are three main resources I’ve been using to teach myself Objective-C, Cocoa Touch and iPhone programming:


The cookbook is excellent as a reference, and as a human-readable, easy-analogy alternative to the lecture slides.
The class itself holds your hand with their assignments, and I have been slowly builing up my Obj-C development skills through their carefully thought-out assignments.
Finally, the ADC videos provide an excellent window into what iPhone OS 3.0 can do, and code samples to help you start actually doing it.
Now, you may be asking, “that’s all fine and good, but where do the LOLCATS come in?”
SO, you only need look at someone and you can quickly make an assessment if they’re an apple or a PC person. Apple’s TV marketing depends on it. But I would like to argue that you need only look at their EDUCATIONAL SLIDE MATERIAL to make the same assessment.
Sure, this isn’t from WWDC, but this is on iTunes to help people understand how to use iPhone OS 3.0. If I wasn’t a Mac convert before, this truly would have made me a believer:

Brilliant. Bloody fucking brilliant.
Filed in: education, media, programming, software, technology | am | May 5, 2009 | Comments (0)
Tags: apple, cocoa touch, iphone, lolcats, microsoft sucks, objective-c, tech
So I’ve been trying to write an Excel macro to select only the last trading day of the week from a list of Dates. Typically, this is a Friday, but when Friday falls on a holiday, the last day of the week can be a Thursday.
I made a list of all non-Friday end-of-the-weeks going back to 2006, and wrote a simple little function to loop through this list, and return true if the current date matches any one of them.
The problem is, there is no Break keyword in VBA. And unlike functions in other languages that return a value, when the minute you return a value, the function exits, VBA just keeps on going on its merry way. So the minute I found my correct date, set the return value to True, and wanted to return to my main code, I had to explicitly exit the function. Here is the full function. The needed extra line is “Exit Function”:
Read more »