Open Side Menu Go to the Top
Register
Quick Questions & Answers Thread Quick Questions & Answers Thread

09-26-2009 , 04:24 AM
select a.Name from Tasks a where a.Task in
(select b.Task from Tasks b where b.Name = 'Joe');
Quick Questions & Answers Thread Quote
09-26-2009 , 06:55 AM
Thanks Beaucoup, but thats not all. It shows all the people who have any common tasks with Joe, even if its only one task. I'd like to only show names who do all the tasks the Joe does. Does does "Fix door" and "Brush teeth". I don't want to show those who "Brush teeth" but don't "Fix doors". I want those those who both "Brush teeth" and "Fix doors".
Quick Questions & Answers Thread Quote
09-26-2009 , 10:04 AM
Solved it.
Quick Questions & Answers Thread Quote
09-26-2009 , 07:06 PM
I'm back, but still very tired. Will be back properly tomorrow

Juk
Quick Questions & Answers Thread Quote
09-26-2009 , 09:57 PM
Welcome back!

Just saw this fine gif, thought I'd share
Quick Questions & Answers Thread Quote
09-26-2009 , 10:05 PM
Nice.

Nevermind the avatar tho, it is too wide to look good small, and I dont want to crop it.
Quick Questions & Answers Thread Quote
09-27-2009 , 12:55 PM
Quote:
Originally Posted by _dave_
Welcome back!

Just saw this fine gif, thought I'd share
hyperlinked ftw

Quick Questions & Answers Thread Quote
09-27-2009 , 10:03 PM
Ok, so I am trying to make a doubly linked list of job nodes but I get:
FileName.c:21: error: expected â=â, â,â, â;â, âasmâ or â__attribute__â before â->â token


Code:
typedef struct _job{
   int j_num;
   int t;
   int r_t;
   int p;
   struct _job *next;
   struct _job *prev;
}job;

job *head;    // ** line 21**
head->next = NULL;
job *curr;
What is the problem?
I also tried dynamically allocating space for the head ptr, but it says initializer element is not const. (this is strictly C btw)

Thanks
Quick Questions & Answers Thread Quote
09-27-2009 , 10:44 PM
Quote:
Originally Posted by uofi2012
Ok, so I am trying to make a doubly linked list of job nodes but I get:
FileName.c:21: error: expected â=â, â,â, â;â, âasmâ or â__attribute__â before â->â token


Code:
typedef struct _job{
   int j_num;
   int t;
   int r_t;
   int p;
   struct _job *next;
   struct _job *prev;
}job;

job *head;    // ** line 21**
head->next = NULL;
job *curr;
What is the problem?
I also tried dynamically allocating space for the head ptr, but it says initializer element is not const. (this is strictly C btw)
Make sure you allocate the space first (I agree it shouldn't mater at compilation time though...) and then try these:

1) Try changing the variable and structure names and see if that helps (I've had odd name space clashes before that can cause BS compile errors like this...).

2) If that doesn't work then it's most likely something to do with the typedef-struct declaration. Try replacing the "struct _job *next;" with "void* next;" and see if that works (casting it if necessary).

Generally with stuff like this the best thing to do is just keep cutting away everything until you have the most basic example that doesn't compile (or run) as you expect and then look deeper at the code that is left to see what's going wrong.

I'm gonna crash out now, but if you don't fix your problem then post back and I'll see it tomorrow.

Juk
Quick Questions & Answers Thread Quote
09-28-2009 , 07:27 PM
Call me crazy.. but I'd kill to have an odds calculator for the LCD screen on the G-Series Logitech keyboard. What are the rules of Full Tilt / Pokerstars regarding automated odds calculators?
Quick Questions & Answers Thread Quote
09-28-2009 , 07:52 PM
Quote:
Originally Posted by Ozdock
Call me crazy.. but I'd kill to have an odds calculator for the LCD screen on the G-Series Logitech keyboard. What are the rules of Full Tilt / Pokerstars regarding automated odds calculators?
http://www.pokerstars.com/poker/room/prohibited/
http://www.fulltiltpoker.com/prohibited_programs.php

Juk
Quick Questions & Answers Thread Quote
09-28-2009 , 08:01 PM
nice moves, Juk



we just need 20 Juks who work in rotating shifts and this forum would be so clean
Quick Questions & Answers Thread Quote
09-28-2009 , 11:10 PM
Offering $30 for someone to fix my HUD layout: http://forumserver.twoplustwo.com/15...layout-595212/ .
Quick Questions & Answers Thread Quote
09-29-2009 , 11:30 AM
Quote:
Originally Posted by NoahSD
Offering $30 for someone to fix my HUD layout: http://forumserver.twoplustwo.com/15...layout-595212/ .
Hud options > player preferences > Scale font.

Edit: Woops, look like you already figured it out. Sorry.
Quick Questions & Answers Thread Quote
09-29-2009 , 03:09 PM
Hi,
Can anyone tell me where the settings for FTP are held in the FTP folder? Many times when FTP does an update, I lose all my settings and they revert back to default.
Thanks.
Quick Questions & Answers Thread Quote
09-29-2009 , 03:24 PM
\full tilt poker\username.xml
Quick Questions & Answers Thread Quote
09-29-2009 , 03:38 PM
Quote:
Originally Posted by fozzy71
\full tilt poker\username.xml
Hey Fozzy,
Thanks for the answer, but I am looking in that file and all I see are player notes. Can you please tell me where the settings are in that file? I mean the ones that determine all your choices on the options menu, betting, etc.
Thanks!
Quick Questions & Answers Thread Quote
09-29-2009 , 03:46 PM
nevermind im dum

Last edited by Reup Gang; 09-29-2009 at 03:55 PM.
Quick Questions & Answers Thread Quote
09-29-2009 , 04:55 PM
Quote:
Originally Posted by beach_bum
Hey Fozzy,
Thanks for the answer, but I am looking in that file and all I see are player notes. Can you please tell me where the settings are in that file? I mean the ones that determine all your choices on the options menu, betting, etc.
Thanks!
That is the only file I know of that contains any personal settings.
Quick Questions & Answers Thread Quote
09-29-2009 , 05:03 PM
Quote:
Originally Posted by beach_bum
Hi,
Can anyone tell me where the settings for FTP are held in the FTP folder? Many times when FTP does an update, I lose all my settings and they revert back to default.
Thanks.
There are some .prefs and .xml in C:\Users\USERNAME\AppData\Local\FullTiltPoker on Windows 7. I suppose in earlier Windows versions they could reside in C:\Documents and Settings\USERNAME\AppData\FullTiltPoker or somewhere similiar.
Quick Questions & Answers Thread Quote
09-29-2009 , 05:19 PM
I should have mentioned that I am sure they do exist, but I have never cared enough about those things to be sure I had them backed up.
Quick Questions & Answers Thread Quote
09-30-2009 , 02:06 AM
Quote:
Originally Posted by rubbishaka80
There are some .prefs and .xml in C:\Users\USERNAME\AppData\Local\FullTiltPoker on Windows 7. I suppose in earlier Windows versions they could reside in C:\Documents and Settings\USERNAME\AppData\FullTiltPoker or somewhere similiar.
Yea, it looks like there are some that might qualify in the AppData folder.
Thanks.
Quick Questions & Answers Thread Quote
09-30-2009 , 03:54 AM
I'm looking for the best way to display a converted HH in a window using AHK.

Something similar to the converted HHs used here.

A sample of what I'm displaying is below. The top section is a filtered list of hands which could be hundreds of lines. Below that are the HH files all converted which could be all hands in a tournament, so hundreds of hands. I would like a link or search to link the game number at top to the converted HH below.

Right now I just use a notepad window with it's search. I would really like to use different fonts, colors, and the suits pics.

Thanks.

Filter1: PFR, Fileter2: CurrentTable, Hands: 180
VIP: 28(15.56%)
PFR: 18(10.00%), PFO2B: 11(6.11%), PFS2B: 4(2.22%), PFO3B: 3(1.67%), PFS3B: 0(0.00%)

Game stack HC M W/L Pos. Preflop Action :Results
XIII (600/1200/125) Avg: 80175
New Table: 6
2392373 120361 2s,4s
2435333 120236 Js,7c
2468513 120111 Th,8s
2509519 118786 4c,Tc
2528177 118061 4d,7d
2760369 108336 Tc,5c
2925566 108211 4s,4d
2948749 104486 2c,3h
3010044 104361 Ad,7c
3056281 104236 Jh,Ad 46.0 +24707 1of8 O2B 3516 :[JhAd] pair Js
3103907 128943 9s,5s
3136495 127618 8d,5h
3146450 126893 8s,8d 46.8 +10000 7of9 S2B 6000 :W Flop
3177661 136893 7d,8s
3221503 136768 5d,7d 47.7 +2800 5of9 O2B 3516 :W PreF
3238940 139568 4s,Js
3276677 139443 2s,8s
3303403 139318 Td,3h
3336396 139193 Th,8h
3388597 139068 Ac,9h
XIV (800/1600/150) Avg: 100623
3417670 137743 9d,8h
3430706 136793 Td,6s
3445000 136643 3d,Jh
3465868 136493 Tc,4h
3483740 136343 6s,2d
3516194 136193 Jc,3d
3535666 136043 Tc,9h
3549104 135893 As,5d
3562161 135743 9c,6d
3597354 133993 6h,4d
3607012 133043 5s,9h
3651934 132893 9d,Ah
3697351 132743 8s,As 42.4 +20026 4of8 O2B 4688 :W River
3777891 152769 9s,3c
3804109 152619 8s,Js
3841379 152469 Th,9s
3872223 152319 6d,4s



Game: 33449098254, 2500/5000/500, 6 Players
Player 1: ....... 811070 M = 77.24 [Qs Kc] W
Player 2: ....... 172775 M = 16.45
Player 3: ....... 711586 M = 67.77
Player 4(B): .... 681551 M = 64.91 [Ks Js] L
Player 5: ........ 22192 M = 2.11
Player 6: ....... 160728 M = 15.31

10500 Pre Flop:
Player 1 raises to 10000, 2f, Player 4 calls 10000, 2f

30500 Flop: [7d 5s Kh]
Player 1 Bets 15000, Player 4 calls 15000

60500 Turn: [7d 5s Kh] [8s]
Player 1 checks , Player 4 Bets 15000, Player 1 calls 15000

90500 River: [7d 5s Kh 8s] [4d]
Player 1 checks , Player 4 checks

90500 Board [7d 5s Kh 8s 4d]
Player 1 showed [Qs Kc] and won (90500) with a pair of Kings, (+50000)
Player 4 (button) mucked [Ks Js], (-40500)
Player 5 (small blind) folded before Flop, (-3000)
Player 6 (big blind) folded before Flop, (-5500)

New Chip Counts:
Player 1: ........ 861070 M = 82.01
Player 2: ........ 172275 M = 16.41
Player 3: ........ 711086 M = 67.72
Player 4: ........ 641051 M = 61.05
Player 5: ......... 19192 M = 1.83
Player 6: ........ 155228 M = 14.78

Table Average = 426650
Quick Questions & Answers Thread Quote
09-30-2009 , 11:39 AM
Nevermind, I think I have it figured out.
Quick Questions & Answers Thread Quote
09-30-2009 , 05:14 PM
Hello there guys iam wondering if i can find a free black mod for FTP , plus i wanna ask if there is a prog that it put your BBs, in the table that u playing.
Quick Questions & Answers Thread Quote

      
m