Stephen Groom Taking a shot at becoming a Poker Pro

6Feb/120

Introducing SkyHUD, enable heads up display on skypoker.com

Ever since Sky Poker's downloadable client was released people have been discussing the possibility of using a HUD on the site. Since the release of HEM2 I have been developing some software which enables this.

Introducing SkyHUD...

Skyhud is an application which allows the downloading of Sky Poker hand history files in a text format. It currently only supports Cash Games.

These files are readable by poker tracking apps and enable the user many associated features such as analysis, results tracking and a Heads up Display (HUD).

Get it at http://apps.groomi.net/skyhud

Enjoy! Any questions, support etc I will do via here or Skype (sjgroomi)

Share
Filed under: Poker, Software No Comments
25Oct/1020

How to remove AVG safesearch from firefox address bar

Recently, I installed AVGFree and overall I found it to be fine.  There was one thing however, that has bugged me ever since.

If I typed a keyword, or website title into the firefox address bar, google and it's wonderful "I'm feeling lucky" feature whisked me off to the #1 result in google for the keyword I had typed.  This was particularly handy if I knew a page or website title but not the full URL.  Since installin AVGFree however, this functionality disappeared and it started directing me quite annoyingly to Yahoo sponsored by AVG.

To fix this do the following:

  • Go to "about:config" in the firefox address bar
  • Click the "I'll be careful, I promise" button on the page that loads in order to view the bowels of firefox.
  • Type "keyword.url" in the search box at the top of the page
  • Simply right click the item displayed below and click reset.  If for whatever reason you are unable to reset, enter the following value manually.
    "http://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&gfns=1&q="
  • Enjoy firefox being back to it's normal function

I hope this was useful :)
Stephen

Share
Filed under: Software 20 Comments
23Jul/1014

iPhone 4 – importing SIM Contacts

In my previous blog post Iphone 4 - First Impressions, I covered the subject of contact Importation.  I said:

My gripe in this area was the importing of contacts.  Apple does not support sim-card contacts so I had to go through the lengthy process of exporting them into Windows Contacts and then synchronizing via iTunes.  This is a huge inconvenience if you are used to simply plugging in your sim card and being able to access all of your contacts.  My particular contact list was about 5 years old and was invaluable.

Whilst using my iPhone today I stumbled upon a feature that allows the importation of SIM contacts into the iPhone's contact system.

This is located in Settings - >Mail, Contacts, Calendars ->Import SIM Contacts

This simply loads all of your sim card's contacts into the iPhones memory and makes them immediately usable within the iPhone.

Hope this is useful
Stephen Groom

Share
Filed under: Hardware, Software 14 Comments
27Mar/100

Rent a Producer – Find freelance music jobs online

I have almost completed the design of my newest online project Rent a Producer.

Rent A Producer is a hub where musicians and producers can get together from across the web to compose, record, mix, master and produce music.

The aim of the website is to fill a gap the music industry as a provider of freelance work for sound and music professionals over the internet.

The website is a directory where bands and musicians can advertise projects which require help from a professional.  This can range from writing and arranging a song all the way to mastering an album and distributing it.

This is the first glimpse of the website and it will be continually developed until it's official release in the coming weeks.  Of course the website is useless without content so I urge all artists and producers to visit rentaproducer.com and join this unique service.

Please post suggestions/reviews and comments about the website on this blog and I will be sure to write back.

Thanks
Stephen Groom

http://www.rentaproducer.com

Share
3Mar/100

How to transfer a MySQL Database to a remote server

This tutorial will show you how to transfer your mysql databases to a remote server.  The databases will be directly transferred over TCP which removes the time spent downloading .sql files from your old server and re-uploading them to your new server.  This is the fastest way to transfer a MySQL database. This guide is written using linux commands but how to do the same thing on windows should be obvious.  If it isn't, leave a comment below and I'll explain step by step.

Preperation

The new server (the destination for the database) must be accepting connections on port 3306 to MySQL.  This is acheived using the following steps:

  • Edit it's my.cnf file and ensure that the line "skip-networking" is removed
  • Ensure the server is accepting connections on port 3306:  "[]$ iptables -I INPUT -p tcp --dport 3306 -j ACCEPT"
  • Add a user to mysql who is authorised to connect from a remote IP.
    <mysql>: CREATE USER 'transfer'@'[OLD SERVER IP]' IDENTIFIED BY '[PASSWORD]';
    <mysql>: GRANT ALL PRIVILAGES  ON *.* TO 'transfer'@'[OLD SERVER IP]' WITH GRANT OPTION;
    Don't forget to replace [OLD SERVER IP] and [PASSWORD] with your own values

Process

Now we will dump the data from our old server at [OLD SERVER IP] to the new server.  From a shell on our new server run the following command:
[]$ mysqldump -u[USER] -p[PASS] --all-databases | mysql -utransfer -p[PASSWORD] -h[NEW SERVER IP]

This command will then transfer all databases from [OLD SERVER IP] to [NEW SERVER IP].  Remember to delete the user 'transfer' from the mysql database for security reasons after this process is complete. For information on the mysqldump command see the mysqldump page and for any additional information please leave a comment below

Thanks
Stephen

Share
Filed under: Software No Comments