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

Pandanet Cup
http://www.lifein19x19.com/viewtopic.php?f=9&t=1235
Page 1 of 1

Author:  karaklis [ Fri Jul 30, 2010 7:34 am ]
Post subject:  Pandanet Cup

The following announcement was made on the IGS page:

"The 15th edition of the Worldwide Internet Amateur Go Tournament, the "PANDANET Cup" is now open for subscriptions. Participation is free so after reading the details below everyone is invited to subscribe!"

Anybody participating?

Author:  xed_over [ Fri Jul 30, 2010 4:03 pm ]
Post subject:  Re: Pandanet Cup

I think most of us here don't even know how to spell IGS, much less play Go there :)

(will this post get "liked" by wms? I have the only post in his KGS thread that wasn't "liked" :) )

Author:  Harleqin [ Fri Jul 30, 2010 6:58 pm ]
Post subject:  Re: Pandanet Cup

Is tweet still filtering all messages for things he does not like?

I am banned from IGS for about 6 years now. :lol:

I told someone who asked that tweet was the dict^H^H^H^Hadmin.

I regret nothing. ;-)

Author:  daal [ Sat Jul 31, 2010 2:39 am ]
Post subject:  Re: Pandanet Cup

Harleqin wrote:

I told someone who asked that tweet was the dict^H^H^H^Hadmin.


I don't get it. :oops:

Author:  Marcus [ Sat Jul 31, 2010 4:52 am ]
Post subject:  Re: Pandanet Cup

daal wrote:
Harleqin wrote:

I told someone who asked that tweet was the dict^H^H^H^Hadmin.


I don't get it. :oops:


The key is understanding how some UNIX command line shells handle the Backspace key. If the environment isn't set up, instead of erasing a character, the screen will output "^H" instead. So, the keystrokes on that last word are actually: "dict<backspace><backspace><backspace><backspace>admin"

Clever, Harlequin, clever. :)

Author:  prokofiev [ Sat Jul 31, 2010 6:34 am ]
Post subject:  Re: Pandanet Cup

I'm not playing in this, but I have been playing occasionally on IGS recently due to its compatibility with many (in my case, certain) platforms.

It's a bit strange. It's pleasing for playing games (indeed I like the Canadian byoyomi in the automatch games a lot), but other than the standard complaints as far as communicating and reviewing games, its rating system looks troublesome. For example, it appears in the SDK range you need to win 15 or so games more than you lose to move up one rank. Given how often I play, this is rather steep. For example I've played 8 games there so far (yes, exceedingly small sample size, but that's also part of the point) and, setting myself with a provisional 7k ranking (equivalent to 5k kgs according to some chart I saw) I lost my first 3 and have won my last 5.

To bring this back on topic: is this the tournament based on number of games you play instead of results? (Clearly I would lose at that, though of course I can't say I should be winning any tournaments!)

Author:  ethanb [ Sat Jul 31, 2010 9:02 am ]
Post subject:  Re: Pandanet Cup

Marcus wrote:
daal wrote:
Harleqin wrote:

I told someone who asked that tweet was the dict^H^H^H^Hadmin.


I don't get it. :oops:


The key is understanding how some UNIX command line shells handle the Backspace key. If the environment isn't set up, instead of erasing a character, the screen will output "^H" instead. So, the keystrokes on that last word are actually: "dict<backspace><backspace><backspace><backspace>admin"

Clever, Harlequin, clever. :)


The shell explanation is sort of right, but not really. The thing is that Ctrl-H and Backspace are the same character - ASCII symbol 8. ^[whatever] is a way to print an unprintable character (Ctrl-something) - so a tab (ASCII 9) is ^I, a linefeed (ASCII 13) is ^M, typewriter bell (ASCII 7) is ^G. Note that the "control characters" are the first 20-something (^[ is also one, I don't know how many others) characters of the ASCII table, and the first 26 map to the alphabet.

If you have an odd environment (say you're using a modern PC keyboard but your termcap is set for an older terminal which maps the backspace command to ^[ instead of ^H), it is possible to print "^H" instead of backspace. But you can also do it by hitting ^V^H - Ctrl-V means "display the next character I type instead of interpreting it", which might be useful if you want to put a tab character into a string rather than having your shell try to tab-complete a string from what you've typed already, for instance.

Sometimes in this sort of post people also use ^W, which is Emacs-speak for "delete previous word." WordPerfect and Microsoft Word and everything else picked up that command from Emacs. :)

Author:  usagi [ Sat Jul 31, 2010 9:39 am ]
Post subject:  Re: Pandanet Cup

Harleqin wrote:
Is tweet still filtering all messages for things he does not like?

I am banned from IGS for about 6 years now. :lol:

I told someone who asked that tweet was the dict^H^H^H^Hadmin.

I regret nothing. ;-)


I hope IGS dies. tweet and his buddies really did it to themselves, and I am personally very happy with how much market share IGS has lost over the recent years. I used to be a big supporter of IGS until around the time tweet banned Cornel from IGS for playing on KGS.

I won't go into all of the terrible things tweet, malf, jb and other IGS cronies said about me on r.g.g. One example will suffice. They called my wife a whore in a public article they posted up on the IGS web page. He would also claim he had a professional player review my games on IGS and that said pro felt I was only a weak kyu player. Among other ridiculous accusations.

I'm not the only one by far, I think that's common knowledge these days. A lot of people want to see IGS fail.

-

Author:  daal [ Mon Aug 02, 2010 6:40 am ]
Post subject:  Re: Pandanet Cup

daal wrote:
I don't get it. :oops:


Marcus wrote:
The key is understanding how some UNIX command line shells handle the Backspace key. If the environment isn't set up, instead of erasing a character, the screen will output "^H" instead. So, the keystrokes on that last word are actually: "dict<backspace><backspace><backspace><backspace>admin"


ethanb wrote:

The shell explanation is sort of right, but not really. The thing is that Ctrl-H and Backspace are the same character - ASCII symbol 8. ^[whatever] is a way to print an unprintable character (Ctrl-something) - so a tab (ASCII 9) is ^I, a linefeed (ASCII 13) is ^M, typewriter bell (ASCII 7) is ^G. Note that the "control characters" are the first 20-something (^[ is also one, I don't know how many others) characters of the ASCII table, and the first 26 map to the alphabet.

If you have an odd environment (say you're using a modern PC keyboard but your termcap is set for an older terminal which maps the backspace command to ^[ instead of ^H), it is possible to print "^H" instead of backspace. But you can also do it by hitting ^V^H - Ctrl-V means "display the next character I type instead of interpreting it", which might be useful if you want to put a tab character into a string rather than having your shell try to tab-complete a string from what you've typed already, for instance.

Sometimes in this sort of post people also use ^W, which is Emacs-speak for "delete previous word." WordPerfect and Microsoft Word and everything else picked up that command from Emacs. :)


:shock: I still don't get it, but mostly I'm feeling sorry I asked. In any case, after reading usagi's post, whatever "dict^H^H^H^Hadmin" means, I'm sure it was worth getting booted. :mrgreen:

Author:  Harleqin [ Mon Aug 02, 2010 8:53 am ]
Post subject:  Re: Pandanet Cup

daal wrote:
In any case, after reading usagi's post, whatever "dict^H^H^H^Hadmin" means, I'm sure it was worth getting booted. :mrgreen:


It means that I started to type "dict", then ostensibly pressed backspace four times, "deleting" those four characters, and finally typed "admin".

Author:  daal [ Mon Aug 02, 2010 10:25 am ]
Post subject:  Re: Pandanet Cup

Harleqin wrote:
daal wrote:
In any case, after reading usagi's post, whatever "dict^H^H^H^Hadmin" means, I'm sure it was worth getting booted. :mrgreen:


It means that I started to type "dict", then ostensibly pressed backspace four times, "deleting" those four characters, and finally typed "admin".


I finally got it. You got booted for almost calling him a dictionary. :lol:

Author:  Bantari [ Mon Aug 02, 2010 12:08 pm ]
Post subject:  Re: Pandanet Cup

Helel wrote:
I can say this since I don't play there as "Helel". :D


You can be blocked by IP, not just by name.
I know...

Author:  Sverre [ Sat Sep 11, 2010 7:28 pm ]
Post subject:  Re: Pandanet Cup

ethanb wrote:
Sometimes in this sort of post people also use ^W, which is Emacs-speak for "delete previous word." WordPerfect and Microsoft Word and everything else picked up that command from Emacs. :)


I thought C-w was kill-region?

Author:  hyperpape [ Mon Sep 13, 2010 2:41 pm ]
Post subject:  Re: Pandanet Cup

I believe KGS is smart enough to use IPs to associate accounts--if you are booted, then try to sign back in with the same IP, but different account, the two are thereafter linked: when one is booted, so is the other. No idea if IGS does this, but it's quite clever.

Author:  ethanb [ Fri Sep 24, 2010 2:45 pm ]
Post subject:  Re: Pandanet Cup

Sverre wrote:
ethanb wrote:
Sometimes in this sort of post people also use ^W, which is Emacs-speak for "delete previous word." WordPerfect and Microsoft Word and everything else picked up that command from Emacs. :)


I thought C-w was kill-region?


Hmm, right you are... I'm not an Emacs user myself, but using ksh and bash in "Emacs-mode" makes ^W == delete word, so I assumed that was true.

Wonder where that did originate then. WordPerfect?

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