dsisnero
dsisnero
I know. Can we add methods on http to save and load cookies?
Maybe contribute a ruby binding of https://github.com/wesm/feather
Here is how numpy supports pythons buffer protocol https://github.com/numpy/numpy/blob/main/numpy/core/src/multiarray/buffer.c
https://bugs.ruby-lang.org/issues/14722 That's why python has defined methods to describe the data shape as part of the c-api . We need something similar I believe
the Apache::Arrow project has a new c interface for the purpose of sharing column data between projects. https://arrow.apache.org/blog/2020/05/03/introducing-arrow-c-data-interface/ If Torch-rb opencl_ruby_ffi had a to_arrow method as well as this project-...
Here is how python is doing this. They have a new pickle version that uses their buffer protocol (memoryview) https://peps.python.org/pep-0574/ tried to explain it in this rubybugs prop0osal. https://bugs.ruby-lang.org/issues/17685 They...
restore pathmap extension please. At least have it available to load 'require "rake/ext/pathmap"
find_llvm_config_binary - Need to use ENV["PATH"].split(Process::PATH_DELIMITER) also, in same function - need to account for file ext of ".exe" , not sure where to put this. Also replace the search_paths:...
When doing things with actual files and directories, I like being able to build it up with Path ``` dir = Path['mydir'] file = dir / 'myfile' ``` I wish,...
Is there a document that shows how to add a language?