Recently, from the Blog...
How To – Control Your Computer with an Xbox Controller
Today I’m going to walk you through setting up an xbox controller to work on your computer and control the mouse / keyboard. First your going to need an Xbox Controller that works on Windows. If you already have an Xbox controller you can just pick up one of these receivers. (Both links to Amazon, [...]
CSS Code for Wrapping Long URLs and Text
Ran into the problem last night that a long email was messing up a design in smaller screen resoloutions. Perfect fix down below: pre { white-space: pre; /* CSS 2.0 */ white-space: pre-wrap; /* CSS 2.1 */ white-space: pre-line; /* CSS 3.0 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ [...]
Job Search
So at the minute I’m looking for a full time job for the year. The search is fairly difficult, there doesn’t seem to be much (if any) jobs around Kilkenny at the minute.. Savings need to be made for college next year though so I am posting here in the hopes that an employer happens [...]
WordPress – Shortcode in PHP files
So in WordPress with plugins etc. you end up using shortcode in posts to keep things simplier, an example would be if you want to display a gallery you would just use: [galleries id="1"] However trying to this when your outside of the “WordPress Loop” [in your theme files usually] you will hit the problem [...]