Trying out social kibitz for this game Yang 7p vs. Kerwin 1p
Trying out social kibitz for this game Yang 7p vs. Kerwin 1p
I'm trying out the social go commentary site gokibitz.com. I found an old game a bit by chance between Yilun Yang, Chinese 7p and James Kerwin, Japanese 1p (the second Westerner to become pro I think!). I ran across the game commented in this video:
https://www.youtube.com/watch?v=bkFWGql5zVk
I'm not sure how I found the video, but I thought the game quite interesting. I don't think the whole game is discussed though, and some things I was wondering about are not addressed in the video. My own comments and questions are in the gokibitz link below to stimulate some discussion:
https://gokibitz.com/kifu/E15ZupD1b
I hope to see some additional contributions - thank you in advance!
https://www.youtube.com/watch?v=bkFWGql5zVk
I'm not sure how I found the video, but I thought the game quite interesting. I don't think the whole game is discussed though, and some things I was wondering about are not addressed in the video. My own comments and questions are in the gokibitz link below to stimulate some discussion:
https://gokibitz.com/kifu/E15ZupD1b
I hope to see some additional contributions - thank you in advance!
Last edited by ajile on Thu Apr 14, 2016 10:12 am, edited 1 time in total.
-
Uberdude
- Judan
- Posts: 6727
- Joined: Thu Nov 24, 2011 11:35 am
- Rank: UK 4 dan
- GD Posts: 0
- KGS: Uberdude 4d
- OGS: Uberdude 7d
- Location: Cambridge, UK
- Has thanked: 436 times
- Been thanked: 3718 times
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
Do you need to sign in just to read comments? That's a bit rubbish.
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
Uberdude wrote:Do you need to sign in just to read comments? That's a bit rubbish.
It does not seem so. I just logged out and was able to look at the game and see the comments...
As far as I can tell you only need an account to *make* comments...
I also checked using another browser to make sure it was not a cookie issue and I was able to see everything without logging in there also...
I wonder if that path parameter in my original link is to blame. I updated the link I originally posted to the one I can see without logging in just to be on the safe side:
https://gokibitz.com/kifu/E15ZupD1b
Last edited by ajile on Thu Apr 14, 2016 10:17 am, edited 1 time in total.
-
Uberdude
- Judan
- Posts: 6727
- Joined: Thu Nov 24, 2011 11:35 am
- Rank: UK 4 dan
- GD Posts: 0
- KGS: Uberdude 4d
- OGS: Uberdude 7d
- Location: Cambridge, UK
- Has thanked: 436 times
- Been thanked: 3718 times
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
So the reason I couldn't see comments is because I followed the link, and then held down my right arrow key to whiz through the game and no comments appeared as the stones appeared on the board. That's because the comments are loaded asynchronously by ajax and take a long time to appear, by which time you've moved on to the next move (so you get loads of js errors). I suggest the developer stores a list of the moves with comments on first load (edit: it already has this as on move 0 it lists the moves with comments) so that when you whiz through it knows to display a "Loading comment" message on relevant moves (and not to issue the ajax request for comments immediately on moves the cache suggests have no comments (but have a small chance to have been commented since initial page load)), but wait a short time to reduce the request spam which is presumably why it is a lot slower to load comments after whizzing through moves that if you directly navigate to one with a fresh page request.
-
macelee
- Lives in sente
- Posts: 928
- Joined: Mon Dec 31, 2012 1:46 pm
- Rank: 5 dan
- GD Posts: 0
- KGS: macelee
- Location: UK
- Has thanked: 72 times
- Been thanked: 480 times
- Contact:
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
Yeah, with a slower internet connection, one can often discover bugs that developers can neglect when developing locally.
I actually quite like the site. If I have time I really want to integrate this with my pro collection. I like the simplicity - no messy tree structures and all comments have a proper context. In case you haven't noticed, it has a special way to display variations. Try this URL https://gokibitz.com/kifu/VkYTViMyb and go to move number 8 to see an example.
I actually quite like the site. If I have time I really want to integrate this with my pro collection. I like the simplicity - no messy tree structures and all comments have a proper context. In case you haven't noticed, it has a special way to display variations. Try this URL https://gokibitz.com/kifu/VkYTViMyb and go to move number 8 to see an example.
-
Uberdude
- Judan
- Posts: 6727
- Joined: Thu Nov 24, 2011 11:35 am
- Rank: UK 4 dan
- GD Posts: 0
- KGS: Uberdude 4d
- OGS: Uberdude 7d
- Location: Cambridge, UK
- Has thanked: 436 times
- Been thanked: 3718 times
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
Yeah, it seems like a nice idea and stylishly presented, but that little glitch gave me a bad first impression. I've reported it on the dev's github (Nate Eagle, I seem to recall that name from KGS...).
I put the 3rd Judan game up for discussion: https://gokibitz.com/kifu/Ek-iSJtJ-
I put the 3rd Judan game up for discussion: https://gokibitz.com/kifu/Ek-iSJtJ-
-
jeromie
- Lives in sente
- Posts: 902
- Joined: Fri Jan 31, 2014 7:12 pm
- Rank: AGA 3k
- GD Posts: 0
- Universal go server handle: jeromie
- Location: Fort Collins, CO
- Has thanked: 319 times
- Been thanked: 287 times
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
I don't think the issue is internet speed. From the way it behaves, it looks like the comments might be loaded on a keyup event, so if you hold down the arrow to run through the game it doesn't show comments. I'll look through the code later and see if I can find where this is happening; perhaps I can pinpoint the issue for the developer and/or fix the bug and submit a pull request. It seems like a really nice way to comment on games, so I'd like to to be a useful tool!
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
Uberdude wrote:So the reason I couldn't see comments is because I followed the link, and then held down my right arrow key to whiz through the game and no comments appeared as the stones appeared on the board. That's because the comments are loaded asynchronously by ajax and take a long time to appear, by which time you've moved on to the next move (so you get loads of js errors). I suggest the developer stores a list of the moves with comments on first load (edit: it already has this as on move 0 it lists the moves with comments) so that when you whiz through it knows to display a "Loading comment" message on relevant moves (and not to issue the ajax request for comments immediately on moves the cache suggests have no comments (but have a small chance to have been commented since initial page load)), but wait a short time to reduce the request spam which is presumably why it is a lot slower to load comments after whizzing through moves that if you directly navigate to one with a fresh page request.
Interesting. I can see how that would be annoying
-
humblelife
- Beginner
- Posts: 5
- Joined: Sat Mar 29, 2014 5:36 pm
- GD Posts: 0
- KGS: humblelife
- Tygem: humblelife
- IGS: humblelife
- OGS: humblelife
- Has thanked: 1 time
- Been thanked: 3 times
Re: Trying out social kibitz for this game Yang 7p vs. Kerwi
The variation diagrams are very nice. Would be nice to have the option of sorting kifu by player rank. Have a nice day.