<?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>Penfall &#187; blogging</title>
	<atom:link href="http://www.penfall.com/category/blogging/feed" rel="self" type="application/rss+xml" />
	<link>http://www.penfall.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Sep 2011 22:35:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Austin</title>
		<link>http://www.penfall.com/blogging/austin</link>
		<comments>http://www.penfall.com/blogging/austin#comments</comments>
		<pubDate>Fri, 19 Nov 2010 04:46:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Random]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.penfall.com/?p=402</guid>
		<description><![CDATA[Last weekend I went to Austin to visit Cristen, snapped some photos, had a few margaritas, launched a website, ate bbq, went hiking (and got lost), saw a UT football game, and ate and drank at an awesome brewpub. Did I mention the Legos?]]></description>
			<content:encoded><![CDATA[<p>Last weekend I went to Austin to visit <a  href="http://cuteandnerdy.com/" target="_blank">Cristen</a>, <a  href="http://madeleine.zenfolio.com/p510649179" target="_blank">snapped some photos</a>, had a few margaritas, launched a website, <a  href="http://www.snowsbbq.com/" target="_blank">ate bbq</a>, <a  href="http://www.tpwd.state.tx.us/spdest/findadest/parks/bastrop/" target="_blank">went hiking</a> (and got lost), saw a UT football game, and ate and drank at an <a  href="http://www.blackstar.coop/" target="_blank">awesome brewpub</a>.</p>
<p>Did I mention the Legos?</p>
<p style="text-align: center;"><a  href="http://madeleine.zenfolio.com/p510649179/hb6cd1b2#hb6cd1b2"><img class="aligncenter size-medium wp-image-403" title="Legos" src="http://www.penfall.com/wp-content/uploads/2010/11/MG_6890-300x200.jpg" alt="" width="440" height="280" /></a><span id="more-402"></span></p>
<p style="text-align: center;"><a  href="http://madeleine.zenfolio.com/p510649179/hb6cd1b2#hbaead4e"><img class="aligncenter size-medium wp-image-404" title="_MG_6893" src="http://www.penfall.com/wp-content/uploads/2010/11/MG_6893-300x200.jpg" alt="" width="440" height="280" /></a></p>
<p style="text-align: center;"><a  href="http://madeleine.zenfolio.com/p510649179/hb6cd1b2#h11f49f50"><img class="aligncenter size-large wp-image-408" title="_MG_6912" src="http://www.penfall.com/wp-content/uploads/2010/11/MG_69123-e1290141811155-682x1024.jpg" alt="" width="442" height="804" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/austin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today I Learned: PHP handlers &amp; .htaccess</title>
		<link>http://www.penfall.com/blogging/today-i-learned-php-handlers-htaccess</link>
		<comments>http://www.penfall.com/blogging/today-i-learned-php-handlers-htaccess#comments</comments>
		<pubDate>Tue, 16 Nov 2010 05:20:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Tech]]></category>
		<category><![CDATA[Today I Learned...]]></category>
		<category><![CDATA[What We're Working On]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.penfall.com/?p=395</guid>
		<description><![CDATA[At work, we have an email thread that goes around daily, called &#8220;Today I learned.&#8221; It is how it sounds &#8211; we share things we&#8217;ve learned as we build functionality for sites, mostly using Drupal or WordPress. It&#8217;s pretty rare for a day to go by without a today I learned email. I enjoy the<a class="read-more" href="http://www.penfall.com/blogging/today-i-learned-php-handlers-htaccess">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p>At work, we have an email thread that goes around daily, called &#8220;Today I learned.&#8221; It is how it sounds &#8211; we share things we&#8217;ve learned as we build functionality for sites, mostly using Drupal or WordPress. It&#8217;s pretty rare for a day to go by without a <em>today I learned </em>email. I enjoy the emails because everyone has pretty varied strengths, and what might seem common knowledge to one person can be eye-opening to another.</p>
<p>The other day, I learned (somewhat the hard way) about PHP handlers within .htaccess. Essentially, your server can be running a very old version of PHP, and you can override this by adding a line in your .htaccess file (where, among other things, you can also require a username/password for access to your site):</p>
<blockquote><p>AddHandler php5-script .php</p></blockquote>
<p>This line forces any .php files in that directory to be executed as PHP5 code.  If you&#8217;re looking to remove the user/pass from your site, it&#8217;s probably a good idea to check out your .htaccess file first, to be sure it&#8217;s not including something like the above. If it is, chances are the server is running an old version of PHP, and if you remove/rename .htaccess, your site will most likely throw a PHP error. Fun!</p>
<p><span id="more-395"></span>After figuring this out, I did a bit of research into the things you can do with .htaccess. The mod_rewrite plugin lets you redirect URLs without the user knowing. Some servers have this by default, so all you have to put in .htaccess is -</p>
<blockquote><p>RewriteEngine on<br />
RewriteRule ^old\.html$ new.html</p></blockquote>
<p>If you WANT your users to know they&#8217;re being redirected, you&#8217;d add an [R] at the end of your RewriteRule line.</p>
<p>I&#8217;m pretty sure I&#8217;ll be doing more digging into .htaccess tomorrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/today-i-learned-php-handlers-htaccess/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging, Day Three</title>
		<link>http://www.penfall.com/blogging/blogging-day-three</link>
		<comments>http://www.penfall.com/blogging/blogging-day-three#comments</comments>
		<pubDate>Wed, 10 Nov 2010 01:39:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.penfall.com/?p=392</guid>
		<description><![CDATA[I&#8217;m already getting a little frustrated with the &#8220;blog every day&#8221; thing I brought upon myself, but in an effort to overcome my own laziness, here I am. I&#8217;m taking the easy road, though, and instead of blogging something worthwhile or possibly even interesting, I&#8217;m going to tell you about my shoulder. About a year<a class="read-more" href="http://www.penfall.com/blogging/blogging-day-three">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m already getting a little frustrated with the &#8220;blog every day&#8221; thing I brought upon myself, but in an effort to overcome my own laziness, here I am. I&#8217;m taking the easy road, though, and instead of blogging something worthwhile or possibly even interesting, I&#8217;m going to tell you about my shoulder.</p>
<p>About a year ago I was playing softball and slid headfirst into home plate. The result was a separated and dislocated shoulder, for which I did not seek medical treatment until the next day. After seeing the doc everything seemed fine I&#8217;m sure mostly because of the vicodins, but generally things were fine. I stopped using the sling after a few weeks, and slowly but surely it felt better. My shoulder still hurt, but I figured it was still healing.</p>
<p><span id="more-392"></span>A month or two later, it still hurt. Primarily the back of it, near the shoulder blade. It felt like someone was sticking a hot poker into the back of my shoulder, burning whatever muscles it could, followed by random yet sharp, sharp pains. It&#8217;s hard for me to remember the precise order of everything that happened in the months after the initial injury, but it felt something like this: doctor, doctor, mri, physical therapy (x2 per week for 8 weeks), doctor, x-ray, mri, doctor, needles, doctor, more needles, more physical therapy, doctor, occupational therapy. And I find myself sitting here, over a year later, in pain.</p>
<p>The initial theory was that I had pinched a nerve in my back or neck. Often, when nerves are pinched in the neck, it can cause symptoms of pain in the neck, shoulder, or even elbow or fingers. Another theory was that I had torn a disc in my neck &#8211; this one turned out to be true. I saw a spine specialist who told me the MRI on my neck had indeed shown a torn disc, only slightly, and that some injections would help it heal. It had been unable to heal due to the swelling around it. So, we did the injections. But these are no run of the mill injections. It&#8217;s not a cortisone shot. It&#8217;s this: <a  href="http://www.spineuniverse.com/treatments/pain-management/cervical-facet-joint-injection-information" target="_blank">Cervical Facet Joint Injection</a>. Fun!</p>
<p>At first I was pretty hopeful and optimistic that we had found the solution (well, that my doctor had found the solution). It did feel better for a while, maybe about a week. It was a lovely week. And then it was back to what I now know as normal. I did a second set of injections for kicks, and after no positive results, was referred to another doctor who basically recommended I do Physical Therapy (again) as well as Occupational Therapy. The theory there was, I spend much of the day in front of a computer, and my posture most likely is just awful. So, I did 12 weeks of PT and OT, twice a week.</p>
<p>I sit here today, still in pain. It&#8217;s definitely not as bad as it was a year ago. I know that for sure, and I&#8217;m grateful of that because it was really, really bad. But on occasion it&#8217;s still too painful for me to even sit still.</p>
<p>I&#8217;m writing this mostly because I feel like I have nothing else to write about, but also because there&#8217;s a small part of me that hopes a doctor is reading this somewhere and thinking &#8220;I know EXACTLY what she needs to fix her shoulder forever.&#8221;</p>
<p>Please?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/blogging-day-three/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pimping out WordPress Admin</title>
		<link>http://www.penfall.com/blogging/pimping-out-wordpress-admin</link>
		<comments>http://www.penfall.com/blogging/pimping-out-wordpress-admin#comments</comments>
		<pubDate>Tue, 09 Nov 2010 04:56:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Tech]]></category>
		<category><![CDATA[What We're Working On]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[websites]]></category>

		<guid isPermaLink="false">http://www.penfall.com/?p=379</guid>
		<description><![CDATA[First, let me assure you that this entire blog will not revolve around WordPress, but for now, that&#8217;s how it seems to be going. On Saturday I wrote about the admin menu I found for WordPress called Ozh’ Admin Drop Down Menu. When I emailed the tech team at work, I got a response from<a class="read-more" href="http://www.penfall.com/blogging/pimping-out-wordpress-admin">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p>First, let me assure you that this entire blog will not revolve around WordPress, but for now, that&#8217;s how it seems to be going.</p>
<p>On Saturday <a  href="http://www.penfall.com/blog-changes/feedwordpress-and-admin-menu/" target="_blank">I wrote about</a> the admin menu I found for WordPress called <a  href="http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/" target="_blank">Ozh’ Admin Drop Down Menu</a>. When I emailed the tech team at work, I got a response from <a  href="http://www.echoditto.com/users/jenn-schlick" target="_blank">Jenn</a>:</p>
<blockquote><p><a  href="http://wordpress.org/extend/plugins/wordpress-admin-bar/">Viper&#8217;s admin bar</a> embeds in the front end&#8230; it works well w/ <a  href="http://wordpress.org/extend/plugins/admin-trim-interface/">admin trim interface</a> (remove footer links and &#8216;howdy&#8217;, etc) + <a  href="http://wordpress.org/extend/plugins/content-management-system-dashboard/">cms dashboard</a> (adds big publishing buttons to the dashboard).</p></blockquote>
<p>The first, Viper&#8217;s admin bar, is essentially the same thing as the other admin bar, except it is themed like the same bar on <a  href="http://wordpress.com/" target="_blank">WordPress.com</a>. Very clean, pretty, useful, and you can pick and choose which items you want or don&#8217;t want in the bar (the other plugin does not have this option). It also has the option to show on the homepage when you&#8217;re logged in, which is pretty much the only thing the other plugin was lacking.</p>
<p>Perhaps most importantly, it lets you set the items for the menu bar per account (per user). I would hope that this is one step closer to settings in plugins having role definitions, i.e. having the admin set the menu bar for admins as a whole, authors, contributors, etc.</p>
<p><a  href="http://www.penfall.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-11.31.20-PM1.png"><img class="aligncenter size-medium wp-image-387" title="Screen shot 2010-11-08 at 11.31.20 PM" src="http://www.penfall.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-11.31.20-PM1-300x262.png" alt="" width="300" height="262" /></a></p>
<p>What I wish you could do with Viper&#8217;s plugin is get rid of the other menu on the left sidebar that is standard for WordPress (though I suppose I could do this manually). This way, we could customize the admin menu for clients more easily, showing them only the pieces they would need to use. The especially important advantage to this is, you would be able to hide the theme editor from those who may inadvertently edit .css or page templates, and thus totally bork the theme. Tip: The settings for this plugin live under Tools, not Settings.</p>
<p>The Admin Trim Interface plugin is also pretty great. This lives under Appearance, and lets you pick and choose which pieces of the admin theme you&#8217;d like to have disappear. I think it&#8217;s a relatively easy thing to do in the .css, but again, nice to have in a plugin to make the admin section of your site more client friendly.</p>
<p><a  href="http://www.penfall.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-11.25.58-PM1.png"><img class="aligncenter size-medium wp-image-388" title="Screen shot 2010-11-08 at 11.25.58 PM" src="http://www.penfall.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-11.25.58-PM1-300x188.png" alt="" width="300" height="188" /></a></p>
<p>One thing I haven&#8217;t tried yet (also recommended by Jenn) is the <a  href="http://wordpress.org/extend/plugins/option-tree/screenshots/" target="_blank">WordPress Option Tree</a> (also <a  href="http://wp.envato.com/" target="_blank">here</a>). If you&#8217;ve ever worked with a <a  href="http://woothemes.com" target="_blank">Wootheme </a>(this theme is one), they all generally come with built-in theme options. These options are normally something you&#8217;d have to know a bit of code, or html, in order to change. The WooThemes menus let you select from a variety of stylesheets (if the theme has them, of course), exclude pages from the navigation, display full content or the excerpt on the homepage, etc.</p>
<p><a  href="http://www.penfall.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-11.43.35-PM1.png"><img class="aligncenter size-medium wp-image-389" title="Screen shot 2010-11-08 at 11.43.35 PM" src="http://www.penfall.com/wp-content/uploads/2010/11/Screen-shot-2010-11-08-at-11.43.35-PM1-300x154.png" alt="" width="300" height="154" /></a>If you installed all of these plugins, I&#8217;m pretty positive you&#8217;d have a fully customized, client/kid/adult/internet-dummy/developer friendly admin section of your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/pimping-out-wordpress-admin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing ShareThis WordPress plugin</title>
		<link>http://www.penfall.com/blogging/customizing-sharethis-wordpress-plugin</link>
		<comments>http://www.penfall.com/blogging/customizing-sharethis-wordpress-plugin#comments</comments>
		<pubDate>Sat, 06 Nov 2010 22:35:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cool Tech]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.penfall.com/?p=366</guid>
		<description><![CDATA[I realized that having the ShareThis links at the end of my blog posts might actually prevent them from being shared as much, assuming that most people won&#8217;t read the posts in their entirety (sad, but probably true). So, I decided to add the ShareThis links in the left sidebar where it lists the date<a class="read-more" href="http://www.penfall.com/blogging/customizing-sharethis-wordpress-plugin">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p>I realized that having the <a  href="http://sharethis.com/" target="_blank">ShareThis</a> links at the end of my blog posts might actually prevent them from being shared as much, assuming that most people won&#8217;t read the posts in their entirety (sad, but probably true). So, I decided to add the ShareThis links in the left sidebar where it lists the date of the post, and comments (look left right now, you&#8217;ll see them). For those of you who are now confused, the links I&#8217;m talking about are the little Facebook, Twitter, and Email icons.</p>
<p>Once you enable ShareThis, and set the links to show up for each post, it automatically grabs the information for that post when you share it. So, if you just copy the code for ShareThis to another place on your site, it won&#8217;t work, because it&#8217;s no longer pulling the actual post info: Title, URL, etc.</p>
<p>I fixed this by adding in a few WordPress functions that call for the title and URL of the post. For example, instead of doing this:</p>
<blockquote><p>&lt;span class=&#8217;st_facebook&#8217; st_title=&#8217;{TITLE}&#8217; st_url=&#8217;{URL}&#8217; &gt;&lt;/span&gt;</p></blockquote>
<p>I called for the actual permalink and title of the post. Like so:</p>
<blockquote><p>&lt;span class=&#8217;st_facebook&#8217; st_title=&#8217;&lt;?php the_title()?&gt;&#8217; st_url=&#8217;&lt;?php the_permalink()?&gt;&#8217; &gt;&lt;/span&gt;</p></blockquote>
<p>Seems to me this is a pretty awesome tweak to ShareThis if you don&#8217;t want it at the end of each post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/customizing-sharethis-wordpress-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FeedWordPress and Admin Menu</title>
		<link>http://www.penfall.com/blog-changes/feedwordpress-and-admin-menu</link>
		<comments>http://www.penfall.com/blog-changes/feedwordpress-and-admin-menu#comments</comments>
		<pubDate>Sat, 06 Nov 2010 21:15:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Changes]]></category>
		<category><![CDATA[Cool Tech]]></category>
		<category><![CDATA[Today I Learned...]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.penfall.com/?p=357</guid>
		<description><![CDATA[You may have noticed that I redesigned this blog just recently (or, you didn&#8217;t because it&#8217;s been about a year since I last blogged). In redesigning and restructuring, I came across two WordPress plugins that have been very helpful. For one, I needed a page that would display posts from my EchoDitto blog and EchoDitto<a class="read-more" href="http://www.penfall.com/blog-changes/feedwordpress-and-admin-menu">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p>You may have noticed that I redesigned this blog just recently (or, you didn&#8217;t because it&#8217;s been about a year since I last blogged). In redesigning and restructuring, I came across two WordPress plugins that have been very helpful.</p>
<p>For one, I needed a page that would display posts from my <a  href="http://www.echoditto.com/blogs/madeleine-perry" target="_blank">EchoDitto blog</a> and <a  href="http://www.echodittolabs.org/blogs/madeleine-perry" target="_blank">EchoDitto labs blog</a>. I probably over-engineered this (in fact, I know I did), but rather than keep it simple&#8230; I downloaded and installed <a  href="http://feedwordpress.radgeek.com/">FeedWordpress</a>. This plugin reminds me of <a  href="http://drupal.org/project/feeds">Feeds</a> (and Feed Aggregator) for Drupal &#8211; it basically does the same thing. I can pull a feed in from anywhere, and it creates posts from that feed as posts on my site. You can see this in action <a  href="http://www.penfall.com/echoditto-posts">here</a>. I set it up to automatically categorize posts in a certain category, and then created a <a  href="http://codex.wordpress.org/Stepping_Into_Templates">page template</a> to have it display posts of that category using &lt;?php <a href="        http://codex.wordpress.org/Function_Reference/query_posts" target="_blank">query_posts</a>(&#8216;category_name=echoditto&#8217;); ?&gt;. This is the part I&#8217;m sure I over-engineered. There must be an easier way.</p>
<p>In any case&#8230;</p>
<p>The second plugin I am using is called <a  href="http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/" target="_blank">Ozh&#8217; Admin Drop Down Menu</a>. Another comparison: this one is quite like <a  href="http://drupal.org/project/admin_menu" target="_blank">Administration Menu</a> for Drupal. It provides a nice admin menu. It removes the standard sidebar admin menu and instead gives you a horizontal one at the top with dropdowns. You can customize colors, remove the WordPress admin header (as I have done here).</p>
<p><a  href="http://www.penfall.com/wp-content/uploads/2010/11/admin_menu.png"><img class="aligncenter size-large wp-image-358" title="admin_menu" src="http://www.penfall.com/wp-content/uploads/2010/11/admin_menu-1024x533.png" alt="" width="440" height="280" /></a></p>
<p>Other than that, the plugins I have installed are relatively standard. I&#8217;ve made some theme tweaks (this one is from <a  href="http://demo.woothemes.com/?name=typebased" target="_blank">WooThemes</a>), including adding a &#8220;Post a Comment&#8221; link in the left sidebar for each post and changing the link colors to NOT be a hideous red (sorry theme developer, I do love the theme though). I still need to fix instances of text running out of appropriate areas (twitter links in the sidebar) and figure out how to actually blog on this thing regularly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blog-changes/feedwordpress-and-admin-menu/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Testing with Photography</title>
		<link>http://www.penfall.com/blogging/testing-with-photography</link>
		<comments>http://www.penfall.com/blogging/testing-with-photography#comments</comments>
		<pubDate>Sat, 06 Nov 2010 04:44:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[My Photos]]></category>
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.penfall.com/?p=282</guid>
		<description><![CDATA[I&#8217;m back (again). And I&#8217;ve recently become interested in photography, so I&#8217;m going to test the layout of this theme with some big photos. Have fun lookin&#8217;!]]></description>
			<content:encoded><![CDATA[<p><a  href="http://www.penfall.com/wp-content/uploads/2010/11/MG_39681.jpg"><img class="size-large wp-image-285 alignleft" title="Bird" src="http://www.penfall.com/wp-content/uploads/2010/11/MG_39681-1024x682.jpg" alt="" width="440" height="280" /></a>I&#8217;m back (again). And I&#8217;ve recently become interested in photography, so I&#8217;m going to test the layout of this theme with some big photos. Have fun lookin&#8217;!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/testing-with-photography/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>can&#8217;t believe i&#8217;m actually doi&#8230;</title>
		<link>http://www.penfall.com/blogging/cant-believe-im-actually-doi</link>
		<comments>http://www.penfall.com/blogging/cant-believe-im-actually-doi#comments</comments>
		<pubDate>Sat, 06 Nov 2010 03:19:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://www.penfall.com/blogging/cant-believe-im-actually-doi/</guid>
		<description><![CDATA[can&#8217;t believe i&#8217;m actually doing a wordpress export at 11pm on friday night. but at least i&#8217;m moving to my own hosting]]></description>
			<content:encoded><![CDATA[<p>can&#8217;t believe i&#8217;m actually doing a wordpress export at 11pm on friday night. but at least i&#8217;m moving to my own hosting</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/cant-believe-im-actually-doi/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#039;m back!</title>
		<link>http://www.penfall.com/blog-changes/im-back-2</link>
		<comments>http://www.penfall.com/blog-changes/im-back-2#comments</comments>
		<pubDate>Thu, 18 Jun 2009 11:25:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Changes]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Poetry]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[washington nationals]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[cambridge]]></category>
		<category><![CDATA[dc]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[massachusetts]]></category>
		<category><![CDATA[mccain]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[nationals]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[palin]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[washington]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://penfall.com/?p=260</guid>
		<description><![CDATA[I know I&#8217;ve said it before, but this time I swear I intend to actually come back to this blog. And by &#8216;come back&#8217; I only mean actually paying some attention to it, whether that attention is apparent to you or not is irrelevant (to me, obviously). Here are some thoughts on what I&#8217;ve been<a class="read-more" href="http://www.penfall.com/blog-changes/im-back-2">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p>I know I&#8217;ve said it before, but this time I swear I intend to actually come back to this blog. And by &#8216;come back&#8217; I only mean actually paying some attention to it, whether that attention is apparent to you or not is irrelevant (to me, obviously). Here are some thoughts on what I&#8217;ve been doing and what is to come:</p>
<p>- I&#8217;ve become really interested and fully invested in upping my technical skills, particularly w/ php, mysql, Drupal, etc. More to come on that subject.</p>
<p>- Despite my recent struggles with WordPress I&#8217;ve decided to keep this blog on WordPress for the time being. I don&#8217;t love WordPress for many reasons, but I don&#8217;t hate it either. It makes blogging pretty easy, and as long as that&#8217;s all you want to do it definitely works. Redesign forthcoming. I have a &#8216;real&#8217; website in development elsewhere. I started development on it in WordPress and am slowly moving over to Drupal.</p>
<p>- I also have a pretty fun php project in the works. Launches in early September. Stay tuned.</p>
<p>- Check out <a  title="Center Field Gate" href="http://www.centerfieldgate.com" target="_blank">centerfieldgate.com</a>, a Washington Nationals blog customized and maintained by yours truly. You may remember a post from last year in which I mentioned my work on <a  title="River Dogz" href="http://river-dogz.com" target="_blank">river-dogz</a>. I&#8217;m happy to say that my skillz are a bit better than back then. Granted I&#8217;m using a stock theme but all of it just generally looks better. It&#8217;s also a recent addition to the <a  title="NL East Chatter" href="http://nleastchatter.com" target="_blank">NL East Chatter</a> community. Hawt.</p>
<p>- I helped out a bunch on <a  title="Massachusetts Poetry Festival" href="http://masspoetry.org" target="_blank">masspoetry.org</a> and attended the festival last October. I&#8217;m not helping as much with it this year given other commitments but it&#8217;s still a really awesome event so you should probably go to <a  title="Massachusetts Poetry Festival" href="http://masspoetry.org" target="_blank">masspoetry.org</a>.<a  title="Massachusetts Poetry Festival" href="http://masspoetry.org" target="_blank"> Masspoetry.org</a>. Oh also, you&#8217;re only cool if you actually <a  title="MPF Fan" href="http://www.facebook.com/home.php#/event.php?eid=93663481095&#038;ref=ts" target="_blank">attend the festival</a>!</p>
<p>- I developed and was tech support for <a  title="Vets for Obama" href="http://vetsforobama.org" target="_blank">vetsforobama.org</a> during most of his campaign until the campaign actually took the site over. That&#8217;s probably the site I am most proud of on my resume, given tons of custom design work and functionality, trying to manage a massive petition, and pretty much always being on call for any site issues despite my objections (&#8220;I have a job!&#8221;). They had to take the site down for legal reasons after the campaign ended, but maybe I&#8217;ll find a screenshot and post it later. <a  title="Obama Wins" href="http://www.msnbc.msn.com/id/27531033/" target="_blank">He won</a>, too, so that doesn&#8217;t hurt.</p>
<p>- I also did<a  title="The Truth About Palin" href="http://thetruthaboutpalin.com/" target="_blank"> The Truth About Palin</a> and <a  title="The Truth About McCain" href="http://thetruthaboutmccain.org/" target="_blank">The Truth About McCain</a>. Tumblr is fun.</p>
<p>- I moved to Boston from DC successfully, with my 2 cats. I&#8217;m in the same crappy apartment but moving to a better one soon (September 1).</p>
<p>- Oh, I signed up for Twitter. If you came here from me posting a link to Twitter, that&#8217;s awesome. If not, <a href="mailto:penfallblog@gmail.com?subject=I want to stalk you">email me </a>if you want my twitter name or just want to stalk me.</p>
<p>- that reminds me, I need to set up a penfall.com email address</p>
<p>- I&#8217;m getting a <a  title="New iPhone" href="http://www.apple.com/iphone/" target="_blank">new iPhone</a>, suckas.</p>
<p>- I may start to write those <a  href="http://penfall.com/category/musings-from-the-yellow-line/" target="_blank">Musings</a> again soon. Maybe musings from Cambridge? Ideas are welcome.</p>
<p>I think that&#8217;s it. I&#8217;m on the Acela to DC at the moment, it&#8217;s 7am, I&#8217;ve been awake for 3 hours and only got 3.5hrs of sleep. I have a long day ahead, a long week ahead, and I&#8217;ve officially exhausted my want or ability to write (or say?) anything creative at least for the next 24 hours. Time to go check Google Analytics and see if Tweeting about this made any difference in site traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blog-changes/im-back-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#039;ve been busy</title>
		<link>http://www.penfall.com/blogging/ive-been-busy</link>
		<comments>http://www.penfall.com/blogging/ive-been-busy#comments</comments>
		<pubDate>Thu, 13 Mar 2008 16:34:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chicago Cubs]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[washington nationals]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[river dogz]]></category>
		<category><![CDATA[river-dogz.com]]></category>

		<guid isPermaLink="false">http://penfall.wordpress.com/?p=214</guid>
		<description><![CDATA[You may have noticed (or not, if you&#8217;ve just stopped checking all-together) that I haven&#8217;t written here in a while. Well I&#8217;ve been busy! I, with my limited technical knowledge, helped build a blog focused on the Washington Nationals. Granted I&#8217;m a die hard Cubbies fan, as are a few of the writers on river-dogz,<a class="read-more" href="http://www.penfall.com/blogging/ive-been-busy">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p>You may have noticed (or not, if you&#8217;ve just stopped checking all-together) that I haven&#8217;t written here in a while. Well I&#8217;ve been busy! I, with my limited technical knowledge, helped build a <a  href="http://www.river-dogz.com" target="_blank">blog focused on the Washington Nationals</a>. Granted I&#8217;m a die hard Cubbies fan, as are a few of the writers on <a  href="http://www.river-dogz.com" target="_blank">river-dogz</a>, but there&#8217;s always room for another witty, sarcastic and highly analytical baseball blog.</p>
<p>You&#8217;ll notice that my website-building skills are pretty minimal (the header could use some work), but all in all I&#8217;m quite proud of myself! I even figured out how to get an image to show up in a text widget &#8211; for me, that&#8217;s a huge accomplishment. Also, changing the fonts or text size was initially a challenge but now I find myself talking about font families and scrolling through stylesheets. It&#8217;s crazy! (for me it&#8217;s crazy.)</p>
<p>As for changing colors, well, I&#8217;m just not there yet. I mean, can someone please tell me what <a  href="http://html-color-codes.com/" target="_blank">this </a>means? As I began working with code and trying to figure it all out, the colors seemed pretty self explanatory. Find the &#8217;333&#8242; in the stylesheet for the header color, change  it to &#8217;033&#8242; and you&#8217;ll get a new color (dark blue), right? Wrong.</p>
<p>Now I find myself working even harder on my own site (I&#8217;d link to it, but it&#8217;s currently password protected), trying new things, working with code and challenging myself more and more to try to make a website not only look good, but go past the original theme and make it my own. Once I take the password protection off it&#8217;s going to be great &#8211; not just visually, but it is and will be a full collection of my writing, research, and some photos.</p>
<p>A final note about <a  href="http://river-dogz.com" target="_blank">river-dogz </a>- I think it would be pretty awesome to have an embedded calendar (or something similar) to show the <a  href="http://washington.nationals.mlb.com/spring_training/schedule.jsp?c_id=was" target="_blank">Nats season schedule</a>. Any suggestions for how to go about that?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blogging/ive-been-busy/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I&#039;m back</title>
		<link>http://www.penfall.com/blog-changes/im-back</link>
		<comments>http://www.penfall.com/blog-changes/im-back#comments</comments>
		<pubDate>Tue, 11 Mar 2008 04:52:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog Changes]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[sxsw]]></category>

		<guid isPermaLink="false">http://penfall.wordpress.com/?p=219</guid>
		<description><![CDATA[Michael beat me to it! Just tonight, I was reading some of my older posts and noticed that the archives jump from December of last year to March of this year. How could I possibly call myself a writer if I&#8217;m not writing anything here? I have certainly been writing offline, but I really need<a class="read-more" href="http://www.penfall.com/blog-changes/im-back">Read More...</a>]]></description>
			<content:encoded><![CDATA[<p><a  href="http://silbatron.com/?p=244" target="_blank">Michael </a>beat me to it! Just tonight, I was reading some of my older posts and noticed that the archives jump from December of last year to March of this year. How could I possibly call myself a writer if I&#8217;m not writing anything here? I have certainly been writing offline, but I really need to bring it back online.</p>
<p>Since being at <a  href="http://2008.sxsw.com/interactive/" target="_blank">South by Southwest</a> and <a  href="http://sxsw.echoditto.com/" target="_blank">doing my best to blog</a> about all of the amazing panels I have attended (or at least take detailed notes for future posts), I&#8217;ve come to the realization that I have deprived my loyal readers (all four of you) of my daily rantings, ravings, thoughts, insights, poems, and everything else.</p>
<p>Well, that&#8217;s going to change, starting now. I&#8217;m committing myself to at least 5 posts per week, if not more. Welcome back Penfall lovers &#8211; I have returned!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.penfall.com/blog-changes/im-back/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

