Jay
Jay
possible_variants.sku_equals(array_of_sku) returns: SELECT \* FROM `variants` WHERE ((variants.sku IN ('DUVR14FL-BS-T','DUVR14FL-BS-K')) AND (variants.product_id = 2)) but possible_variants.sku_does_not_equal(array_of_sku) returns: SELECT \* FROM `variants` WHERE ((variants.sku != 'DUVR14FL-BS-T','DUVR14FL-BS-K') AND (variants.product_id = 1)) Thus...
The search shows something like: SELECT birds.\* FROM birds INNER JOIN bird_sizes ON bird_sizes.id = birds.bird_size_id INNER JOIN bird_shapes ON bird_shapes.id = birds.bird_shape_id INNER JOIN bird_types ON bird_types.id = birds.bird_type_id...
The error was something like: -- C level backtrace information ------------------------------------------- 0x10010cd8d 0 libruby.dylib 0x000000010010cd8d rb_vm_bugreport + 77 0x10002b184 1 libruby.dylib 0x000000010002b184 report_bug + 260 0x10002b318 2 libruby.dylib 0x000000010002b318 rb_bug...
I would expect that if `STATIC_CHECK_IF_MODIFIED` is set to True, unchanged notebooks do not get reprocessed, but that does not seem to be the case.
Some nbextensions modules are very useful, like [python-markdown](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/tree/master/src/jupyter_contrib_nbextensions/nbextensions/python-markdown) that allows you to include inline Python code in Markdown cells. I have added a support for nbextensions in my fork of...
Now works with Tensorflow 1.4.0 and Python 3.6 Replaced deprecated functions and indentation issues.
Added a feature to support other languages. Users may now upload a custom wav2vec2 model to transcribe any language. I've also updated the README document.
added config.gem "ruby-hmac" in environment.rb Then I run: rake gems:unpack Then rake:gems:install But when I ruby script:server I always got this error message: Missing these required gems: ruby-hmac You're running:...
This plugin doesn't seem to work with page.sortable? My code: responds_to_parent do render :update do |page| page '/gallery/projects/photos', :locals => {:object => project} page.sortable( params[:update], :url => sort_photos_path, :handle =>...