<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:media="http://search.yahoo.com/mrss/"> <channel><title>Artiss.co.uk</title> <atom:link href="http://www.artiss.co.uk/feed" rel="self" type="application/rss+xml" /><link>http://www.artiss.co.uk</link> <description>Nothing to see here</description> <lastBuildDate>Thu, 16 May 2013 14:21:08 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>So you still think homosexuality is sinful?</title><link>http://www.artiss.co.uk/2013/05/so-you-still-think-homosexuality-is-sinful?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=so-you-still-think-homosexuality-is-sinful</link> <comments>http://www.artiss.co.uk/2013/05/so-you-still-think-homosexuality-is-sinful#comments</comments> <pubDate>Thu, 16 May 2013 14:21:08 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Comment]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12873</guid> <description><![CDATA[<p></p><p>The post <a
href="http://www.artiss.co.uk/2013/05/so-you-still-think-homosexuality-is-sinful">So you still think homosexuality is sinful?</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p><img
class="aligncenter" alt="" src="http://beestonia.files.wordpress.com/2013/05/gay-marriage.jpg" width="941" height="815" /></p><p>The post <a
href="http://www.artiss.co.uk/2013/05/so-you-still-think-homosexuality-is-sinful">So you still think homosexuality is sinful?</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/05/so-you-still-think-homosexuality-is-sinful/feed</wfw:commentRss> <slash:comments>0</slash:comments> <media:thumbnail url="http://beestonia.files.wordpress.com/2013/05/gay-marriage.jpg" /> <media:content url="http://beestonia.files.wordpress.com/2013/05/gay-marriage.jpg" medium="image" /> </item> <item><title>Using Transients</title><link>http://www.artiss.co.uk/2013/05/using-transients?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-transients</link> <comments>http://www.artiss.co.uk/2013/05/using-transients#comments</comments> <pubDate>Thu, 16 May 2013 14:08:48 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[WordPress]]></category> <category><![CDATA[API]]></category> <category><![CDATA[Trac]]></category> <category><![CDATA[transients]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12863</guid> <description><![CDATA[<p>Transients are a great tool for the WordPress developer. They allow you to easily save temporary data with their own expiry time &#8211; simply pass the transients data into the easy-to-use API and it will sort everything out for you. Caching made simple. Unfortunately, using transients is not without its downsides and recent experiences have <span
class="ellipsis">&#8230;</span> <span
class="more-link-wrap"><a
href="http://www.artiss.co.uk/2013/05/using-transients" class="more-link"><span>Read More &#8594;</span></a></span></p><p>The post <a
href="http://www.artiss.co.uk/2013/05/using-transients">Using Transients</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p>Transients are a great tool for the WordPress developer. They allow you to easily save temporary data with their own expiry time &#8211; simply pass the transients data into the <a
title="Transients API" href="http://codex.wordpress.org/Transients_API" target="_blank">easy-to-use API</a> and it will sort everything out for you. Caching made simple.</p><p>Unfortunately, using transients is not without its downsides and recent experiences have shown a couple of issues that any developer should be aware of.</p><p>But first I need to explain how transients work.</p><p>Transients were not introduced until version 2.8 of WordPress and make use of the WordPress options table (usually named <code>wp_options</code>) to store their data. There aren&#8217;t enough fields in this table for the transients to be stored as one record so, instead, it&#8217;s split over 2.</p><p>Each transient is given, by the developer, a unique name. This is prefixed by either <code>_transient_</code> or <code>_transient_timeout_</code> and used as the <code>option_name</code> field. The <code>option_value</code> field is the transient value and the expiry time respectively. You can also store and access network wide transients and these have <code>_site</code> further prefixed to the beginning of the transient name.</p><p>So, let&#8217;s say you create a transient named &#8216;test&#8217;. Two records will be added to your options table. The first record will be named <code>_transient_test</code> and will have a value of whatever you wished to store in the transient. The second record will be named <code>_transient_timeout_test</code> and the value will be the timestamp of when it expires.</p><p>The exception to this rule is if you create a transient that is not set to timeout. In this case only the first record will be created.</p><p>If you were creating a network-wide transient then the names would be  <code>_site_transient_test</code> and <code>_site_transient_timeout_test</code>.</p><h2>How to use Transients</h2><p>There are 3 simple commands &#8211; <code>set_transient</code>, <code>get_transient</code> and <code>delete_transient</code>. The latter two have just one parameter &#8211; the transient name.</p><p><code>set_transient</code>, in comparison, has 3 parameters &#8211; the transient name, the contents to store and the timeout (in seconds). Set the timeout to 0 for it to never expire.</p><p><code>set_transient</code> and <code>delete_transient</code> both return true or false, depending on their success. <code>get_transient</code> returns the transient content or false if it wasn&#8217;t found.</p><p>Network-wide transients are handled by the commands <code>set_site_transient</code>, <code>get_site_transient</code> and <code>delete_site_transient</code>. All parameters and return values are as the non-network equivalent.</p><h2>Problem #1: Transient Name Lengths</h2><p>The <code>option_name</code> field in the options table has a record length of 64 characters. So, taking into account the prefixes added to the transient name, a transient name can only be a maximum of 45 characters (or 40 characters for network transients). The problem here is that WordPress doesn&#8217;t check. It doesn&#8217;t fail either &#8211; it creates the transients but simply truncates the name. And because each of the transient record pairs has a different length prefix then they each end up with a different name &#8211; this means the transient can&#8217;t be retrieved.</p><h3>The Solution</h3><ul><li>WordPress are aware of this and <a
title="Trac #15058" href="http://core.trac.wordpress.org/ticket/15058" target="_blank">a Trac ticket</a> is open to prevent this from happening. I have updated the ticket myself to ensure they&#8217;re aware of the 40 limit for network transients (suggesting that the limit should be a uniform 40 to avoid confusion).</li><li>The Codex <a
title="set_transient" href="http://codex.wordpress.org/Function_Reference/set_transient" target="_blank">already makes mention</a> of the 45 character limit for set_transient but didn&#8217;t mention the 40 limit for set_site_transient. I have now updated <a
title="set_site_transient" href="http://codex.wordpress.org/Function_Reference/set_site_transient" target="_blank">the appropriate page</a> to reflect this.</li></ul><h2>Problem #2: Housekeeping</h2><p>When you attempt to get a transient and it&#8217;s expired WordPress will automatically remove that transient from the table. However, if that transient is never accessed again then it will not be removed.</p><p>Why would this happen? Let&#8217;s say a plugin uses transients to cache some data. The transient name may be a unique name which represents the options requested &#8211; that way, if the user changes the options the, now incorrect, cached data is not used. However, the old transient will never be re-accessed.</p><p>To give you an idea of the scale of this I&#8217;ve heard one user has over 250,000 transients in his database which have expired.</p><h3>The Solution</h3><ul><li>Again, <a
title="Trac #20316" href="http://core.trac.wordpress.org/ticket/20316" target="_blank">WordPress are aware of this</a> and are due to fix it &#8220;3.7 early&#8221; by adding it to the regular housekeeping task.</li><li>Meantime, you can install my plugin <a
title="Artiss Transient Cleaner" href="http://wordpress.org/extend/plugins/artiss-transient-cleaner/" target="_blank">Artiss Transient Cleaner</a> which will perform the same action.</li></ul><h2>Conclusion</h2><p>Transients are a powerful and useful tool for the WordPress developer. However, be aware of their limitations and tread carefully!</p><p>I&#8217;m one of those who are guilty of writing plugins that generate transient names longer than the limit and of generating transients that won&#8217;t be accessed once they&#8217;ve expired. Now I know all of the above the way I use the transient system has changed.</p><p>The post <a
href="http://www.artiss.co.uk/2013/05/using-transients">Using Transients</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/05/using-transients/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Battery Savings that don&#8217;t cost you the Smart in Smartphone</title><link>http://www.artiss.co.uk/2013/05/battery-savings-that-dont-cost-you-the-smart-in-smartphone?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=battery-savings-that-dont-cost-you-the-smart-in-smartphone</link> <comments>http://www.artiss.co.uk/2013/05/battery-savings-that-dont-cost-you-the-smart-in-smartphone#comments</comments> <pubDate>Wed, 08 May 2013 09:08:58 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Tips]]></category> <category><![CDATA[Battery]]></category> <category><![CDATA[Smartphone]]></category> <category><![CDATA[Tablet]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12842</guid> <description><![CDATA[<p>A recent Tweet by Richard Taylor, editor of the BBC tech show Click, got me annoyed. In it he directs readers to a video of him giving various tips, based on &#8220;years of experience&#8221;, on how to save the battery in Smartphones and tablets. It got me annoyed because it&#8217;s no different to the lists <span
class="ellipsis">&#8230;</span> <span
class="more-link-wrap"><a
href="http://www.artiss.co.uk/2013/05/battery-savings-that-dont-cost-you-the-smart-in-smartphone" class="more-link"><span>Read More &#8594;</span></a></span></p><p>The post <a
href="http://www.artiss.co.uk/2013/05/battery-savings-that-dont-cost-you-the-smart-in-smartphone">Battery Savings that don&#8217;t cost you the Smart in Smartphone</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p><a
title="Richard Taylor" href="https://twitter.com/richardtaylor99/status/331008515407765505" target="_blank">A recent Tweet</a> by Richard Taylor, editor of the BBC tech show Click, got me annoyed. In it he directs readers to a video of him giving various tips, based on &#8220;years of experience&#8221;, on how to save the battery in Smartphones and tablets.</p><p>It got me annoyed because it&#8217;s no different to the lists you find elsewhere, and they&#8217;re  not any good either. Don&#8217;t get me wrong ,tips such as &#8220;turn off Bluetooth&#8221; do save battery, but what is the point is buying a device such as a Smartphone to then turn off the very features that make them &#8220;smart&#8221;?</p><p>So, here are my recommendations.</p><h2>Understand the Cause</h2><p>You&#8217;ll achieve nothing if you don&#8217;t understand what is actually causing your battery drain. Often it can be an app and you may want to re-evaluate your use of it to save battery.</p><p>Head to Settings -&gt; Battery (that&#8217;s correct for Jellybean but your options may vary). Here you can view your current battery state and, particularly, what&#8217;s draining your battery.</p><p>When I had a Samsung Galaxy S2 the display was the top drain. For my Nexus 4 it&#8217;s  way down the list.</p><p>Understanding all of this can give you a better idea of what needs most attention and what, let&#8217;s be honest, is hardly worth bothering with.</p><h2>Switch Off Smartly</h2><p>Other than apps, big users of the battery are usually the screen, Bluetooth, GPS, WiFi and sound.</p><p>So, unlike other recommendations to just turn these off it&#8217;s perfectly possible to not cripple the capabilities of your phone but still disable them as required. Obviously if there&#8217;s a function you don&#8217;t ever use &#8211; such as Bluetooth &#8211; then it <em>does</em> make sense to switch it off. Otherwise, you need to be smarter about it.</p><p>There are a lot of apps that allow you to set profiles &#8211; these can switch automatically depending on your environment, whether the detection of a particular WiFi router or a Geo-location.  Or there are simpler ones &#8211; apps that simply mute your phone overnight.</p><p>When I&#8217;m in the car I use a specific Car Dock app for playing music through my in-car stereo via Bluetooth. One of the clever things this does, when launched, is activate my Bluetooth and deactivate my WiFi (I&#8217;m in the car after all). Once I exit out from it it reverses this &#8211; I only normally use Bluetooth in the car so this makes the most sense.</p><h2>Charge Properly</h2><p>When I had my Samsung Galaxy S2 I had it sat in a powered dock at work. I&#8217;d take it out to go to a meeting and plonk it back in when I returned. In no time at all the battery was wrecked.</p><p>I&#8217;ve found charging the phone only when needed is the best approach &#8211; try not to let it go flat but charge it to full.</p><h2>Conclusion</h2><p>All of the above means I don&#8217;t have settings un-necessarily turned off. My WiFi, sound, NFC, GPS are all on. Only my Bluetooth is usually switched off. Basically, my Smartphone is actually smart.</p><p>But does it work? The following suggests it does&#8230;</p><p><img
class="aligncenter size-medium wp-image-12700" alt="Screenshot_2013-04-04-14-46-06" src="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06-300x500.png" width="300" height="500" /></p><p>The post <a
href="http://www.artiss.co.uk/2013/05/battery-savings-that-dont-cost-you-the-smart-in-smartphone">Battery Savings that don&#8217;t cost you the Smart in Smartphone</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/05/battery-savings-that-dont-cost-you-the-smart-in-smartphone/feed</wfw:commentRss> <slash:comments>0</slash:comments> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06-120x120.png" /> <media:content url="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06.png" medium="image"> <media:title type="html"><![CDATA[Screenshot_2013-04-04-14-46-06]]></media:title> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06-120x120.png" /> </media:content> </item> <item><title>Sony Wireless Keyboard for PS3</title><link>http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sony-wireless-keyboard-for-ps3</link> <comments>http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3#comments</comments> <pubDate>Wed, 01 May 2013 11:28:46 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Review]]></category> <category><![CDATA[PS3]]></category> <category><![CDATA[Sony]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12804</guid> <description><![CDATA[<p>The on-screen keyboard on the PS3 isn&#8217;t too bad but sometimes using the controller can be slow and cumbersome – particularly for long messages. As a server administration for my Battlefield clan I now often have to message people if I&#8217;m intending to &#8220;kick&#8221; them so that they know why (usually to allow clan members <span
class="ellipsis">&#8230;</span> <span
class="more-link-wrap"><a
href="http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3" class="more-link"><span>Read More &#8594;</span></a></span></p><p>The post <a
href="http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3">Sony Wireless Keyboard for PS3</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p><img
class="alignright size-medium wp-image-12821" alt="Sony Wireless Keyboard - angled view" src="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-angled-view-300x141.jpg" width="300" height="141" />The on-screen keyboard on the PS3 isn&#8217;t too bad but sometimes using the controller can be slow and cumbersome – particularly for long messages.</p><p>As a server administration for my Battlefield clan I now often have to message people if I&#8217;m intending to &#8220;kick&#8221; them so that they know why (usually to allow clan members on, sometimes because they&#8217;re being a douche). So, a &#8220;proper&#8221; keyboard was a good idea.</p><p>As I&#8217;m sitting the other side of the room a wireless option was always going to be best but reviews of using &#8220;standard&#8221; Bluetooth keyboards on PS3&#8242;s were always poor, due to regularly dropped connections. I&#8217;d be cynical to suggest this was something done by Sony to promote their own kit <img
src='http://www.artiss.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p>But as its turns out, Sony&#8217;s own Bluetooth keyboard has no such connection issues. Pricey, though, it is &#8211; £40 from Amazon, for instance.</p><p>However, you really do get what you pay for &#8211; the keyboard is excellent. It&#8217;s compact (about the same size as a laptop keyboard), made even more so by a lack of edge around it &#8211; I&#8217;ll explain this further in a short while. The keys have excellent travel and a good, standard layout. They&#8217;re very square but not spaced like &#8220;scrabble tile&#8221; keys are. The top row of keys are function keys but by pressing these alongside a &#8220;function&#8221; key then these can perform PS3 controller actions &#8211; e.g. the square button.</p><p>All the normal computer keys are here so it can be paid with other devices as well &#8211; I tried it on MacBook for example and this worked fine. However, be aware that the keyboard only remembers one pairing at a time, so regularly using it on both the PS3 and another device will become a pain.</p><p>In the middle of the keyboard is a <a
href="http://en.wikipedia.org/wiki/pointing_stick" title="Look up pointing stick on Wikipedia" title="Look up pointing stick on Wikipedia" target="_blank" rel="nofollow">pointing stick</a> instead of a trackpad and there are two thin &#8220;mouse buttons&#8221; in front of the space bar. This means that it truly can be used as a multi-functional keyboard with different devices.</p><p>As I was saying before there is no bevel around the keyboard &#8211; the keys go edge-to-edge &#8211; with the exception of the bottom. A small ridge exists beneath the bottom row of keys, housing the aforementioned mouse buttons and, in the corner, the power button. Next to it is a status light. The lack of any kind of edge is about the only issue with the keyboard as picking it up and, particularly, handing it to someone it tricky without accidentally pushing down buttons as a result. But, naturally, it keeps the keyboard size to a minimum.</p><p>The keyboard works with 2 AA batteries (supplied) which are placed in a raised section on the rear of the underside &#8211; this section then props the keyboard up at the right angle for typing. Rubber feet prevent the keyboard from slipping about.</p><p>When initially setting it up for some reason I couldn&#8217;t get it to power on. This suddenly resolved itself and I&#8217;ve had no problems since.</p><p>The keyboard comes in a slimline box which is barely larger than the keyboard itself &#8211; a good bit of reduced packaging which is always welcome.</p> <a
href='http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3/sony-wireless-keyboard-packaging' title='Sony Wireless Keyboard - packaging'><img
width="120" height="120" src="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-packaging-120x120.jpg" class="attachment-thumbnail" alt="Sony Wireless Keyboard - packaging" /></a> <a
href='http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3/sony-wireless-keyboard-angled-view' title='Sony Wireless Keyboard - angled view'><img
width="120" height="120" src="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-angled-view-120x120.jpg" class="attachment-thumbnail" alt="Sony Wireless Keyboard - angled view" /></a> <a
href='http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3/sony-wireless-keyboard-close-up' title='Sony Wireless Keyboard - close-up'><img
width="120" height="120" src="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-close-up-120x120.jpg" class="attachment-thumbnail" alt="Sony Wireless Keyboard - close-up" /></a><div
class="hreview"><h2>Summary of <span
class="item"><span
class="fn">Sony Wireless Keyboard</span></span></h2> <span
class="summary">An excellent quality keyboard which can be paired to pretty much anything with Bluetooth. Superb in use on the PS3 it&#8217;s only problem is the lack of bevel making picking up difficult, particularly when in use.</p><p>But that&#8217;s a minor point &#8211; if you can afford to spend £40 on a keyboard then it&#8217;s a worthy purchase.</span><br/><div
class="rating"> <span
class="value-title" title="4"></span> <img
src="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" alt="Star" title="Star" style="padding-right: 5px;"/> <img
src="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star-white.png" alt="Star" title="Star" style="padding-right: 5px;"/></div><br/><br/><p>Reviewed by <span
class="reviewer">David Artiss</span> on <span
class="dtreviewed">1st May 2013.<span
class="value-title" title="2013-05-01"></span></span></p></div><p>The post <a
href="http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3">Sony Wireless Keyboard for PS3</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/05/sony-wireless-keyboard-for-ps3/feed</wfw:commentRss> <slash:comments>0</slash:comments> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-angled-view-120x120.jpg" /> <media:content url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-angled-view.jpg" medium="image"> <media:title type="html"><![CDATA[Sony Wireless Keyboard &#8211; angled view]]></media:title> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-angled-view-120x120.jpg" /> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-packaging.jpg" medium="image"> <media:title type="html"><![CDATA[Sony Wireless Keyboard &#8211; packaging]]></media:title> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-packaging-120x120.jpg" /> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-angled-view.jpg" medium="image"> <media:title type="html"><![CDATA[Sony Wireless Keyboard &#8211; angled view]]></media:title> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-angled-view-120x120.jpg" /> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-close-up.jpg" medium="image"> <media:title type="html"><![CDATA[Sony Wireless Keyboard &#8211; close-up]]></media:title> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/05/Sony-Wireless-Keyboard-close-up-120x120.jpg" /> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" medium="image"> <media:title type="html"><![CDATA[Star]]></media:title> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" medium="image"> <media:title type="html"><![CDATA[Star]]></media:title> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" medium="image"> <media:title type="html"><![CDATA[Star]]></media:title> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star.png" medium="image"> <media:title type="html"><![CDATA[Star]]></media:title> </media:content> <media:content url="http://www.artiss.co.uk/wp-content/plugins/artiss-co-uk-configuration/images/star-white.png" medium="image"> <media:title type="html"><![CDATA[Star]]></media:title> </media:content> </item> <item><title>Win 1 of 20 licences for CollageIt Pro</title><link>http://www.artiss.co.uk/2013/04/win-1-of-20-licences-for-collageit-pro?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=win-1-of-20-licences-for-collageit-pro</link> <comments>http://www.artiss.co.uk/2013/04/win-1-of-20-licences-for-collageit-pro#comments</comments> <pubDate>Wed, 24 Apr 2013 10:11:40 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[News]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12769</guid> <description><![CDATA[<p>CollageIt Pro is an automatic and easy to use collage maker on Mac OS X &#38; Windows. Making collages is as easy as 1-2-3 with only 3 steps&#8230; choose template add photos &#38; customize export collage Other features include Various layouts and diverse templates. Easily personalize collage by cropping, adjusting photo number, photo space, page <span
class="ellipsis">&#8230;</span> <span
class="more-link-wrap"><a
href="http://www.artiss.co.uk/2013/04/win-1-of-20-licences-for-collageit-pro" class="more-link"><span>Read More &#8594;</span></a></span></p><p>The post <a
href="http://www.artiss.co.uk/2013/04/win-1-of-20-licences-for-collageit-pro">Win 1 of 20 licences for CollageIt Pro</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p><img
class="alignright" alt="" src="http://www.collageitfree.com/samples/win/collage_05.jpg" width="180" height="240" />CollageIt Pro is an automatic and easy to use collage maker on Mac OS X &amp; Windows. Making collages is as easy as 1-2-3 with only 3 steps&#8230;</p><ol><li><span
style="line-height: 1.7;">choose template</span></li><li><span
style="line-height: 1.7;">add photos &amp; customize</span></li><li><span
style="line-height: 1.7;">export collage</span></li></ol><p>Other features include</p><ul><li><span
style="line-height: 1.7;">Various layouts and diverse templates.</span></li><li><span
style="line-height: 1.7;">Easily personalize collage by cropping, adjusting photo number, photo space, page margin, rotation, sparse, and so on.</span></li><li><span
style="line-height: 1.7;">Save collage as an image file; set as desktop wallpaper; share through Email; or print it out.</span></li></ul><p>To celebrate Mothers Day in the US we have 20 licences for CollageIt Pro to give away &#8211; 12 for Windows and 8 for OS X. Below are 2 entry forms &#8211; 1 for each licence type. Simply use Facebook and/or Twitter to enter.</p><p>Find out more about it <a
title="CollageIt Pro" href="http://www.collageitfree.com/" target="_blank" rel="nofollow">CollageIt Pro</a> from their website, <a
title="PearlMountain on Facebook" href="http://www.facebook.com/PearlMountain" target="_blank" rel="nofollow">Facebook page</a> or <a
title="Pearlmountain Twitter account" href="https://twitter.com/pearlmountain_t" target="_blank" rel="nofollow">Twitter account</a>.</p><p>Competition promote on <a
title="ThePrizeFinder.com - home of competitions and prize winning" href="http://www.theprizefinder.com" target="_blank">ThePrizeFinder &#8211; UK Competitions</a></p><h2>Windows Licence</h2><p><span
style="line-height: 1.7;"><a
id="rc-21516b0" class="rafl" href="http://www.rafflecopter.com/rafl/display/21516b0/" rel="nofollow">Windows licence giveaway</a> <script src="//d12vno17mo87cx.cloudfront.net/embed/rafl/cptr.js"></script>  </span></p><h2><span
style="line-height: 1.7;">Mac Licence</span></h2><p><a
id="rc-21516b1" class="rafl" href="http://www.rafflecopter.com/rafl/display/21516b1/" rel="nofollow">Mac licence giveaway</a> <script src="//d12vno17mo87cx.cloudfront.net/embed/rafl/cptr.js"></script> </p><p>The post <a
href="http://www.artiss.co.uk/2013/04/win-1-of-20-licences-for-collageit-pro">Win 1 of 20 licences for CollageIt Pro</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/04/win-1-of-20-licences-for-collageit-pro/feed</wfw:commentRss> <slash:comments>2</slash:comments> <media:thumbnail url="http://www.collageitfree.com/samples/win/collage_05.jpg" /> <media:content url="http://www.collageitfree.com/samples/win/collage_05.jpg" medium="image" /> </item> <item><title>I remember, in the good old days, when&#8230;</title><link>http://www.artiss.co.uk/2013/04/i-remember-in-the-good-old-days-when?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i-remember-in-the-good-old-days-when</link> <comments>http://www.artiss.co.uk/2013/04/i-remember-in-the-good-old-days-when#comments</comments> <pubDate>Fri, 05 Apr 2013 15:21:45 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[Amazon]]></category> <category><![CDATA[Phishing]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12721</guid> <description><![CDATA[<p>&#8230;phishing attempts were reasonably credible Dear Amazon Customer, We have recently determined that various computers connect to your Amazon account, password, and the present of chess more taient before the connection. Now we need to confirm the new information from your Amazon account. If not completed within 48 hours, we will be forced to suspend your account <span
class="ellipsis">&#8230;</span> <span
class="more-link-wrap"><a
href="http://www.artiss.co.uk/2013/04/i-remember-in-the-good-old-days-when" class="more-link"><span>Read More &#8594;</span></a></span></p><p>The post <a
href="http://www.artiss.co.uk/2013/04/i-remember-in-the-good-old-days-when">I remember, in the good old days, when&#8230;</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p>&#8230;phishing attempts were reasonably credible</p><div
dir="ltr"><blockquote><p
align="left">Dear Amazon Customer,</p></blockquote></div><blockquote><p
align="justify">We have recently determined that various computers connect to your Amazon account, password, and the present of chess more taient before the connection. Now we need to confirm the new information from your Amazon account. If not completed within 48 hours, we will be forced to suspend your account indefinitely, because it can be used in a fraudulent intent. Thank you for your comprehension in this way. To confirm your online account:</p></blockquote><p>The post <a
href="http://www.artiss.co.uk/2013/04/i-remember-in-the-good-old-days-when">I remember, in the good old days, when&#8230;</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/04/i-remember-in-the-good-old-days-when/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Nexus 4 battery life</title><link>http://www.artiss.co.uk/2013/04/nexus-4-battery-life?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=nexus-4-battery-life</link> <comments>http://www.artiss.co.uk/2013/04/nexus-4-battery-life#comments</comments> <pubDate>Thu, 04 Apr 2013 13:50:27 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Comment]]></category> <category><![CDATA[Battery]]></category> <category><![CDATA[Google]]></category> <category><![CDATA[Nexus 4]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12699</guid> <description><![CDATA[<p>Just in case anybody was wondering about the battery life of a Nexus 4 phone. It was happily running WiFi and GPS during this time and Bluetooth whilst I was in the car. &#160;</p><p>The post <a
href="http://www.artiss.co.uk/2013/04/nexus-4-battery-life">Nexus 4 battery life</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p>Just in case anybody was wondering about the battery life of a Nexus 4 phone.</p><p><img
class="aligncenter size-large wp-image-12700" style="border: 0;" alt="Screenshot_2013-04-04-14-46-06" src="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06-420x700.png" width="420" height="700" /></p><p>It was happily running WiFi and GPS during this time and Bluetooth whilst I was in the car.</p><p>&nbsp;</p><p>The post <a
href="http://www.artiss.co.uk/2013/04/nexus-4-battery-life">Nexus 4 battery life</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/04/nexus-4-battery-life/feed</wfw:commentRss> <slash:comments>0</slash:comments> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06-120x120.png" /> <media:content url="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06.png" medium="image"> <media:title type="html"><![CDATA[Screenshot_2013-04-04-14-46-06]]></media:title> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/04/Screenshot_2013-04-04-14-46-06-120x120.png" /> </media:content> </item> <item><title>New plugin release &#8211; Artiss Vine Embed</title><link>http://www.artiss.co.uk/2013/04/new-plugin-release-artiss-vine-embed?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-plugin-release-artiss-vine-embed</link> <comments>http://www.artiss.co.uk/2013/04/new-plugin-release-artiss-vine-embed#comments</comments> <pubDate>Thu, 04 Apr 2013 10:49:15 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Vine]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12691</guid> <description><![CDATA[<p>I&#8217;m happy to announce the release of a new WordPress plugin &#8211; Artiss Vine Embed. Just days after Vine released details of how to embed one of their videos into a site, this plugin makes the experience incredibly easy. With both a shortcode for embedding into posts and pages as well as a widget for <span
class="ellipsis">&#8230;</span> <span
class="more-link-wrap"><a
href="http://www.artiss.co.uk/2013/04/new-plugin-release-artiss-vine-embed" class="more-link"><span>Read More &#8594;</span></a></span></p><p>The post <a
href="http://www.artiss.co.uk/2013/04/new-plugin-release-artiss-vine-embed">New plugin release &#8211; Artiss Vine Embed</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p><img
class="alignright  wp-image-12694" alt="Vine" src="http://www.artiss.co.uk/wp-content/uploads/2013/04/screenshot-1-300x360.png" width="180" height="216" />I&#8217;m happy to announce the release of a new WordPress plugin &#8211; <a
title="Artiss Vine Embed" href="http://wordpress.org/extend/plugins/artiss-vine-embed/" target="_blank">Artiss Vine Embed</a>.</p><p>Just days after <a
title="Vine" href="http://vine.co" target="_blank">Vine</a> released details of how to embed one of their videos into a site, this plugin makes the experience incredibly easy. With both a shortcode for embedding into posts and pages as well as a widget for sidebars it couldn&#8217;t be easier.</p><p>I&#8217;m already working on the next release which will introduce a simple administration screen for setting default options. After that expect responsive video options, amongst other things.</p><p>Remarkably this plugin wasn&#8217;t the first at WordPress.org to introduce Vine videos (beaten by 2 days!) but it&#8217;s already the most feature rich.</p><p>The post <a
href="http://www.artiss.co.uk/2013/04/new-plugin-release-artiss-vine-embed">New plugin release &#8211; Artiss Vine Embed</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/04/new-plugin-release-artiss-vine-embed/feed</wfw:commentRss> <slash:comments>0</slash:comments> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/04/screenshot-1-120x120.png" /> <media:content url="http://www.artiss.co.uk/wp-content/uploads/2013/04/screenshot-1.png" medium="image"> <media:title type="html"><![CDATA[Vine]]></media:title> <media:thumbnail url="http://www.artiss.co.uk/wp-content/uploads/2013/04/screenshot-1-120x120.png" /> </media:content> </item> <item><title>The ultimate Easter infographic</title><link>http://www.artiss.co.uk/2013/03/the-ultimate-easter-infographic?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-ultimate-easter-infographic</link> <comments>http://www.artiss.co.uk/2013/03/the-ultimate-easter-infographic#comments</comments> <pubDate>Fri, 29 Mar 2013 09:13:21 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Fun]]></category> <category><![CDATA[Easter]]></category> <category><![CDATA[The Poke]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12671</guid> <description><![CDATA[<p>Courtesy of The Poke.</p><p>The post <a
href="http://www.artiss.co.uk/2013/03/the-ultimate-easter-infographic">The ultimate Easter infographic</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p><a
title="The Poke" href="http://www.thepoke.co.uk" target="_blank">Courtesy of The Poke.</a></p><p><img
class="alignnone" style="border: 0;" alt="" src="https://fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-snc6/269297_538563422850622_1703935627_n.jpg" width="446" height="960" /></p><p>The post <a
href="http://www.artiss.co.uk/2013/03/the-ultimate-easter-infographic">The ultimate Easter infographic</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/03/the-ultimate-easter-infographic/feed</wfw:commentRss> <slash:comments>0</slash:comments> <media:thumbnail url="http://www.artiss.co.uk//fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-snc6/269297_538563422850622_1703935627_n.jpg" /> <media:content url="http://www.artiss.co.uk//fbcdn-sphotos-b-a.akamaihd.net/hphotos-ak-snc6/269297_538563422850622_1703935627_n.jpg" medium="image" /> </item> <item><title>Feeling a little sore, are we?</title><link>http://www.artiss.co.uk/2013/03/feeling-a-little-sore-are-we?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=feeling-a-little-sore-are-we</link> <comments>http://www.artiss.co.uk/2013/03/feeling-a-little-sore-are-we#comments</comments> <pubDate>Tue, 26 Mar 2013 18:31:42 +0000</pubDate> <dc:creator>David Artiss</dc:creator> <category><![CDATA[Comment]]></category> <category><![CDATA[BBC]]></category> <category><![CDATA[Have Your Say]]></category> <guid
isPermaLink="false">http://www.artiss.co.uk/?p=12661</guid> <description><![CDATA[<p>There was a great story this week about a young lad who has sold his Smartphone app for &#8220;many millions of pounds&#8221;. It&#8217;s a great success story. For some reason the BBC felt this would be a great topic for reader feedback (I wonder what conditions they use to determine this). The lowest rated (thankfully) <span
class="ellipsis">&#8230;</span> <span
class="more-link-wrap"><a
href="http://www.artiss.co.uk/2013/03/feeling-a-little-sore-are-we" class="more-link"><span>Read More &#8594;</span></a></span></p><p>The post <a
href="http://www.artiss.co.uk/2013/03/feeling-a-little-sore-are-we">Feeling a little sore, are we?</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></description> <content:encoded><![CDATA[<p>There was <a
title="Yahoo spends 'millions' on UK teen Nick D'Aloisio's Summly app" href="http://www.bbc.co.uk/news/technology-21924243" target="_blank">a great story this week</a> about a young lad who has sold his Smartphone app for &#8220;many millions of pounds&#8221;. It&#8217;s a great success story.</p><p>For some reason the BBC felt this would be a great topic for reader feedback (I wonder what conditions they use to determine this). <a
title="Have Your Say" href="http://www.bbc.co.uk/news/technology-21924243?postId=115735867#comment_115735867" target="_blank">The lowest rated</a> (thankfully) was from someone who sounds extremely bitter. Passed up for a promotion by any chance?</p><blockquote>As a former electronics engineer I find stories like this irritating. Pathetic little apps, used by pathetic little people to supposedly enrich their pathetic little lives. Truly we could do without this. How many good engineers are being distracted away from serious technology (medical, space) in order to program games and useless apps on the quest to become the next apps millionaire. Shame.</blockquote><p>What a truly horrible person.</p><p>&nbsp;</p><p>The post <a
href="http://www.artiss.co.uk/2013/03/feeling-a-little-sore-are-we">Feeling a little sore, are we?</a> appeared first on <a
href="http://www.artiss.co.uk">Artiss.co.uk</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.artiss.co.uk/2013/03/feeling-a-little-sore-are-we/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>