Page 1 of 2

Share New Games Gokifu.com

Posted: Sun May 23, 2010 11:21 am
by masek
I have created http://gokifu.com


Current features

1) Generate Preview for all game by default , moves can be controlled by special parameter , animated Gif picture , PDF printable kifu
Image !

s - start move e - end move
http://gokifu.com/p/6.png - all game
http://gokifu.com/p/6.png?s=1&e=50 first 50 moves
http://gokifu.com/p/6.png?s=50&e=70 50-70 moves will be marked
http://gokifu.com/p/6.png?s=50 starting from move 50 will be marked
2) search by player for example Lee Sedol http://gokifu.com/index.php?q=Lee+Sedol
3) File link
4) Player Link
5) Forum code
6) Problems support(detecting automatically
7) File formats SGF , UGF(UGI) IGS panda net and
some webs use, GO - Ishi Format , NGF - Oro or Wbaduk format, GIB Tom, Tygem is now working :)
Files will be converted to sgf automatically.

8) Input files encoding auto detection and recoding,not strange characters.
9) Black and white picture
10) Export file to PDF for print http://gokifu.com/e/af.pdf example

Any ideas/suggestions/comments are welcome!

Re: Share New Games Gokifu.com

Posted: Sun May 23, 2010 1:41 pm
by Phelan
I like the symbols you use for captured stones in the gifs. :)

Re: Share New Games Gokifu.com

Posted: Sun May 23, 2010 2:32 pm
by Li Kao
Why does L5 disappear in that gif?

Re: Share New Games Gokifu.com

Posted: Mon May 24, 2010 12:33 am
by wessanenoctupus
mad props yo

Re: Share New Games Gokifu.com

Posted: Mon May 24, 2010 2:04 am
by Phelan
Li Kao wrote:Why does L5 disappear in that gif?

Yeah, that does seem to be a bug.

Re: Share New Games Gokifu.com

Posted: Mon May 24, 2010 6:38 pm
by masek
Phelan wrote:
Li Kao wrote:Why does L5 disappear in that gif?

Yeah, that does seem to be a bug.

Looks like :)
I will fix it ;)

Re: Share New Games Gokifu.com

Posted: Fri Jul 16, 2010 3:58 am
by lorill
Another problem : comments formatting isn't kept.

example: http://gokifu.com/s/100 with the download link, there are no empty lines left, so the comments are unreadable. The original file has empty lines.

Re: Share New Games Gokifu.com

Posted: Fri Jul 16, 2010 9:41 am
by masek
lorill wrote:Another problem : comments formatting isn't kept.

example: http://gokifu.com/s/100 with the download link, there are no empty lines left, so the comments are unreadable. The original file has empty lines.


unfortunately can not control this in flash player:(

btw added size feature maybe it will help s m x

Re: Share New Games Gokifu.com

Posted: Fri Jul 16, 2010 9:47 am
by lorill
This is not a problem with the flash player (well, there is, but i don't care for it), but with the download link, under the player.

Re: Share New Games Gokifu.com

Posted: Sat Jul 17, 2010 11:13 am
by Li Kao
Your language detection seems to have a bug. My browser sends en-US, en, de-DE, de as the preferred languages. But even though English has the highest priority I get the German interface by default.

Re: Share New Games Gokifu.com

Posted: Sun Aug 15, 2010 2:30 am
by masek
Li Kao wrote:Your language detection seems to have a bug. My browser sends en-US, en, de-DE, de as the preferred languages. But even though English has the highest priority I get the German interface by default.


Oh .....
Hard to deal with it.

From one side can be default English , or Default German...

Re: Share New Games Gokifu.com

Posted: Sun Aug 15, 2010 2:32 am
by masek
Java script player was added

http://http://gokifu.com/s/15a.js

Re: Share New Games Gokifu.com

Posted: Sun Aug 15, 2010 2:35 am
by Li Kao
How about just defaulting to what the browser requests instead of using geoip? Each http request contains a list of requested languages.

Re: Share New Games Gokifu.com

Posted: Sun Aug 15, 2010 2:58 am
by masek
Li Kao wrote:How about just defaulting to what the browser requests instead of using geoip? Each http request contains a list of requested languages.


i don't use GeoIP .


if ( de)
set_lang(de)
if ( fr)
set_lang(fr)

else
set_lang(en)


This is the reason why you get German Language by default..

Re: Share New Games Gokifu.com

Posted: Sun Aug 15, 2010 3:13 am
by Harleqin
masek wrote:if ( de)
set_lang(de)
if ( fr)
set_lang(fr)

else
set_lang(en)


This is a bit backwards, no? Instead of going through the list of languages you support until you find one that the client requested, you should go through the languages the client requested until you find one that you support.