Open Side Menu Go to the Top
Register
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013

03-26-2012 , 01:06 PM
Quote:
Originally Posted by mme
i get an err when adding cold call % to HUD


Hi, car0 seems to work (zero, no underline)

The code is inconsisent on this one, I'll take a look at it, and the suggestion to clarify things.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-26-2012 , 10:24 PM
Quote:
Originally Posted by Piscator
Have I been editing the wrong file or is there some other bit in this particular file I also need to edit, perhaps?
Almost certainly you are editing to wrong file.

Check the 'Where is it?' section of:

http://****************/apps/mediawik..._Configuration

Sorrow.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-27-2012 , 03:46 AM
Quote:
Originally Posted by gimick
The code is inconsisent on this one, I'll take a look at it, and the suggestion to clarify things.
a note on coding. i see this so much throughout fpdb ..unconditional try / except

Code:
def car(stat_dict, player):
    stat_descriptions["car_0"] = _("% called a raise preflop") + " (car_0)"
    stat = 0.0
    try:
        stat = float(stat_dict[player]['car_0'])/float(stat_dict[player]['car_opp_0'])
        return (stat,
                '%3.1f'         % (100.0*stat),
                'CAR0=%3.1f%%'    % (100.0*stat),
                'CAR_pf=%3.1f%%' % (100.0*stat),
                '(%d/%d)'       % (stat_dict[player]['car_0'], stat_dict[player]['car_opp_0']),
                _('% called a raise preflop'))
    except:
        return (stat,
                'NA',
                'CAR0=NA',
                'CAR_pf=NA',
                '(0/0)',
                _('% called a raise preflop'))
always be specific about the exception you want to catch.

Code:
try:
    do something
except IOError:
    # we catch this because you never know with pipes
best throw in a note on why you are doing so.

Code:
try:
    do something
except TypeError:
    # we catch this because the caller may pass something unexpected 
    # wait ..what? maybe we should fix the caller first

using try / except unconditionally is even worse because it will harm your code in many ways. in the above method even simple typos in the try block will go unnoticed. apart from this, you say it is ok to pass to the method:
- a parameter 'stat_dict' that is not a valid dictionary
- a parameter 'player' that is not a valid dictionary key
- a dict with member 'player' not being present
- a dict where member [player] is not a valid dictionary
- a dict where member [player][car_oop_0] is not present
- a dict where member [player][car_oop_0] is something that can not be converted to a float

..shadowing many potential bugs in calling methods and making the code very hard to debug. in the case i picked i'd guess from the programming logic that it may actually be better to not catch any exception at all, rather force method X down the line to make shure that none of the error conditions can ever met unless there is a serious bug.

tl;dr;
exceptions are good. don't catch them unless you have a very well defined reason to do so.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-27-2012 , 06:04 AM
Quote:
Originally Posted by sorrow
Almost certainly you are editing to wrong file.
Yeah, I found the right one in the application data section along with the database of hand histories.

Thanks for your help; it's all working fine now
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-27-2012 , 10:09 AM
Quote:
Originally Posted by mme
a note on coding. i see this so much throughout fpdb ..unconditional try / except
We agree. There has been a long term effort to eradicate this from the code base. With the exception of the hud code it is largely complete, and the hud code is about to go through a major revamp.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-27-2012 , 01:09 PM
Quote:
Originally Posted by sorrow
We agree. There has been a long term effort to eradicate this from the code base. With the exception of the hud code it is largely complete, and the hud code is about to go through a major revamp.
good to hear. PM me if there is need for one or the other general purpose module in fpdb. i got some time to spare and could take over one or the other well defined task. not really willing though to digg any deeper into fpdb source code. no offence intended. just for my own sanity, hope you understand :-)
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-28-2012 , 02:41 PM
Something is up with Everest.
The new release worked fine for 1 run on an Omaha cash table (on XP SP3)
Tried a tourney and a SNG - no luck.
Next day installed on my Windows 7 machine, No hud anywhere.
XP install was missing HUD as well (funny I know)

Auto-import looks like its working.
76.txt 1 stored, 0 duplicates, 0 partial, 0 errors (time = 0.009000)...
Log also states no errors.

Below is a screenshot of the logfile for the HUD (could not copy paste)
http://imageshack.us/photo/my-images/10/errorzw.png


Anything I can do to make it work?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-28-2012 , 03:57 PM
Quote:
Originally Posted by bah23

Below is a screenshot of the logfile for the HUD (could not copy paste)
http://imageshack.us/photo/my-images/10/errorzw.png
You are getting a code error - unfortunately I can't quite read the screen-shot.

From windows could you please start/run/

enter %appdata%
select fpdb
select log

There should be 4 files; the error text is probably in HUD-errors.txt; if it isn't there, try HUD-log.txt

Could you try pasting the error message from that file please?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-28-2012 , 04:35 PM
Quote:
Originally Posted by gimick
You are getting a code error - unfortunately I can't quite read the screen-shot.

From windows could you please start/run/

enter %appdata%
select fpdb
select log

There should be 4 files; the error text is probably in HUD-errors.txt; if it isn't there, try HUD-log.txt

Could you try pasting the error message from that file please?
Thanks for the quick reply.
I'll post back tommorow with logs from XP and Win7.

I realize tourneys are not supported in Everest, so I would have only PLO cash games running to avoid confusion.
Guess a fair bit of the errors would be my SNG's running.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-29-2012 , 01:32 PM
Quote:
Originally Posted by bah23
Thanks for the quick reply.
I'll post back tommorow with logs from XP and Win7.

I realize tourneys are not supported in Everest, so I would have only PLO cash games running to avoid confusion.
Guess a fair bit of the errors would be my SNG's running.

Ok, here are some Win7 log files.
To start of I'm playing 6 max PLO.

HUD-errors.txt
No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.No layout found for 10-max games for site Everest.HUD_main.exe:331: GtkWarning: gdkwindow-win32.c:2216: SetWindowLongPtr failed: Invalid window handle.
HUD_main.exe:331: GtkWarning: window 0002041C unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 0002040E unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 00020410 unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 0002040A unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 0002040C unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 00020406 unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 00020408 unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 00020402 unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 00020404 unexpectedly destroyed
HUD_main.exe:331: GtkWarning: window 000203FE unexpectedly destroyed


HUD-log.txt

2012-03-29 20:09:58,611 - hud DEBUG Received hand no 170
2012-03-29 20:09:58,611 - hud INFO HUD_main.read_stdin: Hand processing starting.
2012-03-29 20:09:58,611 - db INFO opp seats style A 0 10 hero seats style A 0 10
2012-03-29 20:09:58,619 - hud DEBUG update_table_position:997,61
2012-03-29 20:09:58,619 - hud INFO Creating hud from hand 170
2012-03-29 20:09:58,619 - hud ERROR Error updating HUD for hand 170.
Traceback (most recent call last):
File "HUD_main.pyw", line 367, in idle_update
File "Hud.pyc", line 693, in update
KeyError: 0
2012-03-29 20:11:38,655 - hud DEBUG Received hand no 171
2012-03-29 20:11:38,655 - hud INFO HUD_main.read_stdin: Hand processing starting.
2012-03-29 20:11:38,661 - db INFO opp seats style A 0 10 hero seats style A 0 10
2012-03-29 20:11:38,665 - hud DEBUG update_table_position:997,61
2012-03-29 20:11:38,667 - hud INFO Creating hud from hand 171
2012-03-29 20:11:38,667 - hud ERROR Error updating HUD for hand 171.
Traceback (most recent call last):
File "HUD_main.pyw", line 367, in idle_update
File "Hud.pyc", line 693, in update
KeyError: 0
2012-03-29 20:12:38,674 - hud DEBUG Received hand no 172
2012-03-29 20:12:38,674 - hud INFO HUD_main.read_stdin: Hand processing starting.
2012-03-29 20:12:38,674 - db INFO opp seats style A 0 10 hero seats style A 0 10
2012-03-29 20:12:38,684 - hud DEBUG update_table_position:997,61
2012-03-29 20:12:38,684 - hud INFO Creating hud from hand 172
2012-03-29 20:12:38,684 - hud ERROR Error updating HUD for hand 172.
Traceback (most recent call last):
File "HUD_main.pyw", line 367, in idle_update
File "Hud.pyc", line 693, in update
KeyError: 0
2012-03-29 20:14:25,964 - hud DEBUG client_destroyed event
2012-03-29 20:14:25,964 - hud DEBUG kill_hud event
2012-03-29 20:14:28,697 - hud DEBUG Received hand no 173
2012-03-29 20:14:28,698 - hud INFO HUD_main.read_stdin: Hand processing starting.
2012-03-29 20:14:28,703 - db INFO opp seats style A 0 10 hero seats style A 0 10
2012-03-29 20:14:28,710 - hud ERROR Error: self.window doesn't exist.
2012-03-29 20:14:28,710 - hud ERROR Error: self.window doesn't exist.
2012-03-29 20:14:28,710 - hud ERROR Error: self.window doesn't exist.
2012-03-29 20:14:28,711 - hud ERROR Error: self.window doesn't exist.
2012-03-29 20:14:28,713 - hud ERROR Error: self.window doesn't exist.
2012-03-29 20:14:28,713 - hud ERROR Can't find table Meuse-3
2012-03-29 20:14:28,713 - hud ERROR HUD create: table name Meuse-3 not found, skipping.
2012-03-29 20:16:45,065 - hud DEBUG Received hand no
2012-03-29 20:16:45,065 - hud INFO Quitting normally


WIN XP issue was my bad - I did not use the run_fpdb.bat to start up, just went straight to fpdb.exe
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-31-2012 , 07:50 AM
Quote:
Originally Posted by bah23
Ok, here are some Win7 log files.
To start of I'm playing 6 max PLO.

HUD-errors.txt
No layout found for 10-max games for site Everest.
I think most of your issues come from this. The current release 0.29.906 definitely has a default layout for Everest 10-max. What version are you using?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-31-2012 , 12:38 PM
Quote:
Originally Posted by sorrow
I think most of your issues come from this. The current release 0.29.906 definitely has a default layout for Everest 10-max. What version are you using?
As expected the issue was on my end and everything is ok (running fpdb from run_fpdb.bat). Thanks again for the great software.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-31-2012 , 12:58 PM
Hi there - installed fpdb and imported my hands - well done guys seems like a great program, been looking for a free alternative to PT etc for a bit.

The issue i'm currently having is with imported 888 PacificPoker tournament results - specifically DoubleOrNothing games and even the usual SNG. The ITM is all 0, no results for 1st/2nd/3rd, no won or ROI. I know for a fact I have won some of these normal SNG's and a number of these DoN's. Hence when I look at my tournament graph its instead a negative graph since it thinks i've lost every tournament i've played in. I can imagine there might be a problem with the DoN games since its not a standard format however it seems to be for the few normal SNG's I have histories of also. Is this just a problem for parsing 888poker hands or is there some settings or setup I have to do here?

One thing to mention might be that I imported all these via the "Bulk import" - when I try import via the "Import Tournament Results" it freezes the program on the first hand history file and I have to close from taskmgr. Also i'm using Win 7 and have installed the relevant dll libraries as on the Install wiki page.

Cheers!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-31-2012 , 01:22 PM
Can anyone explain to my how to calculate the standard deviation in BB/100hands. The standard deviation is now displayed in dollars.

For example, I have an overall standard deviation of $0.31 on 5nl, how much is this translated in BB/100 hands? I tried google it but was unable to find it

Thanks in advance!

Last edited by iDestroy; 03-31-2012 at 01:27 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-31-2012 , 01:48 PM
Any progress with Zoom?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
03-31-2012 , 01:49 PM
Quote:
Originally Posted by madog
Hi there - installed fpdb and imported my hands - well done guys seems like a great program, been looking for a free alternative to PT etc for a bit.

The issue i'm currently having is with imported 888 PacificPoker tournament results - specifically DoubleOrNothing games and even the usual SNG. The ITM is all 0, no results for 1st/2nd/3rd, no won or ROI. I know for a fact I have won some of these normal SNG's and a number of these DoN's. Hence when I look at my tournament graph its instead a negative graph since it thinks i've lost every tournament i've played in. I can imagine there might be a problem with the DoN games since its not a standard format however it seems to be for the few normal SNG's I have histories of also. Is this just a problem for parsing 888poker hands or is there some settings or setup I have to do here?

One thing to mention might be that I imported all these via the "Bulk import" - when I try import via the "Import Tournament Results" it freezes the program on the first hand history file and I have to close from taskmgr. Also i'm using Win 7 and have installed the relevant dll libraries as on the Install wiki page.

Cheers!
In addition to the above, HUD does not work on tourneys, only cash games?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-01-2012 , 12:23 PM
I've installed the newest version (http://****************/projects/fpdb...6.exe/download) of FPDB on my Win 7. Using the "Getting Started" guide, everything seems to work fine, except that at the end where the ring player stats should show, only a blank page shows. I used the bulk import tool to import my PKR hand history and it shows "import complete".

Where is the error?

Here is the log file:


2012-04-01 17:57:36,321 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\Mission Room.txt'
2012-04-01 17:57:36,338 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005630 - Mission Room
Starting Hand #2037301592
Start time of hand: 19 Mar 2012 21:28:05
Last Hand #2037299954
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
'
2012-04-01 17:57:36,338 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\Mission Room.txt'
2012-04-01 17:57:36,338 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005630 - Mission Room
Starting Hand #2037302760
Start time of hand: 19 Mar 2012 21:29:07
Last Hand #2037301592
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
'
2012-04-01 17:57:36,339 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\Mission Room.txt'
2012-04-01 17:57:36,339 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005630 - Mission Room
Starting Hand #2037303365
Start time of hand: 19 Mar 2012 21:29:41
Last Hand #2037302760
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
'
2012-04-01 17:57:36,339 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\Mission Room.txt'
2012-04-01 17:57:36,339 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005630 - Mission Room
Starting Hand #2037305234
Start time of hand: 19 Mar 2012 21:31:19
Last Hand #2037303365
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
'
2012-04-01 17:57:36,339 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\Mission Room.txt'
2012-04-01 17:57:36,339 - parser INFO Read 20 hands (20 failed) in 0.047 seconds
2012-04-01 17:57:36,348 - importer INFO Converting C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt
2012-04-01 17:57:36,348 - parser INFO HandHistory init - PKR site, PkrToFpdb.Pkr subclass, in_path 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'; out_path '-'
2012-04-01 17:57:36,351 - parser INFO Parsing 48 hands
2012-04-01 17:57:36,351 - parser ERROR PkrToFpdb.determineGameType: 'sladkiyyy calls $0.77
Pot sizes: $3.09
Dealing River [7 s]
sladkiyyy checks
alfapali79 bets $3.09
rftheGOAT brings $8.30 to table 44005339
sladkiyyy calls $3.09
Pot sizes: $9.27
Taking Rake of $0.92 '
2012-04-01 17:57:36,351 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,351 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037307168
Start time of hand: 19 Mar 2012 21:32:57
Last Hand #2037305684
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,351 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,351 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037308022
Start time of hand: 19 Mar 2012 21:33:41
Last Hand #2037307168
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,351 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,351 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037309325
Start time of hand: 19 Mar 2012 21:34:49
Last Hand #2037308022
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,351 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,352 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037310375
Start time of hand: 19 Mar 2012 21:35:44
Last Hand #2037309325
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,352 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,352 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037312025
Start time of hand: 19 Mar 2012 21:37:11
Last Hand #2037310375
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,352 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,352 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037312583
Start time of hand: 19 Mar 2012 21:37:40
Last Hand #2037312025
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,352 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,352 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037313593
Start time of hand: 19 Mar 2012 21:38:33
Last Hand #2037312583
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,354 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,354 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037315411
Start time of hand: 19 Mar 2012 21:40:11
Last Hand #2037313593
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,354 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,354 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037317210
Start time of hand: 19 Mar 2012 21:41:47
Last Hand #2037315411
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,354 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,354 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037318740
Start time of hand: 19 Mar 2012 21:43:11
Last Hand #2037317210
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,354 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,354 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037319889
Start time of hand: 19 Mar 2012 21:44:11
Last Hand #2037318740
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037322358
Start time of hand: 19 Mar 2012 21:46:23
Last Hand #2037319889
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037324315
Start time of hand: 19 Mar 2012 21:48:08
Last Hand #2037322358
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'CACHAPEDRAS rebuys $1.24'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037325717
Start time of hand: 19 Mar 2012 21:49:24
Last Hand #2037324315
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037328158
Start time of hand: 19 Mar 2012 21:51:36
Last Hand #2037325717
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037329533
Start time of hand: 19 Mar 2012 21:52:55
Last Hand #2037328158
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037331590
Start time of hand: 19 Mar 2012 21:54:51
Last Hand #2037329533
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,355 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,355 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037333148
Start time of hand: 19 Mar 2012 21:56:41
Last Hand #2037331590
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,357 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,357 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037334277
Start time of hand: 19 Mar 2012 21:58:03
Last Hand #2037333148
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,357 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,357 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037336377
Start time of hand: 19 Mar 2012 22:00:32
Last Hand #2037334277
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,357 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,357 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037337825
Start time of hand: 19 Mar 2012 22:01:56
Last Hand #2037336377
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,357 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,357 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037339598
Start time of hand: 19 Mar 2012 22:03:34
Last Hand #2037337825
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037341242
Start time of hand: 19 Mar 2012 22:05:03
Last Hand #2037339598
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037342678
Start time of hand: 19 Mar 2012 22:06:23
Last Hand #2037341242
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037344779
Start time of hand: 19 Mar 2012 22:08:13
Last Hand #2037342678
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'alfapali79 rebuys $2.22'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037347367
Start time of hand: 19 Mar 2012 22:10:32
Last Hand #2037344779
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'sladkiyyy rebuys $4'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037348326
Start time of hand: 19 Mar 2012 22:11:24
Last Hand #2037347367
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,358 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037349422
Start time of hand: 19 Mar 2012 22:12:24
Last Hand #2037348326
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,358 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,359 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037350941
Start time of hand: 19 Mar 2012 22:13:50
Last Hand #2037349422
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,359 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,359 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037352996
Start time of hand: 19 Mar 2012 22:15:46
Last Hand #2037350941
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,359 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,359 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037354737
Start time of hand: 19 Mar 2012 22:17:20
Last Hand #2037352996
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,359 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,359 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037356199
Start time of hand: 19 Mar 2012 22:18:41
Last Hand #2037354737
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,359 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037359182
Start time of hand: 19 Mar 2012 22:21:30
Last Hand #2037356199
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037360194
Start time of hand: 19 Mar 2012 22:22:27
Last Hand #2037359182
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Hansson24 rebuys $5.77'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037362553
Start time of hand: 19 Mar 2012 22:24:46
Last Hand #2037360194
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037364066
Start time of hand: 19 Mar 2012 22:26:17
Last Hand #2037362553
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037365590
Start time of hand: 19 Mar 2012 22:27:48
Last Hand #2037364066
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037366934
Start time of hand: 19 Mar 2012 22:29:11
Last Hand #2037365590
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,361 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037368065
Start time of hand: 19 Mar 2012 22:30:18
Last Hand #2037366934
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,361 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,362 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037369806
Start time of hand: 19 Mar 2012 22:32:05
Last Hand #2037368065
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,362 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,362 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037370675
Start time of hand: 19 Mar 2012 22:33:00
Last Hand #2037369806
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,362 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,362 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037372323
Start time of hand: 19 Mar 2012 22:34:41
Last Hand #2037370675
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,362 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,362 - parser ERROR PkrToFpdb.determineGameType: 'Table #44005339 - McNobbler's
Starting Hand #2037372900
Start time of hand: 19 Mar 2012 22:35:15
Last Hand #2037372323
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONEY
B'
2012-04-01 17:57:36,362 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\McNobbler 's.txt'
2012-04-01 17:57:36,362 - parser INFO Read 48 hands (48 failed) in 0.014 seconds
2012-04-01 17:57:36,367 - importer INFO Converting C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt
2012-04-01 17:57:36,367 - parser INFO HandHistory init - PKR site, PkrToFpdb.Pkr subclass, in_path 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'; out_path '-'
2012-04-01 17:57:36,384 - parser INFO Parsing 13 hands
2012-04-01 17:57:36,384 - parser ERROR PkrToFpdb.determineGameType: 'Blutrausch123 folds
Babydog007 calls $0.10
rftheGOAT brings $7.40 to table 44008389
AAhappywarAA checks
Pot sizes: $0.40
Dealing Flop [T h][J h][T s]
Babydog007 checks
AAhappywarAA checks
JoeJigsaw c'
2012-04-01 17:57:36,384 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,384 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037249640
Start time of hand: 19 Mar 2012 20:41:56
Last Hand #2037247447
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,384 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,384 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037251100
Start time of hand: 19 Mar 2012 20:43:09
Last Hand #2037249640
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,384 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,384 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037252628
Start time of hand: 19 Mar 2012 20:44:25
Last Hand #2037251100
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,384 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,384 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037253832
Start time of hand: 19 Mar 2012 20:45:27
Last Hand #2037252628
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,384 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,385 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037256366
Start time of hand: 19 Mar 2012 20:47:36
Last Hand #2037253832
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,385 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,385 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037257982
Start time of hand: 19 Mar 2012 20:48:58
Last Hand #2037256366
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,385 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,385 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037259712
Start time of hand: 19 Mar 2012 20:50:25
Last Hand #2037257982
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,385 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,385 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037260860
Start time of hand: 19 Mar 2012 20:51:22
Last Hand #2037259712
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,385 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,385 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037263187
Start time of hand: 19 Mar 2012 20:53:22
Last Hand #2037260860
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,387 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,387 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037265487
Start time of hand: 19 Mar 2012 20:55:29
Last Hand #2037263187
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,387 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,387 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037266644
Start time of hand: 19 Mar 2012 20:56:49
Last Hand #2037265487
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,387 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,387 - parser ERROR PkrToFpdb.determineGameType: 'Table #44008389 - The Full House
Starting Hand #2037267479
Start time of hand: 19 Mar 2012 20:57:47
Last Hand #2037266644
Game Type: HOLD'EM
Limit Type: NO LIMIT
Table Type: RING
Money Type: REAL MONE'
2012-04-01 17:57:36,387 - parser ERROR FpdbParseError for file 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\20120319\The Full House.txt'
2012-04-01 17:57:36,387 - parser INFO Read 13 hands (13 failed) in 0.020 seconds
2012-04-01 17:57:36,392 - db INFO Analyze took 0.0 seconds
2012-04-01 17:57:36,398 - importer INFO Bulk import done: Stored: 0, Duplicates: 0, Partial: 0, Errors: 81, Time: 0.111999988556 seconds, Stored/second: 0
2012-04-01 17:57:40,707 - importer INFO Started at 2012-04-01 17:57:40.708000 -- 1 files to import. indexes: drop
2012-04-01 17:57:40,714 - importer INFO Converting C:\Program Files (x86)\PKR\handhistory\rftheGOAT\19700101\Garden of Isis.txt
2012-04-01 17:57:40,714 - parser INFO HandHistory init - PKR site, PkrToFpdb.Pkr subclass, in_path 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\19700101\Garden of Isis.txt'; out_path '-'
2012-04-01 17:57:40,716 - parser INFO Removing text < 50 characters
2012-04-01 17:57:40,716 - parser INFO Parsing 0 hands
2012-04-01 17:57:40,716 - parser INFO Read 0 hands (0 failed) in 0.001 seconds
2012-04-01 17:57:40,723 - db INFO Analyze took 0.0 seconds
2012-04-01 17:57:40,729 - importer INFO Bulk import done: Stored: 0, Duplicates: 0, Partial: 0, Errors: 0, Time: 0.0210001468658 seconds, Stored/second: 0
2012-04-01 17:57:48,229 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04B22580>
2012-04-01 17:57:48,229 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 17:57:48,236 - filter INFO No games returned from database
2012-04-01 17:57:48,236 - filter INFO No currencies returned from database
2012-04-01 17:57:48,236 - filter INFO No games returned from database
2012-04-01 17:58:01,045 - filter INFO No games returned from database
2012-04-01 17:58:01,045 - filter INFO No currencies returned from database
2012-04-01 17:58:01,046 - filter INFO No games returned from database
2012-04-01 17:58:03,987 - filter INFO No games returned from database
2012-04-01 17:58:03,989 - filter INFO No currencies returned from database
2012-04-01 17:58:03,989 - filter INFO No games returned from database
2012-04-01 17:58:08,947 - filter INFO No games returned from database
2012-04-01 17:58:08,947 - filter INFO No currencies returned from database
2012-04-01 17:58:08,948 - filter INFO No games returned from database
2012-04-01 17:58:11,308 - filter INFO No games returned from database
2012-04-01 17:58:11,308 - filter INFO No currencies returned from database
2012-04-01 17:58:11,308 - filter INFO No games returned from database
2012-04-01 17:58:17,210 - filter INFO t1= adj_t1=1970-01-02 00:00:00.
2012-04-01 17:58:32,598 - config INFO Reading configuration file C:\Users\PhM\AppData\Roaming\fpdb\HUD_config.xml
2012-04-01 17:58:32,760 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04464490>
2012-04-01 17:58:32,760 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 17:58:37,500 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04464490>
2012-04-01 17:58:37,500 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 17:58:37,519 - filter INFO No games returned from database
2012-04-01 17:58:37,519 - filter INFO No currencies returned from database
2012-04-01 17:58:37,519 - filter INFO No games returned from database
2012-04-01 17:59:01,467 - filter INFO t1=2012-03-10 adj_t1=2012-03-10 04:00:00.
2012-04-01 17:59:02,490 - filter INFO t1=2012-03-10 adj_t1=2012-03-10 04:00:00.
2012-04-01 18:00:06,796 - config INFO Reading configuration file C:\Users\PhM\AppData\Roaming\fpdb\HUD_config.xml
2012-04-01 18:00:06,966 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04424490>
2012-04-01 18:00:06,967 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:08:59,956 - config INFO Reading configuration file C:\Users\PhM\AppData\Roaming\fpdb\HUD_config.xml
2012-04-01 18:09:00,128 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04464490>
2012-04-01 18:09:00,128 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:09:16,803 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04464490>
2012-04-01 18:09:16,805 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:09:16,828 - filter INFO No games returned from database
2012-04-01 18:09:16,828 - filter INFO No currencies returned from database
2012-04-01 18:09:16,828 - filter INFO No games returned from database
2012-04-01 18:09:20,420 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04464490>
2012-04-01 18:09:20,421 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:09:20,426 - filter INFO No games returned from database
2012-04-01 18:09:20,427 - filter INFO No currencies returned from database
2012-04-01 18:09:20,427 - filter INFO No games returned from database
2012-04-01 18:09:24,276 - filter INFO No games returned from database
2012-04-01 18:09:24,276 - filter INFO No currencies returned from database
2012-04-01 18:09:24,276 - filter INFO No games returned from database
2012-04-01 18:10:13,642 - config INFO Reading configuration file C:\Users\PhM\AppData\Roaming\fpdb\HUD_config.xml
2012-04-01 18:10:13,799 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x041F4490>
2012-04-01 18:10:13,801 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:10:17,937 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04B30328>
2012-04-01 18:10:17,937 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:10:25,017 - maintdbs INFO sortcols n=1
2012-04-01 18:10:25,019 - maintdbs INFO sortcols len(listcols)=8
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=0
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=1
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=2
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=3
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=4
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=5
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=6
2012-04-01 18:10:25,019 - maintdbs INFO sortcols i=7
2012-04-01 18:10:27,124 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x04B2BEE0>
2012-04-01 18:10:27,124 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:10:44,924 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x041F4490>
2012-04-01 18:10:44,924 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:10:44,927 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x041F4490>
2012-04-01 18:10:44,927 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:11:06,436 - importer INFO Started at 2012-04-01 18:11:06.436000 -- 1 files to import. indexes: drop
2012-04-01 18:11:06,444 - importer INFO Converting C:\Program Files (x86)\PKR\handhistory\rftheGOAT\19700101\Garden of Isis.txt
2012-04-01 18:11:06,447 - parser INFO HandHistory init - PKR site, PkrToFpdb.Pkr subclass, in_path 'C:\Program Files (x86)\PKR\handhistory\rftheGOAT\19700101\Garden of Isis.txt'; out_path '-'
2012-04-01 18:11:06,447 - parser INFO Removing text < 50 characters
2012-04-01 18:11:06,447 - parser INFO Parsing 0 hands
2012-04-01 18:11:06,447 - parser INFO Read 0 hands (0 failed) in 0.000 seconds
2012-04-01 18:11:06,464 - db INFO Analyze took 0.0 seconds
2012-04-01 18:11:06,469 - importer INFO Bulk import done: Stored: 0, Duplicates: 0, Partial: 0, Errors: 0, Time: 0.0329999923706 seconds, Stored/second: 0
2012-04-01 18:11:16,428 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x041F4490>
2012-04-01 18:11:16,428 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
2012-04-01 18:11:16,437 - filter INFO No games returned from database
2012-04-01 18:11:16,437 - filter INFO No currencies returned from database
2012-04-01 18:11:16,437 - filter INFO No games returned from database
2012-04-01 18:19:50,750 - config INFO Reading configuration file C:\Users\PhM\AppData\Roaming\fpdb\HUD_config.xml
2012-04-01 18:19:50,921 - db DEBUG Creating Database instance, sql = <SQL.Sql instance at 0x044C4490>
2012-04-01 18:19:50,921 - db INFO Connecting to SQLite: C:\Users\PhM\AppData\Roaming\fpdb\database\fpdb.db 3
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-01-2012 , 05:01 PM
wait so does this have hud support for stars on mac?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-03-2012 , 12:35 AM
Quote:
Originally Posted by madog
Hi there - installed fpdb and imported my hands - well done guys seems like a great program, been looking for a free alternative to PT etc for a bit.

The issue i'm currently having is with imported 888 PacificPoker tournament results - specifically DoubleOrNothing games and even the usual SNG. The ITM is all 0, no results for 1st/2nd/3rd, no won or ROI. I know for a fact I have won some of these normal SNG's and a number of these DoN's. Hence when I look at my tournament graph its instead a negative graph since it thinks i've lost every tournament i've played in. I can imagine there might be a problem with the DoN games since its not a standard format however it seems to be for the few normal SNG's I have histories of also. Is this just a problem for parsing 888poker hands or is there some settings or setup I have to do here?

One thing to mention might be that I imported all these via the "Bulk import" - when I try import via the "Import Tournament Results" it freezes the program on the first hand history file and I have to close from taskmgr. Also i'm using Win 7 and have installed the relevant dll libraries as on the Install wiki page.

Cheers!
Mea culpa. A merge between a couple of repositories messed up Pacific tourney import. I've now fixed that.

Tourney results need to be imported using the Tourney Results Import page.

Quote:
Originally Posted by iDestroy
Can anyone explain to my how to calculate the standard deviation in BB/100hands. The standard deviation is now displayed in dollars.

For example, I have an overall standard deviation of $0.31 on 5nl, how much is this translated in BB/100 hands? I tried google it but was unable to find it

Thanks in advance!
No idea. Sorry.

Quote:
Originally Posted by therightdeal
Any progress with Zoom?
The hand histories can now be imported. We have some development that may be interesting, but nothing for public consumption yet.

Quote:
Originally Posted by pma24
I've installed the newest version (http://****************/projects/fpdb...6.exe/download) of FPDB on my Win 7. Using the "Getting Started" guide, everything seems to work fine, except that at the end where the ring player stats should show, only a blank page shows. I used the bulk import tool to import my PKR hand history and it shows "import complete".
PKR has a broken hand history format (at least from the hand histories posted to me previously, so no work has gone into it since 2010.
Quote:
Originally Posted by dadude77
wait so does this have hud support for stars on mac?
Not officially supported, but at least a couple of people have made this work.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-03-2012 , 11:25 AM
can someone point why this isn't displayed? i made some changes but it doesnt work now

<game aux="mucked" cols="5" db="fpdb" game_name="27_3draw" rows="2">


<stat click="tog_decorate" col="0" popup="default" row="0" stat_hicolor="#33FF33" stat_hith="0" stat_name="vpip" tip="tip1"/>
<stat click="tog_decorate" col="1" hudprefix="| " popup="default" row="0" stat_hicolor="#33FF33" stat_hith="0" stat_name="pfr" tip="tip1"/>
<stat click="tog_decorate" col="2" hudprefix="| " popup="default" row="0" stat_hicolor="#FF3300" stat_hith="0" stat_name="three_B" tip="tip1"/>
<stat click="tog_decorate" col="3" hudprefix="| " popup="default" row="0" stat_name="steal" tip="tip1"/>
<stat click="tog_decorate" col="4" hudprefix="| " popup="default" row="0" stat_hicolor="#8968CD" stat_hith="0" stat_name="f_BB_steal" tip="tip1"/>
<stat click="tog_decorate" col="0" row="1" stat_hith="0" popup="default" stat_name="a_freq1" tip="tip1"/>
<stat click="tog_decorate" col="1" hudprefix="| " popup="default" row="1" stat_hith="0" stat_name="a_freq2" tip="tip1"/>
<stat click="tog_decorate" col="2" hudprefix="| " popup="default" row="1" stat_hicolor="#33DD33" stat_hith="0" stat_name="a_freq3" tip="tip1"/>
<stat click="tog_decorate" col="3" hudprefix="| " popup="default" row="1" stat_hicolor="#FF3300" stat_hith="0" stat_name="ffreq3" tip="tip1"/>
<stat click="tog_decorate" col="4" hudprefix="| " popup="default" row="1" stat_hicolor="#3399FF" stat_hith="0" stat_name="n" tip="tip1"/>
</game>
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-03-2012 , 11:30 AM
Quote:
Originally Posted by snowboard789
can someone point why this isn't displayed? i made some changes but it doesnt work now

<game aux="mucked" cols="5" db="fpdb" game_name="27_3draw" rows="2">


<stat click="tog_decorate" col="0" popup="default" row="0" stat_hicolor="#33FF33" stat_hith="0" stat_name="vpip" tip="tip1"/>
<stat click="tog_decorate" col="1" hudprefix="| " popup="default" row="0" stat_hicolor="#33FF33" stat_hith="0" stat_name="pfr" tip="tip1"/>
<stat click="tog_decorate" col="2" hudprefix="| " popup="default" row="0" stat_hicolor="#FF3300" stat_hith="0" stat_name="three_B" tip="tip1"/>
<stat click="tog_decorate" col="3" hudprefix="| " popup="default" row="0" stat_name="steal" tip="tip1"/>
<stat click="tog_decorate" col="4" hudprefix="| " popup="default" row="0" stat_hicolor="#8968CD" stat_hith="0" stat_name="f_BB_steal" tip="tip1"/>
<stat click="tog_decorate" col="0" row="1" stat_hith="0" popup="default" stat_name="a_freq1" tip="tip1"/>
<stat click="tog_decorate" col="1" hudprefix="| " popup="default" row="1" stat_hith="0" stat_name="a_freq2" tip="tip1"/>
<stat click="tog_decorate" col="2" hudprefix="| " popup="default" row="1" stat_hicolor="#33DD33" stat_hith="0" stat_name="a_freq3" tip="tip1"/>
<stat click="tog_decorate" col="3" hudprefix="| " popup="default" row="1" stat_hicolor="#FF3300" stat_hith="0" stat_name="ffreq3" tip="tip1"/>
<stat click="tog_decorate" col="4" hudprefix="| " popup="default" row="1" stat_hicolor="#3399FF" stat_hith="0" stat_name="n" tip="tip1"/>
</game>
stat_hith without a stat_hicolor in a_freq1 perhaps?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-04-2012 , 05:24 AM
oh yes!!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-04-2012 , 07:26 PM
I am running fpdb on 6-8 tables on merge and everything is fine for about the first 30-40 minutes. Then everything starts to slow down, the merge tables become super slow to react. If I close the HUD main window everything goes back to normal and the tables respond instantly. But if I restart auto import/HUD it becomes slow again.

I've looked through the logs and there are no HUD errors and nothing unusual seems to be happening. For the DB log there seem to be more commit fails as the session gets longer.

Anyone else having a similar problem?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-04-2012 , 09:49 PM
Quote:
Originally Posted by Unabridged
I am running fpdb on 6-8 tables on merge and everything is fine for about the first 30-40 minutes. Then everything starts to slow down, the merge tables become super slow to react. If I close the HUD main window everything goes back to normal and the tables respond instantly. But if I restart auto import/HUD it becomes slow again.

I've looked through the logs and there are no HUD errors and nothing unusual seems to be happening. For the DB log there seem to be more commit fails as the session gets longer.

Anyone else having a similar problem?
That sounds like the entire file is being imported every time, as the session gets longer re-importing the file blocks.

Can you send me your logs please? Merge shouldn't be doing that.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
04-05-2012 , 03:21 PM
Quote:
Originally Posted by sorrow
That sounds like the entire file is being imported every time, as the session gets longer re-importing the file blocks.

Can you send me your logs please? Merge shouldn't be doing that.
I have sent you a PM with the log files
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m