Jinzhou Zhang

Results 37 comments of Jinzhou Zhang

> Hi you can test it in the 2.0 branch now. If you have feedback, I am happy to listen. Cheers, Stefan Play around 2.0's `queue_size` and it works like...

@marcusbuffett I believe you should use `skim#run` and `skim#wrap`

One concern about %cpaste is it will not be saved in ipython's history. Checkout https://github.com/ipython/ipython/issues/1384 After some investigation, I found that 1. Ipython >= 5 will support multiple paste (via...

I actually had this requirement for a long time and had a working version for years. But I wasn't sure whether it should be included by default or not. Now...

@mpv1989 Sorry that my report is partly true. It is not `findAll` that I called but a custom query: ```java @Query("FOR v IN customers" + " SORT RAND()" + "...

@mpv1989 Thanks! Confirmed the `#collection` trick works. Besides, extended queries won't create collections automatically neither. Any workarounds? ```java public interface CharacterRepository extends ArangoRepository { Optional findByNameAndSurname(String name, String surname); //...

@kneasle Which version do you use currently? And could you please provide a minimal example to reproduce? I've tried `cargo run --example hello-world` on Alacritty and could not reproduce.

@TimonPost Thanks for the detailed explanation. Let me confirm my understanding: > This waker was implemented for asynchronous behavior. The asynchronous code uses a type called Waker which can wake...

> You can reduce CPU-cycles by just adding a delay of 5 seconds This solution is actually trade off and won't fit in my scenario. - We need to wait...

@TimonPost Not sure if I understand correctly. I believe the example shows how to **write** to `stderr` instead of `stdout`. While I am trying to do is to **read** piped...