| |
Four2eight Feet, Inc. Announces Updates To Their Newest Web Site Four2Eight Feet, Inc. is pleased to announce two recent additions to their newest web site www.basictexasholdem.com. The recent additions of both pre-flop and post-flop odds were installed in their continuing effort to assist the new Texas Holdem player.Knowing the odds of achieving the best hand is one of the most important parts of playing Texas Holdem. With these additions new players will learn when they have the odds on their side or when they are "chasing" only to end up second best. "This is a great addition to our site and
Cookies with httplib <p>I needed to do a simple http get in the other day, the only catch was that I had to send a cookie. My first thoughts were that this might be tricky, but in practise it's a doddle. Below is a simplistic example passing a cookie (called "Fish", with a value of "Cod") using Python's <a href="http://docs.python.org/lib/module-httplib.html">httplib</a>.</p>
<pre>
import httplib
conn = httplib.HTTPConnection( "www.example.com" )
Headers = {"Cookie" : "Fish=Cod"}
conn.request("GET", "/fishfinder.html", None, Headers )
response = conn.getresponse()
data = response.read()
</pre>
<p>How hard can it be?</p>
Easy security blanket <p>Back in May del.icio.us announced some changes to their api, in a post curiously titled <a href="http://blog.del.icio.us/blog/2006/05/feel_secure.html">Security blanket</a>.</p>
<p>It took all of two minutes to update my <a href="http://feetup.org/blog/dev/projects.html">linkblogging script</a> (a different url, and https rather than http), source code for which can be found in the usual location: <a href="http://feetup.org/code/py/pydelicious.py.txt">pydelicious.py</a></p>
<p>One gotcha for Pythonistas is that the default win32 build of older versions of Python doesn’t have any ssl support, I’ve tried <a href="http://alldunn.com/python/">Robin Dunn’s drop-in replacement for _socket.pyd</a> and it seems to work fine.</p>
should help with the learning curve of the new player" stated Four2Eight CEO John DeBoer. Content of the site focuses on the teaching the fundamentals of Texas Holdem to new players. The site includes sections on hand rankings, position, general rules, betting techniques, strategy, and a recommended reading guide. All of these sections are designed to build a base knowledge of Texas Holdem. Coming addition to the site include a "How I got Started" section that will explore how some of the best "got their wet" in the game. Also on the horizon is a "Question & Answer" section that will allow users to send hand histories in for analysis.Four2Eight will be continuing the development of the new site in the coming months and expects to have the site fully completed by late spring 2005..
|
|