The only thing they do is to read the PGN on my site so the games are available to their visitors.ernest wrote: ...obviously, that disgusting "chessbomb" site!
How can that be a bad thing?
Best,
Martin
The only thing they do is to read the PGN on my site so the games are available to their visitors.ernest wrote: ...obviously, that disgusting "chessbomb" site!
They are SELLING your PGNs !!!Martin Thoresen wrote:The only thing they do is to read the PGN on my site so the games are available to their visitors.
Then if you don't want to buy a Premium membership you can download the games for free on the TCEC website.ernest wrote: They are SELLING your PGNs !!!
Well of course that's what I finally did... But:Martin Thoresen wrote:you can download the games for free on the TCEC website.
I edited (simple edit/replace) minimally the PGN of the 1st game of the current "TCEC - Elite Match".ernest wrote:Fritz GUI needs a PGN like that: 39. f3 {[%eval 55,19] [%emt 0:00:07]} Nef6 {[%eval 25,18] [%emt 0:00:02]}
1: Well, they know there is a donate button on my info page...ernest wrote:Well of course that's what I finally did... But:Martin Thoresen wrote:you can download the games for free on the TCEC website.
1. I hope your "friends" do reward you somehow for the business you give them
2. Speaking of the "peculiar" PGNs ChessGUI delivers
example: { 18.Kxd3 { ev=0.38, d=20, pd=Na4, mt=00:03:27, tl=02:04:57, s=597 kN/s, pv=e2d3 b6a4 f2f3 h8h6 g2g4 f7f5 g4f5 d7f5 d3e2, tb=0, R50=50, }
Na4 { ev=-0.04, d=24, pd=Ne4, mt=00:03:02, tl=02:02:20, s=17735 kN/s, pv=b6a4 g5e4 d7f5 d3e3 a8d8 e4g3 f5d3 h1d1 a4c5, tb=0, R50=49, }
is there a GUI which is able, from this PGN, to draw the eval, depth curves (Fritz GUI calls that Evaluation Profile).
Maybe ChessGUI?
Fritz GUI needs a PGN like that: 39. f3 {[%eval 55,19] [%emt 0:00:07]} Nef6 {[%eval 25,18] [%emt 0:00:02]}
Code: Select all
#!/usr/bin/env perl -p
s/{ ev=(-?\d+)\.(\d\d), d=(-?\d+(?:, pd=\w*)?), mt=(.*R50=\d+, ) }/{ [%eval \1\2,\3] [%emt \4]}/;
Code: Select all
#!/usr/bin/env perl -p
/{ ev=(-?\d+\.\d\d), d=(-?\d+)(, pd=\w*)?, mt=(\d+):(\d+):(\d+).*R50=\d+, }/;
my $time = $4*3600 + $5 * 60 + $6;
s/{ ev=(-?\d+\.\d\d), d=(-?\d+).*R50=\d+, }/{\1\/\2 $time}/;
Hi ernest,ernest wrote:I edited (simple edit/replace) minimally the PGN of the 1st game of the current "TCEC - Elite Match".ernest wrote:Fritz GUI needs a PGN like that: 39. f3 {[%eval 55,19] [%emt 0:00:07]} Nef6 {[%eval 25,18] [%emt 0:00:02]}
See herebelow.
Now the Evaluation Profile appears in the Fritz GUI !!!
......
...and I just answeredCarstenL wrote:i wrote you a PM