godiscussions.com archive
-
tapir
- Lives in sente
- Posts: 774
- Joined: Fri Apr 23, 2010 5:52 pm
- GD Posts: 0
- Has thanked: 137 times
- Been thanked: 155 times
- Contact:
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.
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.
-
xed_over
- Oza
- Posts: 2264
- Joined: Mon Apr 19, 2010 11:51 am
- Has thanked: 1179 times
- Been thanked: 553 times
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)
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)
-
tapir
- Lives in sente
- Posts: 774
- Joined: Fri Apr 23, 2010 5:52 pm
- GD Posts: 0
- Has thanked: 137 times
- Been thanked: 155 times
- Contact:
Re: godiscussions.com archive
I know, but after two years it is probably safe to say, it won't happen, right?xed_over wrote:there are several people who have a copy of the sql database dump
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.
- jts
- Oza
- Posts: 2665
- Joined: Sat Sep 18, 2010 4:17 pm
- Rank: kgs 6k
- GD Posts: 0
- Has thanked: 310 times
- Been thanked: 634 times
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?
-
xed_over
- Oza
- Posts: 2264
- Joined: Mon Apr 19, 2010 11:51 am
- Has thanked: 1179 times
- Been thanked: 553 times
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;
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.
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: Select all
+---------+--------------------------------+----------+------------+-------------+------------------------------------+
| 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> 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;
+----------+
| 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;
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.
-
hyperpape
- Tengen
- Posts: 4382
- Joined: Thu May 06, 2010 3:24 pm
- Rank: AGA 3k
- GD Posts: 65
- OGS: Hyperpape 4k
- Location: Caldas da Rainha, Portugal
- Has thanked: 499 times
- Been thanked: 727 times
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.
Actually, for finding references, grep often beats a web interface.
- LocoRon
- Lives with ko
- Posts: 292
- Joined: Tue Aug 10, 2010 1:04 pm
- Rank: 1 kyu
- GD Posts: 0
- KGS: LocoRon
- Has thanked: 92 times
- Been thanked: 80 times
Re: godiscussions.com archive
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....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.
-
tapir
- Lives in sente
- Posts: 774
- Joined: Fri Apr 23, 2010 5:52 pm
- GD Posts: 0
- Has thanked: 137 times
- Been thanked: 155 times
- Contact:
Re: godiscussions.com archive
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.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?
And yes, I would expect more asking around than mentioning it in a low-volume L19x19 thread when additional skill is needed.
-
xed_over
- Oza
- Posts: 2264
- Joined: Mon Apr 19, 2010 11:51 am
- Has thanked: 1179 times
- Been thanked: 553 times
Re: godiscussions.com archive
try browsing these thread titles for starters
http://www.eskimo.com/~wheelers/godiscu ... hreads.txt
http://www.eskimo.com/~wheelers/godiscu ... hreads.txt
- Dusk Eagle
- Gosei
- Posts: 1758
- Joined: Tue Apr 20, 2010 4:02 pm
- Rank: 4d
- GD Posts: 0
- Has thanked: 378 times
- Been thanked: 375 times
Re: godiscussions.com archive
I haven't tested myself to see if it would work, but could you link to the Internet archive for GD threads?tapir wrote: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.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?
And yes, I would expect more asking around than mentioning it in a low-volume L19x19 thread when additional skill is needed.
We don't know who we are; we don't know where we are.
Each of us woke up one moment and here we were in the darkness.
We're nameless things with no memory; no knowledge of what went before,
No understanding of what is now, no knowledge of what will be.
Each of us woke up one moment and here we were in the darkness.
We're nameless things with no memory; no knowledge of what went before,
No understanding of what is now, no knowledge of what will be.
- Bonobo
- Oza
- Posts: 2227
- Joined: Fri Dec 23, 2011 6:39 pm
- Rank: OGS 13k
- GD Posts: 0
- OGS: trohde
- Universal go server handle: trohde
- Location: Lüneburg Heath, North Germany
- Has thanked: 8263 times
- Been thanked: 925 times
- Contact:
Re: godiscussions.com archive
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 gotDusk Eagle wrote:I haven't tested myself to see if it would work, but could you link to the Internet archive for GD threads?
http://web.archive.org/web/201004302217 ... post150090Page cannot be crawled or displayed due to robots.txt.
“The only difference between me and a madman is that I’m not mad.” — Salvador Dali
-
xed_over
- Oza
- Posts: 2264
- Joined: Mon Apr 19, 2010 11:51 am
- Has thanked: 1179 times
- Been thanked: 553 times
Re: godiscussions.com archive
do you mean the database?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?
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).
- Dusk Eagle
- Gosei
- Posts: 1758
- Joined: Tue Apr 20, 2010 4:02 pm
- Rank: 4d
- GD Posts: 0
- Has thanked: 378 times
- Been thanked: 375 times
Re: godiscussions.com archive
Right, I remember now that I tried it in the past, but got this error message as well.Bonobo wrote: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 gotDusk Eagle wrote:I haven't tested myself to see if it would work, but could you link to the Internet archive for GD threads?http://web.archive.org/web/201004302217 ... post150090Page cannot be crawled or displayed due to robots.txt.
We don't know who we are; we don't know where we are.
Each of us woke up one moment and here we were in the darkness.
We're nameless things with no memory; no knowledge of what went before,
No understanding of what is now, no knowledge of what will be.
Each of us woke up one moment and here we were in the darkness.
We're nameless things with no memory; no knowledge of what went before,
No understanding of what is now, no knowledge of what will be.