Life In 19x19
http://prod.lifein19x19.com/

Share New Games Gokifu.com
http://prod.lifein19x19.com/viewtopic.php?f=9&t=606
Page 1 of 1

Author:  masek [ Sun May 23, 2010 11:21 am ]
Post subject:  Share New Games Gokifu.com

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!

Author:  Phelan [ Sun May 23, 2010 1:41 pm ]
Post subject:  Re: Share New Games Gokifu.com

I like the symbols you use for captured stones in the gifs. :)

Author:  Li Kao [ Sun May 23, 2010 2:32 pm ]
Post subject:  Re: Share New Games Gokifu.com

Why does L5 disappear in that gif?

Author:  wessanenoctupus [ Mon May 24, 2010 12:33 am ]
Post subject:  Re: Share New Games Gokifu.com

mad props yo

Author:  Phelan [ Mon May 24, 2010 2:04 am ]
Post subject:  Re: Share New Games Gokifu.com

Li Kao wrote:
Why does L5 disappear in that gif?

Yeah, that does seem to be a bug.

Author:  masek [ Mon May 24, 2010 6:38 pm ]
Post subject:  Re: Share New Games Gokifu.com

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 ;)

Author:  lorill [ Fri Jul 16, 2010 3:58 am ]
Post subject:  Re: Share New Games Gokifu.com

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.

Author:  masek [ Fri Jul 16, 2010 9:41 am ]
Post subject:  Re: Share New Games Gokifu.com

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

Author:  lorill [ Fri Jul 16, 2010 9:47 am ]
Post subject:  Re: Share New Games Gokifu.com

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.

Author:  Li Kao [ Sat Jul 17, 2010 11:13 am ]
Post subject:  Re: Share New Games Gokifu.com

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.

Author:  masek [ Sun Aug 15, 2010 2:30 am ]
Post subject:  Re: Share New Games Gokifu.com

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...

Author:  masek [ Sun Aug 15, 2010 2:32 am ]
Post subject:  Re: Share New Games Gokifu.com

Java script player was added

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

Author:  Li Kao [ Sun Aug 15, 2010 2:35 am ]
Post subject:  Re: Share New Games Gokifu.com

How about just defaulting to what the browser requests instead of using geoip? Each http request contains a list of requested languages.

Author:  masek [ Sun Aug 15, 2010 2:58 am ]
Post subject:  Re: Share New Games Gokifu.com

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..

Author:  Harleqin [ Sun Aug 15, 2010 3:13 am ]
Post subject:  Re: Share New Games Gokifu.com

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.

Author:  masek [ Sun Aug 15, 2010 7:03 am ]
Post subject:  Re: Share New Games Gokifu.com

Harleqin wrote:
masek wrote:
if ( de)
set_lang(de)
else 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.

How to say looks very logical ,

So Default is English, if i found language different in list it will be set automatically to it.

Author:  ethanb [ Wed Aug 18, 2010 8:18 am ]
Post subject:  Re: Share New Games Gokifu.com

masek wrote:
Harleqin wrote:
masek wrote:
if ( de)
set_lang(de)
else 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.

How to say looks very logical ,

So Default is English, if i found language different in list it will be set automatically to it.


The problem is that very few clients will not request a language at all (raise your hands if you browse the web with "telnet gokifu.com 80n GET /index.html 1.0") so it makes more sense to read the list they hand to you as it should be in preferred order.

Author:  masek [ Mon Jan 31, 2011 12:44 am ]
Post subject:  Re: Share New Games Gokifu.com

Go Kifu is updated .


Word Press Support, Live Journal Support .

User Features http://gokifu.com/register.php


Full list of features
http://senseis.xmp.net/?GokifuCom

Author:  bazilxp [ Sun Mar 13, 2011 9:31 am ]
Post subject:  Re: Share New Games Gokifu.com

Today 13.03.2011 is 1 year of http://gokifu.com project

Updates:
Tournaments http://gokifu.com/tournament.php
More logical file names in case of download sgf http://gokifu.com/f/pq.sgf
+20-000 Games 2000-2010 Years

Author:  masek [ Fri Jul 22, 2011 2:17 am ]
Post subject:  Re: Share New Games Gokifu.com

2011/07/22
Minor Changes , Fresh games now contain tournament info .
Google button+ avail.

http://gokifu.com/kgs.php - fresh games from KGS

Page 1 of 1 All times are UTC - 8 hours [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/