/* * ===================================================================================== * ...
C Using semaphores in C and f...
by jarodluebbert.myopenid.com,
March 24, 2010 07:28,
No refactoring, tagged with c, concurrency, ipc, semaphores
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...
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...
Just posting this to check ...