Daniel (dB.) Doubrovkine
Daniel (dB.) Doubrovkine
https://openweathermap.org/api/hourly-forecast
https://openweathermap.org/forecast16
@kslazarev numbers_and_words has become quite popular with lots of devs! Maybe you want to move it into its own organization? This way others can add contributors? Otherwise you as a...
There's https://github.com/kslazarev/numbers_and_words/tree/feature/german, no idea in which state it's in.
We use uri_template in Hyperclient, https://github.com/codegram/hyperclient. Most of the time you have an URI template in some resource and you expand it. For example a link could be `http://example.com/widgets/{id}`. However...
A model that has `image_versions` might want to have a link for image item in the field. Like so: ``` json { "id" : 123, "image_versions" : ["small", "large"], "_links"...
This lets you paginate over all results, not just the last 1000. ``` ruby Pageviews.all(profile) do |row| puts "#{row.page_path} => #{row.pageviews}" end ``` Note that the :limit option applies to...
If `NewRelic::Agent::Instrumentation::MiddlewareProxy` is not defined, the error is silently swallowed in https://github.com/xinminlabs/newrelic-grape/blob/master/lib/newrelic-grape/instrument.rb#L56. The `executes` blocks should probably have an exception handler and fail loudly. Upgrading mongoid4 - mongoid5 in a...