Denis

Results 11 issues of Denis

Example of permanent cache for README or Wiki: ``` ruby YandexInflect.module_eval do private def self.cache_lookup(word) InflectionCache.find_by_word(word).try(:value) end def self.cache_store(word, value) InflectionCache.find_or_create_by_word(word: word, value: value).value end end ``` ``` ruby class...

I can prepare Rails example for README or Wiki, something like this: `app/models/inflection.rb` ``` ruby class Inflection def self.inflections(word) YandexInflect.inflections(word) end def self.genitive(word) { genitive: self.inflections(word)[1]['__content__'] } end end ```...

Newer versions of Graphiql [support headers in the editor](https://github.com/graphql/graphiql/pull/1543), but it looks like the version of Graphiql in `absinthe_plug` doesn't have it.

Re-writing Lexer in a more elixir-ish way, using binary pattern matching, multi-clause functions, and guards. I'm not sure this should go into the master branch, it is for owner to...

Both "process" and "batch process" are fixed, also operation retrivement is fixed. The location is hardcoded for now and set to US. I'm not sure how to properly implement the...

cla: yes

Hi! I compaired [Enumerable#graph](http://www.rubydoc.info/github/rubyworks/facets/master/Enumerable%3Agraph) from facets with [Enumerable.to_h](http://ruby-doc.org/core-2.2.3/Enumerable.html#method-i-to_h) from Ruby. ``` ruby require 'facets' require 'benchmark' k = 10_000_000 numbers = (1..k) Benchmark.bmbm do |x| x.report(:graph) { numbers.graph { |n|...

This fixes #9. Checked result in Inoreader, looks correct.

I found that on Ubuntu 20.04 I can't really control timeouts and to control timeouts better I have to use `Urgency::Critical` and then `wait_for_action`. I also found, that on the...

My `Hound` tests fail, and from error I see that there is no data in my database. It happens randomly, with approx 50/50 ratio. Driver is `PhantomJS`. I'm inserting data...

The app seems a nice showcase for Perseus framework, but it's missing any "getting started" information, such as Rust and Perseus versions, and what commands are to run (I suppose...