<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>A Blog for Web People</title>
	<link>http://www.pat-burt.com</link>
	<description>Patrick Burt</description>
	<pubDate>Wed, 31 Dec 2008 22:21:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Auto-Generating ALT Tags with Dreamweaver</title>
		<link>http://www.pat-burt.com/web-development/auto-generating-alt-tags-with-dreamweaver/</link>
		<comments>http://www.pat-burt.com/web-development/auto-generating-alt-tags-with-dreamweaver/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 15:11:03 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/web-development/auto-generating-alt-tags-with-dreamweaver/</guid>
		<description><![CDATA[What I had on my hands were a bunch of HTML files. Each of these HTML files had pictures, and I&#8217;m damn sure a lot of them didn&#8217;t have ALT tags, something essential for accessibility (and also helps with SEO). Using Adobe Dreamweaver (and possibly Macromedia versions of Dreamweaver), you can do searches and find [...]]]></description>
			<content:encoded><![CDATA[<p>What I had on my hands were a bunch of HTML files. Each of these HTML files had pictures, and I&#8217;m damn sure a lot of them didn&#8217;t have ALT tags, something essential for accessibility (and also helps with SEO). Using Adobe Dreamweaver (and possibly Macromedia versions of Dreamweaver), you can do <strong>searches</strong> and <strong>find and replaces</strong> with <strong>regular expression</strong> (regex). What you do is throw open Dreamweaver, hit Ctrl-F. At the bottom of the search window, there&#8217;s a checkbox for <em>Use regular expression</em>, check that and we&#8217;re ready to go.</p>
<h2>Finding Images Without Alt Tags</h2>
<p>I did some internet sleuthing and found the following code to search for images without ALT tags:</p>
<p><em>&lt;img((?:(?!alt)[^&lt;&gt;])*)&gt;</em></p>
<p>What it does is search for &#8220;&lt;img&#8221;, and then the next &#8220;&gt;&#8221; that occurs, hopefully the end of your image tag. it then checks for the phrase &#8220;alt&#8221; anywhere in there to find an alt tag. The downside, is that if you&#8217;re image HTML looks like this:</p>
<p><em>&lt;img src=&#8221;malt.jpg&#8221; /&gt;</em></p>
<p>Dreamweaver won&#8217;t pick up on it. That&#8217;s something I&#8217;ll look into if I revise the code, but I wasn&#8217;t working on a beer website so I didn&#8217;t think it was going to be a problem.</p>
<h2>Auto-Generating ALT Tags</h2>
<p>Because it&#8217;s impossible to give an accurate description of each of the 400 images without consuming a lot of time, what we&#8217;re going to do is base the ALT tag on the file name.</p>
<p>Here is the FIND field:<br />
<em>&lt;img src=&#8221;(.*?)(.gif|.jpg|.jpeg|.png|.GIF|.JPG|.JPEG|.PNG)((?:(?!alt)[^&lt;&gt;])*)&gt;</em></p>
<p>Here is the REPLACE WITH field:<br />
<em>&lt;img src=&#8221;$1$2&#8243; alt=&#8221;$1$3&gt;</em></p>
<p>What&#8217;s happening here? You&#8217;ll seethat we&#8217;re checking for the existence of the &#8220;alt&#8221; tag once again, but we&#8217;re also breaking down the image tag down. Each section to be broken down is within parentheses. The first chunk is the image&#8217;s source, then the image&#8217;s extension and then the last chunk before the end (that doesn&#8217;t contain an alt tag). For example:</p>
<p><em>&lt;img src=&#8221;myDogShelby.jpg&#8221; border=&#8221;0&#8243; height=&#8221;300&#8243; /&gt;</em><br />
becomes<br />
<em><strong>&lt;img src=&#8221;</strong>||||PART 1: <strong>myDogShelby</strong>||||PART 2: <strong>.jpg</strong>||||PART 3:<strong>  border=&#8221;0&#8243; height=&#8221;300&#8243; /</strong>||||<strong>&gt;</strong></em></p>
<p>Then what we&#8217;re doing is reconstructing the image link as follows:</p>
<p><em>&lt;img src=&#8221;myDogShelby.jpg&#8221; alt=&#8221;myDogShelby&#8221;  </em><em>  border=&#8221;0&#8243; height=&#8221;300&#8243; /&gt;</em></p>
<p>Simple? I thought so.</p>
<h2>Finishing Touches</h2>
<p>What happens when using this technique is that you&#8217;re also throwing the path into the ALT tag:</p>
<p><em>&lt;img src=&#8221;images/shelby.jpg&#8221; /&gt;</em><br />
becomes<br />
<em>&lt;img src=&#8221;images/shelby.jpg&#8221; alt=&#8221;images/shelby.jpg&#8221; /&gt;</em></p>
<p>This is an easy fix, simply do a global search and replace. Replace:</p>
<p><em>alt=&#8221;images/</em><br />
with<br />
<em>alt=&#8221;</em></p>
<p>Easy peasy, japaneasy. This is pretty straight-forward, hope that helps and saves you oodles of time.</p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fweb-development%2Fauto-generating-alt-tags-with-dreamweaver%2F&amp;title=Auto-Generating+ALT+Tags+with+Dreamweaver"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/web-development/auto-generating-alt-tags-with-dreamweaver/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Graphic Design and the Economy - An Interview</title>
		<link>http://www.pat-burt.com/general-web/graphic-design-and-the-economy-an-interview/</link>
		<comments>http://www.pat-burt.com/general-web/graphic-design-and-the-economy-an-interview/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 03:06:21 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[General Web]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/uncategorized/graphic-design-and-the-economy-an-interview/</guid>
		<description><![CDATA[Rob Brown recently threw me a few questions on Graphic Design and how it&#8217;s being affected by the downturn in the economy. Here&#8217;s what i had to say.
 
RB  What is your job in the industry?
I work as a Web Developer/Designer for an ad agency in Canada&#8217;s capital. I also do freelance. 
RB  How long [...]]]></description>
			<content:encoded><![CDATA[<p><a href="mailto:rbgd@live.co.uk">Rob Brown</a> recently threw me a few questions on Graphic Design and how it&#8217;s being affected by the downturn in the economy. Here&#8217;s what i had to say.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script></p>
<p><strong>RB  </strong>What is your job in the industry?</p>
<p><em>I work as a Web Developer/Designer for an ad agency in Canada&#8217;s capital. I also do freelance. </em></p>
<p><strong>RB  </strong>How long have you been in your current role?</p>
<p><em>I&#8217;ve been doing freelance for over 5 years and have been with the ad agency for almost 2 years.<br />
</em></p>
<p><strong>RB  </strong>How has the credit crunch affected your profession?</p>
<p><em>The credit crunch doesn&#8217;t seem to have impacted the work we&#8217;re receiving at the agency. The pipeline of work seems about the same as last year at about this time. I&#8217;ve spoken with some other freelancers and they were looking to move to more full-time positions because &#8220;recession&#8221; is a pretty big word when you depend on contracts to pay your rent. </em></p>
<p><strong>RB  </strong>Has there been a noticeable difference in business compared to last year?</p>
<p><em>The freelance work has been a tad slower, not sure if I can actually attribute that to the credit crunch at all. Work at the ad agency doesn&#8217;t seem to have changed at all.</em></p>
<p><strong>Thanks for the quick questions, Rob. </strong></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fgeneral-web%2Fgraphic-design-and-the-economy-an-interview%2F&amp;title=Graphic+Design+and+the+Economy+-+An+Interview"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/general-web/graphic-design-and-the-economy-an-interview/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Interviewed By An Upcoming Graphic Designer</title>
		<link>http://www.pat-burt.com/general-web/interviewed-by-an-upcoming-graphic-designer/</link>
		<comments>http://www.pat-burt.com/general-web/interviewed-by-an-upcoming-graphic-designer/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 01:35:20 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[General Web]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/general-web/interviewed-by-an-upcoming-graphic-designer/</guid>
		<description><![CDATA[I was contacted by an up and coming Graphic Designer, Luke Cosgrove, to get interviewed about what it is that I do. I thought he asked particularly good questions and it does share quite a bit of background information about me. What a great fit for this blog.
 
LC Is this what you wanted to [...]]]></description>
			<content:encoded><![CDATA[<p>I was contacted by an up and coming Graphic Designer, <a href="mailto:lukecosy_13@hotmail.com" title="Luke Cosgrove">Luke Cosgrove</a>, to get interviewed about what it is that I do. I thought he asked particularly good questions and it does share quite a bit of background information about me. What a great fit for this blog.</p>
<p><script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script></p>
<p><strong>LC</strong> Is this what you wanted to be &#8220;when you grew up&#8221;? If not, how old where you when you decided to pursue this career?</p>
<p><em>When I was younger, my career selections for what I wanted to be when I grew up were based on some iffier motives such as salary instead of better motives, such as actually enjoying what it is that I wanted to do. I was 17 when I came to the decision that I wanted to be a Graphic Designer.</em></p>
<p><strong>LC</strong> What did you do before you were into graphic design (hobbies/interests/jobs)?</p>
<p><em>I did a lot of work on my computer in my spare time. I designed websites, did 3D modelling and put together graphics. Didn&#8217;t dabble all that much in competitive sports, but played them quite a bit casually. Previous to jumping into the Graphic Design field, I was a camp counsellor; it certainly teaches you a lot about interpersonal skills. If you can communicate with children, irrational clients aren&#8217;t that much far off. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p><strong>LC</strong> What steps did you go through to get where you are today?  (schooling, grasped opportunities etc..)</p>
<p><em>I&#8217;ve gotten to where I&#8217;m at now by applying myself when in the Graphic Design program at our local college. Applying myself goes above and beyond meeting the assignment&#8217;s basic requirements, but instead, making an effort to do the best you can. I surrounded myself with people who were ready to criticize my work, and that made improved me and that specific project. Maintaining deadlines with clients, pumping out good work and establishing strong client relationships are essential to excelling in the field of Graphic Design. All of these build your reputation. In the service industry, this is crucial.</em></p>
<p><strong>LC</strong>  Did you work for other people before you owned your own design company?  If so, for how long?</p>
<p><em>I do a lot of freelance and have worked at an full-service advertising agency. Technically, I&#8217;m always working for someone. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> I&#8217;ve been doing freelance for approximately 4 years and have been working in an ad agency environment for one and a half.</em></p>
<p><strong>LC</strong>  Have you always been an artist of sorts?</p>
<p><em>Always. But it wasn&#8217;t until I was older that I decided that this core talent could be applied to my career focus.</em></p>
<p><strong>LC</strong>  Did you have mentors that helped you get where you are today?  If so, do they still help you?</p>
<p><em>Yes on both accounts. I have many strong mentors in my life that help me develop my talent, get me out of some jams and give me sound business and career advice. I would not be where I am right now without them and I certainly won&#8217;t be where I will be in 5 years without them.</em></p>
<p><strong>LC</strong>  What does you current job entail ( a day at the office)?  How many hours a day/week do you work on average?</p>
<p><em>I work 40 hours a week at an advertising agency, and approximately, 20 additional hours freelance. The projects I work on are different, but similar, but I do about the same at both. That would include: website design, web development, electronic production (movies, web banners), Flash, etc. The graphic design program where I studied gave us a good taste of a variety of fields including illustration and print. It was my preference to take the more web-oriented route because it has always been my passion.</em></p>
<p><strong>LC</strong> Do you love what you are doing  and why?</p>
<p><em>Absolutely. It was a hobby to start off with and I certainly can&#8217;t refuse to be paid for something I enjoy. I love what I&#8217;m doing because the projects are always different, every day, there&#8217;s an opportunity to expand your skillset, work for a client without boundaries, work in a new medium or work with new people. Your job always changes and it&#8217;s always refreshing.</em></p>
<p><strong>LC</strong>  Is this what you plan to do until you retire  or do you have bigger future plans?</p>
<p><em>I plan on always keeping my fingers in the Graphic Design pie because I have a feeling it&#8217;ll always be a passion. I can&#8217;t imagine myself not being fascinated by the creativity of others in commercial art.</em></p>
<p><strong>LC</strong> Do you ever get stressed out? What do you do to cope with the stress?</p>
<p><em>Stressful events pop up every now and then. Usually I&#8217;d take a walk or lie down and sort through what&#8217;s giving me issues. In my experiences, it&#8217;s not best to handle stress while staring at your inbox and the soothing glow from your computer screens. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p><strong>LC</strong> What steps do you take to balance your life? ie: excercise, love/relationships, work, fun</p>
<p><em>Ultimately, as work starts to pile up, it&#8217;ll start being a balancing exercise to maintain everything at levels you would like them to be. It&#8217;s key to establish how much weight you place on each aspect of your life before problems arise so you don&#8217;t end up with broken promises or disappointed people in any of those aspects.</em></p>
<p><strong>LC</strong> Do you try and practice the 7 habits?</p>
<p><em>I&#8217;m not quite what the 7 habits are, but I&#8217;m sure they&#8217;ve popped up in previous answers. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p><strong>LC</strong> Do your hobbies relate to your job?</p>
<p><em>Between freelance and working at an ad agency, the time I do have left for hobbies are not graphic design related. (Apart from the people you do the hobbies with of course, you do make a lot of friends along the way.)</em></p>
<p><strong>LC</strong>  What makes you happy in life? Is this helping make you happy in life?</p>
<p><em>That&#8217;s certainly a loaded question, but I&#8217;ll keep it relevant to the topic at hand so you don&#8217;t end up with an essay on my childhood dreams, interpersonal relationships and favorite types of food. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Being content with what I do for a living is right up there on a list of goals to consider my life a happy one.</em></p>
<p><strong>LC</strong>  Is there anything you would do over again if you had the chance to better where you are at this point in your life?</p>
<p><em>Luke, I&#8217;m not one to live with regrets. I&#8217;m afraid I don&#8217;t even have an answer to this question. Everything I&#8217;ve been through, good and bad, has helped, in some way or another, to get me to where I am.</em></p>
<p><strong>LC</strong>  Do you have any advice for me as I&#8217;m coming up?  Anything to look out for?  Ways to better myself for success?</p>
<p><em>When people are trying to avoid paying their bills or use you for your services, standing your ground is more important than your reputation. Your reputation only matters with good, honest, loyal people. Don&#8217;t work for free, if someone asks you to work for free, tell them to come dry wall your basement for free and see how they react.<br />
Love what you do, make an effort to improve.</em></p>
<p><strong>Thanks a lot, Luke. It was fun.  </strong></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fgeneral-web%2Finterviewed-by-an-upcoming-graphic-designer%2F&amp;title=Interviewed+By+An+Upcoming+Graphic+Designer"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/general-web/interviewed-by-an-upcoming-graphic-designer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some Suggestions for Writer&#8217;s Block</title>
		<link>http://www.pat-burt.com/general-web/some-suggestions-for-writers-block/</link>
		<comments>http://www.pat-burt.com/general-web/some-suggestions-for-writers-block/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 16:38:50 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[General Web]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/general-web/some-suggestions-for-writers-block/</guid>
		<description><![CDATA[It happens, it happens to everyone. If it hasn&#8217;t happened to you, you&#8217;re lucky and it may happen soon. And when it does, here are a few tips:
 
Step Away From the Computer
Do something, anything, just make sure it&#8217;s stimulating. If your solution is to watch TV, what if you watched shows that dealt with [...]]]></description>
			<content:encoded><![CDATA[<p>It happens, it happens to everyone. If it hasn&#8217;t happened to you, you&#8217;re lucky and it may happen soon. And when it does, here are a few tips:<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><br />
<strong>Step Away From the Computer</strong><br />
Do something, anything, just make sure it&#8217;s stimulating. If your solution is to watch TV, what if you watched shows that dealt with your specific niche? Consider going for a walk and not thinking about your blog at all.</p>
<p><strong>Network with Others in your Niche</strong><br />
Talk to others about their issues and concerns. You may be able to pull out some information that can constitute a basis for one of your blog posts. Also consider exchanging guest posts with a fellow blogger.</p>
<p><strong>Invite Questions from Readers</strong><br />
Readers will always have questions, general questions or questions about content. Communicate with your readers and find out what&#8217;s on their minds.</p>
<p><strong>Write Sequels</strong><br />
Think about writing a follow-up for one of your most visited articles. Or a complete article addressing issues that readers had posted in your comments section.</p>
<p><strong>Make a Post About Writer&#8217;s Block</strong><br />
I imagine this post speaks for itself. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope that helps. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fgeneral-web%2Fsome-suggestions-for-writers-block%2F&amp;title=Some+Suggestions+for+Writer%27s+Block"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/general-web/some-suggestions-for-writers-block/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SWFObject 2.0 and New Website</title>
		<link>http://www.pat-burt.com/swfobject/swfobject-20-and-new-website/</link>
		<comments>http://www.pat-burt.com/swfobject/swfobject-20-and-new-website/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 16:29:35 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[SWFObject]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/swfobject/swfobject-20-and-new-website/</guid>
		<description><![CDATA[Although I&#8217;ve been using SWFObject almost daily, I&#8217;ve always recycled the version I used on a previous project. Little did I know that a new version was released by Geoff Sterns (who know works for Google in the YouTube division) and is posted on Google&#8217;s codebase.
A new version means a new syntax, new file and [...]]]></description>
			<content:encoded><![CDATA[<p>Although I&#8217;ve been using SWFObject almost daily, I&#8217;ve always recycled the version I used on a previous project. Little did I know that a new version was released by Geoff Sterns (who know works for Google in the YouTube division) and is posted on Google&#8217;s codebase.</p>
<p>A new version means a new syntax, new file and most importantly, new features. It&#8217;s also worth noting that the JS file was compressed, so if I recall correctly, you&#8217;re saving a few KB this version.</p>
<p>Check it out here: <a href="http://code.google.com/p/swfobject/" title="SWFObject">http://code.google.com/p/swfobject/</a></p>
<p>I will have a tutorial up some time this week simplifying the details on how to use it.</p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fswfobject%2Fswfobject-20-and-new-website%2F&amp;title=SWFObject+2.0+and+New+Website"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/swfobject/swfobject-20-and-new-website/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Would You Rather Be Right or Happy?</title>
		<link>http://www.pat-burt.com/general-web/would-you-rather-be-right-or-happy/</link>
		<comments>http://www.pat-burt.com/general-web/would-you-rather-be-right-or-happy/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 18:44:09 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[General Web]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/general-web/would-you-rather-be-right-or-happy/</guid>
		<description><![CDATA[A question you should often ask yourself over the course of your life is, believe it or not, entirely relevant to web design, web development, dealing with clients, etc.

Let&#8217;s take for example the following situation. The client supplied a photograph for a web design that needs to be enlarged to abnormally large proportions. The upsampled [...]]]></description>
			<content:encoded><![CDATA[<p>A question you should often ask yourself over the course of your life is, believe it or not, entirely relevant to web design, web development, dealing with clients, etc.<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script><br />
Let&#8217;s take for example the following situation. The client supplied a photograph for a web design that needs to be enlarged to abnormally large proportions. The upsampled image looks absolutely fuzzy and disastrous. When you approach the client with reasoning and examples of improvements, there is no selling them on a different image or a smaller size.</p>
<p>What do you do?</p>
<p>Well would you rather be right or happy?</p>
<p>If you want to be right, you can be. You&#8217;re the one who&#8217;s developing the site, and you&#8217;re the guy with the Photoshop file. You&#8217;re the one who can use plenty of design lingo and overwhelm the client. But what are the repercussions? Every mother loves her baby just like every person loves their idea. Do you want to be the one who rebels against the client who still needs to pay half his invoice? Do you want to rebel against someone who&#8217;s word of mouth references can get you new business.</p>
<p>If you want to be happy. That&#8217;s easy. In the above situation. Try applying filters or modifying the design in such a way that the blurred image looks intended instead of unprofessional. Do your best with the parameters established by the client to keep them right and happy. You&#8217;ll have to settle with just being happy.</p>
<p>Now, I&#8217;m a strong believer in being happy. But I also know when I need to stand my ground, not for my own benefit, but for that of the client. If it&#8217;s a cause that the client strongly believes in, then I know when I need to take a step back if it means that my reputation, future, paycheque or opportunity within the company will suffer because of it.</p>
<p>Hope that helps. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fgeneral-web%2Fwould-you-rather-be-right-or-happy%2F&amp;title=Would+You+Rather+Be+Right+or+Happy%3F"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/general-web/would-you-rather-be-right-or-happy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Sarcastic Guide To Web Design and Development - Part 1</title>
		<link>http://www.pat-burt.com/web-design/the-sarcastic-guide-to-web-design-and-development-part-1/</link>
		<comments>http://www.pat-burt.com/web-design/the-sarcastic-guide-to-web-design-and-development-part-1/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 13:33:48 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/web-design/the-sarcastic-guide-to-web-design-and-development-part-1/</guid>
		<description><![CDATA[***This article is sarcastic***
There are a handful of rules that will automatically place in the rungs of &#8220;All-Star Web Designer and Developer&#8221;. It is my objective to share these with you.

1 - You Are Always Right
The client never knows what the client wants. It&#8217;s up to you to tell them. If they disagree with you, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>***This article is sarcastic***</strong></p>
<p>There are a handful of rules that will automatically place in the rungs of &#8220;All-Star Web Designer and Developer&#8221;. It is my objective to share these with you.<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script><br />
<strong>1 - You Are Always Right</strong><br />
The client never knows what the client wants. It&#8217;s up to you to tell them. If they disagree with you, it&#8217;s because they just plain don&#8217;t know what they&#8217;re talking about. In the event that client may think that they&#8217;re right, it&#8217;s up to you to raise your voice and threaten to take them to court so that you can push your way of thinking. If at all possible, belittle any ideas the client puts forth.</p>
<p><strong>2 - Design For Your Browser</strong><br />
There&#8217;s only so much time you can spend on developing a website. Develop your website so that it&#8217;s optimized only for the browser that you use. In the event that the client or their users use a different browser, it&#8217;s simply not your problem. Suggest that they use the same browser you do. Another suggestion would be to include a message such as &#8220;<em>The site was optimized for Mozilla Firefox</em>&#8221; in the footer of your website.</p>
<p><strong>3 - When Someone Critiques Your Design, They Are Personally Attacking You</strong><br />
That&#8217;s right. If a client say that they have a problem with your design, that should be interpreted as them having a problem with you. The design was never an issue. To deal with such a situation, you should rebuff the client&#8217;s comments with &#8220;<em>Nuh uh, you&#8217;re the one you isn&#8217;t reaching the target demographic</em>&#8220;, or &#8220;<em>Why don&#8217;t you move YOUR header graphic 10 pixels higher</em>&#8220;. In the event that these comments draw blank stares, follow-up with calling the client a &#8220;doodie-head&#8221;.</p>
<p><strong>4 - CSS Is Too Much Work</strong><br />
Why go through the trouble of coding CSS and typing out all sorts of complicated characters that require using the SHIFT button on your keyboard, such as <strong>{</strong> and <strong>}</strong> when you can splice up designs in tables? In Photoshop, lay out your guides, export as HTML, and you&#8217;re done. If additional tweaking needs to be done, use Font tags.</p>
<p><strong>5 - Using Adobe Flash Frivolously Is a Must</strong><br />
No site is complete without something bouncing or moving everywhere on the user&#8217;s screen. This means that the client and company will be perceived as being hip and professional. Some uses include:</p>
<ul>
<li>Splash Page animations. Tip: Don&#8217;t implement a Skip Intro button, we don&#8217;t want to ruin the immersion experience.</li>
<li>Logo animation. Consider rotating or fading the client&#8217;s logo in and out. If possible, incorporate movement.</li>
</ul>
<p>Here are a few bonus tips to make your Flash piece everything your client has ever imagined:</p>
<ul>
<li>Be sure not to ease animation. Animations should look inorganic. Besides, you&#8217;re not a movie editor or a producer, you&#8217;re a web person.</li>
<li>Keep the FPS low. You don&#8217;t want to overload the Windows 95 machines that are still around.</li>
<li>Keep things moving. If at any given time, something on the website isn&#8217;t moving, you&#8217;ve done something wrong.</li>
</ul>
<p>That&#8217;s all for now. Hope that the article wasn&#8217;t too out of the ordinary. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fweb-design%2Fthe-sarcastic-guide-to-web-design-and-development-part-1%2F&amp;title=The+Sarcastic+Guide+To+Web+Design+and+Development+-+Part+1"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/web-design/the-sarcastic-guide-to-web-design-and-development-part-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What You Need To Know About SQL Injection</title>
		<link>http://www.pat-burt.com/web-development/what-you-need-to-know-about-sql-injection/</link>
		<comments>http://www.pat-burt.com/web-development/what-you-need-to-know-about-sql-injection/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 19:21:45 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/web-development/what-you-need-to-know-about-sql-injection/</guid>
		<description><![CDATA[Having seeing the effects of an SQL Injection attack, I thought I&#8217;d be able to tackle some tips on preventing SQL Injections in the first place.
 
All it takes is one vulnerability to affect your entire software application. If the vulnerability is general enough, you could be the target of scripts that scour the web [...]]]></description>
			<content:encoded><![CDATA[<p>Having seeing the effects of an SQL Injection attack, I thought I&#8217;d be able to tackle some tips on preventing SQL Injections in the first place.<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><br />
All it takes is one vulnerability to affect your entire software application. If the vulnerability is general enough, you could be the target of scripts that scour the web autonomously attempting to inject websites. Let&#8217;s get right into some tips:</p>
<h2>Validate Anything That Comes In Via Querystring</h2>
<p>Although you may expect your query string to do something simple in your application, it can provide hackers with a intrusion point.  Example:</p>
<p><em>http://www.pat-burt.com/somePage.php?error=1</em></p>
<p>I use the querystring to provide me with a 1 or a 0. But don&#8217;t expect hackers to only provide you with a 1 or a 0. Let&#8217;s say you&#8217;re using the result of the value &#8220;error&#8221; in your SQL statement:</p>
<p><em>UPDATE userStatus SET error=<strong>1</strong> WHERE  userID=248</em></p>
<p>You can see how the hacker can change the error value to something malicious directly in the address bar to manipulate your SQL statement to their advantage in the following example.  It wouldn&#8217;t take much to change the query string to produce the following SQL statement:</p>
<p><em>UPDATE userStatus SET error=<strong>1; UPDATE SET password=&#8217;HACKED&#8217;</strong> WHERE userID=248</em></p>
<p>What you&#8217;d need to do is strip characters or convert the query string&#8217;s result to an integer (in this case). If you&#8217;re expecting either of those values, check for either of those values before anything goes into your query string.</p>
<h2>Validate Anything Posted to a Form</h2>
<p>Info posted from a form should also be validated. Keep in mind that forms can be posted to without even viewing the actual form. That means your form validation needs to go beyond using HTML to put a limit on the number of characters in your text field. Using the programming language of your choice, you should validate input based on:</p>
<ul>
<li>Length</li>
<li>Illegal characters</li>
<li>Type of input (integers, phone numbers, text)</li>
</ul>
<p>Hope that helps. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fweb-development%2Fwhat-you-need-to-know-about-sql-injection%2F&amp;title=What+You+Need+To+Know+About+SQL+Injection"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/web-development/what-you-need-to-know-about-sql-injection/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Busy Person&#8217;s Guide To Getting Work Done</title>
		<link>http://www.pat-burt.com/general-web/busy-persons-guide-to-getting-work-done/</link>
		<comments>http://www.pat-burt.com/general-web/busy-persons-guide-to-getting-work-done/#comments</comments>
		<pubDate>Thu, 29 May 2008 17:21:51 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[General Web]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/general-web/busy-persons-guide-to-getting-work-done/</guid>
		<description><![CDATA[I apologize for not posting in a while, life has been hectic. That being said, how about a post on getting work done. 
 
We&#8217;ve all been in the position, whether it&#8217;s at work, in school, where there was just so much work to do, that you had a hard time getting around all of [...]]]></description>
			<content:encoded><![CDATA[<p>I apologize for not posting in a while, life has been hectic. That being said, how about a post on getting work done. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><br />
We&#8217;ve all been in the position, whether it&#8217;s at work, in school, where there was just so much work to do, that you had a hard time getting around all of it without breaking into a cold sweat.  Here are a few tips to boost productivity or to trick yourself into working quicker.</p>
<h2>Procrastinate</h2>
<p>Risky suggestion, but I made it anyway. Procrastinating a project until it&#8217;s vital is a great way to get your productivity going. Instead of working at a leisurely pace, you will notice that when there&#8217;s a tight deadline, you&#8217;ll be working as fast as your little fingers can go.</p>
<h2>Use Downtime To Plan</h2>
<p>Downtime, such as time spent commuting or in bed alone, is the best time to give thought on how you should get your work done. Use this time to plan or conceptualize so that you spend less time doing it when you have all the resources you need in front of you.</p>
<h2>Meet Your Deadlines</h2>
<p>Make it a habit to meet your current deadlines. Once the client has a feeling that you&#8217;re quick tog et work done, you&#8217;re less likely to voluntarily push back a deadline because of your own laziness.</p>
<h2>Reward Yourself</h2>
<p>Nothing quite like a little positive reinforcement from yourself to encourage you to keep up to speed on your projects.</p>
<h2>Prioritize</h2>
<p>This is a little different for everyone. Myself, I like to prioritize projects based on deadlines. After that, if two projects share the same deadline, I take of the project that&#8217;s shortest first to get that out of my mind. That being said, it&#8217;s very unpleasant to work long and hard into the night, finish a huge project at 1am, and then have to finish a smaller one afterwards. I much prefer finishing up with the huge project, and then having the opportunity to relax.</p>
<p>Hope that helps <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fgeneral-web%2Fbusy-persons-guide-to-getting-work-done%2F&amp;title=Busy+Person%27s+Guide+To+Getting+Work+Done"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/general-web/busy-persons-guide-to-getting-work-done/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Follow-Up - TNX.net Thoughts</title>
		<link>http://www.pat-burt.com/web-marketing/follow-up-tnxnet-thoughts/</link>
		<comments>http://www.pat-burt.com/web-marketing/follow-up-tnxnet-thoughts/#comments</comments>
		<pubDate>Wed, 14 May 2008 16:37:33 +0000</pubDate>
		<dc:creator>Patrick Burt</dc:creator>
		
		<category><![CDATA[Web Marketing]]></category>

		<guid isPermaLink="false">http://www.pat-burt.com/web-marketing/follow-up-tnxnet-thoughts/</guid>
		<description><![CDATA[I&#8217;ve had the chance to use TNX.net now for a few months, so I can give a better opinion on it. For the original review, you can check it out here.
 
TNX.net is pretty close to being a fire and forget income generator. Although you can make enough of an income stream without ever having [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had the chance to use TNX.net now for a few months, so I can give a better opinion on it. For the original review, you can check it out <a href="http://www.pat-burt.com/web-marketing/new-big-contender-in-the-text-link-market/" title="TNX.net Review">here</a>.<br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"> </script><br />
TNX.net is pretty close to being a fire and forget income generator. Although you can make enough of an income stream without ever having to put in additional work after the setup, there&#8217;s more potential if you do a little babysitting during the process.</p>
<p>Basically, what you do: list your site and post the PHP bit in the correct section of your website. Buyers and TNX.net will pick up your link real-estate, and all you need to do is go in every once and while and cash out your points.</p>
<p>Cashing out your points requires a little bit of work because you can only cash out a maximum 50% of the points that you have. That gives you a bit of a dilemma. Wait to cash out? or Cash out whenever possible? In 3 days, you&#8217;d be able to withdraw 87.5% of your points, but then it will be a hell of a long time until you can get up to that level again.</p>
<p>If you do invest time in finding buyers for your link space, you can make additional income, especially if you make sure your high PageRank real estate stays sold.</p>
<p>That all being said, I&#8217;d recommend it for any blog out there that doesn&#8217;t mind selling out to pick up the slack on the hosting bill.  There&#8217;s one catch, I wouldn&#8217;t attempt this with a blog that has a low PageRank because the income would be very limited.</p>
<p>Hope that helps. <img src='http://www.pat-burt.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
<div><a rel="nofollow" href="http://www.addthis.com/bookmark.php?pub=&amp;url=http%3A%2F%2Fwww.pat-burt.com%2Fweb-marketing%2Ffollow-up-tnxnet-thoughts%2F&amp;title=Follow-Up+-+TNX.net+Thoughts"  title="Bookmark this blog using any bookmark manager!" target="_blank"><img src="http://s3.addthis.com/button1-bm.gif" width="125" height="16" border="0" alt="Bookmark this blog using any bookmark manager!" /></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.pat-burt.com/web-marketing/follow-up-tnxnet-thoughts/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
