Life In 19x19 http://www.lifein19x19.com/ |
|
godiscussions.com archive http://www.lifein19x19.com/viewtopic.php?f=10&t=7116 |
Page 1 of 1 |
Author: | tapir [ Sun Nov 04, 2012 5:36 am ] |
Post subject: | godiscussions.com archive |
I am aware that l19x19 has the archive of godiscussions.com, however I am not aware whether it is accessible as it was announced it would be. Did I miss something or is it just lost? I guess most forum regulars don't care about an archive anyway, however at SL there are still many defunct links to godiscussions.com threads. |
Author: | p2501 [ Sun Nov 04, 2012 5:54 am ] |
Post subject: | Re: godiscussions.com archive |
I'd second that. |
Author: | xed_over [ Sun Nov 04, 2012 6:12 am ] |
Post subject: | Re: godiscussions.com archive |
there are several people who have a copy of the sql database dump, but we just need to force ourselves to be industrious enough to figure out how best to present the data. probably a simple php based site. I don't know php well enough myself, but maybe there's an off-the-shelf solution that'll allow browsing the archive with reviving full forum features (I haven't looked) |
Author: | tapir [ Sun Nov 04, 2012 6:57 am ] |
Post subject: | Re: godiscussions.com archive |
xed_over wrote: there are several people who have a copy of the sql database dump I know, but after two years it is probably safe to say, it won't happen, right? The benefit of a godiscussions.com archive decreases the later it goes online as the number of cross-references will decline steadily. It isn't about the best presentation, but the archive being available and linkable at all. If the people, who have a dump, can't overcome technical difficulties, they could have asked for help within the last two years. I never noticed anything like that, so it seems to be very low priority to all concerned. |
Author: | jts [ Sun Nov 04, 2012 11:33 am ] |
Post subject: | Re: godiscussions.com archive |
I don't think that's exactly fair to xed_over &co. At least one thread from GD has been posted directly into a L19 thread. The issue comes up a few times a year, and the reply is always the same: "We haven't figured out an easy way to do it yet, we need skills that we don't have." I'm not sure how else you want him to ask for help... stand on a street corner, begging passers-by for assistance? |
Author: | xed_over [ Sun Nov 04, 2012 11:57 am ] |
Post subject: | Re: godiscussions.com archive |
Yes, everytime I work on this I get a little further, but then something else comes up and gets in the way -- juggling too many simultaneous tasks all the time (work, family, hobbies -- not necessarily in that order). Its always in my mind to come back to this (and also my Dosaku thread I started) I'm still not convinced the archive is complete, and I'm still having trouble tying some of the tables together. For example, two of the most interesting tables are vb_post and vb_forum, but I can't find a common link between them. I spent some more time on this today... Here's the top level view... mysql> select forumid, title, parentid, parentlist, threadcount, childlist from vb_forum order by forumid; Code: +---------+--------------------------------+----------+------------+-------------+------------------------------------+ | forumid | title | parentid | parentlist | threadcount | childlist | +---------+--------------------------------+----------+------------+-------------+------------------------------------+ | 3 | GoDiscussions.com | -1 | 3,-1 | 0 | 3,14,16,22,8,9,10,11,12,24,-1 | | 4 | Go Club Forums | -1 | 4,-1 | 0 | 4,33,35,36,13,34,32,30,31,15,28,-1 | | 5 | Go Gear | -1 | 5,-1 | 0 | 5,21,18,23,19,-1 | | 6 | Improve Your Game | -1 | 6,-1 | 0 | 6,17,20,29,-1 | | 8 | General Go Chat | 3 | 8,3,-1 | 2099 | 8,-1 | | 9 | Beginners | 3 | 9,3,-1 | 615 | 9,-1 | | 10 | Amateurs | 3 | 10,3,-1 | 563 | 10,-1 | | 11 | Professionals | 3 | 11,3,-1 | 274 | 11,-1 | | 12 | Forum Suggestions & Bugs | 3 | 12,3,-1 | 285 | 12,-1 | | 13 | Requests | 4 | 13,4,-1 | 18 | 13,-1 | | 14 | Introductions & Guidelines | 3 | 14,3,-1 | 524 | 14,-1 | | 15 | Knoxville Go Club | 4 | 15,4,-1 | 0 | 15,-1 | | 16 | Off Topic | 3 | 16,3,-1 | 708 | 16,-1 | | 17 | Game Analysis | 6 | 17,6,-1 | 1432 | 17,-1 | | 18 | Computer Go | 5 | 18,5,-1 | 658 | 18,-1 | | 19 | Trading Post | 5 | 19,5,-1 | 233 | 19,-1 | | 20 | Study Group | 6 | 20,6,-1 | 782 | 20,-1 | | 21 | Go Books | 5 | 21,5,-1 | 551 | 21,-1 | | 22 | Announcements | 3 | 22,3,-1 | 674 | 22,-1 | | 23 | Gobans & Other Equipment | 5 | 23,5,-1 | 583 | 23,-1 | | 24 | Moderator's Room | 3 | 24,3,-1 | 117 | 24,-1 | | 28 | Columbus iGo Club | 4 | 28,4,-1 | 1 | 28,-1 | | 29 | Teachers/Club Leaders | 6 | 29,6,-1 | 197 | 29,-1 | | 30 | New York Go Center | 4 | 30,4,-1 | 0 | 30,-1 | | 31 | Chicago Go Clubs | 4 | 31,4,-1 | 0 | 31,-1 | | 32 | Go Center of Second Life | 4 | 32,4,-1 | 33 | 32,-1 | | 33 | Go Club Discussions | 4 | 33,4,-1 | 125 | 33,-1 | | 34 | KGS | 4 | 34,4,-1 | 171 | 34,-1 | | 35 | American Go Association Forum | 4 | 35,4,-1 | 53 | 35,36,-1 | | 36 | Tournament Rides/Hosts | 35 | 36,35,4,-1 | 7 | 36,-1 | +---------+--------------------------------+----------+------------+-------------+------------------------------------+ 30 rows in set (0.00 sec) mysql> describe vb_forum; mysql> select sum(threadcount) from vb_forum; +------------------+ | sum(threadcount) | +------------------+ | 10703 | +------------------+ 1 row in set (0.02 sec) All the posts are in the vb_post table... mysql> describe vb_post; mysql> select count(*) from vb_post; +----------+ | count(*) | +----------+ | 143572 | +----------+ 1 row in set (0.00 sec) mysql> select count(distinct threadid) from vb_post; +--------------------------+ | count(distinct threadid) | +--------------------------+ | 10539 | +--------------------------+ 1 row in set (1.19 sec) But the thread counts don't match, and I can't yet figure out how to list the threads by forum. The users table has only 12 records (looks like admins and mods only). I don't know where the forum users table is yet. mysql> show tables; I'm probably missing something obvious. Suggestions welcome. A couple of well placed, simple sql queries, and it actually should be pretty simple to post an archive on the web. (or recreate some threads here) Yeah, I did recreate one thread here (I can't remember where it is now), and if there's a specific thread search someone wants, I can probably do the same thing for them too. |
Author: | hyperpape [ Sun Nov 04, 2012 1:31 pm ] |
Post subject: | Re: godiscussions.com archive |
A text (HTML? BBCode?) dump of all forums would be interesting even if nothing else can be done. Actually, for finding references, grep often beats a web interface. |
Author: | LocoRon [ Sun Nov 04, 2012 2:00 pm ] |
Post subject: | Re: godiscussions.com archive |
xed_over wrote: I'm still not convinced the archive is complete, and I'm still having trouble tying some of the tables together.[...] The users table has only 12 records (looks like admins and mods only). I don't know where the forum users table is yet.[...] I'm probably missing something obvious. Suggestions welcome. Maybe Don removed all the other users (either from the users table that now only has 12 records, or their own table, if they were separate for some reason), to protect their personal data? Although, I suppose he'd have mentioned if he did something like that.... |
Author: | tapir [ Sun Nov 04, 2012 3:20 pm ] |
Post subject: | Re: godiscussions.com archive |
jts wrote: I don't think that's exactly fair to xed_over &co. At least one thread from GD has been posted directly into a L19 thread. The issue comes up a few times a year, and the reply is always the same: "We haven't figured out an easy way to do it yet, we need skills that we don't have." I'm not sure how else you want him to ask for help... stand on a street corner, begging passers-by for assistance? I am not following everything going on here closely, so I may have missed on a couple of threads. I am in no position to help either. For me the practical question is whether I should remove all those defunct links from SL or whether it is worthwile to wait a little longer. And yes, I would expect more asking around than mentioning it in a low-volume L19x19 thread when additional skill is needed. |
Author: | xed_over [ Sun Nov 04, 2012 3:26 pm ] |
Post subject: | Re: godiscussions.com archive |
try browsing these thread titles for starters http://www.eskimo.com/~wheelers/godiscu ... hreads.txt |
Author: | Dusk Eagle [ Mon Nov 05, 2012 5:16 am ] |
Post subject: | Re: godiscussions.com archive |
tapir wrote: jts wrote: I don't think that's exactly fair to xed_over &co. At least one thread from GD has been posted directly into a L19 thread. The issue comes up a few times a year, and the reply is always the same: "We haven't figured out an easy way to do it yet, we need skills that we don't have." I'm not sure how else you want him to ask for help... stand on a street corner, begging passers-by for assistance? I am not following everything going on here closely, so I may have missed on a couple of threads. I am in no position to help either. For me the practical question is whether I should remove all those defunct links from SL or whether it is worthwile to wait a little longer. And yes, I would expect more asking around than mentioning it in a low-volume L19x19 thread when additional skill is needed. I haven't tested myself to see if it would work, but could you link to the Internet archive for GD threads? |
Author: | Bonobo [ Mon Nov 05, 2012 5:53 am ] |
Post subject: | Re: godiscussions.com archive |
Dusk Eagle wrote: I haven't tested myself to see if it would work, but could you link to the Internet archive for GD threads? I just tried, and while I seem to get the front page correctly (no idea what used to look, though), but when I clicked a thread link (I think for a page from 2010) I got Quote: Page cannot be crawled or displayed due to robots.txt. http://web.archive.org/web/201004302217 ... post150090 |
Author: | xed_over [ Mon Nov 05, 2012 8:13 am ] |
Post subject: | Re: godiscussions.com archive |
Dusk Eagle wrote: I haven't tested myself to see if it would work, but could you link to the Internet archive for GD threads? do you mean the database? at the moment, its running on my local laptop. and there will be security issues with making it publicly available without first scrubbing some personal data and such (which would take me even longer to figure out). |
Author: | Dusk Eagle [ Mon Nov 05, 2012 10:47 am ] |
Post subject: | Re: godiscussions.com archive |
Bonobo wrote: Dusk Eagle wrote: I haven't tested myself to see if it would work, but could you link to the Internet archive for GD threads? I just tried, and while I seem to get the front page correctly (no idea what used to look, though), but when I clicked a thread link (I think for a page from 2010) I got Quote: Page cannot be crawled or displayed due to robots.txt. http://web.archive.org/web/201004302217 ... post150090 Right, I remember now that I tried it in the past, but got this error message as well. |
Page 1 of 1 | All times are UTC - 8 hours [ DST ] |
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group http://www.phpbb.com/ |