<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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>apr &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/apr/</link>
	<description>Feed of posts on WordPress.com tagged "apr"</description>
	<pubDate>Sat, 05 Dec 2009 04:14:27 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Promotional Video for the University of Alabama APR Department]]></title>
<link>http://practicingpr.wordpress.com/2009/12/01/promotional-video-for-the-university-of-alabama-apr-department/</link>
<pubDate>Tue, 01 Dec 2009 18:32:08 +0000</pubDate>
<dc:creator>bpyoung</dc:creator>
<guid>http://practicingpr.wordpress.com/2009/12/01/promotional-video-for-the-university-of-alabama-apr-department/</guid>
<description><![CDATA[Our team has created a wonderful promotional video for the public relations department as well as wh]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Our team has created a wonderful promotional video for the public relations department as well as why someone would want to major in public relations.  Through interviews with professors and visual tours we have captured an overall experience for individuals who are unfamiliar with the program.  We hope that our video will be able to help someone choose the University of Alabama&#8217;s Public Relations Department.  We believe our video will encourage prospective students to enroll in the Public Relations Department from all over the United States.  Please check out the link below for the video.</p>
<p><a href="http://www.youtube.com/watch?v=FyO-QZiyA3A">http://www.youtube.com/watch?v=FyO-QZiyA3A</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Must-See Recession-Era TV: "The Card Game" and More]]></title>
<link>http://money.blogs.time.com/2009/11/24/must-see-recession-era-tv-the-card-game-and-more/</link>
<pubDate>Tue, 24 Nov 2009 14:13:51 +0000</pubDate>
<dc:creator>Brad Tuttle</dc:creator>
<guid>http://money.blogs.time.com/2009/11/24/must-see-recession-era-tv-the-card-game-and-more/</guid>
<description><![CDATA[PBS&#8217;s &#8220;Frontline,&#8221; which features journalist Lowell Bergman on camera and that awe]]></description>
<content:encoded><![CDATA[PBS&#8217;s &#8220;Frontline,&#8221; which features journalist Lowell Bergman on camera and that awe]]></content:encoded>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://unavidaenfrases.wordpress.com/2009/11/24/96/</link>
<pubDate>Mon, 23 Nov 2009 23:10:24 +0000</pubDate>
<dc:creator>tibetillo</dc:creator>
<guid>http://unavidaenfrases.wordpress.com/2009/11/24/96/</guid>
<description><![CDATA[&#8220;Nunca te quejes del ambiente o de los que te rodean, hay quienes en tu mismo ambiente supiero]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><blockquote><p><em><strong>&#8220;Nunca te quejes del ambiente o de los que te rodean, hay quienes en tu mismo ambiente supieron vencer, las circunstancias son buenas o malas según la voluntad o fortaleza de tu corazón.</strong><strong>&#8220;</strong></em></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Building and testing APR-util for the iPhone]]></title>
<link>http://hecticant.wordpress.com/2009/11/21/building-and-testing-apr-util-for-the-iphone/</link>
<pubDate>Sat, 21 Nov 2009 22:48:06 +0000</pubDate>
<dc:creator>pedro</dc:creator>
<guid>http://hecticant.wordpress.com/2009/11/21/building-and-testing-apr-util-for-the-iphone/</guid>
<description><![CDATA[The Apache Portable Runtime (APR) is a library that provides a common interface across multiple plat]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">The Apache Portable Runtime (<a title="Apache Portable Runtime" href="http://apr.apache.org" target="_blank">APR)</a> is a library that provides a common interface across multiple platforms for low-level memory management, file IO, concurrency, data structures and more.  It&#8217;s used by projects such as Apache and Subversion. APR-util adds functionality such as parsing and DB access.</p>
<p style="text-align:justify;">Building APR for the iPhone is not straightforward since the configure script requires some inconspicuous flags. Thankfully, Michael Safyan found how to do it and made his build scripts available <a title="Cross-compiling the Apache Portable Runtime for the iPhone" href="http://sites.google.com/site/michaelsafyan/coding/articles/iphone/cross-compiling-the-apache-portable-runtime-for-the-iphone" target="_blank">here</a>. With APR working, building APR-util has its own caveats. The following was tested with Snow Leopard using SDK 3.1.2 and GCC 4.2 to build APR-util 1.3.9.</p>
<p>&#160;</p>
<h4>Building APR-util</h4>
<p style="text-align:justify;">First, as you may have guessed, you need APR to build APR-util. I used version 1.3.8. The other required dependency is expat, which is distributed with APR-util; you just need to set <code>--with-expat=builtin</code>. All the necessary options for <code>./configure</code> are included in a script below.</p>
<p style="text-align:justify;">If you run <code>make</code> with this configuration  you may notice a <em>expected expression before &#8217;struct&#8217;</em> error in apr_brigade.c. After unwinding all the macros this error can be traced to the APR_OFFSET definition. To fix this you need to edit <strong>apr_general.h</strong> located in &#8220;/include/apr-1/&#8221;.</p>
<p style="text-align:justify;">
<pre class="brush: diff; gutter: false; highlight: [9,14]; wrap-lines: false;">
--- apr_general.h    2009-11-19 23:11:33.000000000 +0000
+++ /Users/pedro/Downloads/apr-1.3.8/include/apr_general.h    2006-08-03 11:55:31.000000000 +0100
@@ -76,11 +76,6 @@
 * @return offset
 */

-#ifndef _Offsetof
-#include &#60;stddef.h&#62;
-#define _Offsetof(p_type,field) offsetof(p_type,field)
-#endif
-
 #if defined(CRAY) &#124;&#124; (defined(__arm) &#38;&#38; !defined(LINUX))
 #ifdef __STDC__
 #define APR_OFFSET(p_type,field) _Offsetof(p_type,field)
</pre>
<p>&#160;</p>
<p style="text-align:justify;">Now you can build APR-util. Here&#8217;s the script to build it for the device and simulator. Make sure you change the value of USER_LIB before running the script. By default the device build includes $USER_LIB/armv6 and the simulator $USER_LIB/x86_64. You should also edit INSTALL_FAT.</p>
<pre class="brush: bash; auto-links: false; collapse: true; light: false; toolbar: true; wrap-lines: false;">
#!/bin/sh

# Build static libraries for iPhone (armv6) and iPhone simulator.
#
# Based on
# http://latenitesoft.blogspot.com/2008/10/
#    iphone-programming-tips-building-unix.html
#
# Last update Nov 2009. Pedro Fonseca.

# The lib name, e.g. &#34;libz&#34; or &#34;libapr-1&#34;.
LIB=&#34;libaprutil-1&#34;

# Configure default location for the build results (.libs,lib./libs,objs/,...).
LIBPATH_PATH=&#34;.libs&#34;

# User include paths, e.g. /usr/local/lib, /opt...
USERLIB=&#34;&#34;

# Install path for make install
CONFIG_PREFIX=&#34;--prefix=$USERLIB/armv6&#34;

# Options used by configure for both architectures
CONFIG_ARGS=&#34;--disable-shared --enable-static&#34;

# Flags required to build for arm
ARM_ARGS=&#34;$CONFIG_ARGS --host=arm-apple-darwin9&#34;

# Copy the intermediate libraries to here
DEST=&#34;_fatbuild_&#34;
rm -rfv &#34;`pwd`/$DEST&#34;

# Universal binary final location
INSTALL_FAT=&#34;$USERLIB/fat/lib&#34;

# The current sdk version
SDK_=&#34;3.1.2&#34;

export DEVROOT=/Developer/Platforms/iPhoneOS.platform/Developer
export SDKROOT=$DEVROOT/SDKs/iPhoneOS$SDK_.sdk
export PATH=&#34;$DEVROOT/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin&#34;

# Static library path
LIBPATH_static=$LIBPATH_PATH/$LIB.a
LIBNAME_static=`basename $LIBPATH_static`

# iphone_make(arch)
iphone_make () {
if ! make
then
 echo &#34;Build ($1): make failed with status $?. Exiting...&#34;
 exit 1
else
 echo &#34;Build ($1): no errors.&#34;
fi
}

# Device
export CFLAGS=&#34;-arch armv6 -pipe -no-cpp-precomp \
 --sysroot='$SDKROOT' \
 -isystem $SDKROOT/usr/lib/gcc/arm-apple-darwin9/4.2.1/include/ \
 -isystem $SDKROOT/usr/include \
 -isystem $DEVROOT/usr/include \
 -I$USERLIB/armv6/include&#34;
export CPPFLAGS=&#34;-arch armv6 -isysroot $SDKROOT \
 -isystem $SDKROOT/usr/lib/gcc/arm-apple-darwin9/4.2.1/include/ \
 -isystem $SDKROOT/usr/include/ \
 -isystem $DEVROOT/usr/include \
 -I$USERLIB/armv6/include&#34;
export LDFLAGS=&#34;-arch armv6 --sysroot='$SDKROOT' \
 -L$SDKROOT/usr/lib -L$DEVROOT/usr/lib -L$USERLIB/armv6/lib&#34;

./configure CC=&#34;$DEVROOT/usr/bin/gcc-4.2 -Os&#34; \
 CPP=&#34;$DEVROOT/usr/bin/gcc-4.2 -E&#34; \
 CXXCPP=&#34;$DEVROOT/usr/bin/g++-4.2 -E&#34; \
 LD=&#34;$DEVROOT/usr/bin/ld&#34; $ARM_ARGS $CONFIG_PREFIX \
 --with-apr=&#34;$USERLIB/armv6&#34; --with-expat=builtin

iphone_make &#34;armv6&#34;

mkdir -p $DEST
cp $LIBPATH_static $DEST/$LIBNAME_static.arm
if [[ &#34;$1&#34; = &#34;--install&#34; ]]; then
 make install
fi
make distclean

# Simulator
export PATH=&#34;/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin&#34;

CONFIG_PREFIX=&#34;--prefix=$USERLIB/x86_64&#34;
unset CFLAGS LDFLAGS CPPFLAGS

./configure $CONFIG_ARGS $CONFIG_PREFIX --with-apr=&#34;$USERLIB/x86_64&#34;

iphone_make &#34;x86_64&#34;
cp $LIBPATH_static $DEST/$LIBNAME_static.x86_64
if [[ &#34;$1&#34; = &#34;--install&#34; ]]; then
 make install
fi

# Universal
echo &#34;Build (all): creating universal binary...&#34;
$DEVROOT/usr/bin/lipo -arch arm $DEST/$LIBNAME_static.arm \
 -arch x86_64 $DEST/$LIBNAME_static.x86_64 \
 -create -output $DEST/$LIBNAME_static
$DEVROOT/usr/bin/lipo -info $DEST/*

if [ $? -eq 0 ] &#38;&#38; [[ &#34;$1&#34; = &#34;--install&#34; ]]
then
 cp -v $DEST/$LIBNAME_static $INSTALL_FAT/$LIBNAME_static
fi
</pre>
<p>&#160;</p>
<h4>Testing APR-util</h4>
<p style="text-align:justify;">APR-util includes a test suite. For the simulator you just need to change directory to apr-util-1.3.9/test/, make, ./testall. To run on the device I wrapped the test suite in an iPhone App. This requires a few changes in the test code, mainly due to the application sandbox. Note that this is not the proper way to test an iPhone application; to learn about unit testing with the iPhone SDK 3.0 you should read <a title="Unit Testing Applications" href="http://developer.apple.com/iphone/library/DOCUMENTATION/Xcode/Conceptual/iphone_development/135-Unit_Testing_Applications/unit_testing_applications.html" target="_blank">this</a>. In this case, I wanted to check if the library was working as expected on the device.</p>
<p style="text-align:left;">In Xcode create a new project. I called it TestAprUtil.</p>
<p style="text-align:left;">Add test/ to the project. Make sure data/billion-laughs.xml is in Targets &#62; TestAprUtil &#62; Copy Bundle Resources &#62; billion_laughs.xml.</p>
<p style="text-align:left;">Remove dbd.c.</p>
<p style="text-align:left;">In TestAprUtilAppDelegate.m include <strong>abts.h</strong> and add the following code to <em>applicationDidFinishLaunching:</em></p>
<pre class="brush: cpp; highlight: [7]; light: true;">
// Run apr-util tests. Some tests require the existence of a &#34;data&#34; directory.
NSString *path = [NSTemporaryDirectory() stringByAppendingPathComponent:@&#34;data&#34;];
[[NSFileManager defaultManager] createDirectoryAtPath:path
                          withIntermediateDirectories:NO
                                           attributes:nil
                                                error:nil];
run_tests();
</pre>
<p>&#160;</p>
<p><em>run_tests()</em> doesn&#8217;t exist yet. In <strong>abts.c </strong>replace <em>main()</em> with</p>
<pre class="brush: cpp;">
int run_tests(void) {
    int i;
    int rv;
    abts_suite *suite = NULL;

    initialize();

    verbose = 1;
    quiet = 1;

    char *theTests[] = {
        &#34;teststrmatch&#34;,
        &#34;testuri&#34;,
        &#34;testuuid&#34;,
        &#34;testbuckets&#34;,
        &#34;testpass&#34;,
        &#34;testmd4&#34;,
        &#34;testmd5&#34;,
        &#34;testdbd&#34;,
        &#34;testdate&#34;,
        &#34;testmemcache&#34;,
        &#34;testxml&#34;,
        &#34;testxlate&#34;,
        &#34;testrmm&#34;,
        &#34;testdbm&#34;,
        &#34;testqueue&#34;,
        &#34;testreslist&#34;
    };

    int nTests = 16;
    testlist = calloc(nTests + 1, sizeof(char *));
    for (i = 1; i &#60; nTests; i++) {
        testlist[i - 1] = theTests[i];
    }

    for (i = 0; i &#60; (sizeof(alltests) / sizeof(struct testlist *)); i++) {
        suite = alltests[i].func(suite);
        apr_pool_clear(p);
    }

    rv = report(suite);
    return rv;
}
</pre>
<p>&#160;</p>
<p style="text-align:left;">Don&#8217;t forget to add <em>run_tests()</em> prototype to the header.</p>
<p style="text-align:justify;">Running the test at this point would crash the app because it attempts to create some files outside the application sandbox. The offending functions are located in <strong>testxml.c</strong>, <strong>testbuckets.c</strong>, <strong>testdbd.c</strong> and <strong>testdbm.c</strong>. To get the correct paths to read/write files create <strong>fs_wrapper.c</strong> and the respective header</p>
<pre class="brush: cpp;">
/*
 *  fs_wrapper.c
 *  TestAprUtil
 *
 *  Created by Pedro Fonseca on 11/20/09.
 */
#include &#60;CoreFoundation/CoreFoundation.h&#62;

#include &#60;unistd.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;string.h&#62;
#include &#60;stdio.h&#62;
#include &#34;fs_wrapper.h&#34;

#define STRSIZE 255

char* fs_sane_fname(const char *fname)
{
    char *tmp_path = (char *)calloc(STRSIZE, sizeof(char));
    int len = confstr(_CS_DARWIN_USER_TEMP_DIR, tmp_path, STRSIZE);
    if (!len)
        fprintf(stderr, &#34;error getting temp path\n&#34;);
    else
        *(tmp_path+len-1) = '/';

    strcpy(tmp_path+len, fname);
    return tmp_path;
}

char* fs_sane_resource(const char *fname)
{
    CFStringRef cfFname = CFStringCreateWithCString(NULL, fname, kCFStringEncodingUTF8);
    CFURLRef url = CFBundleCopyResourceURL(CFBundleGetMainBundle(), cfFname, NULL, NULL);
    char *c_fs_path = (char *)calloc(STRSIZE, sizeof(char));
    CFURLGetFileSystemRepresentation(url, TRUE, (UInt8*)c_fs_path, STRSIZE);

    CFRelease(url);
    CFRelease(cfFname);
    return c_fs_path;
}
</pre>
<p>&#160;</p>
<p style="text-align:left;">Include fs_wrapper.h in testxml.c, testbuckets.c, testdbd.c and testdbm.c (or just in testutil.h). Below, for simplicity&#8217;s sake, assume that strings created with fs_sane_* don&#8217;t need to be freed.</p>
<p style="text-align:left;">In testxml.c replace</p>
<pre class="brush: cpp; first-line: 158;">
rv = apr_file_open(&#38;fd, &#34;data/billion-laughs.xml&#34;, APR_FOPEN_READ, 0, p);
</pre>
<p>&#160;</p>
<p style="text-align:left;">with</p>
<pre class="brush: cpp; first-line: 158; wrap-lines: false;">
rv = apr_file_open(&#38;fd, fs_sane_resource(&#34;billion-laughs.xml&#34;), APR_FOPEN_READ, 0, p);
</pre>
<p>&#160;</p>
<p style="text-align:left;">Still in testxml.c replace</p>
<pre class="brush: cpp; light: true; wrap-lines: false;">rv = apr_file_mktemp(fd, template, APR_CREATE &#124; APR_TRUNCATE &#124; APR_DELONCLOSE &#124; APR_READ &#124; APR_WRITE &#124; APR_EXCL, p);
</pre>
<p>&#160;</p>
<p style="text-align:left;">with</p>
<pre class="brush: cpp; light: true; wrap-lines: false;">rv = apr_file_mktemp(fd,  fs_sane_fname(template), APR_CREATE &#124; APR_TRUNCATE &#124; APR_DELONCLOSE &#124; APR_READ &#124; APR_WRITE &#124; APR_EXCL, p);
</pre>
<p>&#160;</p>
<p>In testbuckets.c, for calls to <em>apr_file_open()</em>, <em>apr_file_remove()</em> and <em>make_test_file()</em>, replace the filename argument with <strong>fs_sane_fname</strong>(filename); do the same for calls to <em>apr_dbd_open()</em> in testdbd.c and for <em>apr_pstrcat()</em> in testdbm.c.</p>
<p>The test suite should be ready to run. You may want to redirect stdout to stderr. Here are my test results</p>
<pre><strong>run</strong>
Running…
[Switching to thread 11779]
[Switching to thread 11779]
sharedlibrary apply-load-rules all
<strong>(gdb) </strong><strong>continue</strong>
<strong>testuri              :  SUCCESS</strong>
<strong>testuuid             :  SUCCESS</strong>
<strong>testbuckets          :  Line 326: Skipped:  could not create large file</strong>
<strong>SUCCESS</strong>
<strong>testpass             :  SUCCESS</strong>
<strong>testmd4              :  SUCCESS</strong>
<strong>testmd5              :  SUCCESS</strong>
<strong>testdbd              :  SUCCESS</strong>
<strong>testdate             :  SUCCESS</strong>
<strong>testmemcache         :  SUCCESS</strong>
<strong>testxml              :  SUCCESS</strong>
<strong>testxlate            :  SUCCESS</strong>
<strong>testrmm              :  SUCCESS</strong>
<strong>testdbm              :  SUCCESS</strong>
<strong>testqueue            :  SUCCESS</strong>
<strong>testreslist          :  SUCCESS</strong>
<strong>All tests passed.

</strong></pre>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[About the APR's Memory pools which seem to cause memory leaks]]></title>
<link>http://msorin.wordpress.com/2009/11/19/about-the-aprs-memory-pools-which-seem-to-cause-memory-leaks/</link>
<pubDate>Thu, 19 Nov 2009 07:47:20 +0000</pubDate>
<dc:creator>msorin</dc:creator>
<guid>http://msorin.wordpress.com/2009/11/19/about-the-aprs-memory-pools-which-seem-to-cause-memory-leaks/</guid>
<description><![CDATA[Resources: http://en.wikipedia.org/wiki/Apache_Portable_Runtime http://en.wikipedia.org/wiki/Memory_]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em><strong>Resources:</strong></em></p>
<p><em></p>
<p><a href="http://en.wikipedia.org/wiki/Apache_Portable_Runtime">http://en.wikipedia.org/wiki/Apache_Portable_Runtime</a></p>
<p><a href="http://en.wikipedia.org/wiki/Memory_pool"></p>
<p>http://en.wikipedia.org/wiki/Memory_pool</a></p>
<p><a href="http://dev.ariel-networks.com/apr/apr-tutorial/html/apr-tutorial-3.html">http://dev.ariel-networks.com/apr/apr-tutorial/html/apr-tutorial-3.html</a></p>
<p><a href="http://svnbook.red-bean.com/en/1.1/ch08s05.html">http://svnbook.red-bean.com/en/1.1/ch08s05.html</a></p>
<p></em></p>
<p>The APR pools are some big tables which contain references to consecutive<br />
memory areas which are used by the application. Once the application releases<br />
such an area, the pool marks the memory area as available, but it doesn&#8217;t give<br />
it back to the OS.</p>
<p>Let&#8217;s take an example which better illustrates this situation:<br />
We have 100 memory areas in the pool, each of 10 K RAM . Some of them are used,<br />
some of them not.<br />
10 consecutive objects are released, so we have a block of 100K of continuous<br />
memory (in the pool and in the RAM).<br />
If there comes a request to reserve 80K of RAM, a big part of this block will<br />
be used (8 out of 10 areas). This is reutilization of the pool and from the<br />
outside, there will be no memory increase seen.</p>
<p>But, if there comes a request to allocate 200K of RAM, the pool doesn&#8217;t have<br />
enough consecutive areas to allocate 20 blocks of 10K RAM so, it has to<br />
allocate 20 new blocks of 10 K. This means from outside, that the pool has been<br />
enlarged and this amount of RAM will NOT be released until the end of the<br />
program or until the application decides to flush the pool.</p>
<p>Some time later, if the application requests 80K of RAM, the old 10 Blocks will<br />
be  used, but at this moment, the pool has been enlarged.<br />
AFAIK, there is no limit until which size can such a pool grow.<br />
I&#8217;ll check this&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Which APR is Best for You]]></title>
<link>http://westlakehoustonrealestate.wordpress.com/2009/11/18/which-apr-is-best-for-you/</link>
<pubDate>Wed, 18 Nov 2009 21:56:21 +0000</pubDate>
<dc:creator>Cliff Collins</dc:creator>
<guid>http://westlakehoustonrealestate.wordpress.com/2009/11/18/which-apr-is-best-for-you/</guid>
<description><![CDATA[As a buyer, you may have several questions about which APR (annual percentage rate) is best for you.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright size-full wp-image-50" style="border:black 1px solid;margin:5px;" title="Which APR is best for you?" src="http://westlakehoustonrealestate.wordpress.com/files/2009/11/apr.jpg" alt="" width="150" height="187" />As a buyer, you may have several questions about <strong>which APR (annual percentage rate) is best for you</strong>.  Should you go with adjustable or fixed?  How do you know which way to go?  There are a few points regarding APR you may want to consider before purchasing your <a href="http://www.westlakehoustonrealty.com.z57preview.com/custom3.shtml" target="_blank">Summerwood real estate.</a>  Since the APR is for the <a href="http://www.z57realestate.com/mortgage/mortgage-calculators.shtml" target="_blank">full cost of your mortgage over 30 years</a>, you might want to decide if this is the home you are going to live in for a long period of time or if you plan on only living in it for a few years and then selling it for something else.  If you are going to be living in your <a href="http://www.westlakehoustonrealty.com.z57preview.com/Kingwood_TX_homes_for_sale.shtml" target="_blank">Eagle Springs home</a> for a long period of time and the interest rates are low, you may want to consider a fixed rate.  However, if you plan on selling your home in the next few years, an adjustable rate may be just right for you.</p>
<p>Another thing to think about is how much money you will be putting towards your down payment and how many points you are going to pay.  Your monthly mortgage payment can vary considerably depending on how much money you put down, how many points you are paying and whether you are going with a fixed or adjustable APR.  You definitely need to talk these things out with your <a href="http://www.westlakehoustonrealty.com.z57preview.com/custom8.shtml" target="_blank">West Lake Houston real estate agent</a> before deciding <strong>which APR is best for you</strong>.  <a href="http://www.westlakehoustonrealty.com.z57preview.com/realtor_contact.shtml" target="_blank">Let me know what I can do to help</a> make your home purchase easier.</p>
<p><a href="http://3crealty.com/" target="_blank"><strong>Cliff Collins, 3C Realty &#8211; a Keller Williams Team</strong></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Today's Market Update]]></title>
<link>http://houstonmortgage.wordpress.com/2009/11/18/todays-market-update-2/</link>
<pubDate>Wed, 18 Nov 2009 15:21:44 +0000</pubDate>
<dc:creator>richbonn</dc:creator>
<guid>http://houstonmortgage.wordpress.com/2009/11/18/todays-market-update-2/</guid>
<description><![CDATA[FNMA 30-YR 4.5% Previous close 101.781 Opened down 0.09BPs @ 101.688 Key Economic Data: EUR / USD 1.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p class="getsocial" style="text-align:left;"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1005.png" alt="" /><a title="Add to Facebook" href="http://www.facebook.com/sharer.php?u=http://wp.me/pBqAx-3e" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1015.png" alt="Add to Facebook" /></a><a title="Add to Digg" href="http://digg.com/submit?phase=2&#38;url=http%3A%2F%2Fwp.me%2FpBqAx-3e&#38;title=Today%27s%20Market%20Update" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1025.png" alt="Add to Digg" /></a><a title="Add to Del.icio.us" href="http://del.icio.us/post?url=http%3A%2F%2Fwp.me%2FpBqAx-3e&#38;title=Today%27s%20Market%20Update" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1035.png" alt="Add to Del.icio.us" /></a><a title="Add to Stumbleupon" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwp.me%2FpBqAx-3e&#38;title=Today%27s%20Market%20Update" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1045.png" alt="Add to Stumbleupon" /></a><a title="Add to Reddit" href="http://reddit.com/submit?url=http%3A%2F%2Fwp.me%2FpBqAx-3e&#38;title=Today%27s%20Market%20Update" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1055.png" alt="Add to Reddit" /></a><a title="Add to Blinklist" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&#38;Description=&#38;Url=http%3A%2F%2Fwp.me%2FpBqAx-3e&#38;Title=Today%27s%20Market%20Update" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1065.png" alt="Add to Blinklist" /></a><a title="Add to Twitter" href="http://twitter.com/home/?status=Today%27s%20Market%20Update+%40+http%3A%2F%2Fwp.me%2FpBqAx-3e" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1075.png" alt="Add to Twitter" /></a><a title="Add to Technorati" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwp.me%2FpBqAx-3e" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1085.png" alt="Add to Technorati" /></a><a title="Add to Furl" href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fwp.me%2FpBqAx-3e&#38;t=Today%27s%20Market%20Update" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1095.png" alt="Add to Furl" /></a><a title="Add to Newsvine" href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fwp.me%2FpBqAx-3e&#38;h=Today%27s%20Market%20Update" target="_blank"><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1105.png" alt="Add to Newsvine" /></a><img style="border:0;margin:0;padding:0;" src="http://getsocialserver.files.wordpress.com/2009/02/gs1115.png" alt="" /></p>
<p>FNMA 30-YR 4.5%</p>
<p>Previous close 101.781</p>
<p>Opened down 0.09BPs @ 101.688</p>
<p>Key Economic Data:</p>
<p>EUR / USD   1.4928   Up        0.0051<br />
USD / JPY   89.280   Up        0.0262<br />
GBP / USD   1.6790   Down  0.0022</p>
<p>OIL    79.60       Up   0.46<br />
Gold  1,145.90  Up   6.50</p>
<p>Key Economic News:</p>
<p>CPI and housing, Geithner and Bullard.</p>
<p>8:30: Consumer pirce index for Oct&#8230;a moderate report? On headline, median forecast (of 78): +0.2%, ranging from -0.2% to +0.5%; last +0.2%. On core, median forecast (of 77): +0.1%, ranging from -0.2% to +0.2%; last +0.2%. We made some modest adjustments to our forecast after PPI, but basic nature of the forecast has not changed. As was the case wthe PPI, we expect the CPI to feature a benign core reading with food and energy pulling the headline up, though not nearly as much as in the PPI. Within the core index, the rental components should continue to be flat or slighly negative, and apparel prices should also be off a bit. Medical and lodging away from home are the higher components of our forecast. Price increases for tobacco took effect late in the month to show up materially in this report; they&#8217;ll be an issue for November.</p>
<p>8:30: Housing starts and permits for Oct&#8230;look for a small increase. On starts, median forecast (of 77) +1.7%, ranging from -3.4% to +8.2%; last -1.2% (since revised to -0.9%). With sales of new homes and builder sentiment both stalling of late, we expect gains in housing starts will be limited.</p>
<p>9:00: Treasury Secretary Timothy Geithner hosts a small business financing forum at the US Treasury Department&#8230;</p>
<p>9:15: St. Louis Federal Reserve President James Bullard speaks on the US economic outlook&#8230;Bullard has surprised us in both directions since he&#8217;s been on the job, so hard to know what to expect. He rotates onto the voting membership of the FOMC next year.</p>
<p>Advice:</p>
<p>CPI &#8211; Gas and cars vs Everything Else in the CPI; Starts Down surprisingly.</p>
<p>Bottom Line:<br />
A highly skewed report on consumer prices, with vehicles accounting for more than 80% of the core increase and energy driving most of the rest. Housing starts weaken as high vacancies weigh on new construction, especially of multifamily projects.</p>
<p>Key Numbers:<br />
CPI +0.27% in Oct (mom, -0.2% yoy) vs median forecast +0.2%.<br />
ex food and energy +0.18% (mom, +1.7% yoy) vs median forecast +0.1%.<br />
Housing starts -10.6% in Oct (mom, -7.2% yoy) vs median forecast +1.7%.</p>
<p>Based on CPI and Housing Starts, I see today following in yesterdays footsteps. With all this uncertainty I would lock today.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[More discussion on the APR]]></title>
<link>http://inhousepr.wordpress.com/2009/11/17/more-discussion-on-the-apr/</link>
<pubDate>Tue, 17 Nov 2009 18:54:53 +0000</pubDate>
<dc:creator>dougtheprguy</dc:creator>
<guid>http://inhousepr.wordpress.com/2009/11/17/more-discussion-on-the-apr/</guid>
<description><![CDATA[One of the reasons I love going to the PRSA International Conference is that I &#8212; a lone PR guy]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>One of the reasons I love going to the PRSA International Conference is that I &#8212; a lone PR guy among a bunch of people who have a variety of wrong ideas about what I do to assure that they are putting their best foot forward &#8212; am surrounded by enthusiatic PR practitioners including some of the best minds in the business. And while I&#8217;m proud of my APR, not all of those &#8220;best minds&#8221; have their APR.</p>
<p>One of the things I don&#8217;t like about representing my colleagues at the Assembly, the governing body of PRSA, is the continued discussions that link the APR with governance&#8230;but that&#8217;s another post.</p>
<p>I often try to convince those without the APR that it&#8217;s worth pursuing. Many tell me it isn&#8217;t worth the time or that it doesn&#8217;t garner enough recognition outside of the industry.  It&#8217;s frustrating. I did my APR at a time when I decided I needed to commit 100 percent to public relations as a career or move on. Nobody in my office understands why my APR is important, but it&#8217;s important to me. I think I&#8217;m a better practitioner because of some things I learned and because it enhanced my understanding of and commitment to the profession. I don&#8217;t understand how something that stands for a commitment to continued professional development and a high ethical stance can be unworthy of someone&#8217;s time.</p>
<p>But I was never a great salesman.</p>
<p>Mary Barber, APR, apparently is a better sales person. Ari Adler, a public relations practitioner who attended the conference in San Diego (I&#8217;m sorry we didn&#8217;t get to meet, Ari!) talked with Mary about APR and was so impressed, he blogged about it. See his post and Mary&#8217;s explanation of the APR at <a href="http://bit.ly/2otXB">http://bit.ly/2otXB</a>.</p>
<p>Ari also talks about APRs having &#8220;an attitude.&#8221; Man, I hope I&#8217;m not one of those. I&#8217;ll be trying to do better when I talk about APR in the future!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[GenX in recession]]></title>
<link>http://junkdrawer67.wordpress.com/2009/11/17/genx-in-recession/</link>
<pubDate>Tue, 17 Nov 2009 14:42:47 +0000</pubDate>
<dc:creator>sonnypi67</dc:creator>
<guid>http://junkdrawer67.wordpress.com/2009/11/17/genx-in-recession/</guid>
<description><![CDATA[What is a recent Washington Post article (which I was hipped to by The Gen X Files blog) saying abou]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>What is a recent <a href="http://www.washingtonpost.com/wp-dyn/content/article/2009/11/15/AR2009111501633.html?hpid=sec-tech">Washington Post article</a> (which I was hipped to by <a href="http://www.thegenxfiles.com/2009/11/16/generation-x-lost-once-again/?utm_source=rss&#38;utm_medium=rss&#38;utm_campaign=rss">The Gen X Files</a> blog) saying about GenXer attitudes in light of the current recession?</p>
<blockquote><p><em>They&#8217;re antsy and edgy, tired of waiting for promotion opportunities at work as their elders put off retirement.</em></p></blockquote>
<p>Huh. Doesn&#8217;t sound all that different than before the recession or during the last recession or before that one too. But there is something that&#8217;s different compared to when GenX workers were the age that Millennials are now. And that is this:</p>
<blockquote><p><em>A good number of them are just waiting for the economy to pick up so they can hop to the next job, find something more fulfilling and get what they think they deserve. Oh, and they want work-life balance, too.</em></p></blockquote>
<p>That&#8217;s right. Screw loyalty! To any company anyway. Because we&#8217;ve learned the hard way that such loyalty will get you nothing in the end.</p>
<p>I learned it long before I entered the work force, when I was witness to General Motors attempts to force my father out of his job as an engineer before he was ready. He worked for GM for 35 years but that mattered little because it was cheaper to higher a younger person who would work for less.  I say attempts because my old man is stubborn as hell and he wouldn&#8217;t budge until he got a good retirement package, even when they demoted him to a basically a data entry clerk. Of course, years later GM reneged on their deal to provide health coverage to my father and mother for the rest of their lives.</p>
<p>I learned it again when, in my first foray into the corporate world, I (along with others) was booted in order to balance a budget. Of course, it wasn&#8217;t put that way but it didn&#8217;t need to be said.</p>
<p>More recently, I learned that there is no loyalty in the economic world when CitiCard arbitrarily hiked my APR from 12.24% to 17.99%. No real reason was given for this increase, although later I was reminded of the bill that goes into effect in Feb. 2010 that cracks down on the credit card companies; they&#8217;re all uping their rates before that law goes into effect. Fuckers! And it didn&#8217;t matter that I&#8217;d had a CitiCard for 17 years, that I&#8217;ve always paid my bill on time, that my wife also has a CitiCard, that our mortgage is through CitiBank or Citigroup or whatever the fuck they call themselves. And this is a company that was given government bailout funds.</p>
<p>But enough ranting. Because this whole situation has me wondering. What will come of GenXers being put out of work and not being afford the oppor5tunity to return to the same level again. Perhaps a resurgence in creative endeavors, not just technology-driven but in terms of  art and Literature, music and movies, poetry etc. Certainly family cohesiveness will become stronger. Which is to say, as the article notes, Generation X is tought, resiliant, creative, and we&#8217;ve been here before. So bring it!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How much is your portion of the U.S. debt? - BloggingStocks]]></title>
<link>http://hollyhammer13.wordpress.com/2009/11/17/how-much-is-your-portion-of-the-u-s-debt-bloggingstocks/</link>
<pubDate>Tue, 17 Nov 2009 05:43:12 +0000</pubDate>
<dc:creator>hollyhammer13</dc:creator>
<guid>http://hollyhammer13.wordpress.com/2009/11/17/how-much-is-your-portion-of-the-u-s-debt-bloggingstocks/</guid>
<description><![CDATA[How much is your portion of the U.S. debt? &#8211; BloggingStocks. I am not really into stocks and I]]></description>
<content:encoded><![CDATA[How much is your portion of the U.S. debt? &#8211; BloggingStocks. I am not really into stocks and I]]></content:encoded>
</item>
<item>
<title><![CDATA[The state of the PR industry has changed]]></title>
<link>http://tonofbricks.wordpress.com/2009/11/16/the-state-of-the-pr-industry-has-changed/</link>
<pubDate>Mon, 16 Nov 2009 20:07:05 +0000</pubDate>
<dc:creator>rjdavila2003</dc:creator>
<guid>http://tonofbricks.wordpress.com/2009/11/16/the-state-of-the-pr-industry-has-changed/</guid>
<description><![CDATA[The PRSA International Conference was held this past week in San Diego, Calif. It&#8217;s a time tha]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;"><img class="alignleft" style="border:1px solid black;margin:4px;" title="San Diego Skyline" src="http://i44.photobucket.com/albums/f8/punkrawk_wh0re/4a9a.jpg" alt="" width="278" height="208" />The <a title="PRSA International Conference" href="http://www.prsa.org/ic2009/" target="_blank">PRSA International Conference</a> was held this past week in San Diego, Calif. It&#8217;s a time that many PR professionals look forward to because of the pre-conference seminars, keynote speakers, networking and general sessions. By the way, the weather, food and entertainment only add to the excitement.</p>
<p style="text-align:left;">Of the nearly 25,000 <a title="PRSA Organization Web site" href="http://www.prsa.org/index.html" target="_blank">PRSA</a> members, a select group of us (about 325) have the opportunity to represent our local chapters as Assembly Delegates in the <a title="National Assembly Page" href="http://www.prsa.org/AboutPRSA/Governance/Bylaws#Article_III." target="_blank">National Assembly</a> &#8211; a day-long event akin to a session of congress. This marathon day typically entails review of PRSA bylaws, including amendments and resolutions to enhance the structure of our society.</p>
<div class="wp-caption alignright" style="width: 289px"><a rel="attachment wp-att-314" href="http://tonofbricks.wordpress.com/2009/11/16/the-state-of-the-pr-industry-has-changed/p1010048/"><img class="size-medium wp-image-314" style="margin:4px;" title="Ralph J. Davila, Tom Duke, APR, Fellow PRSA at Assembly" src="http://tonofbricks.wordpress.com/files/2009/11/p1010048.jpg?w=300" alt="Ralph J. Davila, Tom Duke, APR, Fellow PRSA at Assembly" width="279" height="209" /></a><p class="wp-caption-text">Akron Area Chapter Delegates: Ralph J. Davila and Tom Duke, APR, Fellow PRSA at Assembly</p></div>
<p style="text-align:left;">But this year was different. We were tasked with reviewing and finalizing a complete rewrite of the <a title="Society Bylaws" href="http://www.prsa.org/AboutPRSA/Governance/Bylaws" target="_blank">society bylaws</a>, which would constitute the most significant change in the PRSA since its inception in 1947.</p>
<p style="text-align:left;">Many thought it would be impossible to achieve such a feat. But after about 10 hours of laboring, conversing, amending, compromising and sometimes arguing, we made it happen.</p>
<p style="text-align:left;">At about 6 p.m. on Saturday, Nov. 7, a majority vote of two-thirds was reached.</p>
<p style="text-align:left;"><strong>What changes were made to the bylaws?</strong><br />
The Assembly made vast changes, but  a few major ones should be mentioned. I will touch on them without going into too much detail since they are still in legal review.</p>
<p style="text-align:left;"><span style="text-decoration:underline;">APR Accreditation</span><br />
The first major change that was debated for quite some time was the <a title="APR Accreditation Page" href="http://www.prsa.org/Learning/Accreditation/index.html" target="_blank">APR accreditation</a> among membership and the National Board of Directors. According to a 2009 Membership Satisfaction Survey, 63 percent of the respondents stated that the APR was one of the most important programs offered by PRSA. With that said, the Assembly moved to require that any candidate for National Board have an APR to be eligible.</p>
<p style="text-align:left;"><span style="text-decoration:underline;"><a rel="attachment wp-att-375" href="http://tonofbricks.wordpress.com/2009/11/16/the-state-of-the-pr-industry-has-changed/apr_logo_sm/"><img class="alignleft size-full wp-image-375" title="APR Logo" src="http://tonofbricks.wordpress.com/files/2009/11/apr_logo_sm.jpg" alt="APR_Logo_sm" width="162" height="115" /></a></span>This amendment makes a critical statement to the profession. It says that we, as PR pros, must work to achieve a higher standard of excellence by attaining an APR status.  The APR sends a strong message that PR is a true profession, and that we hold a stake in all levels of communication and at the management table.</p>
<p style="text-align:left;">I&#8217;d like to add that it&#8217;s not all about using your APR accreditation as a sales tool or getting a job. It&#8217;s about grounding yourself in the theory and practice of public relations, as well as the confidence you gain.</p>
<p style="text-align:left;"><span style="text-decoration:underline;">Membership Criteria</span><br />
The other main issue discussed at length was how we, as a society, can increase PRSA&#8217;s value among the profession. There are approximately <a title="PR Statistics" href="http://www.bls.gov/oco/ocos086.htm" target="_blank">250,000 people practicing PR in the United States</a>, and only about 10 percent, or 25,000 of them, are PRSA members. Additional terminology was added within the language of the criteria that would have allowed other related professions to become members. After much debate, we as an Assembly voted to keep the language focused on public relations professionals as the membership target.</p>
<p style="text-align:left;"><a rel="attachment wp-att-385" href="http://tonofbricks.wordpress.com/2009/11/16/the-state-of-the-pr-industry-has-changed/prsaaltweb/"><img class="alignleft size-full wp-image-385" style="margin:4px;" title="PRSA Logo" src="http://tonofbricks.wordpress.com/files/2009/11/prsaaltweb.gif" alt="PRSA Logo" width="169" height="65" /></a>We have worked, since the start of the PRSA, to make our society the pre-eminent organization for PR pros. And to make sure that PR is taken seriously among others, we agreed that targeting our efforts on the other 90 percent of practicing PR practitioners would be best, and only strengthen our society and profession.</p>
<p style="text-align:left;">So, many members and PR pros asked why bylaw changes were made and how it would benefit them. Dave Rickey, APR, chair of the <a title="Task Force Update: Dave Rickey, APR" href="http://www.prsa.org/AboutPRSA/Governance/BylawsDocuments/Rickeyinterviewupdate9-09.pdf" target="_blank">Bylaws Rewrite Task Force</a> said:</p>
<blockquote>
<p style="text-align:left;">The primary objective of the bylaws rewrite is to enable a flexible, nimble governance structure to support the best possible PRSA for members, leaders and the profession.</p>
</blockquote>
<p style="text-align:left;"><strong>Final Thoughts</strong><br />
I believe that the rewrite will allow all of us to have a greater voice in decision-making and the direction we take PR and the society. It&#8217;s about inclusion, and we are in an age of both traditional and non-traditional communication, which makes this change both critical and timely.</p>
<p style="text-align:left;">We all have a voice in our society and profession, and need to come together to enhance PR&#8217;s reputation and understanding among the masses. Only then will we be appreciated and valued like we should be.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[To APR or not to APR?]]></title>
<link>http://aribadler.wordpress.com/2009/11/14/to-apr-or-not-to-apr/</link>
<pubDate>Sat, 14 Nov 2009 20:42:51 +0000</pubDate>
<dc:creator>aribadler</dc:creator>
<guid>http://aribadler.wordpress.com/2009/11/14/to-apr-or-not-to-apr/</guid>
<description><![CDATA[I&#8217;ve been struggling lately with whether I should advance my education with a formal training ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright size-full wp-image-842" title="apr" src="http://aribadler.wordpress.com/files/2009/11/apr1.jpg" alt="apr" width="84" height="60" />I&#8217;ve been struggling lately with whether I should advance my education with a formal training program &#8212; either by going for a master&#8217;s degree or earning an APR (Accredited in Public Relations).</p>
<p>The master&#8217;s is very far out of reach, as I see it, based on the cost and the time commitment involved.  The APR, however, is much closer. In the past I just haven&#8217;t been convinced that I need it. The accreditation standard seems to mean a lot to people in the profession, but I&#8217;m not sure how much it means to clients and employers outside the profession.</p>
<p>That discrepancy aside, I can see where there is value to the APR initials after your name. However, one of the reasons I&#8217;ve shied away from trying for my APR  is that I&#8217;ve been rebelling against those trying to tell me I need it. I&#8217;ve been turned away by some of the attitudes involved. Sometimes I get the feeling that people with an APR are looking down their noses at those of us who haven&#8217;t got it. They tend to make new grads think that without their APR, their college education in the PR field is a nice start but doesn&#8217;t really amount to much. And they tend to ignore the idea that accreditation through the School of Hard Knocks and the experience a person can gain after doing the job for nearly 15 years (in my case) just doesn&#8217;t hold any real value.</p>
<p>I&#8217;m sure I&#8217;ve just been too sensitive sometimes, but when it comes to the APR, those who want to promote it could use a bit of PR for themselves and those fancy initials after their name.</p>
<p>I attended the <a href="http://www.prsa.org/ic2009/"><span style="text-decoration:underline;">Public Relations Society of America International Conference</span></a> in San Diego recently, where I finally &#8212; finally! &#8212; heard a good explanation of why a person should consider getting their APR. It was given at a meeting being led by <span style="text-decoration:underline;"><a href="http://twitter.com/mdbarber">Mary Barber</a></span>, a PR pro from Alaska. After hearing her explanation, I actually felt like I had a solid reason to get my APR. The way Mary explains it, earning your APR looks good to others, but she primarily did it for herself.</p>
<p>I recorded Mary giving the explanation again so I could share it here with you. I thought it was good enough that I couldn&#8217;t do it justice trying to put it into words. So, below is Mary, explaining her position. After you watch the video, I&#8217;m betting you&#8217;ll want to check out what it takes to actually earn your APR. You can do that at this <a href="http://www.prsa.org/Learning/Accreditation/index.html"><span style="text-decoration:underline;">link</span></a>.</p>
<p>I&#8217;ll see you there.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/9gpBgUE9TO4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/9gpBgUE9TO4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[APR lotus]]></title>
<link>http://rushworks.wordpress.com/2009/11/13/apr-lotus/</link>
<pubDate>Fri, 13 Nov 2009 15:44:56 +0000</pubDate>
<dc:creator>raulhp</dc:creator>
<guid>http://rushworks.wordpress.com/2009/11/13/apr-lotus/</guid>
<description><![CDATA[APR ha desarrollado un nuevo material para el lotus Exige. Aparte del aleron GTC especifico para el ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://rushworks.wordpress.com/files/2009/10/apr-lotus2.jpg"></a>APR ha desarrollado un nuevo material para el lotus Exige. Aparte del aleron GTC especifico para el lotusm, APR ha desarrollado un air front dam para evitar el lift que ocurre a altas velocidades. Desarrollado en dry carbon con todas las garantias de calidad de acabado y dureza. El nuevo front air dam (Part FA-200311) tiene un precio de $645 y estara empezando a estar disponible para su envio apartir de diciembre del 2009</p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-lotus.jpg"><img class="alignnone size-full wp-image-1474" title="apr lotus" src="http://rushworks.wordpress.com/files/2009/10/apr-lotus.jpg" alt="apr lotus" width="455" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-lotus2.jpg"><img title="apr lotus2" src="http://rushworks.wordpress.com/files/2009/10/apr-lotus2.jpg" alt="apr lotus2" width="455" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-lotus3.jpg"><img class="alignnone size-full wp-image-1476" title="apr lotus3" src="http://rushworks.wordpress.com/files/2009/10/apr-lotus3.jpg" alt="apr lotus3" width="455" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-lotus4.jpg"><img class="alignnone size-full wp-image-1477" title="apr lotus4" src="http://rushworks.wordpress.com/files/2009/10/apr-lotus4.jpg" alt="apr lotus4" width="455" height="304" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[APR, Leadership and Controversy]]></title>
<link>http://tulsatimeapr.wordpress.com/2009/11/11/apr-leadership-and-controversy/</link>
<pubDate>Wed, 11 Nov 2009 17:23:49 +0000</pubDate>
<dc:creator>Kristen Turley, APR</dc:creator>
<guid>http://tulsatimeapr.wordpress.com/2009/11/11/apr-leadership-and-controversy/</guid>
<description><![CDATA[I attended part of the Public Relations Society of America (PRSA) international conference in San Di]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I attended part of the Public Relations Society of America (PRSA) international conference in San <img class="alignright size-full wp-image-539" title="logo_apr_60" src="http://tulsatimeapr.wordpress.com/files/2009/11/logo_apr_60.jpg" alt="logo_apr_60" width="100" height="68" />Diego this past weekend. It was an interesting compilation of traditional PR practitioners and those who focus more on new media channels for communicating messages.</p>
<p>One thing I found quite interesting was the discussion held on Saturday during the Assembly regarding APR and whether or not the PRSA national board members should be required to hold this certification.</p>
<p>I&#8217;m a big proponent of the APR and serve as co-chair on the Tulsa chapter&#8217;s accreditation committee. We&#8217;ve put a lot of time and effort into creating a program that has led to approximately a dozen new APRs over the past four or five years. For a chapter of about 100 people, we have a disproportionately high percentage of APRs with nearly 30 individuals who have passed the exam.</p>
<p>For an organization like PRSA to even question whether or not the APR should be required bothered me. If we as PR professionals expect for the APR to be considered credible in the business world, then we have to lead the way in encouraging our members to earn the certification. The APR process is not about making someone a better leader or giving them the ability to govern an association, but it is about creating a strategically minded PR professional who can represent our industry well at the local, regional or national level. If PRSA as a whole cannot support its&#8217; members in the APR process by requiring the certification of its&#8217; highest leadership then why should we expect anyone outside the industry to respect or find credibility in what an APR can bring to the PR world.</p>
<p>I&#8217;ve said this before, but the APR process is not necessarily about earning more money or creating a veil of mystery around what we do. Instead it&#8217;s about personal growth and professional development. The exam steps provide a great deal of learning than anyone truly understands until they have gone through the process. As an accreditation leader at the chapter level, I find that APR candidates come into the process expecting one thing but always leave with a new appreciation for the PR industry as a whole and a more defined understanding of the business world, which translates into making them smart PR practitioners.</p>
<p>What do you think?</p>
<p><!--Session data--></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Should PR pros be licensed?]]></title>
<link>http://theprepguide.wordpress.com/2009/11/10/should-pr-pros-be-licensed/</link>
<pubDate>Wed, 11 Nov 2009 00:51:43 +0000</pubDate>
<dc:creator>mikinzie</dc:creator>
<guid>http://theprepguide.wordpress.com/2009/11/10/should-pr-pros-be-licensed/</guid>
<description><![CDATA[I&#8217;ve discussed this question with friends and colleagues, and it was brought up again on twitt]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="size-medium wp-image-471 alignright" title="42-15660108" src="http://theprepguide.wordpress.com/files/2009/11/drawing-board.jpg?w=300" alt="42-15660108" width="198" height="198" />I&#8217;ve discussed this question with friends and colleagues, and it was brought up again on twitter (a tweet from someone at the PRSSA National Conference #prssnc): <strong>Should PR professionals have to go through some sort of licensing before they can practice PR?</strong></p>
<p><strong><span style="font-weight:normal;">My opinion is YES.</span></strong></p>
<p>Here&#8217;s why:</p>
<ol>
<li><strong><span style="color:#333399;">The PR profession is in need of a MAJOR face lift</span></strong>. Case in point: When I told my mom I was no longer going to aspire to be a lawyer, but a PR practitioner instead, her response was &#8220;Oh, so you&#8217;re going to make white lies sound like the truth?&#8221; I think a lot of people have that same misconception about the PR function.</li>
<li><strong><span style="color:#333399;">There are too many bad PR people who call themselves professionals that ruin it for the rest of us.</span> </strong>Have you read the <a href="http://badpitch.blogspot.com/" target="_blank">Bad Pitch Blog</a> lately? If you have, you will know how many stupid PR people there are out there: and this blog only exposes a few of them! There needs to be a way to regulate who can practice PR and who cannot.</li>
<li><strong><span style="color:#333399;">APR and PRSA are not enough.</span></strong><strong> </strong>There already is an accreditation test available, but it&#8217;s a common opinion today that an APR is useless since you don&#8217;t &#8220;<em>really</em>&#8221; have to have it to practice PR. And I would have to agree, <em>ANYONE with a suit and a smile can call themselves a PR pro these days.</em> Most CEOs or clients don&#8217;t know what the hell an APR even is or what it stands for. Another form of an attempt to keep PR pros in check are the PRSA ethical guidelines. However, this deals with the same dilemma. What happens when that so-called PR person is not a PRSA member? More importantly, what happens to the CEO or client that doesn&#8217;t understand the point of PRSA and hires bad PR? Both APR and PRSA may be important to (some) good PR people, but the point is that it&#8217;s not about us, it&#8217;s about them: the client.</li>
</ol>
<p>This leads to my conclusion:</p>
<p><strong>There needs to be an identifiable (aka PUBLICIZED) form of licensing or accreditation that is mandatory for all PR practitioners. </strong>PR practitioners should have to EARN the right to practice PR. But more importantly, publics must be made aware, as well as educated, about the formal requirement to practice PR in order for PR to earn credibility and trust.</p>
<p>Lawyers have to attend law school and pass the BAR exam in order to practice law. They can also be dismembered from the BAR and banned from practicing law if they cross the fine line of ethical standards. In my mind, a PR pro&#8217;s function &#8211; <em>dare I say it? &#8212; </em>can be as important as a lawyer&#8217;s <em>(I DID just go there!)</em>. Therefore, PR practitioners, like Lawyers, should be held to some sort of standard that produces serious consequences when trodden upon.</p>
<p><a href="http://business.timesonline.co.uk/tol/business/law/article5847444.ece" target="_blank">Times Online has an interesting counterpoint</a> to my opinion about PR people and Lawyers that I suggest you all read. The Times Online viewpoint, and others like it, proves that we need to do something to be taken more seriously as professionals.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Credit Card Upheaval: Time for You to Wake Up and Take Charge]]></title>
<link>http://money.blogs.time.com/2009/11/09/credit-card-upheaval-time-for-you-to-wake-up-and-take-charge/</link>
<pubDate>Mon, 09 Nov 2009 14:36:33 +0000</pubDate>
<dc:creator>Brad Tuttle</dc:creator>
<guid>http://money.blogs.time.com/2009/11/09/credit-card-upheaval-time-for-you-to-wake-up-and-take-charge/</guid>
<description><![CDATA[Whether you&#8217;ve got one credit card in your wallet or 13, whether you carry a balance or always]]></description>
<content:encoded><![CDATA[Whether you&#8217;ve got one credit card in your wallet or 13, whether you carry a balance or always]]></content:encoded>
</item>
<item>
<title><![CDATA[Unsolicited credit cards (308-57)]]></title>
<link>http://diaryofadebtor.wordpress.com/2009/11/04/unsolicited-credit-cards-308-57/</link>
<pubDate>Wed, 04 Nov 2009 18:29:12 +0000</pubDate>
<dc:creator>diaryofadebtor</dc:creator>
<guid>http://diaryofadebtor.wordpress.com/2009/11/04/unsolicited-credit-cards-308-57/</guid>
<description><![CDATA[I get really irritated by unsolicited credit card &#8216;approvals&#8217; that drop through our door]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I get really irritated by unsolicited credit card &#8216;approvals&#8217; that drop through our door. They don&#8217;t come too often, thankfully, but one came through recently &#8211; essentially saying &#8216;apply now and we can offer you a mere 18.9% APR&#8217;. NO THANKS.</p>
<p>I&#8217;m of the opinion that this kind of unsolicited approach to people going about their normal lives should be completely banned. For one it&#8217;s thoroughly irritating, and secondly it&#8217;s just hooking people into yet more debt &#8211; usually at a ridiculous APR if you read the small print (our record is 50% APR; how would you ever pay that off??). Finally, it also wrecks your credit record because half the time (in my experience) if you do try to apply you get refused anyway, and this gets marked on your credit record. Grrr.</p>
<p>In fact, I got so irate by this unsolicited letter, which even included a mocked-up credit card in an attempt to catch my eye that merely contributes to the UK&#8217;s landfill problem, that I added my thoughts to the UK government&#8217;s credit and store card consultation (<a href="http://www.bis.gov.uk/creditconsultation">http://www.bis.gov.uk/creditconsultation</a>) - immediately I felt my rant ease my wrath, and I&#8217;ve done my bit for democracy!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ARP new products]]></title>
<link>http://rushworks.wordpress.com/2009/11/01/arp-new-products/</link>
<pubDate>Sun, 01 Nov 2009 15:18:44 +0000</pubDate>
<dc:creator>raulhp</dc:creator>
<guid>http://rushworks.wordpress.com/2009/11/01/arp-new-products/</guid>
<description><![CDATA[APR saca al mercado nuevos productos para el Corvette, Mustang y Lotus. Como siempre realizado en Dr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://rushworks.wordpress.com/files/2009/10/apr-logo.jpg"><img class="alignnone size-full wp-image-1469" title="apr logo" src="http://rushworks.wordpress.com/files/2009/10/apr-logo.jpg" alt="apr logo" width="356" height="66" /></a></p>
<p>APR saca al mercado nuevos productos para el Corvette, Mustang y Lotus. Como siempre realizado en Dry carbon con las maximas garantias.</p>
<p>Para el Corvette tenemos los nuevos Side Rocker Extensions (Part Numbers: FS-208008) con un precio oficial de $1400. Todo el material necesario para su montaje esta incluido.</p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-corvette-side-rocker2.jpg"><img class="alignnone size-full wp-image-1459" title="apr corvette side rocker2" src="http://rushworks.wordpress.com/files/2009/10/apr-corvette-side-rocker2.jpg" alt="apr corvette side rocker2" width="455" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-corvette-side-rocker3.jpg"><img class="alignnone size-full wp-image-1460" title="apr corvette side rocker3" src="http://rushworks.wordpress.com/files/2009/10/apr-corvette-side-rocker3.jpg" alt="apr corvette side rocker3" width="455" height="303" /></a></p>
<p>Tambien para el Corvette tenemos el rear spoiler (Part Numbers: AS-105806) con un precio oficial de $675, esta pieza estara disponible para su envio apartir de este mes de Noviembre</p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-corvette-rear-spoiler2.jpg"><img class="alignnone size-full wp-image-1461" title="apr corvette rear spoiler2" src="http://rushworks.wordpress.com/files/2009/10/apr-corvette-rear-spoiler2.jpg" alt="apr corvette rear spoiler2" width="455" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-corvette-rear-spoiler3.jpg"><img class="alignnone size-full wp-image-1462" title="apr corvette rear spoiler3" src="http://rushworks.wordpress.com/files/2009/10/apr-corvette-rear-spoiler3.jpg" alt="apr corvette rear spoiler3" width="455" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-corvette-rear-spoiler4.jpg"><img class="alignnone size-full wp-image-1463" title="apr corvette rear spoiler4" src="http://rushworks.wordpress.com/files/2009/10/apr-corvette-rear-spoiler4.jpg" alt="apr corvette rear spoiler4" width="455" height="303" /></a></p>
<p>Para el Ford Mustang tenemos los Side Rocker Extensions (part: FS-204018) a un precio de $725 y los Rear Skirts (ref FS-204028) y un precio venta al publico de $350</p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker1.jpg"><img class="alignnone size-full wp-image-1464" title="apr mustang side rocker1" src="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker1.jpg" alt="apr mustang side rocker1" width="454" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker3.jpg"><img class="alignnone size-full wp-image-1465" title="apr mustang side rocker3" src="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker3.jpg" alt="apr mustang side rocker3" width="454" height="304" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker4.jpg"><img class="alignnone size-full wp-image-1466" title="apr mustang side rocker4" src="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker4.jpg" alt="apr mustang side rocker4" width="454" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker5.jpg"><img class="alignnone size-full wp-image-1467" title="apr mustang side rocker5" src="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker5.jpg" alt="apr mustang side rocker5" width="454" height="303" /></a></p>
<p><a href="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker7.jpg"><img class="alignnone size-full wp-image-1468" title="apr mustang side rocker7" src="http://rushworks.wordpress.com/files/2009/10/apr-mustang-side-rocker7.jpg" alt="apr mustang side rocker7" width="454" height="307" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[free ads]]></title>
<link>http://webile.wordpress.com/2009/10/31/free-ads-3/</link>
<pubDate>Sat, 31 Oct 2009 09:52:49 +0000</pubDate>
<dc:creator>webile</dc:creator>
<guid>http://webile.wordpress.com/2009/10/31/free-ads-3/</guid>
<description><![CDATA[your test ads or mini banner for only $1/month www.online-trader.cc.cc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>your test ads or mini banner for only $1/month  www.online-trader.cc.cc</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[free ads]]></title>
<link>http://webile.wordpress.com/2009/10/31/free-ads-2/</link>
<pubDate>Sat, 31 Oct 2009 09:52:48 +0000</pubDate>
<dc:creator>webile</dc:creator>
<guid>http://webile.wordpress.com/2009/10/31/free-ads-2/</guid>
<description><![CDATA[your test ads or mini banner for only $1/month www.online-trader.cc.cc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>your test ads or mini banner for only $1/month  www.online-trader.cc.cc</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[free ads]]></title>
<link>http://webile.wordpress.com/2009/10/31/free-ads/</link>
<pubDate>Sat, 31 Oct 2009 09:46:19 +0000</pubDate>
<dc:creator>webile</dc:creator>
<guid>http://webile.wordpress.com/2009/10/31/free-ads/</guid>
<description><![CDATA[your test ads or mini banner for only $1/month www.online-trader.cc.cc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>your test ads or mini banner for only $1/month  www.online-trader.cc.cc</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Guess How Many Credit Card Companies Engage in "Unfair and Deceptive" Practices? ]]></title>
<link>http://money.blogs.time.com/2009/10/29/guess-how-many-credit-card-companies-engage-in-unfair-and-deceptive-practices/</link>
<pubDate>Thu, 29 Oct 2009 19:38:13 +0000</pubDate>
<dc:creator>Brad Tuttle</dc:creator>
<guid>http://money.blogs.time.com/2009/10/29/guess-how-many-credit-card-companies-engage-in-unfair-and-deceptive-practices/</guid>
<description><![CDATA[You&#8217;d think there would be at least one or two credit card issuers out there that weren&#8217;]]></description>
<content:encoded><![CDATA[You&#8217;d think there would be at least one or two credit card issuers out there that weren&#8217;]]></content:encoded>
</item>
<item>
<title><![CDATA[Jacking Up Credit-Card Rates and Fees is Cold. Solution? Freeze Them]]></title>
<link>http://money.blogs.time.com/2009/10/27/jacking-up-credit-card-rates-and-fees-is-cold-solution-freeze-them/</link>
<pubDate>Tue, 27 Oct 2009 16:43:45 +0000</pubDate>
<dc:creator>Brad Tuttle</dc:creator>
<guid>http://money.blogs.time.com/2009/10/27/jacking-up-credit-card-rates-and-fees-is-cold-solution-freeze-them/</guid>
<description><![CDATA[The final provisions of new credit card legislation aimed at protecting consumers won&#8217;t go int]]></description>
<content:encoded><![CDATA[The final provisions of new credit card legislation aimed at protecting consumers won&#8217;t go int]]></content:encoded>
</item>
<item>
<title><![CDATA[Beyond the Hype II - Turning Crisis into Opportunity]]></title>
<link>http://legatopr.wordpress.com/2009/10/20/beyond-the-hype-ii-turning-crisis-into-opportunity/</link>
<pubDate>Tue, 20 Oct 2009 05:53:02 +0000</pubDate>
<dc:creator>Legato PR</dc:creator>
<guid>http://legatopr.wordpress.com/2009/10/20/beyond-the-hype-ii-turning-crisis-into-opportunity/</guid>
<description><![CDATA[CPRS-VI promises an impressive line-up of speakers along with hands-on learning at its fall conferen]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>CPRS-VI promises an impressive line-up of speakers along with hands-on learning at its fall conference &#8220;Beyond the Hype II &#8211; Turning Crisis into Opportunity&#8221;. Learn about crisis and issues management from keynote speaker Dr. Terry Flynn, attend case study sessions with Roy Wadia, Director of Communications for the BC Centre for Disease Control, or a high-level tourism panel; brush up on social media and your media evaluation skills, and lastly, laugh-out-loud with stand-up comic, web pioneer and communications veteran Rob Cottingham.</p>
<p>The date is Friday the 13th &#8211; of November, that is, and the location is once again Royal Roads University in Victoria, BC. Check out the details at www.beyondthehype.ca.<br />
Early Bird registrations accepted now.&#8221;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Citibank Credit Card Rate Increases Ridiculous!]]></title>
<link>http://adrienneparks.wordpress.com/2009/10/19/citibank-credit-card-rate-increases-ridiculous/</link>
<pubDate>Mon, 19 Oct 2009 17:40:26 +0000</pubDate>
<dc:creator>adrienneparks</dc:creator>
<guid>http://adrienneparks.wordpress.com/2009/10/19/citibank-credit-card-rate-increases-ridiculous/</guid>
<description><![CDATA[Friends, Citibank Credit Card Rate Increases! If like me, you received a notice of increase to 29.99]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Friends, Citibank Credit Card  Rate Increases! If like me, you received a notice of increase to 29.99% or more, write directly to: </p>
<p>KEN STORK, OFFICE OF THE PRESIDENT, CITIBANK (South Dakota), PO BOX 6000, Sioux Falls, SC 57117-6148. </p>
<p>Complain now! Loudly! Congress has legislation before it now to STOP these usurious tactics by &#8220;your&#8221; longtime friendly credit card issuer. However these should-be felonious banks have run to &#8220;South Dakota,&#8221; the last state in the US to permit NO CAP to interest rates. Let Mr. Stork know his clientele is going to &#8220;deliver&#8221; an ugly baby to him via Congress. If he doesn&#8217;t clean up his act and that of Citibank&#8217;s now, Congress and &#8220;We the People&#8221; will clean it up for him.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
