<?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>Simian Enterprises &#187; General</title>
	<atom:link href="https://www.simianenterprises.co.uk/blog/category/general/feed" rel="self" type="application/rss+xml" />
	<link>https://www.simianenterprises.co.uk/blog</link>
	<description>Web development, Coldfusion, CSS, a bit of this, a bit of that...</description>
	<lastBuildDate>Sat, 26 Apr 2014 00:42:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.2.7</generator>
	<item>
		<title>Mercurial tool to export changed files</title>
		<link>https://www.simianenterprises.co.uk/blog/mercurial-export-changed-files-80.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/mercurial-export-changed-files-80.html#comments</comments>
		<pubDate>Tue, 27 Apr 2010 15:58:08 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Source Control]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.simianenterprises.co.uk/blog/?p=80</guid>
		<description><![CDATA[Recently, my friend Chris Brown convinced me to move my source control from SVN to Mercurial (or more specifically, Kiln). I found Mercurial to be infinitely better than SVN in almost all resepects, but there was one thing missing that I could do with Tortoise SVN but not Tortoise HG, and that was to export [&#8230;]<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
				<content:encoded><![CDATA[<p>Recently, my friend <a title="Chris Brown on Twitter" href="http://www.twitter.com/cb46">Chris Brown</a> convinced me to move my source control from SVN to <a title="Mercurial" href="http://mercurial.selenic.com/">Mercurial</a> (or more specifically, <a title="Kiln" href="http://www.fogcreek.com/kiln/">Kiln</a>).<br />
I found Mercurial to be infinitely better than SVN in almost all resepects, but there was one thing missing that I could do with Tortoise SVN but not Tortoise HG, and that was to export any changed files from one revision to the next &#8211; something which as a web developer, I have to do very often.</p>
<p>Well, Chris came to the rescue and created a simple program to do exactly that. So here&#8217;s Chris to explain the program and how it works:<br />
Download links are at the bottom of the page.<br />
<span id="more-80"></span></p>
<blockquote><p>Hi,</p>
<p>My name is Chris Brown and I am a big fan of FogBugz so when FogCreek announced Kiln (a mercurial client) I immediately jumped on the bandwagon moved to Kiln and have never looked back. The Kiln Mercurial solution solved all the issues I had with merging and speed in Subversion and I was a very happy man indeed.</p>
<p>Then one day whilst chatting to my good friend Gary @ Simian Enterprises (who has kindly let me blog via his site on this occasion) I mentioned Kiln to him and proceeded to wax lyrical about how great it was until his ears were bleeding and to my surprise I had convinced him to give Kiln a try.</p>
<p>Now Gary was at first very happy and was as thrilled as me at the beautiful Kiln web experience and TortoiseHg integration, however there was one nagging feature he used a lot in Subversion which does not exist within the Mercurial system, and after doing a bit of googling it seems a few other people hit the same snag.</p>
<p>It is not possible with TortoiseHg to export a copy of all files changed since a specified revision. Now to most this would not cause much of an issue, I myself have never had this need, and do not think I will, but for those working on big complex websites like Gary does this is a big issue.</p>
<p>When uploading the new version of a site (usually by FTP) this can take some time, and I am sure most people will agree that uploading files with no changes is nothing but a waste of time. Being able to export just the files changed since the last update and only updating these makes a lot more sense and will result in far fewer files being transferred and as mentioned TortoiseSVN has this capability as standard.</p>
<p>With any luck one day the TortoiseHg system can also have this command, until then I have written a small application in Visual Studio 2010 which does what Gary needed and hopefully it will be of use to other Kiln/Mercurial users too.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-92" title="Mercurial Changed Files Exporter" src="http://www.simianenterprises.co.uk/blog/wp-content/uploads/2010/04/mercurialchangedfilesexporter1.gif" alt="Mercurial Changed Files Exporter" width="631" height="312" /></p>
<p>Please note: this is one of those programs I knocked up very quickly, it does not have much error handling and the code is not that tidy, however it does work and I have provided both an installer for the app and the original Source Code, please feel free to amend as needed or build on this to meet your needs.</p>
<p>Below are details of each input and what it is used for and what the buttons do, this currently checks for changes between a revision and tip and assumes the current working folder is updated to Tip.</p>
<p><strong>Root Directory of mercurial repository:</strong> should point to the path of the root of your repo (where .hg lives)<br />
<strong>From Revision #:</strong> the revision number to check from<br />
<strong>Export target folder:</strong> the folder to copy changed files to (must be blank)<br />
<strong>List Changed Files:</strong> lists the files in the list box that will be copied based on current settings.<br />
<strong>Export Changed Files:</strong> same as above but also copied to the target folder/<br />
<strong>Close:</strong> does what it says on the tin.</p>
<p>If you like this little utiity and would like to make any comments you can find me on Twitter (<a title="Chris Brown on Twitter" href="http://www.twitter.com/cb46">@CB46</a>)<br />
Thanks<br />
Chris Brown</p>
<p><strong>Download: <a title="Mercurial Changed Files Exporter" href="/blog/wp-content/uploads/2010/04/mercurialchangedfilesexporter.zip">Windows Installer</a> | <a title="Mercurial Changed Files Exporter (Source)" href="/blog/wp-content/uploads/2010/04/mercurialchangedfilesexportersource.zip">Source</a></strong></p></blockquote>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/mercurial-export-changed-files-80.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Combatting misinformation in web design</title>
		<link>https://www.simianenterprises.co.uk/blog/combatting-misinformation-in-web-design-76.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/combatting-misinformation-in-web-design-76.html#comments</comments>
		<pubDate>Thu, 11 Mar 2010 13:40:30 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.simianenterprises.co.uk/blog/?p=76</guid>
		<description><![CDATA[I received an email from a client recently, informing me that they have hired someone to redevelop their entire website in php, as they have been informed by their SEO company that ColdFusion is 'bad for search engines'.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="https://www.simianenterprises.co.uk/blog/the-uncomfortable-truth-about-seo-16.html" rel="bookmark" title="The uncomfortable truth about SEO">The uncomfortable truth about SEO </a> <small>I'm simply amazed that there are still people out there...</small></li>
<li><a href="https://www.simianenterprises.co.uk/blog/where-do-they-find-the-time-45.html" rel="bookmark" title="Where do they find the time?!">Where do they find the time?! </a> <small>The web industry is so fast moving that it's all...</small></li>
<li><a href="https://www.simianenterprises.co.uk/blog/jack-jill-and-hill-of-all-trades-40.html" rel="bookmark" title="Jack, Jill and Hill of all trades.">Jack, Jill and Hill of all trades. </a> <small>Specialising may be essential if you want to get picked...</small></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>I received an email from a client recently, informing me that they have hired someone to redevelop their entire website in php, as they have been informed by their SEO company that ColdFusion is &#8216;bad for search engines&#8217;.</p>
<p>Frankly, I think it&#8217;s astounding that any SEO company could make such an assertion, anyone in the industry would immediately understand just how ridiculous this statement is &#8211; but unfortunaty our clients are not experts and can only make their decisions based on the advice they receive from the people who claim to be. My clients in this case have made an informed choice, based on patently false information&#8230;</p>
<p>So I&#8217;d like to state definitively: <strong>ColdFusion has nothing whatsoever to do with SEO</strong>&#8230; Neither does php, asp, ruby, python, perl, or in fact any back end language at all&#8230;<br />
<span id="more-76"></span><br />
Search engines read the &#8216;mark-up&#8217; of a website, that is to say the HTML that anyone can see by clicking &#8216;view source&#8217; in the browser&#8230; A back end language such as ColdFusion, php or asp, will generate HTML mark-up according to the templates that have been coded by a developer. It is entirely possible for any of these back end languages to generate identical mark-up.<br />
My clients in this case have paid to have their website recoded, but the HTML produced will be exactly the same as their existing website and so their search engine results will be completely unaffected&#8230; In fact, since the file extensions will change on every page, many incoming links will no longer work, so unless their new developer puts 301 redirects in place, they will most likely drop in the rankings.</p>
<p>As a developer working primarily with ColdFusion, it&#8217;s easy to feel angry that my clients have been mislead into believing that the work I have done for them is somehow inferior because of the language used, and indeed if I knew the name of the SEO company involved I would be in contact with them directly to argue the issue as well as naming them here&#8230; But what&#8217;s worrying is that it&#8217;s really the clients that are suffering. Through ignorance of how the Internet works, they have been led down a route that is both costly and futile, by a company that either has no knowledge of their own industry, or even more worrying, is ruthless enough to take advantage of the ignorance of their clients.</p>
<p>I only want what&#8217;s best for the people I work for. I want their sites to work well, to become popular, to generate revenue &#8211; and I try to give the best advice I can to help clients understand what can be<br />
gained from their web presence. I&#8217;m sure we all do&#8230; But in a technical industry such as ours, one that combines so many different disciplines, one that every virtually every business needs to interact<br />
with and yet very few understand, how can we combat misinformation like this?</p>
<p>The average client doesn&#8217;t need or want to understand how the Internet works. Mention CSS, JavaScript, back end software, web standards, etc. to the average client and they will at best, stare at<br />
you blankly&#8230; At worst pretend they know what you&#8217;re talking about when in fact they haven&#8217;t a clue. In my experience, the best clients to work with are those that have enough knowledge of the web to understand that user experience is key, that copy is important, and that their website is an ongoing project. They don&#8217;t need to know the intricacies of code, servers and the like, but they need to trust<br />
us to make certain decisions on their behalf.</p>
<p>Perhaps it&#8217;s time we tried to educate our clients. I don&#8217;t know how much information is out there to explain the basics. Maybe we should have a simple guide explaining how websites are put together that we can give to clients at the beginning of new projects&#8230; Either that or perhaps SEO companies should be licensed and regulated!!!</p>
<p>As I write, I&#8217;m not entirely sure what the point of this post is, but I feel it&#8217;s an issue not generally discussed and I&#8217;d be interested to know what others think. Perhaps the larger agencies don&#8217;t run into<br />
this problem due to their reputation as experts or their tendency to work with bigger clients; but at my level, developing for small companies with little or no online strategy, half the battle is guiding them in the right direction.</p>
<p>So how do we compete with liars???</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://www.simianenterprises.co.uk/blog/the-uncomfortable-truth-about-seo-16.html" rel="bookmark" title="The uncomfortable truth about SEO">The uncomfortable truth about SEO </a> <small>I'm simply amazed that there are still people out there...</small></li>
<li><a href="https://www.simianenterprises.co.uk/blog/where-do-they-find-the-time-45.html" rel="bookmark" title="Where do they find the time?!">Where do they find the time?! </a> <small>The web industry is so fast moving that it's all...</small></li>
<li><a href="https://www.simianenterprises.co.uk/blog/jack-jill-and-hill-of-all-trades-40.html" rel="bookmark" title="Jack, Jill and Hill of all trades.">Jack, Jill and Hill of all trades. </a> <small>Specialising may be essential if you want to get picked...</small></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/combatting-misinformation-in-web-design-76.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Coldfusion, IIS7, Plesk and 401 Authentication</title>
		<link>https://www.simianenterprises.co.uk/blog/coldfusion-iis7-plesk-401-authentication-errors-66.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/coldfusion-iis7-plesk-401-authentication-errors-66.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 18:15:46 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.simianenterprises.co.uk/blog/?p=66</guid>
		<description><![CDATA[Installing CF8 on a Windows 2008 server running Plesk, seems to cause a bit of a headache. I thought I'd share this simple solution.<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
				<content:encoded><![CDATA[<p>While installing Coldfusion 8 on Windows Server 2008, I came across a problem that I simply couldn&#8217;t find an answer for anywhere on the interwebs. Now, some three hours later I&#8217;ve stumbled across the solution and thought I&#8217;d blog about it in an attempt to save others the headache.</p>
<h2>The Problem:</h2>
<p>You have a fresh install of Windows 2008 server running Plesk Control Panel.<br />
You innocently download and install a copy of ColdFusion 8. The installation goes fine and you can access the ColdFusion administrator with no problems&#8230;<br />
However, when you try to access a .cfm page on any other site, you&#8217;re greeted with a login prompt asking for authentication details. You&#8217;ll also find that your Plesk URL does the same thing.<br />
In fact, any page on any site other than the default (which is where your ColdFusion Administrator is installed) is now asking for authentication, and of course returning a 401 error when you are unable to supply the correct login details.<br />
<span id="more-66"></span><br />
<h2>The Solution:</h2>
<p>My best guess about what&#8217;s happening here is that the ColdFusion installation is messing with the IIS handler mappings that have been set up by Plesk. If you don&#8217;t have Plesk installed, you probably won&#8217;t run into this issue.</p>
<p>After what seemed like forever messing around and failing to resolve the problem I found a utility installed with Plesk called &#8216;Plesk Reconfigurator&#8217;.</p>
<p>The reconfigurator offers several options, but the one we&#8217;re after is &#8216;Check Componant and Folder Permissions.</p>
<div id="attachment_68" style="width: 310px" class="wp-caption aligncenter"><img class="size-medium wp-image-68 " title="Plesk Reconfigurator" src="http://www.simianenterprises.co.uk/blog/wp-content/uploads/2009/07/plesk-reconfigurator-300x228.gif" alt="Run this little godsend and select 'Check Component and Folder Permissions'" width="300" height="228" /><p class="wp-caption-text">Run this little godsend and select &#39;Check Component and Folder Permissions&#39;</p></div>
<p>You&#8217;re then presented with a wealth of options, dependant on the software installed on your server. Click the ColdFusion option and away we go!</p>
<div id="attachment_67" style="width: 310px" class="wp-caption aligncenter"><img class="size-medium wp-image-67 " title="Check componant and folder permissions" src="http://www.simianenterprises.co.uk/blog/wp-content/uploads/2009/07/plesk-reconfigurator-coldfusion-300x231.gif" alt="Lo and behold, there's an entry for ColdFusion in here..." width="300" height="231" /><p class="wp-caption-text">Lo and behold, there&#39;s an entry for ColdFusion in here...</p></div>
<p>Running this seems to reconnect the various handler settings and Coldfusion pages now work on other sites, as well as plesk. Hurrah!</p>
<p>And if someone had only written this post sooner, I&#8217;d have saved myself a lot of time. <img src="https://s.w.org/images/core/emoji/72x72/1f609.png" alt="😉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/coldfusion-iis7-plesk-401-authentication-errors-66.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Pixels vs. Ems – my proverbial 2 cents</title>
		<link>https://www.simianenterprises.co.uk/blog/pixels-vs-ems-50.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/pixels-vs-ems-50.html#comments</comments>
		<pubDate>Fri, 19 Jun 2009 01:36:58 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[best practice]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.simianenterprises.co.uk/blog/?p=50</guid>
		<description><![CDATA[As a consciences web developer, I aim to create clean, accessible code using currently accepted best practices. Unfortunately no-one can seem to agree on what those best practices might be, and in any case they keep changing, so it's difficult to keep up.<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
				<content:encoded><![CDATA[<p><strong>A wise man once said: &#8220;A moving target is not so easy to hit&#8221;.<br />
At least, I think that&#8217;s what he said. He was running past me rather quickly at the time.</strong></p>
<p>As a conscientious web developer, I aim to create clean &amp; accessible code, using currently accepted best practices. Unfortunately no-one can seem to agree on what those best practices might be and in any case they keep changing, so it&#8217;s difficult to keep up.</p>
<p><span id="more-50"></span><strong>In the 90&#8217;s<br />
</strong>We all made websites using tables. They allowed for absolute positioning of elements and enabled us to create beautiful websites that looked exactly like the Photoshop mock ups we&#8217;d lovingly crafted. The world rejoiced and everything was fine for a while, until someone told us this was completely wrong.</p>
<p><strong>Then came CSS&#8230;<br />
</strong>Having been informed that actually, we should be separating style from content for a myriad of very good reasons, we all set about forgetting everything we knew about creating websites  and started again from scratch.</p>
<p><strong>But it didn&#8217;t stop there<br />
</strong>Gradually, we came to understand that there are various &#8216;right&#8217; and &#8216;wrong&#8217; ways to build sites even if we&#8217;re using CSS to style our content. Phrases such as &#8216;Semantic Markup&#8217; and &#8216;Progressive Enhancement&#8217; began to emerge and simultaneously excite and terrify.</p>
<p><strong>Accessibility<br />
</strong>Of course, there&#8217;s a genuine reason for all this mucking about behind the scenes &#8211; making our content accessible to the widest possible audience, on any device, under any condition. To that end, we were told that we should be using relative units for our text sizes, (and if the design calls for it, our layout as well) allowing users to zoom in and out at will. Helpful for those with high resolutions, with visual impairments, with small screens. Whatever.</p>
<p><strong>A return to the Old Skool<br />
</strong>Lately however, browser manufacturers have taken it upon themselves to create page zooming functionality that zooms the entire page, regardless of whether relative units have been used.</p>
<p>No sooner have we all got our heads around calculating Ems, and everyone&#8217;s talking about going back to pixels&#8230; because it&#8217;s easier.<br />
Apparently we were only using Ems in the first place, to take advantage of the text zooming functionality of browsers.</p>
<p><strong>I disagree, for a number of reasons<br />
</strong>Ems are relative to the default font size of the browser. This is usually 16 pixels, but many people with visual impairments will have this default set higher. Possibly, they&#8217;ll have set the font size at the operating system level. Some people using high resolutions on small screens will have changed this setting also. I attended <a title="Jon Tan: 80% Science, 20% Art" href="http://huffduffer.com/skillswap/4117">Jon Tan&#8217;s talk on typography</a> a few months back and a member of the audience recounted his experience of using a laptop with the font size increased at the OS level. He was unable to click a button on a high profile website, because at his text size, the button was hidden underneath another element. Clearly if we disregard the possibility of text being resized, if we assume we have total control over the size of text in our layouts, we&#8217;ll come unstuck pretty quickly.</p>
<p>In any case, not everyone is a fan of the new style page zooming. Personally I find that many layouts break fairly quickly using page-zoom, and even if they don&#8217;t, it&#8217;s very quick to display the dreaded horizontal scroll bar. In Firefox, I&#8217;ve set my zooming to &#8216;text only&#8217;. I can&#8217;t be the only one, or the option wouldn&#8217;t be there.</p>
<p>Above all though, I won&#8217;t be changing back to pixel font sizes because Ems are better suited to the job. Pixel sizing may be easier, but a correctly executed complex Em layout gives me a zen-like feeling of satisfaction. I just like being a web-ninja.</p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/pixels-vs-ems-50.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where do they find the time?!</title>
		<link>https://www.simianenterprises.co.uk/blog/where-do-they-find-the-time-45.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/where-do-they-find-the-time-45.html#comments</comments>
		<pubDate>Wed, 22 Apr 2009 10:10:10 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.simianenterprises.co.uk/blog/?p=45</guid>
		<description><![CDATA[The web industry is so fast moving that it's all most of us can do to keep up to date with the latest ideas and techniques, whilst hitting our deadlines for paid projects... So when do people find the time to innovate?<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="https://www.simianenterprises.co.uk/blog/jack-jill-and-hill-of-all-trades-40.html" rel="bookmark" title="Jack, Jill and Hill of all trades.">Jack, Jill and Hill of all trades. </a> <small>Specialising may be essential if you want to get picked...</small></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>I love working in the web industry. As a relatively new technology, only really gaining worldwide popularity in the last decade, the web is an industry that&#8217;s literally inventing itself on a daily basis. There are some astoundingly smart people out there, developing the web, shaping its future and working tirelessly to improve and innovate. What you know today could be outdated tomorrow&#8230; it&#8217;s nothing short of thrilling.</p>
<p>It&#8217;s not hard to see which people are at the forefront, making a difference and shaping the industry. Flick through any web magazine and the same names pop up again and again. These same people are to be found speaking at conferences, advising on panels, writing thought provoking articles on their own blogs and, in a great many cases, writing books to share their expertise with the world.</p>
<p>My question is this: <strong><em>Where do they find the time?!</em></strong><br />
<span id="more-45"></span><br />
The industry is so fast moving that it&#8217;s all most of us can do to keep up to date. Reading through blogs and magazines, digesting the daily onslaught of new ideas and techniques, taking the time to understand new technologies as they emerge, not to mention the ever moving goalposts of &#8216;Best Practice&#8217;&#8230; it&#8217;s a full time job in itself! Surely we&#8217;re supposed to be spending this time working on our projects for paying clients?</p>
<p>Perhaps these people, these industry leaders, perhaps they are so smart that they can digest information in a fraction of the time taken by us &#8216;normal&#8217; human beings. Perhaps they&#8217;re really robots&#8230; it wouldn&#8217;t surprise me. I saw Jeremy Keith&#8217;s talk at <a title="dConstruct web conference" href="http://dconstruct.org">dConstruct</a> last year and I swear at least half of it was in binary.</p>
<p>Maybe these people don&#8217;t <em>need </em>paying clients anymore&#8230; perhaps after you&#8217;ve had a certain amount of articles published on &#8216;<a title="A List Apart" href="http://www.alistapart.com/">A List Apart</a>&#8216;, the internet automatically siphons off fractions of pennies from millions of e-commerce transactions into your bank account each month, allowing you to concentrate your time on R&amp;D&#8230;. It probably kidnaps your kids too, just to make sure you comply. We&#8217;re only months away from Skynet&#8230; Mark my words.</p>
<p>What&#8217;s more likely, I&#8217;d imagine, is that most of these people work alongside other, incredibly intelligent and talented individuals, each with their own specialities and ideas&#8230; and they just bounce ideas off each other. As freelancers, we&#8217;re not often afforded this opportunity, which is why networking is so important. Conferences and social networking events are a great way to meet some very clever people; and twitter makes it easy to stay in touch&#8230;<br />
But that&#8217;s not enough for me, I need a constant influx of information; a subconscious affinity with all things technical. I&#8217;m going to get a job as a cleaner in the offices of some big web agencies so that I can install bugs in their water coolers and pipe the tapes into my bedroom while I sleep.</p>
<p>Not that I ever sleep&#8230; I&#8217;m too busy working.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://www.simianenterprises.co.uk/blog/jack-jill-and-hill-of-all-trades-40.html" rel="bookmark" title="Jack, Jill and Hill of all trades.">Jack, Jill and Hill of all trades. </a> <small>Specialising may be essential if you want to get picked...</small></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/where-do-they-find-the-time-45.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jack, Jill and Hill of all trades.</title>
		<link>https://www.simianenterprises.co.uk/blog/jack-jill-and-hill-of-all-trades-40.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/jack-jill-and-hill-of-all-trades-40.html#comments</comments>
		<pubDate>Wed, 25 Mar 2009 15:31:49 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://www.simianenterprises.co.uk/blog/?p=40</guid>
		<description><![CDATA[Specialising may be essential if you want to get picked up by a large agency, but I think there's still room for the 'Jack of all trades' website creators. We are the small-time heroes of the internet, armed with ideas, passion, experience and vision. We'll exceed all expectations and all will be right with the world.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="https://www.simianenterprises.co.uk/blog/7-copyright-tips-for-your-designs-30.html" rel="bookmark" title="7 copyright tips for your designs">7 copyright tips for your designs </a> <small>Getting our designs and ideas ripped off is a worry...</small></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>When the likes of the Oliver Twins and David Brayben were writing video games in their bedrooms back in the mid-eighties, I&#8217;ll bet they had no idea just how advanced the world of games development was to become. These days a commercial video game takes a team of hundreds, with a budget of millions (which incidentally, is why there are very few original games released these days &#8211; nobody wants to bank roll an unproven idea).</p>
<p>In recent years, the web industry has begun to wander down a similar path. With the scope of the average web project being so much greater than a decade ago, the most successful web agencies are those housing multiple specialists.<br />
These days a web project needs information architecture, copy writing, user experience &amp; interface design, database design and development, back end coding, front end coding, user testing, a dash of marketing and some project management to tie it all together.</p>
<p>So where does this leave the &#8216;Jack of all trades&#8217;? With the recent economic &#8216;apocalypse&#8217;, a lot of people and especially freelancers, are wondering where their next paycheck may be coming from&#8230; How do we weather the storm?<br />
<span id="more-40"></span><br />
In a <a title="Andy Budd on 'How to recession proof your business'" href="http://boagworld.com/podcast/148/#expertT">recent interview</a>, Andy Budd suggested that in today&#8217;s climate we all need to specialise or die. He makes a compelling argument, but I don&#8217;t entirely agree. I think it depends what you&#8217;re looking to achieve.<br />
Sure, specialising in one aspect of the industry is essential if you want to get picked up by a large agency, or if you want to talk on the conference circuit, publish a book or work for one of the big players&#8230; But I think there&#8217;s still room in this industry for the multi-skilled &#8216;website creators&#8217;. Our target market is the small business. Not everyone can afford to hire a big agency and in my experience they wouldn&#8217;t see the value of the investment even if they could.</p>
<p>There are quite literally millions of businesses out there that have no idea how much a good web presence would benefit them. This is where we step in, the small-time heroes of the internet. We come armed with ideas and with passion, with experience and vision. We know that our website project can revolutionise their business. It will generate enquiries, or a new revenue stream. It will save them time and money. It will exceed their expectations and all will be right in the world.</p>
<p>It probably seems over the top, but this is the level of enthusiasm I have at the start of every new project. I think that at this, the smaller end of the scale, we have an opportunity to create things of real value to our clients.</p>
<p>I may never do work for the BBC or Google. I may not invent the next Facebook or be revered amongst my peers as the best in my field&#8230; But I&#8217;ll change the life of Jason, the locksmith who lives around the corner.</p>
<p>That&#8217;s rewarding&#8230; Hell, that&#8217;s <em>exciting</em>&#8230;<br />
When Jason calls to tell me that I&#8217;ve saved him five man-hours a day in admin time with an invoicing system I built him for a few grand&#8230; that&#8217;s the best damned feeling in the world.<br />
It might not make it onto an awards site and be featured in .NET magazine &#8211; but Jason spends more time with his kids and tells all his friends what a wonderful job I&#8217;ve done.</p>
<p>Jason, of course, had no idea this was possible &#8211; he was just looking for a website to advertise his business. He didn&#8217;t have an online strategy or a marketing budget, and he didn&#8217;t invite several high profile web agencies to tender for his business. He asked his friend who&#8217;d created their website and he gave me a call.</p>
<p>There are plenty of Jasons out there.<br />
Find them, make their lives better and get paid for it&#8230; and keep smiling&#8230; life is awesome.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="https://www.simianenterprises.co.uk/blog/7-copyright-tips-for-your-designs-30.html" rel="bookmark" title="7 copyright tips for your designs">7 copyright tips for your designs </a> <small>Getting our designs and ideas ripped off is a worry...</small></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/jack-jill-and-hill-of-all-trades-40.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>7 copyright tips for your designs</title>
		<link>https://www.simianenterprises.co.uk/blog/7-copyright-tips-for-your-designs-30.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/7-copyright-tips-for-your-designs-30.html#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:39:24 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[copyright]]></category>

		<guid isPermaLink="false">http://www.simianenterprises.co.uk/blog/?p=30</guid>
		<description><![CDATA[Getting our designs and ideas ripped off is a worry for anyone in this industry. It happens all the time, but what are we supposed to do about it? I spoke to several law firms and organisations and thought I would share the advice I received.<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
				<content:encoded><![CDATA[<p>Getting our designs and ideas ripped off is a worry for anyone in this industry. It happens all the time, but what are we supposed to do about it?</p>
<p>As you may know, when I&#8217;m not busy making websites, I make <a title="retro t-shirts" href="http://www.retrogt.com">t-shirts inspired by retro video games</a>. Recently some of our designs were shamelessly ripped off by an ex-supplier of ours, who then, (astoundingly) tried to wholesale them back to us!</p>
<p>I spoke to several law firms and organisations and thought I would share the advice I received.<br />
Please note that while I am paraphrasing advice I received, you should in no way assume this information to be legally sound &#8211; I would ALWAYS advise you to speak to a copyright lawyer in these matters. This said, here follows my top copyright tips:<br />
<span id="more-30"></span></p>
<h2>1. Your work is automatically copyrighted</h2>
<p>According to UK copyright law, the act of creating original work automatically gives you copyright over that work for 75 years after your death.<br />
Of course the burden of proof is on you, but assuming you are able to assert yourself as the author of the work (drafts, layered PSDs, etc. should suffice) the law is very much on your side.</p>
<h2>2. Register your work with <abbr title="Anti Copying In Design">A&copy;ID</abbr></h2>
<p><a title="Anti Copying In Design" href="http://acid.eu.com/"><abbr title="Anti Copying In Design">A&copy;ID</abbr></a> &#8211; which stands for &#8216;Anti Copying in Design&#8217; are an organisation set up for individuals and small businesses to copyright their original works. For a moderate yearly fee, you are able to register your work on their database. Essentially all this does is help you assert yourself as the copyright holder. An entry into the <abbr title="Anti Copying In Design">A&copy;ID</abbr> database would look good in court if your case ever got that far. <abbr title="Anti Copying In Design">A&copy;ID</abbr> also has deals with copyright lawyers across the country, which can offer advice and in some cases, discounted litigation.</p>
<h2>3. Even though the law is on your side, you&#8217;ll still have to find the money to litigate</h2>
<p>Litigation is expensive. Lawyers cost a ridiculous amount of money, and you&#8217;ll have to pay them to take anyone to court. In the likely case that you win, whoever copied your work will usually be liable for your legal fees, but you&#8217;ll still have to pay up front and recover the cost later &#8211; which is usually way too expensive.<br />
It&#8217;s not all bad though&#8230;</p>
<h2>4. Write a letter</h2>
<p>Most half-friendly copyright lawyers will write a letter for you for around £75. This is a fairly standard ‘cease and desist&#8217; letter, which notifies of copyright infringement and requests the immediate discontinuation of said infringement. Essentially, you&#8217;re telling company X to stop using your design immediately.</p>
<p>In most cases, this is as far as it goes. A scary looking letter from a lawyer is usually enough to stop most people copying your work. You can try to get some compensation for any items they&#8217;ve sold too, but don&#8217;t hold your breath.<br />
If you can&#8217;t afford to pay the lawyer, there&#8217;s nothing stopping you from sending a strongly worded letter yourself &#8211; it&#8217;s just as valid, but obviously more likely to be ignored. If company X ignores your letter, the next step is expensive litigation.</p>
<h2>5. If you can&#8217;t afford to litigate, let them know that you intend to&#8230; at a later date</h2>
<p>This is the important one. From the moment they receive your first letter notifying them of copyright infringement, they are liable. Send them another letter telling them that you can&#8217;t afford to take them to court right now, but that as soon as you can, you will. Even if you decide to take them to court 10 years down the line, they&#8217;re still liable; and if they kept using your design for those 10 years, they&#8217;ll have to pay for the lot.<br />
Beautiful, that one.</p>
<h2>6. There is more than one way to infringe on copyright</h2>
<p>The act of copying your work is one infringement, but offering it for sale is another infringement in itself. What this means is if your work has been copied by a wholesaler, as mine had, then any customers of theirs that buy from them and offer your work for sale, are also liable &#8211; even if they have no knowledge that the work was yours originally. Again, send them a letter notifying them of copyright infringement. Usually these guys will immediately discontinue the product and send you a letter back.</p>
<p>The idea here isn&#8217;t to get the little guy &#8211; the idea is that they will go back to their suppliers complaining that the product they bought from them was yours&#8230; it&#8217;s a house of cards.</p>
<h2>7. Don&#8217;t lose sleep over it&#8230; Really.</h2>
<p>You can get yourself incredibly worked up over the copyright issue, but the fact remains that you can&#8217;t always stop it from happening. It&#8217;s a harsh world. Do what you can, and get on with your life.</p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/7-copyright-tips-for-your-designs-30.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New site live&#8230; Vertical rhythm FTW!</title>
		<link>https://www.simianenterprises.co.uk/blog/new-site-live-1.html</link>
		<comments>https://www.simianenterprises.co.uk/blog/new-site-live-1.html#comments</comments>
		<pubDate>Fri, 13 Mar 2009 02:48:10 +0000</pubDate>
		<dc:creator><![CDATA[Gary]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://dev.simianenterprises.co.uk/blog/?p=1</guid>
		<description><![CDATA[After many sleepless nights, the new Simian Enterprises site is now live - complete with a lovely new back-end system as well as a *gasp* Wordpress blog!<div class='yarpp-related-rss yarpp-related-none'>

No related posts.
</div>
]]></description>
				<content:encoded><![CDATA[<p>After many sleepless nights, the new Simian Enterprises site is now live &#8211; complete with a lovely new back-end system as well as a *gasp* WordPress blog!</p>
<p>I know as a ColdFusion developer, I should probably be using <a title="Mango Blog" href="http://www.mangoblog.org/">Mango Blog</a> or <a title="Blog CFC" href="http://www.blogcfc.com/">BlogCFC</a> &#8211; Both of which are pretty awesome in their own right &#8211; but at the end of the day WordPress is simply a better tool for the job.<br />
I&#8217;ve heard it said before, but I&#8217;ll chuck my opinion out there too: The new WordPress UI is absolutely fantastic, and I have to say it&#8217;s that more than anything else that made me choose it over the other two.</p>
<p>Of course, integrating WordPress with the rest of my ColdFusion site proved interesting. Several things in the site template are achieved through ColdFusion and had to be replicated in PHP. I ended up writing a CFC to pull data from a WordPress blog, which has proved enormously helpful. If I get the chance, I&#8217;ll clean that up a bit and put it up as a download &#8211; I can&#8217;t be the only one wanting to use WordPress on a ColdFusion powered site.</p>
<p>Props go to Anthony at <a title="Afovea Design Studio" href="http://www.afovea.com">Afovea.com</a> for the lovely new design.<br />
Also, due largely to two fantastic talks by <a title="Jon Tan" href="http://jontangerine.com/">Jon Tan</a> and <a title="Richard Rutter" href="http://clagnut.com/">Richard Rutter</a> at <a title="Skillswap Brighton" href="http://skillswap-brighton.org/">Skillswap Brighton</a>, I have lovingly embraced typography and this site adheres strictly to a vertical rhythm. The math excites me. Really. It&#8217;s actually quite worrying.</p>
<p>That&#8217;s all for now. I&#8217;ve a few articles in the pipeline that I&#8217;ll be posting up here fairly soon. Until then, I&#8217;d love to hear any feedback on the new site.<br />
Use the lovely comments box below.</p>
<p>Awesomage.</p>
<div class='yarpp-related-rss yarpp-related-none'>
<p>No related posts.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.simianenterprises.co.uk/blog/new-site-live-1.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
