Robert Hönig

Results 7 issues of Robert Hönig

I first thought this to be an issue with React Native and filed an issue there: https://github.com/facebook/react-native/issues/19709 However, further debugging makes me believe that the issue might lie within okhttp....

bug
needs info
android

This is an initial implementation for showing active bots in the buddy list. Both the code and the commits are a little rough around the edges. ### What does this...

size: XL
has conflicts

A bot may require a Python version greater than 3.x. Currently, however, all bots are expected to work with all versions of Python. In particular, Travis tests them for 3.4,...

[Relevant discussion on Zulip](https://chat.zulip.org/#narrow/stream/127-integrations/subject/botserver/near/585194) ## Issue The Zulip server sends different `event` objects for "normal" bots and outgoign webhook bots. This could create issues when developers except their bot to...

```julia julia> x = [1,2,3] 3-element Array{Int64,1}: 1 2 3 julia> sin.(x) 3-element Array{Float64,1}: 0.8414709848078965 0.9092974268256817 0.1411200080598672 # This is where I try to do `sin.(x)` in interpret mode. interpret>...

https://github.com/cool-RR/pysnooper looks like a debugging tool for Python that should be easy to implement in Rebugger with the new JuliaInterpreter machinery. The idea is to call PySnooper on some function...

```julia julia> abs(2) ``` To rebug this, the cursor currently *must* be positioned on the `a`. If it's on e.g. the b, an error is thrown: ```julia julia> a┌ Error:...