Martin Rueckl

Results 29 comments of Martin Rueckl

As with #21 I would recomment you split the HandHistory apart from different Parsers. I did parse PS handhistories with c++ and followed the line by line approach, this worked...

Hey, I've had a second closer look at your code/docs. I managed to dirty hack into the parser so it can also read cashgames. However, my previous comment won't work...

And bytheway: This approach would make the HandHistory Interface redundant. While it would introduce a parserinterface (which will be much smaller).

``` for hh in hand_histories: hh.parse() # or hh.parse_ident() or hh.parse_hader() ``` If one follows this approach, then the `HandHistory` class has to know how its internal text is to...

Hi, I'll see what I can do the next days. So long merry Christmas:-P Am 23.12.2015 15:00 schrieb Kiss György [email protected]:Please make a pull request and we can discuss the...

Couple of minutes after stumbling over this ticket I stumbled over https://github.com/hobofan/yew-react-example which is part of the curated link list on: https://project-awesome.org/jetli/awesome-yew Maybe that's a starting point, but the example...

I came to a similar issue with `hana::zip` illustrated by the following code. I'm comletely new to hana, and I think my intentions are clear from the code sample. I...

@ricejasonf yeah, that is more or less equal to the code based on my own small meta library which i wanted to replace by hana :D maybe if just written...

Learning about that stuff at the moment, so I can only point out typos 🙄 ![image](https://user-images.githubusercontent.com/7611856/199285297-5fe825d1-8a3d-48dc-9bcb-aed32d72eff2.png)

I found this issue after I got confused by your documentation. - your toplevel readme doesn't use with contexts in the examples. - your examples use the with statements. As...