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

08-24-2010 , 04:51 PM
It's free for open source and like $10 a month for closed source. I think $10 gets you three projects.

If you have a server somewhere already you could just set up git there too.

edit: of course you don't really need to do either, you can always just back up the git repo to an external drive or something. I'm just paranoid now after having a hard drive fail and losing a lot of code.
Quick Questions & Answers Thread Quote
08-24-2010 , 07:30 PM
ok i will probably be lynched for asking about stuff that probably has been answered a 100 times. I just discovered hotkeys today and got a kick out of been able to open websites with my keypad.

anyways I was looking for something that increases decreases bet sizes/ calls/ bet pot/fold without using the touchpad. I use ipoker and just signed on to partypoker and found their hotkeys to be class would love to be able to do that with ipoker

anyway thanks lads
Quick Questions & Answers Thread Quote
08-25-2010 , 12:11 AM
Quote:
Originally Posted by bware
is there an easy way to change the colors of all the notes you've ever taken on Pokerstars?

basically, in the past i colored all my fish the default color and the regs the second color. because i'm weird like that, i've changed my mind and want to switch those two around.

i went into the notes.xml file and changed all the label="0" to label="1" and vice versa howeverrrr this doesn't work. is there more to it?
bump
Quick Questions & Answers Thread Quote
08-25-2010 , 12:14 AM
notecaddy
Quick Questions & Answers Thread Quote
08-25-2010 , 02:26 AM
Where can i find out how to display hands and post images?

Thank you
Quick Questions & Answers Thread Quote
08-25-2010 , 05:52 AM
There is a tutorial on uploading and posting pictures here:

http://forumserver.twoplustwo.com/sh...27&postcount=3

The hand converter is explained here:

http://forumserver.twoplustwo.com/55...-thread-71183/
Quick Questions & Answers Thread Quote
08-25-2010 , 09:25 PM
Hello there,


Would someone be kind enough to recommend a free Hypersimple type FT mod that has been reported to be compatible with TableNinjaFT please?
Quick Questions & Answers Thread Quote
08-27-2010 , 08:09 AM
is there a program that will show me the number of sngs i hae open at a time
Quick Questions & Answers Thread Quote
08-27-2010 , 12:49 PM
i'm running into a huge headache trying to maintain and unit test StackAndTile as it grows and grows. i think i'm finally starting to learn just why "global variables are bad"

now its just whether or not i think its worth it to rewrite/redesign or just keep bandaid-ing on top

i'm getting kinda tired of all this
Quick Questions & Answers Thread Quote
08-27-2010 , 04:27 PM
Quote:
Originally Posted by greg nice
i'm running into a huge headache trying to maintain and unit test StackAndTile as it grows and grows. i think i'm finally starting to learn just why "global variables are bad"

now its just whether or not i think its worth it to rewrite/redesign or just keep bandaid-ing on top

i'm getting kinda tired of all this
Rewrite/redesign asap is always the way go IMO. It'll only end up more painful later on if you don't.

Juk
Quick Questions & Answers Thread Quote
08-27-2010 , 10:05 PM
How do I go about creating a program that grabs hand histories from pokerstars?

I have zero programming knowledge but I do have a friend who knows his languages and can help me.

Obviously not looking for the actual code but more genral information to point me in the right direction. Do I have to use ahk scripts?
Quick Questions & Answers Thread Quote
08-28-2010 , 03:19 PM
OT but why does my laptop's touchpad stop working if I keep my foot on the laptop's power adapter? WTF?!?
Quick Questions & Answers Thread Quote
08-28-2010 , 08:21 PM
is there a way to prevent pokerstars from stealing keyboard focus, while still popping active tables to the top? i'm hoping this is a dumb question.
Quick Questions & Answers Thread Quote
08-28-2010 , 08:53 PM
Quote:
Originally Posted by YoureToast
is there a way to prevent pokerstars from stealing keyboard focus, while still popping active tables to the top? i'm hoping this is a dumb question.
For taking notes? Try using keyboardredirect.ahk. It will maintain keyboard focus on whatever window your mouse cursor is over. If you click and start typing in a chat/note window, no other windows can steal focus.

http://overcards.com/wiki/moin.cgi/KeyboardRedirect
Quick Questions & Answers Thread Quote
08-28-2010 , 10:26 PM
ugh overcards is still down. seeing it claims it's a "disk quota" issue, who knows if it's gonna be back after the end of the month

keyboard_redirect.ahk:
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
#SingleInstance, Force
SetBatchLines, -1
Critical, On

$*,::
$*-::
$*.::
$*/::
$*0::
$*1::
$*2::
$*3::
$*4::
$*5::
$*6::
$*7::
$*8::
$*9::
$*;::
$*=::
$*[::
$*\::
$*]::
$*`::
$*a::
$*b::
$*c::
$*d::
$*e::
$*f::
$*g::
$*h::
$*i::
$*j::
$*k::
$*l::
$*m::
$*n::
$*o::
$*p::
$*q::
$*r::
$*s::
$*t::
$*u::
$*v::
$*w::
$*x::
$*y::
$*z::
$*Space::
$*Tab::
$*Enter::
$*Escape::
$*Backspace::
$*Delete::
$*Home::
$*End::
$*Up::
$*Down::
$*Left::
$*Right::


StringTrimLeft, ks_key, A_ThisHotkey, 2
process_key(ks_key)
return

process_key(ks_key)
{

  ks_key_to_send = %ks_key%

  ; sending a special key?  if so, wrap in brackets
  ks_length := StrLen(ks_key)

  if (ks_length > 1)
  {
    ks_key_to_send = {%ks_key%}
  }

  MouseGetPos, , , id
  id2 := WinExist("A")
  if (id != id2)
  {
    WinActivate, ahk_id%id%
  }
  Send, {blind}%ks_key_to_send%

}
Quick Questions & Answers Thread Quote
08-29-2010 , 12:38 AM
Quote:
Originally Posted by _dave_
ugh overcards is still down. seeing it claims it's a "disk quota" issue, who knows if it's gonna be back after the end of the month
It's OK for me?

Juk

EDIT: Was OK the other day also (when somebody mentioned it was down then)? Weird or just my timing?

Last edited by jukofyork; 08-29-2010 at 12:40 AM. Reason: .
Quick Questions & Answers Thread Quote
08-29-2010 , 12:50 AM
Quote:
[Errno 122] Disk quota exceeded


maybe you have it cached?
Quick Questions & Answers Thread Quote
08-29-2010 , 12:51 AM
Quote:
Originally Posted by _dave_


maybe you have it cached?
Yeah, must have: just went there again and got that message this time

Bugger

Juk
Quick Questions & Answers Thread Quote
08-29-2010 , 11:38 AM
Is there any solution (eg. Table-Mod, Third-Party-Software, AHK-Script) to color code players (like on FTP and Stars) at AbsolutePoker (Cereus)?

Thank you.
Quick Questions & Answers Thread Quote
08-29-2010 , 03:46 PM
Does anybody know of a program that can stack pokerstars and ftp tables in the same stack, and pop up the most urgent tables accordingly? i think i remember seeing something like this here somewhere
Quick Questions & Answers Thread Quote
08-29-2010 , 03:49 PM
Quote:
Originally Posted by jogden139
Does anybody know of a program that can stack pokerstars and ftp tables in the same stack, and pop up the most urgent tables accordingly? i think i remember seeing something like this here somewhere
http://forumserver.twoplustwo.com/16...r-more-657805/
Quick Questions & Answers Thread Quote
09-03-2010 , 03:21 PM
Pretty epic Bill Gates rant on Windows here: http://blog.seattlepi.com/microsoft/archives/141821.asp
Quick Questions & Answers Thread Quote
09-04-2010 , 02:40 PM
Is AHK comparable to Table Ninja? If so, which is better in your opinion?
Quick Questions & Answers Thread Quote
09-04-2010 , 02:45 PM
AHK is a programming/scripting language that you write software in. For example you could create a program like Table Ninja using AHK. So you're comparing apples to oranges.
Quick Questions & Answers Thread Quote
09-04-2010 , 04:46 PM
I know I'll get flamed for not searching but I'm playing right now. Does HEM have a HUD that works in rush?
Quick Questions & Answers Thread Quote

      
m