Open Side Menu Go to the Top
Register
I'll play nosebleeds by the end of this year I'll play nosebleeds by the end of this year

01-28-2014 , 09:03 AM
Post here, I'll help you
I'll play nosebleeds by the end of this year Quote
01-28-2014 , 09:17 AM
awww i knew i should have went with python instead of C...

fun fact: did you know 2p2 has programming section?
I'll play nosebleeds by the end of this year Quote
01-28-2014 , 10:23 AM
Quote:
Originally Posted by SoWhat
Post here, I'll help you
Thanks, but CzechFold is already on the case, wouldn't want anyone do to work unnecesarely!

Quote:
Originally Posted by czechvengeance
awww i knew i should have went with python instead of C...

fun fact: did you know 2p2 has programming section?
Oh, no I didn't cool. Looks kinda dead though!
I'll play nosebleeds by the end of this year Quote
01-28-2014 , 10:52 AM
Quote:
Originally Posted by imfromsweden
it's probably like 1-2 hours a day. I can definitly see myself playing poker on the side even when I get a job

Does anyone know a bit of python programming btw? I got an assignment to create a basic tamaguchi programming in my elementary course, which I did, but I got told to fix my global variables. Something about using inputs as arguments in functions instead of having them as global or something, didn't quite understand it. 50$ on stars if anyone manages to help me It's probably not super much work, but what do I know, I'm terrible at programming. Thanks!
You're probably using a bunch of global variables and having your functions access them as such, when said functions should be using them in a local context.

Say you got the following pseudo-code setup:
var deck
var myHand
var chips

function dealMyHand() {
myHand = dealCards(deck);
}

function makeBet(var betSize) {
chips = chips - betSize;
}

In this case the deck, myHand, and chips variables are all global in this context and your functions are using them as such. It's better practice to pass them to the functions as arguments:

var deck
var myHand
var chips


myHand = dealMyHand(deck);
chips = makeBet(chips, 50);

# Deal a single hand from a deck of cards
function dealMyHand(inputDeck) {
return dealCards(deck);
}

# Make a bet
function makeBet(inputChips, inputBetSize) {
inputChips = inputChips-inputBetSize;
return inputChips;
}
I'll play nosebleeds by the end of this year Quote
01-28-2014 , 12:12 PM
Yeah that seems similar to what I did. Mine is not super easy to change like that though since I have everything baked into tkinter. I uploaded the code to github if anyone is interested (already said I'd give czech his money when he was finished so I don't misslead anyone )

https://gist.github.com/imfromsweden/8670608
I'll play nosebleeds by the end of this year Quote
01-29-2014 , 09:50 AM
imfromsweden: you got big heart and sharp thinking .. when you will get your car, flat etc. etc. ... PLEASE make one more TRY TO GET TO NOSEBLEEDS !
I'll play nosebleeds by the end of this year Quote
01-29-2014 , 07:34 PM
Quote:
Originally Posted by imfromsweden
Yeah that seems similar to what I did. Mine is not super easy to change like that though since I have everything baked into tkinter. I uploaded the code to github if anyone is interested (already said I'd give czech his money when he was finished so I don't misslead anyone )

https://gist.github.com/imfromsweden/8670608
I don't play or have accounts online any more. But I got a lot out of this thread when it first came out so hopefully I could give something back
I'll play nosebleeds by the end of this year Quote
01-30-2014 , 03:55 AM
thanks a lot guys I think I have it solved by now though =]
I'll play nosebleeds by the end of this year Quote
02-23-2014 , 06:07 AM
Quote:
Originally Posted by imfromsweden
6max, hu is practically dead since some time ago. Low volume cus I get tired quick and can't be bothered working on my b-game =] These days I do have a valid excuse though, studying industrial economics and management full time. Despite that i still manage better volume now than when i was just doing notging, so used to be quite lazy as well i guess

Game wise, im much less spewy and experimental than i used to be. In a way that makes me sad, it's what used to differntiate me from most other regs, but on the other hand I do believe my game is, from a play-wise kind of view, the strongest it has ever been. I incorprate the parts i think are the best from the solid gameplan, coupled with the parts i learned from my experimental game. But yea, an aggresive view of poker/money obv makes it more prone to moving up (and down!), and is more interesting to blog and read about.
Thanks for answers, I also studying Industrial engineering and Management, 3 exams left to go,

Can def say that it helped me sort my life (and my mind), gl with that :}

Also poker-wise I think I'm in a similar spot, used to play wayyy outside the box, had my rungood/bad periods, now playing the best poker of my life but I seem to myself as a Huge nit compared to the past (although "nit" is a relative term I guess..).

What your bb/100 for 2013? Did u answer if playing at PS or other sites?
I'll play nosebleeds by the end of this year Quote
02-23-2014 , 12:33 PM
Ran good in 2013, had a bb of around 11. 2014 doesn't quite live up to that bar yet though I'm playing mostly on EU sites these days. RIP ftp
I'll play nosebleeds by the end of this year Quote
03-01-2014 , 07:53 PM
what stakes do you play these days?
I'll play nosebleeds by the end of this year Quote
03-04-2014 , 12:08 AM
Quote:
Originally Posted by imfromsweden
Heh . Played a bit of 400nl today instead, but just played like 200 hands. Ended up +-0. Just couldn't get any flow going.

Biggest winning hand:


iPoker - €4 NL - Holdem - 5 players
Hand converted by PokerTracker 3

CO: €414.40
Hero (BTN): €515.90
INVALID POS: €400.00
SB: €412.00
UTG: €461.10

INVALID POS posts SB €2.00, SB posts BB €4.00

Pre Flop: (pot: €6.00) Hero has A Q

fold, CO raises to €12.00, Hero calls €12.00, INVALID POS raises to €55.00, fold, fold, Hero calls €43.00

Flop: (€126.00, 2 players) 6 J 3
INVALID POS checks, Hero checks

Turn: (€126.00, 2 players) K
INVALID POS bets €81.00, Hero calls €81.00

River: (€288.00, 2 players) 4
INVALID POS checks, Hero bets €133.00, fold

Hero shows A Q (High Card, Ace)
CO wins €0.00
IMRTNT wins €0.00
Hero wins €285.00
INVALID POS wins €0.00
SB wins €0.00
UTG wins €0.00
I reread through your thread occasionally since it was a big reason for my progression as a player. This hand is from ~3 years ago and if this river bet wasn't hugely villain dependent, I'm curious what range you put him on that will be folding?
I'll play nosebleeds by the end of this year Quote
03-17-2014 , 09:38 PM
Quote:
Originally Posted by Two SHAE
what stakes do you play these days?
it varies Today i took a little shot at 5k again =]

Microgaming - €50 NL - Holdem - 2 players
Hand converted by PokerTracker 3

Hero (SB): €5,000.00
BB: €5,000.00

Hero posts SB €25.00, BB posts BB €50.00

Pre Flop: (€75.00) Hero has A T

Hero raises to €100.00, BB raises to €350.00, Hero calls €250.00

Flop: (€700.00, 2 players) Q 4 J
BB checks, Hero bets €300.00, BB calls €300.00

Turn: (€1300.00, 2 players) 5
BB checks, Hero bets €800.00, BB calls €800.00

River: (€2900.00, 2 players) K
BB checks, Hero bets €1,200.00, BB raises to €3,550.00 and is all-in, Hero calls €2,350.00 and is all-in

Hero shows A T (Flush, Ace High) (Pre 33%, Flop 35%, Turn 77%)
BB shows Q Q (Three of a Kind, Queens) (Pre 67%, Flop 65%, Turn 23%)
Hero wins €9,999.00





But usually I reside on 200-600!



Quote:
Originally Posted by Goldfinger2790
I reread through your thread occasionally since it was a big reason for my progression as a player. This hand is from ~3 years ago and if this river bet wasn't hugely villain dependent, I'm curious what range you put him on that will be folding?
I probably wouldn't bet that today, but back then people were not so fundamentally strong, and he could certainly play 99 or some other random hand like this that will fold the river. I guess I didn't ever percieve him to have a king either
I'll play nosebleeds by the end of this year Quote
03-17-2014 , 10:37 PM
can we still get graphs an *****?
I'll play nosebleeds by the end of this year Quote
03-18-2014 , 11:27 AM
Excellent shove by villain! You should move up where they don't respect your 40% pot bets
I'll play nosebleeds by the end of this year Quote
03-18-2014 , 08:18 PM
This is what happens when u hide monsters on wet flops OOP..:}

Glad 2 see u risking again, too young to be so carefull IMO, esp with your talent..:P
I'll play nosebleeds by the end of this year Quote
03-18-2014 , 08:22 PM
judging by those stack sizes it was the very first hand... mbn! how did the fairy tale end?
I'll play nosebleeds by the end of this year Quote
03-20-2014 , 09:05 AM
Quote:
Originally Posted by MastaAces
judging by those stack sizes it was the very first hand... mbn! how did the fairy tale end?
Hero snap quits.
I'll play nosebleeds by the end of this year Quote
08-13-2015 , 09:32 AM
just bumping for some updates

you haven't quit as you're coaching for Pokervip!
I'll play nosebleeds by the end of this year Quote
09-01-2015 , 05:29 AM
Man, such an epic thread. I was thrilled to see the challenge video still up with pads' commentary!

Any cliffs of your poker life since IFS?
I'll play nosebleeds by the end of this year Quote
10-15-2015 , 04:10 PM
Hows it going?
I'll play nosebleeds by the end of this year Quote
10-17-2015 , 01:33 PM
Hopefully hero snap quits haha (from previous post about 5K shot...dang quote thing)

Last edited by RunninMan5K; 10-17-2015 at 01:34 PM. Reason: Quote didn't work
I'll play nosebleeds by the end of this year Quote
04-04-2019 , 12:38 PM
Bump. Any updates?
I'll play nosebleeds by the end of this year Quote
12-26-2021 , 04:56 PM
Updates?
I'll play nosebleeds by the end of this year Quote
12-26-2021 , 05:08 PM
Quote:
Originally Posted by dissection
Updates?
He must of switched to mtts. I see comment in 2018 asking about a refund on a tournament. Was fun reading through this. Was a epic thread. To bad if he quit playing cash games.
I'll play nosebleeds by the end of this year Quote

      
m