<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Fuzzy Outline</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/" />
    <link rel="self" type="application/atom+xml" href="http://www.fuzzyoutline.com/atom.xml" />
   <id>tag:www.fuzzyoutline.com,2009://1</id>
    <link rel="service.post" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1" title="Fuzzy Outline" />
    <updated>2009-12-18T13:55:24Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 3.2</generator>
 
<entry>
    <title>Carousel</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/12/carousel_1.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=39" title="Carousel" />
    <id>tag:www.fuzzyoutline.com,2009://1.39</id>
    
    <published>2009-12-16T16:24:52Z</published>
    <updated>2009-12-18T13:55:24Z</updated>
    
    <summary> $(function() { myCarousel = function() { var scrollContent = $(&quot;div.inner-cont ul&quot;); var pixelShift = 0; var liCount = $(&quot;div.inner-cont ul li&quot;).size(); var marginVal = 158; var rightLink = $(&quot;div.rot-cont a.right&quot;); var leftLink = $(&quot;div.rot-cont a.left&quot;); rightLink.click(function() { var liTotalCount...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
            <category term="Code" />
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
	myCarousel = function() {
	
	 	var scrollContent = $("div.inner-cont ul");
 		var pixelShift = 0;
 		var liCount = $("div.inner-cont ul li").size();
 		var marginVal = 158;
 		var rightLink = $("div.rot-cont a.right");
 		var leftLink = $("div.rot-cont a.left");

 		rightLink.click(function() {
 			var liTotalCount = 0 - liCount * marginVal;
 			var stopCount = liTotalCount + marginVal;
 			if (pixelShift != stopCount) {
 				pixelShift = pixelShift - marginVal;
 				scrollContent.animate({'left': pixelShift + 'px'}, 'slow');
 				return false;
 			}
 			else {
 				return false;
 			}
 		});

 		leftLink.click(function(event) {
 			if (pixelShift != 0) {
 				pixelShift = pixelShift + marginVal;
 				scrollContent.animate({'left': pixelShift + 'px'}, 'slow');
 				return false;
 			}
 			else {
 				return false;
 			}
 		});
	}
	
	myCarousel();	

 });
</script>

<style type="text/css">
div.rot-cont {
	-moz-border-radius-bottomleft:8px;
	-moz-border-radius-bottomright:8px;
	-moz-border-radius-topleft:8px;
	-moz-border-radius-topright:8px;
	background: #ddd;
	border: 1px solid #aaa;
	height: 150px;
	margin-bottom: 30px;
	width: 180px;
}

div.rot-cont div.inner-cont {
	background: #fff;
	border: 1px solid #bbb;
	height: 100px;
	margin: 10px;
	overflow: hidden;
	position: relative;
	width: 158px;
}

div.rot-cont a.left {
	float: left;
	margin-left: 10px;
}

div.rot-cont a.right {
	float: right;
	margin-right: 10px;
}

div.rot-cont div.inner-cont ul {
	list-style: none;
	position: absolute;
	padding: 0px;
	margin: 0px;
	width: 10000px;
}

div.rot-cont div.inner-cont ul li {
	background: #980311;
	color: #fff;
	float: left;
	font-size:3em;
	height: 70px;
	margin: 10px;
	padding-top: 10px;
	text-align: center;
	width: 138px;
}

pre {
	background: #ddd;
	color: #000;
	font-size: 1.1em;
	overflow: scroll;
}

</style>

<p>Here is a little javascript/jQuery carousel I knocked up this morning. <a href="http://www.webstandardsdesign.co.uk/Jquery/">It's an extension of something I put together for a recent project, seen here in dev form</a>. Today I put the functionality in to stop the click function at the beginning and the of the list of carousel items. I thought I'd note it down here.</p>

<div class="rot-cont">
	<div class="inner-cont">
		<ul>
			<li>One</li>
			<li>Two</li>
			<li>Three</li>
			<li>Four</li>
			<li>Five</li>
			<li>Six</li>
			<li>Seven</li>
			<li>Eight</li>
			<!-- <li>Nine</li>
			<li>Ten</li> -->
		</ul>
	</div>
	<a href="#" class="left">Count down</a><a href="#" class="right">Count up</a>
</div>
Source of the javascript:
<pre>
1  $(function() {
2	
3  myCarousel = function() {
4		
5 	var scrollContent = $("div.inner-cont ul"); <span style="background: #555; color: yellow">//the content to be scrolled</span>
6	var pixelShift = 0;
7	var liCount = $("div.inner-cont ul li").size();<span style="background: #555; color: yellow"> //count the number of list items</span>
8	var marginVal = 158;
9	var rightLink = $("div.rot-cont a.right");
10	var leftLink = $("div.rot-cont a.left");
11
12	rightLink.click(function() {
13		var liTotalCount = 0 - liCount * marginVal; <span style="background: #555; color: yellow">//total length in pixels, in this case 158 x the number of list items, subtracted from zero, this is to store the variable as a number not a string</span>
14		var stopCount = liTotalCount + marginVal; <span style="background: #555; color: yellow">//add one width to the total, so that we stop on the last list item</span>
15		if (pixelShift != stopCount) {
16			pixelShift = pixelShift - marginVal; <span style="background: #555; color: yellow">//shift by 158px on every click</span>
17			scrollContent.animate({'left': pixelShift + 'px'}, 'slow'); <span style="background: #555; color: yellow">//animate the shift</span>
18			return false; <span style="background: #555; color: yellow">//disable the anchor</span>
19		}
20		else {
21			return false; <span style="background: #555; color: yellow">//else (we're at the end), disable the anchor and do nothing</span>
22		}
23	});
24
25	leftLink.click(function(event) { <span style="background: #555; color: yellow">//same again, but for the count down link</span>
26		if (pixelShift != 0) {
27			pixelShift = pixelShift + marginVal;
28			scrollContent.animate({'left': pixelShift + 'px'}, 'slow');
29			return false;
30		}
31		else {
32			return false;
33		}
34	});
35 }
36	
37 myCarousel();
38
39 });
</pre>

<p>It uses a variable (marginVal) for the list item width in pixels (this should match the width in the CSS), so ultimately it can have as many or as few list items to scroll through as you like.</p>

<p>I can't be bothered to pick it apart any further, the comments should explain enough, and <a href="http://www.fuzzyoutline.com/2009/12/carousel_1.html">view the source of the post to see the HTML/CSS</a> but feel free to <a href="http://www.fuzzyoutline.com/contact.php">drop me a line if you have any questions or comments</a>.</p>

]]>
        
    </content>
</entry>
<entry>
    <title>Colour</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/12/colour.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=38" title="Colour" />
    <id>tag:www.fuzzyoutline.com,2009://1.38</id>
    
    <published>2009-12-11T09:06:18Z</published>
    <updated>2009-12-11T09:07:03Z</updated>
    
    <summary>So, I&apos;ve had a tweak of the design......</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
            <category term="Design" />
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>So, I've had a tweak of the design...</p>]]>
        
    </content>
</entry>
<entry>
    <title>Game</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/10/game.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=37" title="Game" />
    <id>tag:www.fuzzyoutline.com,2009://1.37</id>
    
    <published>2009-10-26T14:13:13Z</published>
    <updated>2009-10-26T14:14:39Z</updated>
    
    <summary>The new Game and Gamestation websites went live last week. Another successful project completed....</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
            <category term="Design" />
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>The new <a href="http://www.game.co.uk">Game</a> and <a href="http://www.gamestation.co.uk">Gamestation</a> websites went live last week. Another successful project completed.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Food</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/06/food.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=34" title="Food" />
    <id>tag:www.fuzzyoutline.com,2009://1.34</id>
    
    <published>2009-06-24T14:05:59Z</published>
    <updated>2009-06-24T14:08:42Z</updated>
    
    <summary>The UKTV Food website launched on monday, it was my last project while working with them at their offices on Great Portland Street. I miss working there, it&apos;s a great company that is bucking the trend in today&apos;s market and...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
            <category term="Design" />
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>The <a href="http://uktv.co.uk/food">UKTV Food website</a> launched on monday, it was my last project while working with them at their offices on Great Portland Street. I miss working there, it's a great company that is bucking the trend in today's market and really going for it with some amazing and creative projects.</p>

<p>There are some lovely recipes on there too!</p>]]>
        
    </content>
</entry>
<entry>
    <title>#westhamwednesday</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/06/westhamwednesday.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=33" title="#westhamwednesday" />
    <id>tag:www.fuzzyoutline.com,2009://1.33</id>
    
    <published>2009-06-03T21:59:59Z</published>
    <updated>2009-06-03T22:04:10Z</updated>
    
    <summary></summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
            <category term="Design" />
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p><a href="http://www.webstandardsdesign.co.uk/westhamwednesday"><img src="/images/whw.png" width="480" height="80" /></a></p>]]>
        
    </content>
</entry>
<entry>
    <title>Wallpaper</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/05/wallpaper.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=32" title="Wallpaper" />
    <id>tag:www.fuzzyoutline.com,2009://1.32</id>
    
    <published>2009-05-11T09:40:36Z</published>
    <updated>2009-05-20T21:28:54Z</updated>
    
    <summary>iPhone wallpaper: To save the image, Windows users - right click &gt; Save as, and Mac users - right click &gt; Save image as......</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>iPhone wallpaper:</p>

<p><img src="/images/west-ham.jpg" width="320" height="480" alt="West Ham iphone wallpaper" style="margin: 0 0 0 80px" /></p>

<p>To save the image, Windows users - right click > Save as, and Mac users - right click > Save image as...</p>]]>
        
    </content>
</entry>
<entry>
    <title>#cv140</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/04/cv140.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=31" title="#cv140" />
    <id>tag:www.fuzzyoutline.com,2009://1.31</id>
    
    <published>2009-04-22T19:29:35Z</published>
    <updated>2009-04-23T23:01:00Z</updated>
    
    <summary>Last night on Twitter Andy, (@Andyqsmith) wondered if it was possible to condense your resume down to 140 characters. Here is my attempt: Ed: BA Hons Design/12yrs exp web dev. Prev: Dell/Tesco/Arcadia/UKTV. Skills: XHTML/CSS/UI. Folio: http://www.fuzzyoutline.com/folio.html I&apos;m not sure it&apos;s...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>Last night on Twitter Andy, (<a href="http://www.twitter.com/Andyqsmith">@Andyqsmith</a>) wondered if it was possible to condense your resume down to 140 characters. </p>

<p>Here is my attempt: </p>

<p><kbd>Ed: BA Hons Design/12yrs exp web dev. Prev: Dell/Tesco/Arcadia/UKTV. Skills: XHTML/CSS/UI. Folio: http://www.fuzzyoutline.com/folio.html</kbd></p>

<p>I'm not sure it's <em>that</em> good to be honest, there were certainly better examples last night but I intend to work on it some more. And the general consensus last night was that it was cheating to have my URL in the Tweet, but I think that because my job is wholly internet based I can get away with it. I've also left 3 spaces at the end of my #cv140, it's only 137 characters long, so it can be re-tweeted with just <strong>RT:</strong></p>

<p>Get over to Twitter Search and enter the hashtag <a href="http://search.twitter.com/search?q=%23cv140">#cv140</a> and have a go.</p>

<p>Update: here are a couple of the other #cv140's:</p>

<p>@Andyqsmith: <br />
<kbd>#cv140 PeopleManager/Motivator,RunProjects,Unusual/Innovative fixes for Tech/NonTech challenges,Big picture thinker,Any industry,I'mgdbuyme</kbd></p>

<p>@emmey<br />
<kbd>#cv140 System coordinator, degree educated, pc & communications skills seeking to excel in software application management. Refs on request.</kbd></p>]]>
        
    </content>
</entry>
<entry>
    <title>Drupal</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/04/drupal.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=30" title="Drupal" />
    <id>tag:www.fuzzyoutline.com,2009://1.30</id>
    
    <published>2009-04-22T09:15:43Z</published>
    <updated>2009-04-22T09:16:48Z</updated>
    
    <summary>I&apos;ve downloaded Drupal 6.10 for investigative purposes and have been impressed by the ease of installation. After unpacking and configuring MAMP, I simply ran the install.php file and I was up and running in minutes, very straightforward. So far I&apos;ve...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>I've downloaded <a href="http://drupal.org/drupal-6.10">Drupal 6.10</a> for investigative purposes and have been impressed by the ease of installation.</p>

<p>After unpacking and configuring <a href="http://www.mamp.info/">MAMP</a>, I simply ran the install.php file and I was up and running in minutes, very straightforward. So far I've been digging around in the markup mostly, but have also taken a quick look at the user rights and privileges and also at a few of the themes to see how they're put together. </p>

<p>I also like the abstract way that the modules seem to be used and re-used around the site. I've only scratched the surface here, but am looking forward to looking into it further.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Creative</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/04/creative.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=29" title="Creative" />
    <id>tag:www.fuzzyoutline.com,2009://1.29</id>
    
    <published>2009-04-02T21:16:04Z</published>
    <updated>2009-04-02T21:20:58Z</updated>
    
    <summary> I was feeling a little creative, so I put this together from a tutorial on a design site. I might build on the idea and put a new design together for my Web Standards Design site, but I also...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
            <category term="Design" />
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p><img src="/webstandardsdesign-design.jpg" width="482" height="251" alt="Web Standards Design idea" /></p>

<p>I was feeling a little creative, so I put this together from a <a href="http://webdesignledger.com/tutorials/14-most-impressive-photoshop-typography-effects">tutorial on a design site</a>.</p>

<p>I might build on the idea and put a new design together for my <a href="http://www.webstandardsdesign.co.uk">Web Standards Design</a> site, but I also might not. </p>

<p>As you were.</p>]]>
        
    </content>
</entry>
<entry>
    <title>Vegas</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/03/vegas.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=28" title="Vegas" />
    <id>tag:www.fuzzyoutline.com,2009://1.28</id>
    
    <published>2009-03-20T09:44:23Z</published>
    <updated>2009-03-20T09:45:08Z</updated>
    
    <summary>And here is the street view of the Las Vegas wedding chapel that we got married in, nearly 5 years ago now! View Larger Map...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>And here is the street view of the Las Vegas wedding chapel that we got married in, nearly 5 years ago now!</p>

<p><iframe width="425" height="240" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.uk/maps/sv?cbp=12,80.51030639002066,,0,-7.955854126679464&amp;cbll=36.15637,-115.14901&amp;panoid=&amp;v=1&amp;hl=en&amp;gl=uk"></iframe><br /><small><a href="http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;q=1205+Las+Vegas+Blvd+S,+Las+Vegas,+Clark,+Nevada+89104,+United+States&amp;sll=36.176094,-115.136236&amp;sspn=0.006331,0.011179&amp;ie=UTF8&amp;cd=1&amp;geocode=FYS0JwIdw_ci-Q&amp;split=0&amp;ll=36.166775,-115.144615&amp;spn=0.000818,0.001397&amp;t=h&amp;z=14&amp;iwloc=addr&amp;layer=c&amp;cbll=36.15637,-115.14901&amp;panoid=KgUCpiWSlvVuvEOjsYbzgw&amp;cbp=12,80.51030639002066,,0,-7.955854126679464" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>]]>
        
    </content>
</entry>
<entry>
    <title>Clearwater Beach</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/03/clearwater_beach.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=27" title="Clearwater Beach" />
    <id>tag:www.fuzzyoutline.com,2009://1.27</id>
    
    <published>2009-03-20T09:27:14Z</published>
    <updated>2009-03-20T09:28:22Z</updated>
    
    <summary>Another hostel from the Florida leg of our travels, down in Clearwater Beach, Florida. View Larger Map...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>Another hostel from the Florida leg of our travels, down in Clearwater Beach, Florida.</p>

<p><iframe width="425" height="240" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.uk/maps/sv?cbp=12,257.9821800376754,,0,-0.5278310940499048&amp;cbll=27.98604,-82.824218&amp;panoid=&amp;v=1&amp;hl=en&amp;gl=uk"></iframe><br /><small><a href="http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=606+Bay+Esplanade,+Clearwater,+FL+33767,+USA&amp;sll=28.545744,-81.369862&amp;sspn=0.000861,0.001397&amp;ie=UTF8&amp;ll=27.997206,-82.820005&amp;spn=0.001788,0.002795&amp;t=h&amp;z=14&amp;iwloc=addr&amp;layer=c&amp;cbll=27.98604,-82.824218&amp;panoid=yDgcZTXtapgaJ89cXNeYxw&amp;cbp=12,257.9821800376754,,0,-0.5278310940499048" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>]]>
        
    </content>
</entry>
<entry>
    <title>Orlando</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/03/orlando.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=26" title="Orlando" />
    <id>tag:www.fuzzyoutline.com,2009://1.26</id>
    
    <published>2009-03-20T09:24:15Z</published>
    <updated>2009-03-20T09:25:43Z</updated>
    
    <summary>I&apos;ve been looking at this a while, but it&apos;s about time I logged it all somewhere... This is (or was) a hostel back in &apos;94, and Paula and I stayed there with our Aussie travel mates during the Florida leg...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>I've been looking at this a while, but it's about time I logged it all somewhere...</p>

<p>This is (or was) a hostel back in '94, and Paula and I stayed there with our Aussie travel mates during the Florida leg of our travels.</p>

<p><iframe width="425" height="240" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.co.uk/maps/sv?cbp=12,133.1531436874732,,0,-3.8099808061420353&amp;cbll=28.545744,-81.369933&amp;panoid=&amp;v=1&amp;hl=en&amp;gl=uk"></iframe><br /><small><a href="http://maps.google.co.uk/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=orlando&amp;sll=27.985955,-82.824206&amp;sspn=0.001788,0.002795&amp;ie=UTF8&amp;ll=28.562813,-81.360197&amp;spn=0.000861,0.001397&amp;t=h&amp;z=14&amp;iwloc=addr&amp;layer=c&amp;cbll=28.545744,-81.369933&amp;panoid=RzRglZKyWGDNEfe4eaQctg&amp;cbp=12,133.1531436874732,,0,-3.8099808061420353" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>]]>
        
    </content>
</entry>
<entry>
    <title>Widget</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/03/widget.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=25" title="Widget" />
    <id>tag:www.fuzzyoutline.com,2009://1.25</id>
    
    <published>2009-03-13T10:14:03Z</published>
    <updated>2009-03-13T10:23:47Z</updated>
    
    <summary>I&apos;ve been having some trouble getting a Mac Dashboard widget I&apos;ve been working on to install. It turns out that you need to have an image of the entire Widget saved as Default.png in the package. This image is shown...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
            <category term="Mac" />
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>I've been having some trouble getting a Mac Dashboard widget I've been working on to install.</p>

<p>It turns out that you need to have an image of the entire Widget saved as Default.png in the package. This image is shown if your widget is taking time to load. In the <a href="http://developer.apple.com/macosx/Dashboard.html">Widget Development Documentation</a> it seems to fail to tell you this one small point and I <a href="http://www.neuroticgeeks.com/archives/51">had to find it elsewhere</a>.</p>

<p>Anyway, I've got the basic prototype working, and I would upload it here for all to look at, but it seems as though Movable Type disagrees with the .wdgt file extension...</p>]]>
        
    </content>
</entry>
<entry>
    <title>Frameworks</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/03/frameworks.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=24" title="Frameworks" />
    <id>tag:www.fuzzyoutline.com,2009://1.24</id>
    
    <published>2009-03-03T14:40:15Z</published>
    <updated>2009-03-03T14:45:21Z</updated>
    
    <summary>There are a whole host of CSS frameworks available these days, I thought I&apos;d list some of the more popular ones: The 960 Grid System Blueprint CSS YUI Grids Typogridphy...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>There are a whole host of CSS frameworks available these days, I thought I'd list some of the more popular ones:</p>

<ul>
	<li><a href="http://960.gs/">The 960 Grid System</a></li>
	<li><a href="http://www.blueprintcss.org/">Blueprint CSS</a></li>
	<li><a href="http://developer.yahoo.com/yui/grids/">YUI Grids</a></li>
	<li><a href="http://csswizardry.com/typogridphy/">Typogridphy</a></li>
</ul>]]>
        
    </content>
</entry>
<entry>
    <title>SVN</title>
    <link rel="alternate" type="text/html" href="http://www.fuzzyoutline.com/2009/01/svn.html" />
    <link rel="service.edit" type="application/atom+xml" href="http://www.fuzzyoutline.com/cgi-bin/mt/mt-atom.cgi/weblog/blog_id=1/entry_id=23" title="SVN" />
    <id>tag:www.fuzzyoutline.com,2009://1.23</id>
    
    <published>2009-01-31T15:59:17Z</published>
    <updated>2009-01-31T16:04:44Z</updated>
    
    <summary>I&apos;m using Google Code for an online SVN repository. It&apos;s pretty flexible, and although there are plenty of free repositories out there I thought that Google&apos;s simplicity was a winner. It&apos;s great to have peace of mind that code updates...</summary>
    <author>
        <name>Paul Brownsmith</name>
        
    </author>
    
    <content type="html" xml:lang="en" xml:base="http://www.fuzzyoutline.com/">
        <![CDATA[<p>I'm using <a href="http://code.google.com">Google Code</a> for an online <a href="http://subversion.tigris.org/">SVN</a> repository. It's pretty flexible, and although there are plenty of free repositories out there I thought that Google's simplicity was a winner.</p>

<p>It's great to have peace of mind that code updates are stored remotely, so clients code is backed up safely. It's also very useful for projects with more than one developer working on the same code at the same time using Subversions usual tools.<br />
</p>]]>
        
    </content>
</entry>

</feed> 

