by TDAC

August Startup Drinks

Posted on August 27th, 2010 in Events by TDAC

Aug
31
7:00 PM

Startup Drinks – What are you working on? Need help? Need a co-founder?

Come to Tucson Startup Drinks to talk about all things entrepreneurship, trade information, the latest book you’ve been reading or just to take in the vibe. Time to kick off end of summer (and back to school for some of us)!

7 pm at Spoke6 6th St & 6th Ave. – parking available in lot south of 6th St.

Please bring a drink or snack to enjoy and share (doesn’t have to be alcohol).

by TDAC

WordPress Meetup August 2010

Posted on August 9th, 2010 in Events by TDAC

Aug
19
7:00 PM

Join us for an evening of WordPress. We’ll cover the latest in WordPress news, share how we are using WordPress, and have several 10-minute presentations covering topics such as:

- Latest WordPress News
- WordPress community and 100 Stands (Sam Devore)
- Custom Post Types & TDAC Job Board (Tim Bowen)

  • Where: Spoke6, 439 N 6th Ave, Tucson, AZ 85705 (located on the SW corner of 6th Ave & 6th St)
  • When: Thursday, August 19th from 7–9 PM
  • Cost: Please bring a snack or drink to share

This is an open event. Everyone is welcome.

by TDAC

TDAC Learning

Posted on August 12th, 2010 in News by TDAC

Learning

We're beginning a learning program which will soon be part of TDAC and looking for both teachers and students. If you have a minute please fill out this quick questionnaire to help us get started. These will be paid classes.
  • Please use terms from the list above where applicable.

by TDAC

E-Commerce Throw Down (POSTPONED)

Posted on July 2nd, 2010 in News by TDAC

— POSTPONED —

Tim Bowen and Read Whittier will be presenting different E-Commerce systems and going over features.

The following systems will be covered:

  • Magento
  • Shopp (WordPress plugin)
  • WP E-Commerce (WordPress plugin) ?
  • Shopify ?
  • CS-Cart ?

Please offer any other systems you’d like to see covered by leaving a comment.

by TDAC

Barebones CMS Presentation

Posted on June 23rd, 2010 in Events by TDAC

Jul
15
7:00 PM

Learn about Barebones CMS – a high-performance, minimalist content management system.  The author, Thomas Hruska, will give a short presentation and demonstration of this open source product.

Time permitting, Q&A and installation help will be offered afterward.

When: July 15th from 7 to 9pm
Where: Spoke6, 439 N 6th Ave., Tucson, AZ 85705 (SW Corner of 6th and 6th)

This event is free, however please bring a drink or snack to share.

Rapid WordPress Theme Development

Posted on June 23rd, 2010 in News by josh williams

Here are the slides from the presentation I gave about rapid WordPress development at Spoke6 on June 22, 2010.

by TDAC

June Start-up Drinks

Posted on June 22nd, 2010 in Events by TDAC

Jun
29
7:00 PM

Demo Night!
Currently we have two demos of projects in the works. If you have something you’re working on bring it down to present to the group. Other than that we’ll be discussing startups, funding, and, of course, beer (or wine).

Where: Spoke6, 439 N 6th Ave, Tucson, AZ 85705 (SW Corner of 6th and 6th)
When: June 29th from 7-9pm.

BYOB/Snack and come on down

by TDAC

WordPress Meetup June 2010

Posted on May 27th, 2010 in Events by TDAC

Jun
22
7:00 PM

Join us for an evening of WordPress. We’ll cover the latest in WordPress news, share how we are using WordPress, and possibly have several 10-minute presentations.

  • Where: Spoke6, 439 N 6th Ave, Tucson, AZ 85705 (located on the SW corner of 6th Ave & 6th St)
  • When: Tuesday, June 22nd 7–9 PM
  • Cost: Please bring a snack or drink to share

This is an open event. Everyone is welcome.

Presentations scheduled:

  1. Intro: Latest WordPress news (Lance)
    - 3.0 launched last week! Whoo-hoo! Read all the details and watch a video overview, then go update your WordPress sites.
  2. Rapid development (Josh)
  3. WordPress community and 100 Stands (Sam DeVore) Canceled
  4. Ian: Integrating development frameworks and custom applications with WordPress: pros and cons
  5. Child themes (Lance)
    - Codex page: http://codex.wordpress.org/Child_Themes

Ideas for presentations in July and August:

  1. How to develop a theme: A-Z, learning all the files (based on ThemeShaper tutorial)
  2. Writing with WordPress: Britt
  3. Plugin development basics
  4. Common tasks and how to solve them: calendars and events, migration of old sites to the latest WordPress version
  5. Commercialization of WP (plugins, developers, bloggers…)
  6. Top 10 things you should know about WordPress
  7. Compare photo gallery themes/plugins
  8. Search Engine Optimization
  9. Best practices in development and design
  10. BuddyPress review of capabilities

If you’d like to present a topic related to WordPress, drop Lance an email: lance at simpledream dot net.

Speeding up WordPress

Posted on May 25th, 2010 in News by Tim Bowen

Tim Bowen’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: <meta charset=”UTF-8″ />
Not this: <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />

Use Google hosted JQuery / Prototype libraries by adding this to functions.php file:
function my_init_method() {
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js’);
}
add_action(‘init’, ‘my_init_method’);

Remove actions for WordPress meta, rsd_link and wlmanifest by adding these lines to functions.php:
remove_action(‘wp_head’, ‘wp_generator’);
remove_action(‘wp_head’, ‘rsd_link’);
remove_action(‘wp_head’, ‘wlwmanifest_link’);

Use Google minify for JS and CSS files.
Add Javascript files to bottom of page for faster load speeds.

Define elements in wp-config.php file:
define(‘ENABLE_CACHE’, true );
define(‘WP_ALLOW_REPAIR’, true);

Set the WP URL and Site URL to improve site performance.  Make sure these are same as in the General Settings page
define(‘WP_SITEURL’, ‘http://SITENAME.com/cms’);
define(‘WP_HOME’, ‘http://SITENAME.com’);

Set the template directory and stylesheet directory to improve site performance and eliminate server queries
define(‘TEMPLATEPATH’, ‘/home/public_html/cms/wp-content/themes/THEMENAME’);
define(‘STYLESHEETPATH’, ‘/home/public_html/cms/wp-content/themes/THEMENAME’);

Use optimized .htaccess file

Disable hotlinking with this code in .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?example\.com/.*$ [NC]
RewriteRule .*\.(gif|jpg|png|ico)$ – [F,L]
</ifModule>

Image hosting off-site with WP-Offload plugin and Steady Offload

Add <?php flush(); ?> after the </head> and before <body> to speed up loading.

Potentially useful plugins:

  • DB Cache Reloaded (small speed bump while helping to eliminate queries to server)
  • W3 Total Cache (small speed bump, also good for heavy traffic)
  • Quick Cache (small speed bump, good for heavy traffic)
  • WP Super Cache (didn’t notice speed bump, reviews claim good for heavy traffic)
  • PHP Speedy (compresses scripts from plugins, small speed bump)

WordPress Meetup May 2010

Posted on May 13th, 2010 in Events by Lance Willett

May
25
7:00 PM

Join us for an evening of WordPress. We’ll cover the latest in WordPress news, share how we are using WordPress, and possibly have several 10-minute presentations.

  1. Review WordPress news and happenings (Lance)
  2. Two or three short presentations (5-10 minutes each)
  3. Q & A and networking

Event information:

  • Where: Spoke6, 439 N 6th Ave, Tucson, AZ 85705 (located on the SW corner of 6th Ave & 6th St)
  • When: Tuesday, May 25th 7–9 PM
  • Cost: FREE (though please bring drinks or snack to share)

This is an open event. Everyone is welcome.

Ideas for presentations:

  1. Ian: Custom Post Types
  2. Ian: WordPress Performance
  3. Common tasks and how to solve them: calendars and events, migration of old sites to the latest WordPress version.
  4. Tim and Lance: Commercialization of WP
  5. Lance: Child themes

If you’d like to present a topic related to WordPress, drop Lance an email: lance at simpledream dot net.