<?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>The ramblings of a geek</title>
	<atom:link href="http://www.deandunn.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.deandunn.co.uk</link>
	<description>Useful info about all things tech</description>
	<lastBuildDate>Thu, 23 Feb 2012 12:19:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Testing your SMTP server using telnet</title>
		<link>http://www.deandunn.co.uk/linux/testing-your-smtp-server-using-telnet/</link>
		<comments>http://www.deandunn.co.uk/linux/testing-your-smtp-server-using-telnet/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 12:16:34 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft Servers]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[email server test]]></category>
		<category><![CDATA[mail from]]></category>
		<category><![CDATA[rcpt to]]></category>
		<category><![CDATA[sending test SMTP email]]></category>
		<category><![CDATA[smtp server test]]></category>
		<category><![CDATA[telnet]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=228</guid>
		<description><![CDATA[Testing client web applications and websites often means migrating them temporarily to my development network for testing purposes. This means changing email server settings to ensure no emails escape from captivity, which would be embarrassing. Occasionally I have issues with my internal email configuration and need to do a quick test to see if my internal email [...]]]></description>
			<content:encoded><![CDATA[<p>Testing client web applications and websites often means migrating them temporarily to my development network for testing purposes. This means changing email server settings to ensure no emails escape from captivity, which would be embarrassing.</p>
<p>Occasionally I have issues with my internal email configuration and need to do a quick test to see if my internal email server is receiving emails from my website development servers. This can easily be achieved using the command line and telnet.</p>
<p>First off we need to esablish a connection to the email server, so telnet into your SMTP server from the command line like so:</p>
<pre><span style="color: #000000;">telnet [ip-address] 25</span></pre>
<p>Where ip address is your email server e.g &#8220;telnet 10.10.10.1 25&#8243;. The 25 signifies your SMTP port, 25 is the default.</p>
<p>We now need to check if the SMTP server is alive. So we can use:</p>
<pre>EHLO</pre>
<p>What you get back depends on your SMTP server, OS etc. but you should get an OK message at least.</p>
<p>Now we want to send a test message to see if our SMTP server is receving email okay from our local network. To do this we need to tell it the email sender, email recipient and of course the message. The message  is in two parts &#8211; subject and body (although you dont have to fill in the subject as it is not mandatory). We do this using:-</p>
<pre>mail from:email@emailsender.com</pre>
<pre>rcpt to:email@yourdomain.com</pre>
<p>To send the actual message we need to type the command:</p>
<pre>Data</pre>
<p>Followed by a carriage return (enter).</p>
<p>To enter the subject we use:</p>
<pre>Subject: Subject goes here</pre>
<p>Then press enter <strong>TWO</strong> times.</p>
<p>You can now start typing the body of your email message. To finish the email body text input, enter a carriage return (enter) and then tpye a period (.) followed by carriage reutrn (enter) again.</p>
<p>Finally enter:</p>
<pre>quit</pre>
<p>To exit the telnet program.</p>
<p>You should get an OK or message queued for delivery message back saying that the SMTP server has accepted the message. If not you have entered something wrong, or the email server doesnt like the message (for example an email relay config issue blocking you sending from your IP address).</p>
<p>Hope that is of help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/linux/testing-your-smtp-server-using-telnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing your Google Apps with Google 2-step verification</title>
		<link>http://www.deandunn.co.uk/uncategorised/securing-your-google-apps-with-google-2-step-verification/</link>
		<comments>http://www.deandunn.co.uk/uncategorised/securing-your-google-apps-with-google-2-step-verification/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 11:56:58 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Uncategorised]]></category>
		<category><![CDATA[2 step verification]]></category>
		<category><![CDATA[google authenticator]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=226</guid>
		<description><![CDATA[Although it has been out for a while, I recently came across Googles 2-step verification security system. For those of you not in the know, you can find out more here:- Google 2-step Verification Overview and Video If you are security conscious or paranoid (or maybe even both) this is a good option to beef [...]]]></description>
			<content:encoded><![CDATA[<p>Although it has been out for a while, I recently came across Googles 2-step verification security system. For those of you not in the know, you can find out more here:-</p>
<p><a title="Google link - 2 step verification" href="https://support.google.com/accounts/bin/answer.py?hl=en&amp;topic=1056283&amp;answer=180744&amp;rd=1">Google 2-step Verification Overview and Video</a></p>
<p>If you are security conscious or paranoid (or maybe even both) this is a good option to beef up your PC/device security for your Google apps, especially if you have a Android phone to act as the authenticator (the Google android apps is called Google Authenticator and can be downloaded from Google Marketplace on your android phone (its also available for iPhone too).</p>
<p>With this installed and configured you have to enter your password and the authentication code from displayed on your Android Phone to succesfully log-into a Google resource. So not only will a hacker have to know your password, but also your authentication code (which changes every few seconds).</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/uncategorised/securing-your-google-apps-with-google-2-step-verification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keepass &#8211; Auto-Type Stopped Working/Works intermittently?</title>
		<link>http://www.deandunn.co.uk/uncategorised/keepass-auto-type-stopped-workingworks-intermittently/</link>
		<comments>http://www.deandunn.co.uk/uncategorised/keepass-auto-type-stopped-workingworks-intermittently/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 15:23:00 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Uncategorised]]></category>
		<category><![CDATA[auto-type]]></category>
		<category><![CDATA[keepass]]></category>
		<category><![CDATA[RDCAutoType]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=224</guid>
		<description><![CDATA[This drove me crazy. I use keepass for almost everything, and now and again it would stop working. Finally figured out it only happened when I had VMware vSphere console open, obviosuly they conflict in some way. Solution is to download the keepass plugin RDCAutoType from here - http://rdc-keepass-plugin.appspot.com/ This also has the bonus of working [...]]]></description>
			<content:encoded><![CDATA[<p>This drove me crazy. I use keepass for almost everything, and now and again it would stop working.</p>
<p>Finally figured out it only happened when I had VMware vSphere console open, obviosuly they conflict in some way.</p>
<p>Solution is to download the keepass plugin RDCAutoType from here - <a href="http://rdc-keepass-plugin.appspot.com/">http://rdc-keepass-plugin.appspot.com/</a></p>
<p>This also has the bonus of working with Remote Desktop Connections (RDP).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/uncategorised/keepass-auto-type-stopped-workingworks-intermittently/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bitnami Images &#8211; Configuring Keyboard Mappings</title>
		<link>http://www.deandunn.co.uk/linux/bitnami-images-configuring-keyboard-mappings/</link>
		<comments>http://www.deandunn.co.uk/linux/bitnami-images-configuring-keyboard-mappings/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 15:02:03 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bitnami]]></category>
		<category><![CDATA[keyboard mapping]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=221</guid>
		<description><![CDATA[I&#8217;ve started using Bitnami images for my test/dev system. They provide a quick way to get web apps up and running, however as they are optimised/minimal builds sometimes they need tweaking. I&#8217;m based in the UK and the standard keyboard mapping is set for US. To reset for a different country/keyboard type use:- sudo dpkg-reconfigure [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started using Bitnami images for my test/dev system. They provide a quick way to get web apps up and running, however as they are optimised/minimal builds sometimes they need tweaking.</p>
<p>I&#8217;m based in the UK and the standard keyboard mapping is set for US. To reset for a different country/keyboard type use:-</p>
<pre>sudo dpkg-reconfigure console-setup</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/linux/bitnami-images-configuring-keyboard-mappings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu &#8211; network card not recognised when system cloned.</title>
		<link>http://www.deandunn.co.uk/virtualisation/ubuntu-network-card-not-recognised-when-system-cloned/</link>
		<comments>http://www.deandunn.co.uk/virtualisation/ubuntu-network-card-not-recognised-when-system-cloned/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 13:32:22 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[cloned]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[network card not recognised]]></category>
		<category><![CDATA[no such device]]></category>
		<category><![CDATA[SIOCSIFADDR]]></category>
		<category><![CDATA[vm]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=212</guid>
		<description><![CDATA[I&#8217;m currently moving VMs around a lot between VirtualBox and ESXi and came across the following problem I hadn&#8217;t had for a while. If you clone a Ubuntu VM and import it into ESXi you may get the following error:- SIOCSIFADDR: no such device The problem is that a new MAC address is created, and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently moving VMs around a lot between VirtualBox and ESXi and came across the following problem I hadn&#8217;t had for a while.</p>
<p>If you clone a Ubuntu VM and import it into ESXi you may get the following error:-</p>
<pre>SIOCSIFADDR: no such device</pre>
<p>The problem is that a new MAC address is created, and the old one still exists. What you need to do is get the MAC address of your card from the Virtual Infrastructure Client (right click the VM &#8211; select network adapter and you will see the MAC address).</p>
<p>Then and edit this file:-</p>
<pre>/etc/udev/rules.d/70-persistent-net.rules</pre>
<p>What you need to do is delete the old NIC references (i.e. the ones that arent your MAC address).</p>
<p>Now save the file, and reboot the system (a cold reboot) and your NIC should now be recognised.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/virtualisation/ubuntu-network-card-not-recognised-when-system-cloned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVG Gradient Maker</title>
		<link>http://www.deandunn.co.uk/website-design/svg-gradient-maker/</link>
		<comments>http://www.deandunn.co.uk/website-design/svg-gradient-maker/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 07:22:03 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[border-radius]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[ie9]]></category>
		<category><![CDATA[linear-gradient]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=209</guid>
		<description><![CDATA[If you have had problems with linear-gradient and rounded corners support in IE9, then you are probably aware there are several fixes available to make these two features work together, although should we really be having to do this in 2011? Come on Microsoft step up! After looking at the options and reading an interesting [...]]]></description>
			<content:encoded><![CDATA[<p>If you have had problems with linear-gradient and rounded corners support in IE9, then you are probably aware there are several fixes available to make these two features work together, although should we really be having to do this in 2011? Come on Microsoft step up!</p>
<p>After looking at the options and reading an interesting thread <a title="IE9 border-radius and linear-gradient" href="http://stackoverflow.com/questions/4692686/ie9-border-radius-and-background-gradient-bleeding">here</a>, my preferred fix is to use SVG to create a gradient and use background-image with a base64 encoded file. There is a nice little tool available that will do the hard work for you here:-</p>
<p><a title="Microsoft IE testdrive SVG gradient maker" href="http://ie.microsoft.com/testdrive/Graphics/SVGGradientBackgroundMaker/Default.html">http://ie.microsoft.com/testdrive/Graphics/SVGGradientBackgroundMaker/Default.html</a></p>
<p>For those of you that don&#8217;t want to go to the bother rilling your own gradients, you can also use <a title="CSS3 PIE" href="http://www.css3pie.com">CSS3 PIE</a>, which essentially does the same thing via a JS library.</p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/website-design/svg-gradient-maker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Like Button &#8211; Module Positioning</title>
		<link>http://www.deandunn.co.uk/website-design/facebook-like-button-module-positioning/</link>
		<comments>http://www.deandunn.co.uk/website-design/facebook-like-button-module-positioning/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 11:05:26 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[.fb_edge_widget_with_comment]]></category>
		<category><![CDATA[facebook api]]></category>
		<category><![CDATA[facebook like]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=207</guid>
		<description><![CDATA[I recently integrated the Facebook Like button into a client&#8217;s website (see here for more details on the like button) using XFBML to allow website visitors to also send a message along with their FB like. The message box however was cutoff inside my DIV due to overflow: hidden and also the message box was [...]]]></description>
			<content:encoded><![CDATA[<p>I recently integrated the Facebook Like button into a client&#8217;s website (see<a title="Facebook Social Plugin - Like Button" href="http://developers.facebook.com/docs/reference/plugins/like/"> here</a> for more details on the like button) using XFBML to allow website visitors to also send a message along with their FB like. The message box however was cutoff inside my DIV due to overflow: hidden and also the message box was not ideally positioned.</p>
<p>I changed the CSS for the parent DIVs to overflow: visible and inserted the following CSS to overridew the standard facebook CSS selectors:</p>
<pre>.fb_edge_widget_with_comment span.fb_edge_comment_widget {
    top: 120px !important;
    left: -215px !important;
}</pre>
<p>Hope this helps some of you out that have been having a similar problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/website-design/facebook-like-button-module-positioning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 and VirtualBox &#8211; Does your console run slow?</title>
		<link>http://www.deandunn.co.uk/linux/ubuntu-10-04-and-virtualbox-does-your-console-run-slow/</link>
		<comments>http://www.deandunn.co.uk/linux/ubuntu-10-04-and-virtualbox-does-your-console-run-slow/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 20:31:16 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=205</guid>
		<description><![CDATA[I&#8217;ve been running Ubuntu 8.04 for quite a while now, and thought it was about time I tried out a more recent LTS version of Ubuntu Server, so downloaded and installed 10.04 recently. First thing I found was that the screen console in VirtualBox was dog slow. After a bit of digging I found out [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been running Ubuntu 8.04 for quite a while now, and thought it was about time I tried out a more recent LTS version of Ubuntu Server, so downloaded and installed 10.04 recently. First thing I found was that the screen console in VirtualBox was dog slow.</p>
<p>After a bit of digging I found out this was to do with running the 16 bit framebuffer driver, so all you need to do is blacklist it. The file you need to edit is here:-</p>
<p>/etc/modprobe.d/blacklist-framebuffer.conf</p>
<p>just add the followin onto the end of the file:</p>
<p>blacklist vga16fb</p>
<p>Reboot and you should be fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/linux/ubuntu-10-04-and-virtualbox-does-your-console-run-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Im not dead, honestly!</title>
		<link>http://www.deandunn.co.uk/website-design/im-not-dead-honestly/</link>
		<comments>http://www.deandunn.co.uk/website-design/im-not-dead-honestly/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 09:15:14 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=201</guid>
		<description><![CDATA[Well, you would I was dead from the lack of activityon here, however I have been busily beavering away, albeit not on my blog! I have a new flying job and I now work for Jet2 on the 737, based back in my home city of Newcastle. I have been busy  training for the past [...]]]></description>
			<content:encoded><![CDATA[<p>Well, you would I was dead from the lack of activityon here, however I have been busily beavering away, albeit not on my blog!</p>
<p>I have a new flying job and I now work for Jet2 on the 737, based back in my home city of Newcastle. I have been busy  training for the past few months, so web design and all things tech related had to take a bit of a back seat. I am now busy working on a couple of new projects, one is an online appointment booking system for a physiotherapist, and the other is a website for a riding stable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/website-design/im-not-dead-honestly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Activation Email Text</title>
		<link>http://www.deandunn.co.uk/jseblod-and-seblod-cck/user-activation-email-text/</link>
		<comments>http://www.deandunn.co.uk/jseblod-and-seblod-cck/user-activation-email-text/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 14:59:47 +0000</pubDate>
		<dc:creator>Dean</dc:creator>
				<category><![CDATA[jSeblod and Seblod CCK]]></category>
		<category><![CDATA[jseblod 1.8]]></category>

		<guid isPermaLink="false">http://www.deandunn.co.uk/?p=194</guid>
		<description><![CDATA[To change the account activation text that is sent to the user when he first registers, you need to go to the jSeblod field manager and edit the field &#8220;user construction email&#8221;, click on the EDITOR button and edit the message accordingly. Note &#8211; Dont try to edit the en-GB.com_user.ini language file, as this is [...]]]></description>
			<content:encoded><![CDATA[<p>To change the account activation text that is sent to the user when he first registers, you need to go to the jSeblod field manager and edit the field &#8220;user construction email&#8221;, click on the EDITOR button and edit the message accordingly.</p>
<p>Note &#8211; Dont try to edit the en-GB.com_user.ini language file, as this is not used by jSeblod.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deandunn.co.uk/jseblod-and-seblod-cck/user-activation-email-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

