<?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/"
	>

<channel>
	<title>Things About Stuff: Food, Sounds, Comics and Waffle &#187; Technology</title>
	<atom:link href="http://www.earth-x.co.uk/?feed=rss2&#038;tag=technology" rel="self" type="application/rss+xml" />
	<link>http://www.earth-x.co.uk</link>
	<description>Braindrops from the Clouds of Earth-X</description>
	<lastBuildDate>Sat, 08 Jun 2013 18:23:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>The Return of Twitter</title>
		<link>http://www.earth-x.co.uk/?p=647</link>
		<comments>http://www.earth-x.co.uk/?p=647#comments</comments>
		<pubDate>Wed, 16 Jan 2013 12:45:47 +0000</pubDate>
		<dc:creator><![CDATA[Andy]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.earth-x.co.uk/?p=647</guid>
		<description><![CDATA[After sporting a steampunk-esque &#8220;fail whale&#8221; on the front page for some time, following Twitters change of access specs that...]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.earth-x.co.uk/?attachment_id=648" rel="attachment wp-att-648"><img class="alignleft size-full wp-image-648" style="margin-left: 5px; margin-right: 5px;" alt="whale" src="http://www.earth-x.co.uk/wp-content/uploads/2013/01/whale.png" width="242" height="178" /></a>After sporting a steampunk-esque &#8220;fail whale&#8221; on the front page for some time, following Twitters change of access specs that blocked my previous PHP function from  working, the tweets are back.</p>
<p>I should really have been filling out job applications this morning, but got carried away with fixing this issue having acccidentally come across <a href="http://www.robertvenditti.com/" target="_blank">a site</a> that was clearly doing almst <em>exactly</em> what I wanted. A bit of searching after that led me to <a href="http://minitwitter.webdevdesigner.com/" target="_blank">Oliver Brechét&#8217;s page</a>, which contained the CSS, JQuery and brief explanation of how to apply the &#8220;widget&#8221;.</p>
<p>Although there is a WordPress version, these widget&#8217;s tend to knacker any preferred settings that I&#8217;ve already written in to the underlying PHP, so I added this by linking in the PHP itself, rather than using the WP widget.</p>
<p>I don&#8217;t quite follow 100% of the JQuery script (another item on my to do list!) but could garner enough of what was going on in it to rewrite it to fit my own, rather more sparse, needs. This also meant that a lot of the included CSS was unnecessary so could just be copied in to my main CSS sheet and adjusted for appearance (no header, no separator lines, no borders and no background). I imagine this is against Twitter&#8217;s new usage requirements and that I will thus soon be excommunicated&#8230;</p>
<p>Main change was to the fetchTweetsData function, edited down as follows, preceding lines to the first, italicised one unchanged:</p>
<pre><em>obj.finalText = $([linkURLs(obj.writeTweet, obj.entities)]).linkUser().linkHash()[0];</em>
obj.header = '';
obj.avatar = '&lt;div class="tweet"&gt;&lt;div class="avatar"&gt;&lt;a '+rel()+' '+target()+' href="'+obj.userUrl+'"&gt;&lt;/a&gt;&lt;/div&gt;';
obj.textTweet = '&lt;div class="mt_text"&gt;'+obj.finalText;
obj.footer = '&lt;div class="time"&gt;'+obj.tweetTime+'&lt;/div&gt;&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;/div&gt;';
return obj;</pre>
<p>Consequently, the only CSS used was:</p>
<pre><span style="color: #ff00ff;">.tweets {</span>
 max-width:245px;
 max-height:150px;
 font:13px/17px "Tahoma",Helvetica,Arial,sans-serif;
 color:#CCC;
 background-color:transparent;
 margin:auto;
<span style="color: #ff00ff;">}</span></pre>
<pre><span style="color: #ff00ff;">.tweets a {</span>
 color:#d08702;
 text-decoration:none;
<span style="color: #ff00ff;">}</span></pre>
<pre><span style="color: #ff00ff;">.tweets a:hover {</span>
 color: #f7d274;
<span style="color: #ff00ff;">}</span></pre>
<pre><span style="color: #ff00ff;">.tweets .tweet {</span>
 padding-bottom: 15px;
 text-align: left;
<span style="color: #ff00ff;">}</span></pre>
<pre><span style="color: #ff00ff;">.tweets .tweet .time {</span>
 float:right;
 color:#999;
 font-size:11px;
 padding-left: 10px;
<span style="color: #ff00ff;">}</span></pre>
<pre><span style="color: #ff00ff;">.tweets .tweet .avatar {</span>
 display:block;
 float:left;
 background-image: url(images/tweet.png);
 height: 15px;
 width: 21px;
 background-repeat: no-repeat;
 background-position: top;
<span style="color: #ff00ff;">}</span>
<span style="color: #ff00ff;">.tweets .tweet .avatar a {</span>
 display:block;
 height: 15px;
 width: 21px;
<span style="color: #ff00ff;">}</span></pre>
<pre><span style="color: #ff00ff;">.mt_text {</span>
 padding-left:25px;
<span style="color: #ff00ff;">}</span></pre>
<p>&nbsp;</p>
<p>Excellent work, Mr Brechét, and thanks!</p>
<p><em>[Original code that inspired this and has slightly different, or broader, functionality, is <a href="http://tweet.seaofclouds.com/" target="_blank">here</a>]</em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earth-x.co.uk/?feed=rss2&#038;p=647</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Comics #FAIL</title>
		<link>http://www.earth-x.co.uk/?p=194</link>
		<comments>http://www.earth-x.co.uk/?p=194#comments</comments>
		<pubDate>Tue, 09 Aug 2011 09:47:58 +0000</pubDate>
		<dc:creator><![CDATA[Andy]]></dc:creator>
				<category><![CDATA[Comics]]></category>
		<category><![CDATA[DC]]></category>
		<category><![CDATA[DCnU]]></category>
		<category><![CDATA[Digital]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.earth-x.co.uk/?p=194</guid>
		<description><![CDATA[When the DCnU launches, the sole digital outlet is through Comixology. They provide content from other suppliers, too &#8211; including...]]></description>
				<content:encoded><![CDATA[<p>When the DCnU launches, the sole digital outlet is through <a href="http://www.comixology.com/">Comixology</a>. They provide content from other suppliers, too &#8211; including Marvel, so it looks as though they are winning the race to be dominant provider. Which is fine, except for one thing: when you buy a comic, you are only buying the right to read it, not own it.</p>
<p>I&#8217;ve heard it compared to watching a streaming movie, rather than buying a DVD.</p>
<p>And that&#8217;s the sticking point, right there. It&#8217;s <em>not</em> the same thing. Reading a comic is a shorter and more individual experience; one that I prefer full control of and choice of where I do it.  Long-time comic collectors are just not going to get their heads around this. There is <strong>no</strong> download: you have to be online in order to read comics you &#8220;own&#8221;.</p>
<p>Last Saturday, the Comixology website was down for &#8220;temporary maintenance&#8221; for at least 2 hours &#8211; quite probably a lot more but I stopped checking. All that time, you can&#8217;t read the comics you&#8217;ve paid for. And if they mangle their database or go out of business, bang go your comics. You&#8217;re renting them, not buying them.</p>
<p>The problem, I fear, is that they have focussed on stopping piracy instead of producing a good service. I don&#8217;t think that&#8217;s the way to do this &#8211; the scanners will still scan the printed versions and torrent them as CBR files for the scavengers. All they&#8217;re really doing is acting on paranoia and, simultaneously, losing me as a customer.</p>
<p>I don&#8217;t mind being locked in to your application to read the comics but I want to be able to download them, back them up and read them offline whenever I wish, networked or not. It <em>is</em> possible &#8211; <a href="http://graphicly.com/">Graphic.ly</a>* do it, allowing download of an encrypted version that can be read offline (although, it has to be said, it does appear that you need to be online for a minute or so to log the software in).</p>
<p>Android and iPhone apps download a version, but I&#8217;m not reading comics on an iPod (too small!) and an iPad is an unnecessary luxury, so not that either. So I guess I&#8217;m out of the new digital frontier. No streaming comics for me, thanks.</p>
<p>Print is better, of course, but I&#8217;m running out of space so this is a disappointing dead end&#8230;</p>
<p>&nbsp;</p>
<p>*Home of the excellent <a href="https://www.facebook.com/pages/Billy-the-Monster-Hunter/105659416142889">Billy the Monster Hunter</a>, for one thing!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earth-x.co.uk/?feed=rss2&#038;p=194</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Damn it, Jim, I&#8217;m a Capitalist not an Explorer!</title>
		<link>http://www.earth-x.co.uk/?p=182</link>
		<comments>http://www.earth-x.co.uk/?p=182#comments</comments>
		<pubDate>Fri, 05 Aug 2011 11:06:17 +0000</pubDate>
		<dc:creator><![CDATA[Andy]]></dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Nostalgia]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.earth-x.co.uk/?p=182</guid>
		<description><![CDATA[Way back when, the first space shuttle took off. I couldn&#8217;t really understand why there wasn&#8217;t a national holiday, even...]]></description>
				<content:encoded><![CDATA[<p>Way back when, the first space shuttle took off. I couldn&#8217;t really understand why there wasn&#8217;t a national holiday, even though I&#8217;m in the UK, so I nicked off school to watch it (at least it was on TV). This was it: we&#8217;re in the future! Can&#8217;t be long for jet packs all round and shiny silver suits.</p>
<p>As a kid, I was pretty enthralled with the idea of space flight. Still am, I guess. And now an era has ended.</p>
<p>No flights. Earth orbit flights. Landing on the moon. That&#8217;s NASA in reverse. Summed up:</p>
<p><a href="http://www.earth-x.co.uk/wp-content/uploads/2011/08/shuttle-cartoon.jpg"><img class="aligncenter size-full wp-image-185" title="R.I.P. Space Shuttle" src="http://www.earth-x.co.uk/wp-content/uploads/2011/08/shuttle-cartoon.jpg" alt="" width="371" height="480" /></a></p>
<p>The argument usually seems to be  that it simply costs too much &#8211; even though <a href="http://useconomy.about.com/od/usfederalbudget/p/nasa_budget_cost.htm">NASA produces $10 for every $1 invested</a>. So I guess it&#8217;s the short-sightedness of seeing easily how much it <em>will</em> cost without seeing the guaranteed return. But exploration and research doesn&#8217;t really work like that. Sadly, to me, it&#8217;s the triumph of capitalism over the spirit of adventure; the need for ROI instead of JOY.</p>
<p>So the last shuttle flight is the end, for now, of the USA in space. With a budget deficit the size of a planet, when will they dare venture again? And if they don&#8217;t, who will fill the gap? Europe? India? My cynical view is that space flight will only occur if it&#8217;s about laying satellites, new alloys, that sort of thing &#8211; you know: making a profit. With capitalism now global, compared to when men landed on the moon, or even when that first shuttle headed off, it&#8217;s difficult to see the desire for profit margins ever changing (TV news is full of economics these days; I&#8217;m sure that never used to be the case!).</p>
<p>So whence the trip to Mars? Pub conversation yesterday suggested that one of BRIC nations, perhaps, once fully established in the New World Order of wealth and economic power, might have so much cash sloshing about that they then think: &#8220;you know what, fuck it &#8211; let&#8217;s build a massive space ship and get OUT THERE!&#8221;.</p>
<p>Me? I&#8217;m less optimistic than Mark.</p>
<p>R.I.P. space shuttle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earth-x.co.uk/?feed=rss2&#038;p=182</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
