Venky Iyer

Results 95 issues of Venky Iyer

I've started having this error recently. If it matters, this is Jupyter notebook running on a remote server. Happy to provide more debugging information if I can. This error leads...

``` ContractError: It looks like you are trying to use pattern-matching, but multiple definitions for function '' have the same contract for input parameters: None => String None => String...

The KeywordArgs contract appears to have two deficiencies: 1) A missing arg with a `Maybe[]` contract is valid despite not being declared optional ``` [9] development (main)> kk = Contracts::KeywordArgs[a:...

``` def foo(**args, &blk) puts blk.call puts args nil end ``` How would I write a contract for this function, so that all these cases are valid: ``` foo(a: 2)...

``` class Bar include Contracts::Builtin include Contracts::Core Contract String, Maybe[Integer], Func[Any => Any] => Any def self.contract_foo(a, b=nil, &blk) puts [a, b, blk].to_json end end ``` ``` [26] development (main)>...

It would be nice to configure the way that eless invokes emacs -- for instance, I want to use it in `vterm` and open in the current emacs frame.

help wanted

### What did you expect to happen? mode-line should have been disabled. ### What actually happened? I'm attempting to disable the mode-line in https://github.com/casouri/vundo ![image](https://user-images.githubusercontent.com/114010/160722953-043f96f5-e8ae-4088-83b9-07b8ea23490b.png) There is some inconsistent state,...

bug

I was trying to debug why I keep getting `Can't obtain kernelspecs from jupyter shell command`, and I think it has to do with a buggy interaction between how `jupyter`,...

Thanks for your work on this package. Is it possible to capture results from each statement/line in the source block? For instance, the below returns `: world` currently, but can...

In some situations, `jupyter kernelspec list --json` produces stderr warnings like ``` [ListKernelSpecs] WARNING | Native kernel (python3) is not available ``` which leads to a JSON parsing error This...