ARCHIVED POSTS
< Earlier Kibitzing · PAGE 945 OF 1118 ·
Later Kibitzing> |
| Sep-06-16 | | gauer: For the "recent games" section of many (randomly chosen) pid pages, when one looks beside the game url of it, one sees a sort of hex-code like: "DBI::st=HASH(0x1c67900)" beside it. Not sure if it's some sort of bug or new test feature, and the other fields don't show it (ie at pid's "most played openings" section, etc). It seems to show up on iphone and windows machines settings, signed in or otherwise. Not sure if it was noticed, which was up already around 8am EST today like that. |
|
| Sep-06-16 | | zanzibar: <We will make it open source so that the world can enjoy its usefulness.> Hmmm... what license would you use?
And a request for tactical support - make it have a mode that allows <CT>-type play where moves are hidden to allow user to play through. Bonus points if you allow alt-retries. |
|
| Sep-06-16 | | zanzibar: Here's another idea I'd like to float -
Reading the Chess Olympiad (2016) (kibitz #497) is hard because of the volume. If I make frequent enough posts then I can use my profile to jump to my last post and start reading from there. But what if I don't want to make a post?
I could still make one to serve as a bookmark - but basically I'd just be posting junk to mark where I've read. Can I make a non-publishing bookmark post?
Then my profile snippets would show me where to start reading, while avoiding polluting the dialog stream. (This would allow me to avoid having to jump to the end and work my way backwards, or have to go forward over the same material over and over using an old post in the forum. As usual, I'm thinking of a simple escape in the forum post... like <@bookmark - notes> The post only would show up for the individual user. I suppose you could make private notes to oneself with this technique - which could be useful.) |
|
Sep-06-16
 | | chessgames.com: <Z> The "hidden posts" method you describe I fear would create far more problems than it sets out to solve. However, some sites have a feature where it assumes that if you visit a page, you read everything on it. Then if you return to that page, all of the new posts are highlighted for you—or likewise, a link takes you to the "last thing you presumably read." It could be implemented that way but I'd prefer to see it as a premium feature as it would require maintaining an enormous matrix of members and pages. |
|
Sep-06-16
 | | chessgames.com: <DBI::st=HASH(0x1c67900)> Yes that was a minor bug on a feature that I think will be very useful. <RECENT GAMES> — If you go to a major player you don't have to flip to the final page to figure out what games they played last; they are right there for you to peruse at the top. |
|
| Sep-07-16 | | zanzibar: <chessgames> RE: Recent games. Of course, one might suggest the better way to do the recent games would be to allow the user to sort the games via the columns headers. Default might be from oldest to most recent (or vice a versa) - click the year-heading and the order goes from most recent to oldest. No special code needed (unless you want to allow individual users to have different default settings for sort order). Click the Event/Locale heading and get the games sorted by tournament. Click the Openings, and group the games by openings, etc, etc. I guess it's like Mike said in Breaking Bad, half-measures vs. full measures. https://www.youtube.com/watch?v=mXk... |
|
| Sep-07-16 | | zanzibar: OK, now's a good time to ask...
Why aren't the games for a player sorted by date in the first place? http://www.chessgames.com/perl/ches... The end of the list of Carlsen's games should all be Olympiad games, at least, that's what I would naively expect. (Unless he was playing Tata Steel or YourNextMove games at night, on the side.) |
|
| Sep-07-16 | | notyetagm: <CG.COM>
I am a big fan of the beautiful and talented women's World #2 player Ju Wenjun. Could you please update her profile pic to this beautiful picture of her from the Baku Olympiad? Thanks. https://pbs.twimg.com/media/CrggjIt... |
|
Sep-08-16
 | | chessgames.com: <notyetagm> Sure, but where did that photo come from? What is pbs.twimg.com ? |
|
| Sep-08-16 | | Alien Math: <chessgames.com What is pbs.twimg.com ? > domain where twitter hosts gif's, pictures or other media that users upload, like pbs.twimg.com/tweet_video,
pbs.twimg.com/profile_images,
pbs.twimg.com/media |
|
| Sep-08-16 | | zanzibar: I think the photos of Ju Wenjun which are PD (public domain) are rather limited... https://www.google.com/search?q=%22... (Google image search ("Ju Wenjun chess" ) -> Search Tools -> Usage Rights -> Labeled for reuse) Not all are even real hits. Of the ones that are, I like this best: https://upload.wikimedia.org/wikipe... (Generally, I prefer seeing the person's entire face, looking forward) Of course, if you like variety unencumbered by legalities, the selection is better here: https://www.google.com/search?q=%22... and the S/N is much better too! |
|
| Sep-08-16 | | notyetagm: <Alien Math: <chessgames.com What is pbs.twimg.com ? > domain where twitter hosts gif's, pictures or other media that users upload,> Thanks.
I *really* like that pic of Ju Wenjun that I linked to. :-) |
|
| Sep-08-16 | | zanzibar: <NYaGM> http://www.partystandups.com/catalo... |
|
Sep-09-16
 | | FSR: Congratulations to me on reaching 100 puns used for GOTD! See my latest comment to Karjakin vs Jobava, 2014. |
|
Sep-09-16
 | | moronovich: Congratulations
a pawn star
is not what you are
but the chess world shines
when you start to Rhines |
|
Sep-09-16
 | | chessgames.com: If we don't use wikimedia, pick one of these from chessdom https://www.google.com/search?q=%22... I can pull some strings there and get permission :-) |
|
Sep-09-16
 | | chessgames.com: <Why aren't the games for a player sorted by date in the first place?> <Z> — I thought we've been over this topic? Anyhow, briefly: Of course they *should* be sorted by date, but it's not, and as always there is a story that goes back over 10 years. When the site was new, two things were true: (1) The vast majority of PGN did not have date information.
(2) MySQL could index tables MUCH faster on a two-byte year field than a 4-byte date field.
These two considerations caused me to resort to a kind of trick. Instead of storing only the date of the game, I would store two fields: one is the full date (if known), and the other is the year. That way I could sort by the year field when doing large searches, like all Berlin Wall games, and use the full date only when listing tournaments. Since that time, MySQL (and computers in general) have gotten much better, and our date information is now becoming rapidly filled in, mostly through the dedication of our tireless editors. Therefore, it has now become a good idea to consider an alternate plan. The simplest plan would be to simply stop using the phrase <ORDER BY Game.year> and instead use <ORDER BY Game.date> — but I am also considering creating a new field which is a concatenation of the date and the tournament ID, to be able to group tournaments even when the dates are not known. As I put together the new Chessgames server to handle the load of the upcoming WCC I hope to do some experimentation in this regards before it goes live. |
|
| Sep-09-16 | | zanzibar: <<Z> — I thought we've been over this topic?> Yes, and your <Recent Games> innovation suggested it was a good time to reraise the issue. <Therefore, it has now become a good idea to consider an alternate plan. The simplest plan would be to simply stop using the phrase <ORDER BY Game.year> and instead use <ORDER BY Game.date> — but I am also considering creating a new field which is a concatenation of the date and the tournament ID, to be able to group tournaments even when the dates are not known.> I would think this modest change would offer a tremendous practical benefit to all <CG> users. And it seems quite a safe increment change as well. Much easier than adding the Recent Games feature I would imagine. |
|
| Sep-09-16 | | WinKing: Hey <chessgames> how about a live game from the Olympiad tomorrow. We have the USA vs. Russia! Doesn't get any better than that! |
|
Sep-09-16
 | | chessgames.com: <We have the USA vs. Russia! Doesn't get any better than that!> Can't argue with that. We've been holding back since the first rounds are such blowouts, but here's where the rubber meets the road. |
|
Sep-09-16
 | | chessgames.com: Is there any way to know the exact board pairings in advance, coloration and everything? |
|
Sep-09-16
 | | Annie K.: No, not a very long time ahead. They publish the next round team pairings after the games end, but the board pairings only right before the games. :( |
|
Sep-09-16
 | | chessgames.com: <I would think this modest change would offer a tremendous practical benefit to all <CG> users.
And it seems quite a safe increment change as well.> Agree 100%.
<Annie K.> Thanks. |
|
| Sep-09-16 | | notyetagm: <chessgames.com: <We have the USA vs. Russia! Doesn't get any better than that!> Can't argue with that. We've been holding back since the first rounds are such blowouts, but here's where the rubber meets the road.> USA! USA! USA! USA! USA! USA! USA! USA! |
|
Sep-09-16
 | | WannaBe: Hmmmm.... CCCP! CCCP! CCCP! CCCP! CCCP!
=)) |
|
 |
 |
ARCHIVED POSTS
< Earlier Kibitzing · PAGE 945 OF 1118 ·
Later Kibitzing> |