<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>meaddesign.net</title>
	
	<link>http://meaddesign.net</link>
	<description />
	<lastBuildDate>Tue, 06 Sep 2011 04:39:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MeadDesign" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="meaddesign" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Form Validation Part 3</title>
		<link>http://meaddesign.net/2011/09/05/form-validation-part-3/</link>
		<comments>http://meaddesign.net/2011/09/05/form-validation-part-3/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 03:56:38 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Lessons]]></category>

		<guid isPermaLink="false">http://meaddesign.net/2011/09/05/form-validation-part-3/</guid>
		<description><![CDATA[Part 3 of our form validation series gets into using AJAX to submit form data without having to refresh the page. A pretty good trick in some situations.]]></description>
			<content:encoded><![CDATA[<p>Part 3 of our form validation series gets into using AJAX to submit form data without having to refresh the web page. This is really nice for web applications where you want to have more control over the user&#8217;s experience. This lesson involves a little bit more PHP. If you completed part 2, you don&#8217;t really need to download the start files, as they are the same thing as the completed files from part 2.</p>
<p><strong>Note:</strong> The server side validation is still in place for this lesson, so we will still need to use the local server so that the PHP can run. Check out <a href="http://www.mamp.info/en/index.html">MAMP</a> for the Mac, or <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> for Mac, Windows or Linux. All of them are free.</p>
<p>The next lesson will look at how to use the jQuery validator plugin to make validating form data even easier. We will also look at more complex forms and additional form input types. Since we were eventually going to end up using the validator plugin anyway, I have left the form simple up until that lesson.</p>
<p><strong>Difficulty:</strong> easy<br />
<strong>Skills:</strong> Light HTML, Light JavaScript (jQuery), Light PHP<br />
<strong>Time Required:</strong> 1 hour<br />
<strong>Start Files:</strong> <a href="http://meaddesign.net/wp-content/uploads/2011/09/MeadDesignFormsPart3Start.zip">MeadDesign Forms Part 3 Start.zip</a><br />
<strong>Completed Example Files:</strong> <a href="http://meaddesign.net/wp-content/uploads/2011/09/MeadDesignFormsPart3Complete.zip">MeadDesign Forms Part 3 Complete.zip</a><br />
<strong>Presentation:</strong> <a title="Forms Part 3" href="https://docs.google.com/present/view?id=0AROM72d1wkcrZGcyd2tqd2NfMTA0NWRwNzlzcWZj&amp;hl=en_US" target="_blank">Forms Part 3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/09/05/form-validation-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form Validation Part 2</title>
		<link>http://meaddesign.net/2011/09/05/form-validation-part-2/</link>
		<comments>http://meaddesign.net/2011/09/05/form-validation-part-2/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 03:00:13 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Lessons]]></category>

		<guid isPermaLink="false">http://meaddesign.net/2011/09/05/form-validation-part-2/</guid>
		<description><![CDATA[Part 2 of our form validation series of lessons brings us into jQuery. This is the next logical step in understanding form validation.]]></description>
			<content:encoded><![CDATA[<p>Part 2 of our series on form validation brings us into jQuery. The starter files basically include a very slightly modified version of the form that was created in part 1. This version is interesting to compare with the straight JavaScript version because you can see a few of the advantages you have going for you when you use jQuery. Of course it gets even better when you use the validator plugin. That will be coming up in a later lesson. For now, we are just working with a simple form just to see how validation works with straight  jQuery.</p>
<p><strong>Note:</strong> The server side validation is still in place for this lesson, so we will still need to use the local server so that the PHP can run. Check out <a href="http://www.mamp.info/en/index.html">MAMP</a> for the Mac, or <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> for Mac, Windows or Linux. All of them are free.</p>
<p>In the next lesson, we will look at submitting a form with jQuery using AJAX so that the page does not have to refresh. If you did not check out part one, please do that so you can see the whole progression.</p>
<p><strong>Difficulty:</strong> easy<br />
<strong>Skills:</strong> Light HTML, Light JavaScript (jQuery)<br />
<strong>Time Required:</strong> 1 hour<br />
<strong>Start Files:</strong> <a href="http://meaddesign.net/wp-content/uploads/2011/09/MeadDesignFormsPart2Start.zip">MeadDesign Forms Part 2 Start.zip</a><br />
<strong>Completed Example Files:</strong> <a href="http://meaddesign.net/wp-content/uploads/2011/09/MeadDesignFormsPart2Complete.zip">MeadDesign Forms Part 2 Complete.zip</a><br />
<strong>Presentation:</strong> <a title="Forms Part 2" href="https://docs.google.com/present/view?id=0AROM72d1wkcrZGcyd2tqd2NfMTAyN2d3a3d3NGYy&amp;hl=en_US" target="_blank">Forms Part 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/09/05/form-validation-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form Validation Part 1</title>
		<link>http://meaddesign.net/2011/09/05/form-validation-part-1/</link>
		<comments>http://meaddesign.net/2011/09/05/form-validation-part-1/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 22:51:02 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Lessons]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=395</guid>
		<description><![CDATA[Ok, there is nothing more boring than forms. But it is really important for us as web designers and developers to know how to work with them effectively.]]></description>
			<content:encoded><![CDATA[<p>Ok, there is nothing more boring than forms. But it is really important for us as web designers and developers to know how to capture information put into forms, validate it on both the server side for the person who is collecting the information and on the client side for the person filling out  the form. This lesson shows basic validation on both the server and client sides using PHP (server) and JavaScript (client).</p>
<p><strong>Note:</strong> In order to do this lesson, you will need to have a local server installed so that the PHP can run. Check out <a href="http://www.mamp.info/en/index.html">MAMP</a> for the Mac, or <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> for Mac, Windows or Linux. All of them are free.</p>
<p>Parts two and three will look at using jQuery to make validation a little easier. Part four looks at using the awesome jQuery validator plugin. Part 5 gets into HTML5 and the awesome stuff we will be able to do with forms, once those features are supported by browsers. I strongly recommend working through all the parts to get the full scoop on html forms and validation.</p>
<p><strong>Difficulty:</strong> easy-moderate<br />
<strong>Skills:</strong> Moderate HTML, Light PHP, Light JavaScript<br />
<strong>Time Required:</strong> 1 hour<br />
<strong>Start Files:</strong> none<br />
<strong>Completed Example Files:</strong> <a href="http://meaddesign.net/wp-content/uploads/2011/09/MeadDesignFormsPart1.zip">MeadDesign Forms Part 1.zip</a><br />
<strong>Presentation:</strong> <a title="Forms Part 1" href="https://docs.google.com/present/edit?id=0AROM72d1wkcrZGcyd2tqd2NfMzg5Zzl0OG42ZjU&amp;hl=en_US" target="_blank">Forms Part 1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/09/05/form-validation-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Art Institute Portfolio Show</title>
		<link>http://meaddesign.net/2011/09/04/art-institute-portfolio-show/</link>
		<comments>http://meaddesign.net/2011/09/04/art-institute-portfolio-show/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 19:22:13 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Hot]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=384</guid>
		<description><![CDATA[Art Institute of California in Sacramento will be celebrating it&#8217;s graduates at the upcoming portfolio]]></description>
			<content:encoded><![CDATA[<p>Art Institute of California in Sacramento will be celebrating it&#8217;s graduates at the upcoming portfolio show on September 22nd, 2011. I am really excited about this particular group of graduates. Some of my best students and many from my first group at AI are graduating. Also, we are planning to put on something special at the show. In the past students have made boards and printed out work. This time we are trying out projectors and live displays of their work. I think it is going to be very exciting and cool.<span id="more-384"></span></p>
<p>Be sure to come and check it out. It is open to professionals from 3pm to 5pm and open to general public, family and friends from 5pm to 7pm.</p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/09/04/art-institute-portfolio-show/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Professionals Speaker Series</title>
		<link>http://meaddesign.net/2011/09/04/web-professionals-lunch-time-speaker-series/</link>
		<comments>http://meaddesign.net/2011/09/04/web-professionals-lunch-time-speaker-series/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 18:43:47 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Hot]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=374</guid>
		<description><![CDATA[Summer 2011 has brought some exciting speakers to Art Institute in Sacramento. These topics are of interest to anyone who uses the web professionally.]]></description>
			<content:encoded><![CDATA[<p>Summer 2011 has brought some exciting speakers to Art Institute in Sacramento. Each week, for four weeks, I have scheduled great speakers to come in and talk about topics of interest to anyone who is using the web professionally. Web designers/developers, graphic designers, filmmakers, and artists all benefit from these talks. Here is a full list of the speakers. Also, here is a <a href="http://meaddesign.net/wp-content/uploads/2011/09/lunchtimeseries.pdf">PDF Flier</a> for the series. Special thanks to Sean Ireton for designing the logo.<span id="more-374"></span></p>
<p><strong>Augustine Ideas</strong><br />
Wednesday, August 17th<br />
Learn what it’s like to work at a Global Marketing and Communications Agency. We’ll profile one client and how we integrated branding, graphic design, web design, video production and social media into a harmonized effort which led to measurable results.</p>
<p><strong>Bourn Creative</strong><br />
Wednesday, August 24th<br />
Jennifer Bourn will show you how to transform your business into an extraordinary and lucrative brand that keeps your phone ringing and your bank accounts full.</p>
<p><strong>Rosebud Designs</strong><br />
Wednesday, August 31st<br />
Freelance from A to Z. Jenn de la Fuente will walk you through her workflow and her favorite tools to use for everything from planning to design, to coding and bookkeeping.</p>
<p><strong>Webvanta</strong><br />
Wednesday, September 7th<br />
Explore some of the challenges designers and developers face when building products that work for both desktop and mobile devices. Christopher Haupt, CTO and co-founder at Webvanta Inc., presents a case study from a recent client of Webvanta’s hosted Content Management System.</p>
<p>Presented by the Web Design &amp; Interactive Media Department and Career Services for the Art Institute of California &#8211; Sacramento</p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/09/04/web-professionals-lunch-time-speaker-series/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intermediate Web Design</title>
		<link>http://meaddesign.net/2011/08/04/intermediate-web-design/</link>
		<comments>http://meaddesign.net/2011/08/04/intermediate-web-design/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:34:23 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Current Courses]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=364</guid>
		<description><![CDATA[Another one of my favorite courses to teach. This is where students delve into some]]></description>
			<content:encoded><![CDATA[<p>Another one of my favorite courses to teach. This is where students delve into some of the deeper topics of web design and techniques used all across the web today. We get into CSS3, progressive enhancement as well as testing across browsers to make sure our sites work in old crappy browsers, such as Internet Explorer 6. Students build some great projects and acquire a lot of experience along the way.</p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/08/04/intermediate-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Senior Project Development</title>
		<link>http://meaddesign.net/2011/08/04/senior-project-development/</link>
		<comments>http://meaddesign.net/2011/08/04/senior-project-development/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:24:11 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Current Courses]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=358</guid>
		<description><![CDATA[This is a course where students develop and deploy a project for a real client.]]></description>
			<content:encoded><![CDATA[<p>This is a course where students develop and deploy a project for a real client. The training wheels come off and they get to put into practice all the bits and pieces that have been accumulating over the course of all the other classes. I love seeing what students come up with and the various problems that they have to troubleshoot and solve along the way.</p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/08/04/senior-project-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portfolio 2</title>
		<link>http://meaddesign.net/2011/08/04/portfolio-2/</link>
		<comments>http://meaddesign.net/2011/08/04/portfolio-2/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:21:00 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Current Courses]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=356</guid>
		<description><![CDATA[Portfolio 2 is the capstone course for students graduating from the Bachelors Degree program at]]></description>
			<content:encoded><![CDATA[<p>Portfolio 2 is the capstone course for students graduating from the Bachelors Degree program at Art Institute. This is where everything comes together and culminates with a show for professionals in the industry as well as for family and friends. Students put a polish and shine on their work as well as present with consistent and clear branding. It is their opportunity to put their best foot forward as they enter the industry.</p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/08/04/portfolio-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portfolio 1</title>
		<link>http://meaddesign.net/2011/08/04/portfolio-1/</link>
		<comments>http://meaddesign.net/2011/08/04/portfolio-1/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:18:44 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Current Courses]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=354</guid>
		<description><![CDATA[In this course students at Art Institute begin developing their personal portfolio sites. The focus]]></description>
			<content:encoded><![CDATA[<p>In this course students at Art Institute begin developing their personal portfolio sites. The focus is on developing the branding and related materials such as business cards, resumes and the site itself that will hold their portfolio work. Students graduating from the Associates degree program also have to get their best quality work into the portfolio as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/08/04/portfolio-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Designer’s Toolbox</title>
		<link>http://meaddesign.net/2011/07/28/web-designers-toolbox/</link>
		<comments>http://meaddesign.net/2011/07/28/web-designers-toolbox/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 21:34:03 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Presentations]]></category>
		<category><![CDATA[presentation]]></category>

		<guid isPermaLink="false">http://meaddesign.net/?p=341</guid>
		<description><![CDATA[Presentation given to the Sacramento Web Standards Group in July of 2011. Included a run down of different tools for web designers.]]></description>
			<content:encoded><![CDATA[<p>I gave this presentation at the <a title="Sacramento Web Standards Group" href="http://www.sacwebstandards.com/">Sacramento Web Standards group</a> in July of 2011. I can&#8217;t say it is the best presentation I have ever given, but it is kind of fun to look at different tools that web designers can use from planning to development to billing at the end of a project. Mark Aplet, who is leading the group suggested that we have a few people present their entire workflow. I actually think that is a great idea and I am look forward to seeing that kind of presentation.</p>
<p>You can view the <a title="Web Tools" href="https://docs.google.com/present/edit?id=0ASRZIWrpGHEKZGpkNG5rM18xMHhqN3Rrd2Nz&amp;hl=en_US" target="_blank">slides here</a> (shared google presentation, opens in a new window.)</p>
<p>We had a great group and others shared additional tools as well. Feel free to leave comments with some of your favorites as well.</p>
<h3>Additional Tools</h3>
<p>Zengobi Curio &#8211; Mind Mapping<br />
<a title="curio" href="http://www.zengobi.com/products/curio/" target="_blank">http://www.zengobi.com/products/curio/</a></p>
<p>Scadaplan &#8211; Project Management<br />
<a href="http://www.scadaplan.com/" target="_blank">http://www.scadaplan.com/</a></p>
<p>So1o &#8211; Project Management<br />
<a href="http://www.thrivesolo.com/" target="_blank">http://www.thrivesolo.com/</a></p>
<p>Notable &#8211; Project Management<br />
<a href="http://www.notableapp.com/" target="_blank">http://www.notableapp.com/</a></p>
<p>Evernote &#8211; Cross Platform Notebook<br />
<a href="http://www.evernote.com/" target="_blank">http://www.evernote.com/</a></p>
<p>Xmarks &#8211; Bookmark Syncing<br />
<a href="http://www.xmarks.com/" target="_blank">http://www.xmarks.com/</a></p>
<p>Espresso &#8211; Coding Environment<br />
<a href="http://macrabbit.com/espresso/" target="_blank">http://macrabbit.com/espresso/</a></p>
<p>Textastic &#8211; Code Editor for iPad<br />
<a href="http://www.textasticapp.com/" target="_blank">http://www.textasticapp.com/</a></p>
<p>Codasaurus &#8211; Code Editor for iPad<br />
<a href="http://grilledbacon.com/" target="_blank">http://grilledbacon.com/</a></p>
<p>Lorizzle &#8211; Goofy Gangsta Content Generator<br />
<a href="http://www.lorizzle.nl/" target="_blank">http://www.lorizzle.nl/</a></p>
<p>Blinksale &#8211; Billing / Invoicing<br />
<a href="http://blinksale.com/" target="_blank">http://blinksale.com/</a></p>
<p>QuoteRobot &#8211; Generating Proposals<br />
<a href="http://www.quoterobot.com/" target="_blank">http://www.quoterobot.com/</a></p>
<p>Getklock &#8211; Time Tracking<br />
<a href="http://www.getklok.com/" target="_blank">http://www.getklok.com/</a></p>
<p>CashBoard &#8211; Time Tracking and Billing<br />
<a href="https://www.cashboardapp.com/" target="_blank">https://www.cashboardapp.com/</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://meaddesign.net/2011/07/28/web-designers-toolbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

