<?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>Spoken Like a Geek &#187; Skype</title>
	<atom:link href="http://www.spokenlikeageek.com/wordpress/tag/skype/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spokenlikeageek.com/wordpress</link>
	<description>The technology blog of Neil Thompson</description>
	<lastBuildDate>Sat, 28 Jan 2012 09:13:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Querying the Skype SQL Database</title>
		<link>http://www.spokenlikeageek.com/wordpress/2009/10/02/querying-the-skype-sql-database/</link>
		<comments>http://www.spokenlikeageek.com/wordpress/2009/10/02/querying-the-skype-sql-database/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 10:33:37 +0000</pubDate>
		<dc:creator>Neil Thompson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.spokenlikeageek.com/wordpress/2009/10/02/querying-the-skype-sql-database/</guid>
		<description><![CDATA[I discovered recently that the latest version of Skype (v4) now holds all users session data, such as your chats, in a SQL database. What’s more it is easy to write queries using standard SQL to query the database and extract data. Here I’ll show you how.
Skype uses SQLite as its database engine and you [...]]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline; margin: 0px 5px 5px 0px" height="180" alt="What is Skype? by malthe." src="http://farm1.static.flickr.com/47/125252891_e22f8e0406.jpg" width="240" align="left" />I discovered recently that the latest version of Skype (v4) now holds all users session data, such as your chats, in a SQL database. What’s more it is easy to write queries using standard SQL to query the database and extract data. Here I’ll show you how.</p>
<div xmlns:cc="http://creativecommons.org/ns#" about="http://www.flickr.com/photos/malthe/125252891/">Skype uses <a href="http://www.sqlite.org/" target="_blank">SQLite</a> as its database engine and you can get a free tool called <a href="http://sqlitebrowser.sourceforge.net/" target="_blank">SQLite Database Browser</a> to query the data (see picture below) which is held (in Windows) at the following location:</div>
</p>
<blockquote><p>%appdata%/Skype/&lt;username&gt;/main.db</p>
</blockquote>
<p>It is important to note that Skype MUST be closed before you can open the database. </p>
<p>Skype presents sixteen tables including Contacts, Messages, Voicemails, Calls and Chats. I am going to concentrate on Messages in this post but the principle is exactly the same for all the other tables.</p>
<p>The Messages table holds a record of all IM messages between you and your contacts and there is one row per message sent or received. Using this table it is possible to query the records for something in a number of interesting ways – by date range, username or even content of message. So, for example, the following query will return all messages that have occurred in the last day that have the word “SMTP” in the body:</p>
<blockquote><p>SELECT author, datetime(timestamp, &#8216;unixepoch&#8217;), body_xml&#160;&#160; <br />&#160;&#160; FROM messages       <br />WHERE timestamp BETWEEN strftime(&#8216;%s&#8217;,'now&#8217;, &#8216;-1 days&#8217;) AND strftime(&#8216;%s&#8217;,'now&#8217;)      <br />&#160;&#160;&#160;&#160; AND body_xml LIKE &#8216;%SMTP%&#8217;      <br />ORDER BY timestamp</p>
</blockquote>
<p>A few things to note. </p>
<p>Firstly date/times are held as a time stamp, so the current time (2nd October 2009 11:23 BST) is held as 1254478990 so it is necessary to convert to and from this format. To convert a Skype timestamp to something that is human readable use the datetime function as one line one of the SQL statement above. the strftime function converts a date to the timestamp format used so the BETWEEN statement is looking for records between ‘now’ and one day ago.</p>
<p>Secondly, the body of the message is held as XML and so may contain more than just the message itself to take account of formatting etc.</p>
<p>With some clever uses of SQL it is possible to do some very complex searches but the restriction of having to have Skype closed is a bit limiting and I intend to see if there is a way around this.</p>
<p>You can get more information on the SQL statements that SQLite uses <a href="http://www.sqlite.org/lang.html" target="_blank">here</a> and I would be interested to know how you have used this data or intend to.</p>
<p><a href="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/10/image.png"><img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="200" alt="image" src="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/10/image-thumb.png" width="244" border="0" /></a> </p>
<p>(Lead picture: <a href="http://www.flickr.com/photos/malthe/" rel="cc:attributionURL">http://www.flickr.com/photos/malthe/</a> / <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/" rel="license">CC BY-NC-SA 2.0</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spokenlikeageek.com/wordpress/2009/10/02/querying-the-skype-sql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREETALK Everyman USB Headset for Skype</title>
		<link>http://www.spokenlikeageek.com/wordpress/2009/08/10/freetalk-everyman-usb-headset-for-skype/</link>
		<comments>http://www.spokenlikeageek.com/wordpress/2009/08/10/freetalk-everyman-usb-headset-for-skype/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 11:51:42 +0000</pubDate>
		<dc:creator>Neil Thompson</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Mobile Working]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Freetalk]]></category>
		<category><![CDATA[Headset]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.spokenlikeageek.com/wordpress/2009/08/10/freetalk-everyman-usb-headset-for-skype/</guid>
		<description><![CDATA[I have found myself using Skype more and more recently, particularly since some good friends have moved to Australia. 
Over the years I have used a number of ways to make Skype calls. I have used the speaker and microphone on my netbook, a VoIPVoice Cyberphone-w handset and a Polycom Communicator.
The laptop only experience is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones.jpg"><img title="Freedom headphones" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 5px 5px 0px; border-left: 0px; border-bottom: 0px" height="184" alt="Freedom headphones" src="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones-thumb.jpg" width="244" align="left" border="0" /></a>I have found myself using Skype more and more recently, particularly since some good friends have moved to Australia. </p>
<p>Over the years I have used a number of ways to make Skype calls. I have used the speaker and microphone on my netbook, a <a href="http://www.voipvoice.com/skypeCK.html" target="_blank">VoIPVoice Cyberphone-w</a> handset and a <a href="http://www.polycom.com/products/voice/desktop_solutions/pc_speakerphones/communicator_c100s.html" target="_blank">Polycom Communicator</a>.</p>
<p>The laptop only experience is ok but the sound is very tinny. The Cyberphone and the Communicator are both excellent devices but I don’t like holding the handset on long calls, particularly when they are video too and the communicator is really better suited for conference calls and neither are suitable for travelling. So when I saw the <a href="http://shop.skype.com/intl/en-gb/headsets/iss-talk-5115-everyman-headset.html " target="_blank">Freetalk Everyman USB headset for Skype</a> reviewed recently I thought I would give it a go.</p>
<p>They turned up in a small cardboard box with just a single sheet of instructions. Well I say instructions but actually there were just six pictures with either a large red cross or green tick over each. Fortunately set-up was a doddle – just plug-in and go. Skype recognises the headset and asks if you want to use them to make calls.</p>
<p>The call quality was excellent both for me and the other party who commented on how much better it was than usual. The headset makes use of what Skype calls <a href="http://share.skype.com/sites/en/2009/03/silk_now_available_for_free.html" target="_blank">super wideband audio</a> which is included in v4 and improves call quality even at low bandwidth. Having your ears covered means that there is no distraction from external noise which obviously also makes things better. </p>
<p>You can also use the headset as a normal set of headphones. There is a standard 3.5mm jack which can be plugged into a laptop/iPod etc. and then is plugged into a junction box on the cable when you are using them as a headset. Sound quality is reasonable if a little thin but certainly better than the standard iPod headphones for example.</p>
<p>The design is neat too in that they are designed to fold flat (see picture below) and the mic is bendy so it can be folded out the way when you are not using it. The headset folding mechanism is not dissimilar to that used by Sennheiser in its range of headphones, however, the Freetalk doesn’t come with any case. Given that the headset is going to be chucked into my laptop bag I realised that it needed to have a case of some sort. The solution was to buy this <a href="http://www.whsmith.co.uk/CatalogAndSearch/ProductDetails-WHS+Micro+Mesh+Pencil+Case-30174955.html#" target="_blank">pencil case from WH Smiths</a>. It’s a squeeze but it does provide protection (see images below) and has room for some other bits and pieces too. </p>
<p>So, to summarise, the Freetalk headset is a recommended device, particularly for those on the move who want good quality combined with portability. They are available from the <a href="http://shop.skype.com/intl/en-gb/headsets/iss-talk-5115-everyman-headset.html" target="_blank">Skype online shop</a> for £18.51.</p>
</p>
<p><a href="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones4.jpg"><img title="Freedom headphones 4" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="184" alt="Freedom headphones 4" src="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones4-thumb.jpg" width="244" border="0" /></a>&#160;<a href="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones5.jpg"><img title="Freedom headphones 5" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="184" alt="Freedom headphones 5" src="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones5-thumb.jpg" width="244" border="0" /></a>&#160;<a href="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones7.jpg"><img title="Freedom headphones 7" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="184" alt="Freedom headphones 7" src="http://www.spokenlikeageek.com/wordpress/wp-content/uploads/2009/08/freedomheadphones7-thumb.jpg" width="244" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.spokenlikeageek.com/wordpress/2009/08/10/freetalk-everyman-usb-headset-for-skype/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Services I use and Recommend</title>
		<link>http://www.spokenlikeageek.com/wordpress/2009/07/09/services-i-use-and-recommend/</link>
		<comments>http://www.spokenlikeageek.com/wordpress/2009/07/09/services-i-use-and-recommend/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 15:21:37 +0000</pubDate>
		<dc:creator>Neil Thompson</dc:creator>
				<category><![CDATA[Cloud Apps]]></category>
		<category><![CDATA[Desktop Apps]]></category>
		<category><![CDATA[Mobile Working]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Carbonite]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Remember the Milk]]></category>
		<category><![CDATA[ScanR]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Unfuddle]]></category>
		<category><![CDATA[Zumodrive]]></category>

		<guid isPermaLink="false">http://www.spokenlikeageek.com/wordpress/2009/07/09/services-i-use-and-recommend/</guid>
		<description><![CDATA[In a previous post I talked about the freemium model and how it has affected my attitude to software purchases. I wanted to go through the services that I use regularly and pay for and highlight them.
This is obviously just a personal selection. Over the years I have tried out numerous applications that rival the [...]]]></description>
			<content:encoded><![CDATA[<p><a title="365 Days - Day 267" href="http://www.flickr.com/photos/53166026@N00/3160668585/"><img style="display: inline; margin: 0px 5px 5px 0px" height="160" alt="365 Days - Day 267" src="http://static.flickr.com/3267/3160668585_809e34d956.jpg" width="175" align="left" border="0" /></a>In a previous post I talked about the <a href="http://www.spokenlikeageek.com/wordpress/2009/07/01/paid-apps-and-the-freemium-model/">freemium model</a> and how it has affected my attitude to software purchases. I wanted to go through the services that I use regularly and pay for and highlight them.</p>
<p>This is obviously just a personal selection. Over the years I have tried out numerous applications that rival the one that finally made this list. In the end it is just personal preference as much as anything else. You may prefer something else but these are the ones that made me put my hand in my pocket and purchase a subscription</p>
<p>So in the same order that they were listed in the previous article they are:</p>
<p><a href="http://www.carbonite.com" target="_blank">Carbonite</a> </p>
<p>I have talked about Carbonite on the site a number of times previously and not always in a positive light (<a href="http://www.spokenlikeageek.com/wordpress/2009/05/01/carbonite-remote-access/">here</a> and <a href="http://www.spokenlikeageek.com/wordpress/2009/05/21/carbonite-remote-access-revisited/">here</a>). However, they were reviews of the remote access part of the service and not the core offering of cloud backups and here Carbonite excels. This is really a set and forget service whereby you identify which directories you want to backup to the cloud and it just gets on with it. So I am secure in the knowledge that all my music, pictures and important documents are backed-up should disaster ever strike.</p>
<p>£34/year</p>
<p><a href="http://www.rememberthemilk.com/" target="_blank">Remember the Milk</a> </p>
<p>I am a task setter and for years had lists of tasks in the back of my <a href="http://www.spokenlikeageek.com/wordpress/2009/05/18/moleskine-my-favourite-low-tech-gadget/">moleskine</a> notebook. Now I have completely moved over to Remember the Milk for this and I love some much about it. Whether I am in my gmail account, on my iPhone or on their website my tasks are always close at hand. Also you can set such a great level of detail against each task should you wish to and of course share them with others. A great time saver.</p>
<p>£15/year</p>
<p><a href="http://www.evernote.com" target="_blank">Evernote</a> </p>
<p>Like Remember the Milk, Evernote has had a huge impact on both my working and personal life. While I still take a lot of written notes I am increasingly doing so in Evernote. Similar to Microsoft’s OneNote but with the advantage of being multi-platform so again I am able to access my notes on my desktop, via a browser and on my iPhone. The searching is simple and effective and means that I always have my notes close at hand. It is superb at clipping from the net with the browser plug in meaning storing information for later review is a breeze.</p>
<p>£28/year</p>
<p><a href="http://www.flickr.com" target="_blank">Flickr</a> </p>
<p>Having my own website means that I could, in theory, host my pictures on my own webspace but there is a limit to the amount of available space I have and I need to FTP the pictures to the site and then link to them from my blog. Flickr suffers from none of these drawbacks. I am able to upload pictures from pretty much anywhere to my Flickr account and have them immediately available to anyone who might be interested. With the latest changes I am now also able to link the pictures to my Twitter about.</p>
<p>£15/year</p>
<p><a href="http://zumodrive.com/" target="_blank">Zumodrive</a> </p>
<p>I looked at so many different online storage options before settling on Zumodrive and in the end it was an easy choice – it simply works. The fact that it looks and feels just like another drive in Windows makes it the perfect solution. I just save a file to me z: drive and it is synced to the cloud. I can then access it from the web, another desktop or my iPhone (are you detecting a theme here?).</p>
<p>£22/year for 10gb (charged monthly)</p>
<p><a href="http://unfuddle.com/" target="_blank">Unfuddle</a> </p>
<p>Unfuddle is the odd one out of the bunch here are it is the only one that I use exclusively for work. The service is designed for development teams and particularly those that are geographically spread. As such it includes source control (subversion and Git), ticket creation, milestones, time tracking and a wiki-like. It has made working with outsourced development teams, as I do, a doddle.</p>
<p>£66/year (10 person team)</p>
<p><a href="http://www.skype.com" target="_blank">Skype</a> </p>
<p>Is there anyone who doesn’t know about Skype? It is the poster child of the new age of internet applications brining voice over IP to the masses. I use it regularly to keep in touch with my best friends who have gone to live in Australia (hopefully only for 18 months…). You can get away with not having to pay for Skype if you only make Skype-to-Skype calls. If you want to call “real” phones then a subscription is required.</p>
<p>£18/year</p>
<p><a href="http://www.scanr.com" target="_blank">ScanR</a> </p>
<p>Finally a lesser known service perhaps. I go to quite a few networking events and collect numerous business cards and found entering all the details to be pretty tedious – scanR solves that problem. You take a picture of the card, upload it to the scanR site and it magically converts it into something you can import into Outlook, gmail or other mail reader. It also works with documents and whiteboards but I only use it for the business cards and while it is not perfect it is much better than having to retype!</p>
<p>£15/year.</p>
<p>Oh and to say you having to add it all up it comes to £213!</p>
<p>[image : <a href="http://www.flickr.com/photos/smercury98/" target="_blank">SMercury98</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spokenlikeageek.com/wordpress/2009/07/09/services-i-use-and-recommend/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Paid Apps and the Freemium model</title>
		<link>http://www.spokenlikeageek.com/wordpress/2009/07/01/paid-apps-and-the-freemium-model/</link>
		<comments>http://www.spokenlikeageek.com/wordpress/2009/07/01/paid-apps-and-the-freemium-model/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 08:26:41 +0000</pubDate>
		<dc:creator>Neil Thompson</dc:creator>
				<category><![CDATA[Cloud Apps]]></category>
		<category><![CDATA[Desktop Apps]]></category>
		<category><![CDATA[Mobile Working]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Carbonite]]></category>
		<category><![CDATA[Evernote]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Remember the Milk]]></category>
		<category><![CDATA[ScanR]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Unfuddle]]></category>
		<category><![CDATA[Zumodrive]]></category>

		<guid isPermaLink="false">http://www.spokenlikeageek.com/wordpress/2009/07/01/paid-apps-and-the-freemium-model/</guid>
		<description><![CDATA[Over the years I have tended to avoid paying for applications because the up-front cost was prohibitive. So I either went without, used an older version that may have been given away with a magazine, or found an open source equivalent. However, I am now finding myself committing to a number of applications because of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/smercury98/3160668585/" target="_blank"><img style="display: inline; margin: 0px 5px 5px 0px" height="160" alt="365 Days - Day 267 by SMercury98." src="http://farm4.static.flickr.com/3267/3160668585_809e34d956.jpg?v=0" width="175" align="left" /></a>Over the years I have tended to avoid paying for applications because the up-front cost was prohibitive. So I either went without, used an older version that may have been given away with a magazine, or found an open source equivalent. However, I am now finding myself committing to a number of applications because of the small up-front cost and, quite often, after a period of using the service for free – the so call freemium model. The question is whether that is good value for money.</p>
<p>The applications below are all ones that I use on a regular basis, used for free first before paying for a premium service of some sort. All the following applications make use of the Internet in some form or another.&#160; They are not all cloud apps in the traditional sense with some being hybrids with local clients and remote storage. </p>
<p>Some of these don’t have desktop equivalents and so you cannot make the comparison but Evernote does in the form of Microsoft’s OneNote. I was a happy OneNote user when it was provided for me by the companies that I worked for, usually as part of the full Office package. When I became self-employed I still wanted similar functionality but not the up-front cost. As it happens OneNote can be purchased stand-alone and is currently showing as £72 on Amazon. Evernote’s premium offering is $45 (about £27) per year. So at that rate after about two and a half years OneNote would have paid for itself.</p>
<p>As ever it is not as simple as that. Evernote offers a number of things that OneNote does not. You can access your notes not just on your desktop but also on the web and on a number of mobile devices – not just those powered by Microsoft’s Windows Mobile. Also as part of the Evernote subscription I am entitled to all updates which I would not be with OneNote.</p>
<p>You can see from the cost comparison above that the recurring revenue model is a good one for businesses over the longer term. If you want to continue to use the software you have to continue to pay and over the years I will no doubt end up paying for more than I would have done had I purchased the software outright.</p>
<p>As I said most of these services offer a free option to allow you to try the software before making the move to the paid premium version. This is a crucial deciding factor on my trialling a service these days. I almost expect to be able to try before I buy and with so many competing services those that do not offer a trial option of some sort are rejected.</p>
<p>So has this changed my buying habits? Yes, without a doubt. I haven’t totalled up the annual amount I am spending on all the services I am now subscribed to but I know instinctively that it is much more than I was spending on one-off purchases of software. Equally I also feel that I am getting much better value for money that I did previously. The rate of change of software is so great that regular updates with significant functionality improvements is the norm these days and this is all built into the price.</p>
<p>I will just list the services I subscribe to here and review them all in a later post.</p>
<ul>
<li><a href="http://www.carbonite.com" target="_blank">Carbonite</a> </li>
<li><a href="http://www.rememberthemilk.com/" target="_blank">Remember the Milk</a> </li>
<li><a href="http://www.evernote.com" target="_blank">Evernote</a> </li>
<li><a href="http://www.flickr.com" target="_blank">Flickr</a> </li>
<li><a href="http://zumodrive.com/" target="_blank">Zumodrive</a> </li>
<li><a href="http://unfuddle.com/" target="_blank">Unfuddle</a> </li>
<li><a href="http://www.skype.com" target="_blank">Skype</a> </li>
<li><a href="http://www.scanr.com" target="_blank">ScanR</a> </li>
</ul>
<p>Do you subscribe to any of these services? Do you think that the freemium model is a good one? Let us know.</p>
<p>[image : <a href="http://www.flickr.com/photos/smercury98/" target="_blank">SMercury98</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.spokenlikeageek.com/wordpress/2009/07/01/paid-apps-and-the-freemium-model/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

