/*
 * =====================================================================================
 *
...

C Using semaphores in C and f...

by jarodluebbert.myopenid.com, March 24, 2010 07:28, No refactoring, tagged with c, concurrency, ipc, semaphores

Just posting this to check ...

3a5f66f6c3feb6092d375c3e145de0d4 Talk
def flights_by_airline(airline_id, flight_number=nil, date=nil, params={})     
      args = [airline_id, 'flights', flight_number, format(date)].compact.join('/')
      perform_get("/airlines/#{args}.xml", params)
...

Ruby On Better way to offer several...

by jarodluebbert.myopenid.com, March 01, 2010 23:55

I ended up with this, thank...

3a5f66f6c3feb6092d375c3e145de0d4 Talk
def flights_by_airline(airline_id, flight_number=nil, date=nil, params={})
      if flight_number && date
        t = convert_date(date)
...

Ruby Better way to offer several...

by jarodluebbert.myopenid.com, March 01, 2010 08:21, 3 refactorings, tagged with ruby, api, parameters

I'm wrapping an API in ruby...

3a5f66f6c3feb6092d375c3e145de0d4 Talk