Web Development
The Poker Players WordPress Theme – iPoker
Apr 8th
UPDATE: The iPoker theme has been changed a lot lately, and I have actually also decided to change the name of it. Now, it goes under the name “myPoker”. The new myPoker WordPress Theme is available here very soon. Let my known if you like the new look better?
The iPoker WordPress Theme is perfect choice for poker players with the desire of telling the world about their winnings, great hands, bad beats, etc. If you have a poker blog powered by WordPress, you should try this new theme.

The theme is enabled with WordPress Widget support in both the left and right column, making it very flexible to place your sidebar content using widgets. The WordPress Blog Search is also enhanced with Ajax Live Search featuring searching while writing. The theme is of course developed both with valid XHTML and CSS according to W3C Standards
DONATE
The theme will be improved continuously, and if you are using the theme you are more than welcome to comment on the theme – opinions, bugs, improvements and new ideas are always welcome…
If you take this theme into use, you are advised to make a donation due to support and further development of the theme, and as in poker the donations are, of course, no limit donations!
In advance, thank you for donating!
DOWNLOAD
The theme is licensed under the CC 3.0 license.
Download iPoker WordPress Theme (.ZIP) [784Kb]
KNOWN ISSUES
- The theme uses transparent PNG images, which are not supported in Internet Explorer 6.0 and earlier version of this fabulous browser.
CONTRIBUTION
What made this theme easier to make…
Sponsored Link:
CSS, PHP, flash and AJAX charts
Jul 27th
A collection of usable CSS, PHP, Flash and Ajax charts are listed at roScripts, which might come in handy, if graphical representation of data is needed. The illustration shows a PlotKit chart…
Sponsored Link:
Free Web Icon Packs
Jul 20th
This is a collection of recommend and freely available quality icon packs.
Mixed free icons…
FAMFAMFAM
FAMFAMFAM provide several icon sets, where the Silk icons are the most notable. The sets contains more than 700 16x16px smooth graphic icons. Flags and a Mini icons are also available.
– is a smooth, free icon set, containing over 700 16-by-16 pixel icons in strokably-soft PNG format. Containing a large variety of icons, you’re sure to find something that tickles your fancy. And all for a low low price of $0.00. You can’t say fairer than that.
Everaldo provide an icon pack called Crystal containing a large quantity of icons available in many sizes from 16×16 to 128×128 pixels. Other free icons are available from Yellow Icon and Icon Base.
Currently, the Crystal Project, has more than 1300 icons in six different sizes, divided into the following categories: Actions, Apps, Files Systems, Devices and Mime Types.
Tango
Tango provide an icon sets aimed at GNOME and KDE, however, I find them usable for web use as well, they are available i three sizes, and notably they are also available in SVG format, and therefore scalable.
We have designed a basic set of desktop icons that follow the style guidelines. The set has been created as a proof of concept for the style, but works rather well as a replacement for the base theme under GNOME and KDE.
nuoveXT 2
The nuoveXT 2 contains a large amount of icons, other free icons are also available at IconDesigns.
Welcome to IconsDesigns. Here you will find some of the best free icon themes for Mac OS X, Linux and Windows.
Please leave a comment, if you can recommend other icon packs or sets.
Avoid HTML form spam using CSS
Jul 19th
An approach of avoiding HTML form spam is using CSS. Non-human spammers usually fills out every input field in a form and submit it, and to overcome this kind of spam you must be able to differ between real human form submits and non-human spam. A technique to distinguish between non-spam and spam is using CSS; the basic idea is to make an extra dummy input text field in your form, and using CSS to make it invisible to the real human users. Thereby, if a post is sent to your php script handling the request and this extra text field contains information, you know that the submit must be spam, and the script can ignore the post.
Here is a small example form:
The human text field is used for detecting spam, you might call it something else than “human”, however this should be hidden by using CSS such that it is not visible for the user on the webpage. This can be achieved add the following to your CSS file:
#human {
visibility:hidden;
display:none;
}
The solution is as you see very to implement and proves to be effective.
Additional notes:
Using JavaScript to hide the dummy input text field is also an option. E.g. using a JavaScript Framework like Prototype.js it can be done with one line of code:
$('human').hide();
More information on hiding elements using prototype.js.
Redirect domain from www on Apache
Apr 17th
First locate the virtual host configuration file for Apache related to the domain, on FreeBSD it should be here:
- cd /usr/local/etc/apache/vh
Now add following in between the begin <VirtualHost *> and end </VirtualHost>
- RewriteEngine on
- RewriteCond %{HTTP_HOST} ^www\.(.*)
- RewriteRule ^/(.*)$ http://klauskjeldsen.dk/$1 [R=301]






