<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tucson Digital Arts Community &#187; News</title>
	<atom:link href="http://tucsondigitalarts.com/blog/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://tucsondigitalarts.com</link>
	<description>Connecting people for collaboration, learning and opportunity.</description>
	<lastBuildDate>Wed, 21 Jul 2010 14:22:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Rapid WordPress Theme Development</title>
		<link>http://tucsondigitalarts.com/blog/2010/06/23/rapid-wordpress-theme-development/</link>
		<comments>http://tucsondigitalarts.com/blog/2010/06/23/rapid-wordpress-theme-development/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 16:11:23 +0000</pubDate>
		<dc:creator>josh williams</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=585</guid>
		<description><![CDATA[Here are the slides from the presentation I gave about rapid WordPress development at Spoke6 on June 22, 2010.

]]></description>
			<content:encoded><![CDATA[<p>Here are the slides from the presentation I gave about rapid WordPress development at <a href="http://spoke6.com" title="spoke 6 a co-working space">Spoke6</a> on June 22, 2010.</p>
<object width="400" height="328"><param name="movie" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=rapid-wordpress-theme-development-100623124407-phpapp01"/><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slideshare.net/swf/ssplayer2.swf?doc=rapid-wordpress-theme-development-100623124407-phpapp01"  type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="328"></embed></object>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2010/06/23/rapid-wordpress-theme-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Speeding up WordPress</title>
		<link>http://tucsondigitalarts.com/blog/2010/05/25/speeding-up-wordpress/</link>
		<comments>http://tucsondigitalarts.com/blog/2010/05/25/speeding-up-wordpress/#comments</comments>
		<pubDate>Wed, 26 May 2010 01:28:19 +0000</pubDate>
		<dc:creator>timbowen</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Meet-up]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[Spoke6]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=558</guid>
		<description><![CDATA[Tim Bowen&#8217;s Speeding up WordPress 5/25/10 presentation
Test load times/elements here: Pingdom
Also use YSlow and Google  Page Speed to test speed.
PHP Query  Elimination:
Use this: &#60;meta  charset=&#8221;UTF-8&#8243; /&#62;
Not this: &#60;meta charset=&#8221;&#60;?php bloginfo( &#8216;charset&#8217; ); ?&#62;&#8221;  /&#62;
 
Use Google hosted JQuery /  Prototype libraries by adding this to functions.php file:
function my_init_method() {
wp_deregister_script( &#8216;jquery&#8217; );
wp_register_script( &#8216;jquery&#8217;, [...]]]></description>
			<content:encoded><![CDATA[<h3><a href="http://creativeslice.com/about/tim-bowen/">Tim Bowen&#8217;s</a> <em>Speeding up WordPress</em> 5/25/10 presentation</h3>
<p><strong>Test load times/elements here: </strong><a rel="nofollow" href="http://tools.pingdom.com" target="_blank"><strong>Pingdom</strong></a><br />
Also use <a rel="nofollow" href="http://developer.yahoo.com/yslow/" target="_blank">YSlow</a> and <a href="http://code.google.com/speed/page-speed/" target="_blank">Google  Page Speed</a> to test speed.</p>
<p><strong>PHP Query  Elimination:</strong><br />
Use this: &lt;meta  charset=&#8221;UTF-8&#8243; /&gt;<br />
Not this: &lt;meta charset=&#8221;&lt;?php bloginfo( &#8216;charset&#8217; ); ?&gt;&#8221;  /&gt;<br />
<strong> </strong></p>
<p><strong>Use Google hosted JQuery /  Prototype libraries by adding this to functions.php file:<br />
</strong>function my_init_method() {<br />
wp_deregister_script( &#8216;jquery&#8217; );<br />
wp_register_script( &#8216;jquery&#8217;,  &#8216;http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js&#8217;);<br />
}<br />
add_action(&#8216;init&#8217;, &#8216;my_init_method&#8217;);</p>
<p><strong>Remove  actions for WordPress meta, rsd_link and wlmanifest by adding these  lines to functions.php:<br />
</strong>remove_action(&#8216;wp_head&#8217;, &#8216;wp_generator&#8217;);<br />
remove_action(&#8216;wp_head&#8217;, &#8216;rsd_link&#8217;);<br />
remove_action(&#8216;wp_head&#8217;,  &#8216;wlwmanifest_link&#8217;);</p>
<p><strong>Use </strong><a href="http://code.google.com/p/minify/" target="_blank"><strong>Google minify</strong></a><strong> for  JS and CSS files.</strong><br />
Add Javascript files to bottom of page for  faster load speeds.</p>
<p><strong>Define elements in  wp-config.php file:</strong><br />
define(&#8216;ENABLE_CACHE&#8217;,  true );<br />
define(&#8216;WP_ALLOW_REPAIR&#8217;,  true);</p>
<p><strong>Set the WP URL and Site URL to improve site  performance.  Make sure these are same as in the General Settings page</strong><br />
define(&#8216;WP_SITEURL&#8217;,  &#8216;http://SITENAME.com/cms&#8217;);<br />
define(&#8216;WP_HOME&#8217;,  &#8216;http://SITENAME.com&#8217;);</p>
<p><strong>Set the  template directory and stylesheet directory to improve site performance  and eliminate server queries</strong><br />
define(&#8216;TEMPLATEPATH&#8217;,  &#8216;/home/public_html/cms/wp-content/themes/THEMENAME&#8217;);<br />
define(&#8216;STYLESHEETPATH&#8217;,  &#8216;/home/public_html/cms/wp-content/themes/THEMENAME&#8217;);</p>
<p>Use  optimized <a rel="nofollow" href="http://www.canonicalseo.com/wordpress-performance-improvement/" target="_blank">.htaccess file</a></p>
<p><strong>Disable hotlinking with this code in .htaccess file:</strong><br />
&lt;IfModule mod_rewrite.c&gt;<br />
RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER}  !^http://(www\.)?example\.com/.*$ [NC]<br />
RewriteRule .*\.(gif|jpg|png|ico)$ &#8211;  [F,L]<br />
&lt;/ifModule&gt;</p>
<p><strong>Image hosting off-site with </strong><a rel="nofollow" href="http://wordpress.org/extend/plugins/wp-offload/" target="_blank"><strong>WP-Offload plugin</strong></a><strong> and </strong><a rel="nofollow" href="http://www.steadyoffload.com/" target="_blank"><strong>Steady Offload</strong></a></p>
<p><strong>Add &lt;?php flush(); ?&gt; after the &lt;/head&gt; and before &lt;body&gt; to speed up loading.</strong></p>
<p><strong>Potentially  useful plugins:</strong></p>
<ul>
<li><a rel="nofollow" href="http://wordpress.org/extend/plugins/db-cache-reloaded/" target="_blank">DB Cache Reloaded</a> (small speed bump  while helping to eliminate queries to server)</li>
<li><a rel="nofollow" href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a> (small speed bump,  also good for heavy traffic)</li>
<li><a rel="nofollow" href="http://wordpress.org/extend/plugins/quick-cache/" target="_blank">Quick Cache</a> (small speed bump, good for heavy  traffic)</li>
<li><a rel="nofollow" href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">WP Super Cache</a> (didn&#8217;t notice speed  bump, reviews claim good for heavy traffic)</li>
<li><a rel="nofollow" href="http://aciddrop.com/php-speedy/" target="_blank">PHP  Speedy</a> (compresses scripts from plugins, small speed bump)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2010/05/25/speeding-up-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash Camp Phoenix is this Friday!</title>
		<link>http://tucsondigitalarts.com/blog/2010/01/28/flash-camp-phoenix-is-this-friday/</link>
		<comments>http://tucsondigitalarts.com/blog/2010/01/28/flash-camp-phoenix-is-this-friday/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 04:38:26 +0000</pubDate>
		<dc:creator>flasher</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=448</guid>
		<description><![CDATA[Flash Camp Phoenix is a full-day event focusing on the Adobe Flash Platform. Enhance your skills in ActionScript and Flex while learning from local and national industry experts. Flash Camp will provide an introduction to the Flash Platform as well as covering advanced topics for existing Flex and ActionScript developers.
http://flashcampphoenix.eventbrite.com/
]]></description>
			<content:encoded><![CDATA[<p>Flash Camp Phoenix is a full-day event focusing on the Adobe Flash Platform. Enhance your skills in ActionScript and Flex while learning from local and national industry experts. Flash Camp will provide an introduction to the Flash Platform as well as covering advanced topics for existing Flex and ActionScript developers.</p>
<p><a title="Flash Camp Phoenix" href="http://flashcampphoenix.eventbrite.com/" target="_blank">http://flashcampphoenix.eventbrite.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2010/01/28/flash-camp-phoenix-is-this-friday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TDAC website meeting recap</title>
		<link>http://tucsondigitalarts.com/blog/2009/12/10/tdac-website-meeting-recap/</link>
		<comments>http://tucsondigitalarts.com/blog/2009/12/10/tdac-website-meeting-recap/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 20:52:14 +0000</pubDate>
		<dc:creator>TDAC</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=429</guid>
		<description><![CDATA[Below is a recap from our TDAC website meeting on 12/9/09 (meeting notes here) going over how the new TDAC website will be built.  Thanks to everyone who made it!  To those who couldn&#8217;t make it, feedback is welcome and we&#8217;d love to hear your comments.
Overall Design / UI

WordPress MU, BuddyPress and bbPress need to [...]]]></description>
			<content:encoded><![CDATA[<p>Below is a recap from our TDAC website meeting on 12/9/09 (<a href="http://etherpad.com/ANqaGhlaxN" target="_blank">meeting notes here</a>) going over how the new TDAC website will be built.  Thanks to everyone who made it!  To those who couldn&#8217;t make it, feedback is welcome and we&#8217;d love to hear your comments.</p>
<h3>Overall Design / UI</h3>
<ul>
<li>WordPress MU, BuddyPress and bbPress need to be updated and setup on a faster server (we can use www.creativeoven.com as a testing site and switch over to this bluehost account if it runs fast enough)</li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Better access to group discussions / forums</span></li>
<li>Users and content needs to be ported over to this new testing server.</li>
<li>Need to update the structure of the homepage and decide which elements should be featured.  Include &#8220;Teaser Text&#8221;.</li>
<li>Creating simple wireframe layouts should be done for each page of the site, though most importantly the home page.</li>
<li>Show a personalized homepage for users who are logged in.  Show the groups they are a part of and other information related to them.</li>
<li>
<div id="magicdomid89"><span class="author-g-fz122zdfdqow0y5rgatp">Add blog where people can post things to? Guest bloggers? Aftermath blog of each event AFTER each event (<em>like this post you are reading right now</em>)</span></div>
</li>
<li><span>Twitter feed shows activity of all members</span><span class="author-g-cge7fc9y5z122zii8utq">.  Our current list: </span><span class="author-g-cge7fc9y5z122zii8utq url"><a href="http://twitter.com/tucsondigital/tdac-members">http://twitter.com/tucsondigital/tdac-members</a></span></li>
</ul>
<p><span id="more-429"></span></p>
<p>INDIVIDUAL SECTIONS/BLOGS OF THIS SITE:</p>
<hr /></p>
<h3>Events</h3>
<ul>
<li>Events should have own WordPress blog</li>
<li>Option 1: Possibly setup simple contact form allowing members to submit events to the current calendar plugin.</li>
<li>Option 2: Setup the Events Manager plugin (updated 3 days ago) and test capabilities (RSVP, Submitting Events, RSS feed, etc) http://wordpress.org/extend/plugins/events-manager/</li>
<li>Option 3: Use Google Calendar</li>
<li>Differentiating between *official* TDAC events and user submitted events</li>
<li>Area to help decide on future events.  This should be it&#8217;s own Group/Forum where event topics may be proposed discussed.  Might be good to have a poll to decide between a few finalists on the homepage.</li>
</ul>
<h3>Forums / Groups</h3>
<ul>
<li>
<div id="magicdomid33"><span>Separate forum for easy navigation of all discussions.</span></div>
<ul>
<li>
<div id="magicdomid34"><span>Option 1: remove group forums and just use bbPress as a standalone forum (like BuddyPress.org does)</span></div>
</li>
<li>
<div id="magicdomid35"><span>Option 2: try to use keep forums within each group, but add a &#8220;Forums&#8221; link to top navigation that shows activity across all group forums</span></div>
</li>
</ul>
</li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Group discussions need to be all seen in one place (new bbPress version does this)</span></li>
<li><span>Try to find a way to allow invitations to groups without the &#8220;friends&#8221; feature</span><span class="author-g-cge7fc9y5z122zii8utq"> (possibly just make everyone a friend with everyone else upon signing up)</span></li>
<li><span class="author-g-fz122zdfdqow0y5rgatp">Ties in with proposed Ask TDAC feature.  (just ask your question in the appropriate group forum)</span></li>
</ul>
<h3>Job Board</h3>
<ul>
<li>Job area will have it&#8217;s own WordPress blog</li>
<li><span>Grid should be easy to explore and filter through</span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Admins will be notified of new job posting and filter them as needed</span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Listings will expire after 30 days?</span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Make it easy to submit &#8212; anyone should be able to submit</span><span class="author-g-cge7fc9y5z122zii8utq"> (</span><span>Gravity Forms submission to specific WPMU blog (and category)</span><span class="author-g-cge7fc9y5z122zii8utq">) see an example at </span><span class="author-g-cge7fc9y5z122zii8utq url"><a href="http://jobs.wordpress.net/">http://jobs.wordpress.net/</a></span></li>
<li><span>Members need to login to respond to a job and see contact info</span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Idea of the LinkedIn style checkboxes that allow you to show what you desire from employers (freelance, full-time, etc)</span></li>
</ul>
<h3>User Profiles</h3>
<ul>
<li>More fields need to be added to profiles (such as company you work for, twitter link being link, and website links)</li>
<li><span>Select type of work they do (top 3 categories)</span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Allow members to upload i</span><span>mages of work</span><span class="author-g-jecmz122z0fnvro96v7p"> (</span><span class="author-g-jecmz122z0fnvro96v7p url"><a href="http://www.wpveda.com/buddypress-kaltura-media-component/">http://www.wpveda.com/buddypress-kaltura-media-component/</a></span><span class="author-g-jecmz122z0fnvro96v7p"> )</span></li>
<li><span>Combine mailing list (google group) with member profile. Manage subscriptions. Built in Newsletter (Subscribe2 plugin?)</span><span class="author-g-cge7fc9y5z122zii8utq"><br />
Make the email subscription an option when signing up for TDAC</span><span class="author-g-fz122zdfdqow0y5rgatp"> (MOVE IT AWAY FROM GOOGLE GROUP since it&#8217;s not a discuss</span><span class="author-g-cge7fc9y5z122zii8utq">ions</span><span class="author-g-fz122zdfdqow0y5rgatp">)</span></li>
<li><span class="author-g-fz122zdfdqow0y5rgatp">Sort Directory of members by tag/category</span></li>
<li><span>Facebook Connect</span><span class="author-g-fz122zdfdqow0y5rgatp"> (could be easy to login without signing up)  VERY LOW PRIORITY</span><span class="author-g-fz122zdfdqow0y5rgatp"><br />
Maybe use OpenID too?</span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">Remove auto-linking in profile fields</span>
<ul>
<li><span class="author-g-cge7fc9y5z122zii8utq">The problem is that it tries to link everything: your name, your state, etc</span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">sample code to do this: </span><span class="author-g-cge7fc9y5z122zii8utq url"><a href="http://buddypress.pastebin.com/f461fc21e">http://buddypress.pastebin.com/f461fc21e</a></span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">see also: </span><span class="author-g-cge7fc9y5z122zii8utq url"><a href="http://buddypress.org/forums/topic.php?id=1864#post-14923">http://buddypress.org/forums/topic.php?id=1864#post-14923</a></span></li>
<li><span class="author-g-cge7fc9y5z122zii8utq">then use a similar function to link the Twitter name to the actual Twitter URL</span></li>
</ul>
</li>
</ul>
<h3>Podcasting / Video</h3>
<ul>
<li>Goal of doing short videos with each member. Quick/short/interesting.</li>
<li>Panels of people discussing a topic?</li>
<li>
<div id="magicdomid103"><span class="author-g-fz122zdfdqow0y5rgatp">Set up a standard for recording events and managing responsibilities</span></div>
</li>
<li>
<div id="magicdomid103"><span class="author-g-fz122zdfdqow0y5rgatp">Find video people in Tucson who will do this!</span><span class="author-g-jecmz122z0fnvro96v7p"> (MPG, DP, and UP Groups?)</span></div>
</li>
</ul>
<h3>Sponsorship and Ads</h3>
<ul>
<li>Ad space is earned by participating.  You earn credits by presenting, working on website, creating content, editing video, etc.  This credit can then be used to place an ad up on TDAC.</li>
<li>Tracking and value system needs to be setup for this</li>
<li>Ad program needs to be added to the site which can rotate ads through the various blogs which makeup TDAC</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2009/12/10/tdac-website-meeting-recap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tucson Startup Drinks &#8211; October [Panel on Lawyers]</title>
		<link>http://tucsondigitalarts.com/blog/2009/10/23/tucson-startup-drinks-october-panel-on-lawyers/</link>
		<comments>http://tucsondigitalarts.com/blog/2009/10/23/tucson-startup-drinks-october-panel-on-lawyers/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 00:04:02 +0000</pubDate>
		<dc:creator>Warner Onstine</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[lawyers]]></category>
		<category><![CDATA[startup_drinks]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=403</guid>
		<description><![CDATA[[ October 27th, 2009; 7:00 PM to 9:00 PM. ] This month I've invited several business people who have dealt with lawyers in one capacity or another to share their experiences.

Confirmed are:

Cia Romano of Interface Guru (http://interfaceguru.com)

Andrew Barton of eBlox (http://eblox.com)

Andrew Hollamon (or Mike Liskow) of D'Mention Systems (http://dmentionsystems.com)

William Mitchell of Mitchell Software Engineering (http://mitchellsoftwareengineering.com)

This should be a lively discussion, bring questions, bring friends, bring [...]]]></description>
			<content:encoded><![CDATA[<div class='ec3_iconlet ec3_past'><table><tbody><tr class='ec3_month'><td>Oct&nbsp;&rsquo;09</td></tr><tr class='ec3_day'><td>27</td></tr><tr class='ec3_time'><td>7:00 PM</td></tr></tbody></table></div>
<p>This month I&#8217;ve invited several business people who have dealt with lawyers in one capacity or another to share their experiences.</p>
<p><strong>Confirmed are:</strong></p>
<p>Cia Romano of <a title="Interface Guru" href="http://interfaceguru.com" target="_blank">Interface Guru</a> (http://interfaceguru.com)</p>
<p>Andrew Barton of <a title="eBlox" href="http://eblox.com" target="_blank">eBlox</a> (http://eblox.com)</p>
<p>Andrew Hollamon (or Mike Liskow) of <a title="D'Mention Systems" href="http://dmentionsystems.com" target="_blank">D&#8217;Mention System</a>s (http://dmentionsystems.com)</p>
<p>William Mitchell of <a title="Mitchell Software Engineering" href="http://mitchellsoftwareengineering.com" target="_blank">Mitchell Software Engineering</a> (http://mitchellsoftwareengineering.com)</p>
<p>This should be a lively discussion, bring questions, bring friends, bring lawyers (who may also be friends).</p>
<p><strong>Startup Drinks</strong> is a simple concept: startup culture in cities around the world gathers around a bar to have a pint and discuss what they are working on, what they need help with and what they can do for each other.</p>
<p>The Tucson version of this group meets on the last Tuesday of every month</p>
<p><strong>When: </strong>Tuesday, October 27th beginning at 7 pm</p>
<p><strong>Where: </strong>115 Creative Space (115 E. Broadway Blvd., Tucson, AZ 85701) <a href="http://maps.google.com/maps?q=115+e+broadway,+tucson,+az&amp;oe=utf-8&amp;client=firefox-a&amp;ie=UTF8&amp;hl=en&amp;t=h&amp;z=16&amp;iwloc=A" target="_blank">map it</a></p>
<p>BYOB/Snacks</p>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2009/10/23/tucson-startup-drinks-october-panel-on-lawyers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>October 10th &#8211; 1PM to ?</title>
		<link>http://tucsondigitalarts.com/blog/2009/10/05/october-10th-1pm-to/</link>
		<comments>http://tucsondigitalarts.com/blog/2009/10/05/october-10th-1pm-to/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 20:42:02 +0000</pubDate>
		<dc:creator>tashinamu8</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=387</guid>
		<description><![CDATA[[ October 10th, 2009; 1:00 PM to 8:00 PM. ] A few artists here in Tucson are hosting a Private Studio Tour for the Art and Wine Meetup Club from Greater Phoenix.   There is still room for a few more people to attend. This is not exclusively digital art BUT one artist, Aryen Hart will show his digital photography work that is etched onto steel with a [...]]]></description>
			<content:encoded><![CDATA[<div class='ec3_iconlet ec3_past'><table><tbody><tr class='ec3_month'><td>Oct&nbsp;&rsquo;09</td></tr><tr class='ec3_day'><td>10</td></tr><tr class='ec3_time'><td>1:00 PM</td></tr></tbody></table></div>
<p>A few artists here in Tucson are hosting a Private Studio Tour for the Art and Wine Meetup Club from Greater Phoenix.   There is still room for a few more people to attend. This is not exclusively digital art <strong>BUT one artist, Aryen Hart will show his digital photography work that is etched onto steel with a specialty digital copier.</strong> Below is an excerpt from the schedule.</p>
<p>1:00   Group meets at PCC parking lot at Stone and Speedway</p>
<p>1:20   Mobilized and arrive at Aryan Hart&#8217;s studio</p>
<p>2:40   Arrive at Stephan Derks Studio</p>
<p>4:00   Arrive at Thomas Kerrigan&#8217;s Studio  (handout a small packet of light snacks)</p>
<p>5:20  Conrad Wilde Gallery &#8211; Encaustic Demonstration</p>
<p>6:00  Reception at Conrad Wilde Gallery for artists and attendees  (approx. 40 minutes)</p>
<p>7:00  Arrive at Solar Culture Gallery  (probably won&#8217;t go more than an hour since it will have been a long day for everyone)   Some people may lag behind and not go onto the next step</p>
<p>8:00  Find dinner locally or return to Phoenix</p>
<p><strong>RSVP&#8217;s are required due to the small spaces and the hosted-reception.</strong></p>
<p>Email rsvp to:  <a href="mailto:zozzo@q.com">zozzo@q.com</a></p>
<p>Deb Denne&#8217; &#8211; Event organizer</p>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2009/10/05/october-10th-1pm-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save the Date: 2010 Global Retailing Conference</title>
		<link>http://tucsondigitalarts.com/blog/2009/08/16/save-the-date-2010-global-retailing-conference/</link>
		<comments>http://tucsondigitalarts.com/blog/2009/08/16/save-the-date-2010-global-retailing-conference/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 19:40:58 +0000</pubDate>
		<dc:creator>Brenton</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=360</guid>
		<description><![CDATA[[ April 8th, 2010 to April 9th, 2010. ] This is an exciting and inspirational conference in Tucson every year. It will be at the Ritz Carlton on April 8-9, 2010. The 2010 theme is "Innovation Generation"

http://globalretailingconference.org/2010/]]></description>
			<content:encoded><![CDATA[<div class='ec3_iconlet ec3_past'><table><tbody><tr class='ec3_month'><td class='ec3_multi_start'>Apr</td><td class='ec3_multi_end'>Apr</td></tr><tr class='ec3_day'><td class='ec3_multi_start'>8</td><td class='ec3_multi_end'>9</td></tr></tbody></table></div>
<p>This is an exciting and inspirational conference in Tucson every year. It will be at the Ritz Carlton on April 8-9, 2010. The 2010 theme is &#8220;Innovation Generation&#8221;</p>
<p><a href="http://globalretailingconference.org/2010/" target="_blank">http://globalretailingconference.org/2010/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2009/08/16/save-the-date-2010-global-retailing-conference/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Monsoon Mixer: Social Meet-up at Interface Guru&#8217;s Offices</title>
		<link>http://tucsondigitalarts.com/blog/2009/07/15/monsoon-mixer-social-meet-up-at-interface-gurus-offices/</link>
		<comments>http://tucsondigitalarts.com/blog/2009/07/15/monsoon-mixer-social-meet-up-at-interface-gurus-offices/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 00:46:41 +0000</pubDate>
		<dc:creator>zoeo</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Downtown Tucson]]></category>
		<category><![CDATA[Meet-up]]></category>
		<category><![CDATA[mixer]]></category>
		<category><![CDATA[social]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=338</guid>
		<description><![CDATA[[ August 19th, 2009; 6:00 PM to 9:00 PM. ] On Wednesday, August 19th from 6-9pm, Interface Guru will host the monthly TDAC meet-up at our offices Downtown. We'll provide some snacks and drinks (and a killer 9th-floor view), please feel free to BYOB!

Where: # 177 N. Church Ave. Suite 919# (9th floor) Tucson, AZ 85701
When: Wednesday, August 19th from 6-9pm
What: TDAC monthly meet-up for [...]]]></description>
			<content:encoded><![CDATA[<div class='ec3_iconlet ec3_past'><table><tbody><tr class='ec3_month'><td>Aug&nbsp;&rsquo;09</td></tr><tr class='ec3_day'><td>19</td></tr><tr class='ec3_time'><td>6:00 PM</td></tr></tbody></table></div>
<p>On Wednesday, August 19th from 6-9pm, Interface Guru will host the monthly TDAC meet-up at our offices Downtown. We&#8217;ll provide some snacks and drinks (and a killer 9th-floor view), please feel free to BYOB!</p>
<p><strong>Where</strong>: # 177 N. Church Ave. Suite 919# (9th floor) Tucson, AZ 85701<strong><br />
When</strong>: Wednesday, August 19th from 6-9pm<br />
<strong>What</strong>: TDAC monthly meet-up for socializing and networking plus one-time-only free access to our usability lab to do your own testing!</p>
<p>Throughout the night, we will be conducting live user tests in our lab so attendees can view usability in action. The user tests will be conducted in a separate and soundproof room. The main offices will be open for attendees to socialize and network.</p>
<p>If you are interested in being a test subject, please email us at <a href="mailto:kyle@interfaceguru.com">kyle@interfaceguru.com</a>. Please include your full name, profession, and the name of the Web site you would like to critique/perform a task on. We will conduct these tests in 15-minute intervals and have limited slots available, so opportunities are limited.</p>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2009/07/15/monsoon-mixer-social-meet-up-at-interface-gurus-offices/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Barb Gibson speaks on social media &#8211; April 6th</title>
		<link>http://tucsondigitalarts.com/blog/2009/03/23/barb-gibson-speaks-on-social-media-april-6th/</link>
		<comments>http://tucsondigitalarts.com/blog/2009/03/23/barb-gibson-speaks-on-social-media-april-6th/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 19:51:33 +0000</pubDate>
		<dc:creator>juliegraphics</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=138</guid>
		<description><![CDATA[[ April 6th, 2009; 11:45 AM to 1:30 PM. ] Join IABC/Tucson for a not-to-be-missed opportunity to talk with Barbara A. Gibson, ABC, Chair of IABC..

Barb is visiting Tucson on Monday, April 6 . We'll host this special networking and spotlight session at Maynards in the historic Train Depot downtown.

Barbara, in addition to being IABC's international 2008-2009 Chair, heads London-based independent consultancy SpokesComm, providing both [...]]]></description>
			<content:encoded><![CDATA[<div class='ec3_iconlet ec3_past'><table><tbody><tr class='ec3_month'><td>Apr&nbsp;&rsquo;09</td></tr><tr class='ec3_day'><td>6</td></tr><tr class='ec3_time'><td>11:45 AM</td></tr></tbody></table></div>
<p><strong>Join IABC/Tucson for a not-to-be-missed opportunity to talk with Barbara A. Gibson, ABC, Chair of IABC..</strong></p>
<p>Barb is visiting Tucson on Monday, April 6 . We&#8217;ll host this special networking and spotlight session at Maynards in the historic Train Depot downtown.</p>
<p>Barbara, in addition to being IABC&#8217;s international 2008-2009 Chair, heads London-based independent consultancy SpokesComm, providing both strategic communication planning and media spokesperson development. An American transplant to the UK with more than 20 years experience in corporate communication, public relations and internal communication, she has worked with leading companies worldwide. Barb visits Tucson as the guest of IABC/Tucson and will speak about the emerging role of social media and the broadening scope of international communications.</p>
<p><strong> Date:</strong> Monday, April 6, 2009<br />
<strong>Time:</strong> 11:45 AM &#8211; 1:30 PM</p>
<p><strong>Location:</strong> Maynards, 400 N. Toole Avenue, downtown at the Historic Train Depot and Hotel Congress</p>
<ul>
<li><strong>Cost: </strong>$19 members, $25 at the door and guests,<br />
$16 students.</li>
<li><strong>RSVP:</strong> Reserve on line (see above link) or<br />
Email <a href="mailto:events@iabctucson.com">events@iabctucson.com with any questions</a>.</li>
</ul>
<h3>Get to know Barb prior to April 6: <a href="http://twitter.com/Barb_G">Follow Barb on Twitter</a>!</h3>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2009/03/23/barb-gibson-speaks-on-social-media-april-6th/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Collaborative Work Day, March 7th</title>
		<link>http://tucsondigitalarts.com/blog/2009/03/02/collaborative-work-day-march-7th/</link>
		<comments>http://tucsondigitalarts.com/blog/2009/03/02/collaborative-work-day-march-7th/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 17:43:40 +0000</pubDate>
		<dc:creator>TDAC</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Downtown Tucson]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://tucsondigitalarts.com/?p=108</guid>
		<description><![CDATA[[ March 7th, 2009; 10:00 AM to 5:00 PM. ] Come help us improve the TDAC website. We'll be looking at everything from adding new features, improving the existing site, and brainstorming future additions.


We'll start with as much time as people want to work this Saturday, then see if we want to do another day on Saturday the 14th.

Where: 115 E Broadway Blvd, Tucson, AZ [...]]]></description>
			<content:encoded><![CDATA[<div class='ec3_iconlet ec3_past'><table><tbody><tr class='ec3_month'><td>Mar&nbsp;&rsquo;09</td></tr><tr class='ec3_day'><td>7</td></tr><tr class='ec3_time'><td>10:00 AM</td></tr></tbody></table></div>
<div class="wire-post-content">Come help us improve the TDAC website. We&#8217;ll be looking at everything from adding new features, improving the existing site, and brainstorming future additions.</div>
<div class="wire-post-content">
<p>We&#8217;ll start with as much time as people want to work this Saturday, then see if we want to do another day on Saturday the 14th.</p>
<p><strong>Where:</strong> 115 E Broadway Blvd, Tucson, AZ 85701 (<a href="http://tinyurl.com/ab4v64">map</a>)<br />
<strong>When:</strong> March 7th, 2009 from 10am to 5pm?</p>
<p>Come and participate for as much of the time as you wish: a few minutes, an hour, or all day. Designers, copywriters, coders, thinkers, tinkerers—all are welcome to join the collaboration. There should be something for everyone, but we&#8217;ll probably focus on WordPress plugins and themes.</p>
<p>Bring your laptop.</p>
<p><strong>Details</strong></p>
<p>Here are some of the things which we can work on:</p>
<p><strong>Design / usability</strong></p>
<ul>
<li>Clean up design and content. Add credits area for those working on site.</li>
<li>Add more content boxes for profiles.  Images too?</li>
<li>Re-organize homepage to be more logical.</li>
</ul>
<p><strong>Enhancements and fixes</strong></p>
<ul>
<li>Easier Event posting. Sign up for events?</li>
<li>Avatar uploading troubleshooting</li>
<li>Member directory troubleshooting (clean it up, make it big grid?)</li>
</ul>
<p><strong>New features (plugins or theme changes)</strong></p>
<ul>
<li>Twitter feed to stream all the TDAC members’ Twitter updates</li>
<li>Connect Forum to BuddyPress</li>
<li>Jobs board (separate blog)</li>
<li>Link to Facebook.  use “facebook connect” ?</li>
<li>Search site feature</li>
<li>Podcasting / Videocasting</li>
<li>Add survey and polls</li>
<li>Featured work gallery that members can submit to?</li>
</ul>
<p><strong>Some useful links:</strong></p>
<p>The core of the TDAC site is built using WordPress MU:  <a href="http://mu.wordpress.org/" target="_blank">http://mu.wordpress.org/</a><br />
Some good WP MU specific plugins: <a href="http://wpmudev.org/plugins/" target="_blank">http://wpmudev.org/plugins/</a> and <a href="http://wpmu.org/" target="_blank">http://wpmu.org/</a></p>
<p>We are also using some of the modules/plugins from BuddyPress: <a href="http://buddypress.org/" target="_blank">http://buddypress.org/</a><br />
Info about extending BuddyPress: <a href="http://bp-dev.org/" target="_blank">http://bp-dev.org/</a></p>
<p>Most of the WordPress plugins will work with this installation:  <a href="http://wordpress.org/extend/plugins/" target="_blank">http://wordpress.org/extend/plugins/</a><strong></strong></p>
<p><strong>If you have ideas of things to add to the list, please submit a comment below and come with your ideas on Saturday.</strong></div>
]]></content:encoded>
			<wfw:commentRss>http://tucsondigitalarts.com/blog/2009/03/02/collaborative-work-day-march-7th/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
