<?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>Playing with Technology&#187; Site</title>
	<atom:link href="http://jon.breitenbucher.net/topics/site/feed/" rel="self" type="application/rss+xml" />
	<link>http://jon.breitenbucher.net</link>
	<description>Any sufficiently advanced technology is indistinguishable from magic. ~Arthur C. Clarke</description>
	<lastBuildDate>Thu, 16 May 2013 23:34:20 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>New look</title>
		<link>http://jon.breitenbucher.net/new-look/</link>
		<comments>http://jon.breitenbucher.net/new-look/#comments</comments>
		<pubDate>Thu, 13 Sep 2012 23:25:41 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Genesis]]></category>
		<category><![CDATA[Plum]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=1035</guid>
		<description><![CDATA[I&#8217;ve been playing around with adding support for different color styles to the Genesis Treacle theme. This is in anticipation of changing up the design of The Pedestal Group site. The Pedestal Group is using an older version of the theme I use on this site. The older version is not based on Genesis and [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been playing around with adding support for different color styles to the Genesis Treacle theme. This is in anticipation of changing up the design of <a title="The Pedestal Group" href="http://thepedestalgroup.com" target="_blank">The Pedestal Group</a> site. The Pedestal Group is using an older version of the theme I use on this site. The older version is not based on Genesis and so I wanted to see if it would be fairly easy to modify Genesis Treacle to visually match the design of The Pedestal Group. This process caused me to update the images used in Genesis Treacle and create PSD templates that make it easy to generate color variations of the base theme. This version is based on the colors used to paint the old CITO office which will serve as the new home of Instructional Technology and I&#8217;ve called it Plum.</p>
<p>I&#8217;m making use of <em>genesis-style-selector</em> introduced in version 1.8 of Genesis. One simply has to add<br />
<code>add_theme_support( 'genesis-style-selector', array( 'treacle-plum' =&gt; 'Plum' ) );</code></p>
<p><code></code><br />
to <em>functions.php</em>. Then you add <em>.treacle-plum &lt;selector&gt;</em> to the <em>style.css</em> file for each selector that needs to have its color altered. It really took no time at all to do this part. Most of the time is spent in redoing all the graphic elements.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/new-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing around with Genesis Theme Framework</title>
		<link>http://jon.breitenbucher.net/playing-around-with-genesis-theme-framework/</link>
		<comments>http://jon.breitenbucher.net/playing-around-with-genesis-theme-framework/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 05:41:04 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Carrington]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Genesis]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Hybrid]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[StudioPress]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=936</guid>
		<description><![CDATA[I have just about finished converting my site design to the Genesis Theme Framework by StudioPress. It really is the first, what I would consider to be a framework, that I have used. I have used what others may call frameworks in the past but pretty much all of them lacked the most powerful aspect [...]]]></description>
				<content:encoded><![CDATA[<p>I have just about finished converting my site design to the <a href="http://www.studiopress.com/themes/genesis">Genesis Theme Framework</a> by <a href="http://www.studiopress.com">StudioPress</a>. It really is the first, what I would consider to be a framework, that I have used. I have used what others may call frameworks in the past but pretty much all of them lacked the most powerful aspect of the modern frameworks, hooks. A hook is a function that allows the designer to insert HTML and in the case of Genesis, PHP, into the design outside of the normal flow of the design. For example Genesis provides hooks for inserting before and after the title, content, loop, etc. <a href="http://www.studiopress.com">StudioPress</a> even provides a <a href="http://www.studiopress.com/plugins/simple-hooks">plugin that makes it dead simple to insert your code using the hooks</a>. You can even disable a standard Genesis function and use your own code.</p>
<p>The current design is using hooks to insert the date before the title, the edit link after the title, and the post footer after the post content. It also uses it to do the footer by disabling the standard Genesis footer in favor of my own. All in all it took me about 8-10 hours to get the site looking like it does now. The majority of that time was spent looking at the site through Developer Tools to target the exact elements to style them. Getting the specificity right for the CSS can be challenging, but not terrible. However, that time is considerably less than what it took to get the old theme written. I have to acknowledge though that I have gotten more proficient with CSS, PHP , and HTML and that I was able to copy some code from the old theme. I would still argue that you would see much faster times to completion on designs than if you are not using a framework at all.</p>
<p>There are still a few things to tweak like getting the edit post link to be on the same line as the title, preventing the post footer from displaying on pages and getting my Typekit fonts working again. I don&#8217;t see those taking very long and if I encounter any difficulties the support forums at <a href="http://www.studiopress.com">StudioPress</a> totally rocked it for me. There are other frameworks out there like <a href="http://carringtontheme.com/">Carrington</a> and <a href="http://themehybrid.com/themes/hybrid">Hybrid</a> (a couple that I have tried) and themes that allow for tons of modification through options (like <a href="http://www.woothemes.com/">WooThemes</a> <a href="http://www.woothemes.com/2010/02/canvas/">Canvas theme</a>), but I would highly recommend <a href="http://www.studiopress.com/themes/genesis">Genesis</a> and the <a href="http://www.studiopress.com/plugins/simple-hooks">Simple Hooks plugin</a> if you are considering putting your design on top of a framework.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/playing-around-with-genesis-theme-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with Technology now Multisite enabled</title>
		<link>http://jon.breitenbucher.net/playing-with-technology-now-multisite-enabled/</link>
		<comments>http://jon.breitenbucher.net/playing-with-technology-now-multisite-enabled/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 19:26:39 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Jon Breitenbucher]]></category>
		<category><![CDATA[Orthogonal Creations]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=912</guid>
		<description><![CDATA[I took the plunge today (first day of vacation) and moved jon.breitenbucher.net to Multisite. It was a little scary when it told me to disable all my plugins but it looks like I have everything working. One thing I discovered is that the text in a Text widget is lost when doing this. I had [...]]]></description>
				<content:encoded><![CDATA[<p>I took the plunge today (first day of vacation) and moved jon.breitenbucher.net to Multisite. It was a little scary when it told me to disable all my plugins but it looks like I have everything working. One thing I discovered is that the text in a Text widget is lost when doing this. I had to recreate what was in the header of my Sidebar from memory. I think it&#8217;s correct.</p>
<p>The move will allow me to consolidate <a title="Orthogonal Creations" href="http://orthogonalcreations.com">Orthogonal Creations</a> and <a title="Jon Breitenbucher" href="http://jonbreitenbucher.com">Jon Breitenbucher</a> under this Network using the <a title="WordPress MU Domain Mapping" href="http://wordpress.org/extend/plugins/wordpress-mu-domain-mapping/">WordPress MU Domain Mapping</a> plugin. It will also allow me to move WoW Ravings to it&#8217;s own blog and pull the Warcraft stuff off of <a title="Playing with Technology" href="/">Playing with Technology</a>. That is what I&#8217;ll be working on for the next few days of my vacation. The cool thing is that this is all stuff that I should be able to use for some ideas I have for <a title="Voices" href="http://voices.wooster.edu">Voices</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/playing-with-technology-now-multisite-enabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 and the future of &#8220;Playing with Technology&#8221;</title>
		<link>http://jon.breitenbucher.net/wordpress-3-0-and-the-future-of-playing-with-technology/</link>
		<comments>http://jon.breitenbucher.net/wordpress-3-0-and-the-future-of-playing-with-technology/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 00:08:03 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[MultiSite]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=882</guid>
		<description><![CDATA[WordPress 3.0 &#8220;Thelonious&#8221; has gone live and I have updated the Instructional Technology site, Playing with Technology, Jon Breitenbucher, Orthogonal Creations, The Breitenbuchers and wordpresscore.breietnbucher.net. On my five sites, all hosted on a DreamHost PS, everything went smoothly. I was shocked when this site upgraded without a hitch. I am running 42 plugins on the [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2010/06/thelonious/">WordPress 3.0 &#8220;Thelonious&#8221;</a> has gone live and I have updated the <a title="Instructional Technology" href="http://instructionaltechnology.wooster.edu">Instructional Technology</a> site, <a title="Playing with Technology" href="/">Playing with Technology</a>, <a title="Jon Breitenbucher" href="http://jonbreitenbucher.com">Jon Breitenbucher</a>, <a title="Orthogonal Creations" href="http://orthogonalcreations.com">Orthogonal Creations</a>, <a title="The Breitenbuchers" href="http://blog.breitenbucher.net">The Breitenbuchers</a> and <a title="WordPress Core" href="http://wordpresscore.breitenbucher.net">wordpresscore.breietnbucher.net</a>. On my five sites, all hosted on a <a title="DreamHost" href="http://www.dreamhost.com/">DreamHost</a> PS, everything went smoothly. I was shocked when this site upgraded without a hitch. I am running 42 plugins on the site and have another 30 or so that are not active. Not a single one had an issue. The only problem I had on the site was with the feed. There is something in the site that is adding blank lines at the head of the feed. A quick Google search and it is <a title="Fix blank lines in WordPress RSS" href="http://stiern.com/tutorials/no-more-invalid-rss">fixed</a>.</p>
<p>So far I am very happy with the upgrade and am looking forward to playing with custom posts and the other features added. But the most pressing thing for me is taking the five sites I maintain and moving them to networks so that they can have sites of their own and so that I only have one code installation to worry about. For example, on this site, it would be nice to have another site warcraft.jon.breitenbucher.net that could have it&#8217;s own theme and plugins. Currently, I would have to muck about with custom code to style the <a title="Warcraft Ravings" href="/wow-ravings/">WoW ravings</a> page differently and while I know how; I just don&#8217;t feel like doing it. So I am looking into ways to move this site and four of the others to the wordpresscore.breitenbucher.net codebase since it is already set up as a MultiSite installation. I&#8217;m sure that <a title="Andrea Rennick" href="http://twitter.com/andrea_r">@andrea_r</a> and other WP folks can give me some pointers. If all goes well I hope to have this migration done in the next week or so. I think doing this will give me some good experience for what we will be able to do with <a title="Voices" href="http://voices.wooster.edu/">Voices</a> as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/wordpress-3-0-and-the-future-of-playing-with-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>@font-face arrives</title>
		<link>http://jon.breitenbucher.net/font-face-arrives/</link>
		<comments>http://jon.breitenbucher.net/font-face-arrives/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 19:39:44 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[Web design]]></category>
		<category><![CDATA[Digital typography]]></category>
		<category><![CDATA[Font embedding on the Web]]></category>
		<category><![CDATA[OpenType]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web fonts]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=736</guid>
		<description><![CDATA[I haven&#8217;t felt like making the time to post in a while. Honestly, I haven&#8217;t had much time either. Today, however, is a new day. At 1:31 PM I received an e-mail from support@typekit.com. The e-mail informed me that Typekit was ready for people to start using their service. I&#8217;m pretty sure I wrote about [...]]]></description>
				<content:encoded><![CDATA[<p>I haven&#8217;t felt like making the time to post in a while. Honestly, I haven&#8217;t had much time either. Today, however, is a new day. At 1:31 PM I received an e-mail from support@typekit.com. The e-mail informed me that <a href="http://typekit.com/">Typekit </a>was ready for people to start using their service. I&#8217;m pretty sure I wrote about this earlier but I&#8217;ll have to find that post. So I immediately stopped screwing with the WPMU test instance I was working on and headed over to signup.</p>
<p>If you&#8217;re not aware there is a new feature in CSS3 called @font-face. This feature is intended to address one of the major issues of publishing on the Web: <strong>not all readers have the fonts you used in the design!</strong> For graphic artists, publishers and typography nuts (such as myself) this has been a real issue. We develop a fantastic layout and design with fonts that make the entire piece or site look gorgeous, only to see it on a friends computer displayed in Arial, Georgia, or Trebuchet. @font-face and the Typekit service are here pull us out of this Dark Age of Web typography.</p>
<p>So how does it all work? You can see <a href="http://www.css3.info/preview/web-fonts-with-font-face/">Web fonts with @font-face</a> for a more detailed explanation, but the gist is that you host your fonts on the Web and then access them as you would any other Web file. It sounds great and if you take a .otf file and put it in a Web accessible directory then you&#8217;ll be able to use it with @font-face. Sounds great doesn&#8217;t it? So why do we need Typekit? Well, fonts are software. I know it sounds crazy but in terms of the licensing of their use they are treated like software. This means that you are allowed to have a copy on your computer and to use it to produce documents, but you cannot freely distribute it. This is exactly what you would be doing if you put that .otf file in a public Web directory.</p>
<p>Typekit has developed a solution which a number of font foundries seem to think is a good solution. Typekit&#8217;s solution is to host the fonts on their servers and require you to use some javascript to be able to access the fonts in your sites. They have arranged their offerings into 4 packages: Trial, Personal, Portfolio, and Corporate. Prices range from free to $49.99/month. A free account will entitle you to 5GB of bandwidth per month, two fonts from the 62 in the Trial Library to be used on one website, and you will have to display the Typekit badge (as you see in the bottom right of the site). Other plans increase the bandwidth, number of fonts you can use, number of fonts to choose from, and allow you to opt out of displaying the badge.</p>
<p>Once you join you&#8217;re asked to provide a website where you would like to use the service. Once you supply a URI and advance, you&#8217;ll be presented with some javascript to copy and put in the head of the pages using the fonts. After pasting the code into your webpages you can return to the Tyepekit site and select the fonts you would like to use. You can do so by browsing the appropriate library for your plan and then clicking the ADD button next to the font. Doing so will try to open a Popup window (Firefox complained and I had to allow an exception). At this point you will find directions on how to use the fonts on your site and you&#8217;ll be able to disable weights and styles that will not be used in your design so that the payload of the javascript is as small as possible. When you are finished here just click on the Publish button to make the fonts available to your site.</p>
<p>Overall I was very pleased with the way the service operated and the fonts that were available. I didn&#8217;t see any Adobe or Linotype designs in the Trial Library, but there were plenty of good fonts. Hopefully Typekit can get the traction necessary to attract larger foundries to use the service. I so want to use my beloved Helvetica and Myriad Pro. For now I&#8217;ll go with Liberation Sans for headings and such and <span style="text-decoration: line-through;">M +1c</span> <span style="text-decoration: line-through;">Garogier</span> Liberation Sans for the body text. If you are browsing in the most recent versions of Internet Explorer, Firefox, Opera or Safari then you should be seeing the site with my Typekit fonts. I&#8217;d encourage everyone that has a blog or website to check them out.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/font-face-arrives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To BuddyPress or not to BuddyPress?</title>
		<link>http://jon.breitenbucher.net/to-buddypress-or-not-to-buddypress/</link>
		<comments>http://jon.breitenbucher.net/to-buddypress-or-not-to-buddypress/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 13:10:07 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Social Software]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[BuddyPress  installation]]></category>
		<category><![CDATA[community blogging site]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[PHP programming language]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=565</guid>
		<description><![CDATA[Soon? We will have a new WPMU install up and my dilemma is whether to make it a BuddyPress installation. For those that may not know, BuddyPress turns your WPMU install into a community blogging site with group blogs, profiles, friending, etc. BuddyPress does this via plugins and some special themes. The reason I am [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">Soon? We will have a new <a href="http://mu.wordpress.org/">WPMU</a> install up and my dilemma is whether to make it a <a href="http://buddypress.org/">BuddyPress</a> installation. For those that may not know, BuddyPress turns your WPMU install into a community blogging site with group blogs, profiles, friending, etc. BuddyPress does this via plugins and some special themes.</p>
<p style="text-align: left;">The reason I am considering BuddyPress is to distinguish the WPMU install administered by Instructional Technology from the one administered by Web Services. Yes, we will have two installations. It was decided that <a href="http://scotblogs.wooster.edu/">blogs</a> that were more official in nature needed to have branding similar to the new website and more restictions on content. So the Instructional Technology WPMU will be open. Users will be able to have any of a 100 themes, content will be posted under CC license, plugins will be abundant, and it will hopefully be an organic community. BuddyPress might help to further the latter. My main concern is the ability to revert to a normal WPMU. If we decide BuddyPress is not what we want can we easily revert to plain WPMU by turning off the plugins? Guess it is time to load it up onto my Dreamhost account and do some testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/to-buddypress-or-not-to-buddypress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I </title>
		<link>http://jon.breitenbucher.net/i-love-wordpress/</link>
		<comments>http://jon.breitenbucher.net/i-love-wordpress/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 22:05:48 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=545</guid>
		<description><![CDATA[The more I use WordPress and muck about with its functions and plugins; the more I love it. I decided I wanted to have a page that showed posts from a specific category and only those posts. It turns out there are a number of ways to do that. You can create a caterory-xx.php file,  [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: left;">The more I use WordPress and muck about with its functions and plugins; the more I love it. I decided I wanted to have a page that showed posts from a specific category and only those posts. It turns out there are a number of ways to do that. You can create a caterory-xx.php file,  which will be used whenever someone asks to display the category with id xx. That was cool but the category was still in the category list and I didn&#8217;t want that. No problem just exclude the category in the category widget. Awesome, but the posts in that category still show in the Recent Posts list. Hmm, no way to exclude posts from a particular category with the default recent post widget. After a little searching I found an improved recent post plugin which just replaces the default widget and offers a ton of options. If you have already checked out <a href="http://rmarsh.com/plugins/recent-posts/">Recent Posts</a>, I highly recommend it. So, in the end, I have a page which shows posts from a single category, where the category does not appear in the listing, and the posts don&#8217;t show in the recent post list. It&#8217;s like a blog within a blog. Now I&#8217;ll work on customizing it with its own header, sidebars, and footer.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/i-love-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More copyright</title>
		<link>http://jon.breitenbucher.net/more-copyright/</link>
		<comments>http://jon.breitenbucher.net/more-copyright/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 07:29:30 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Policy]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=504</guid>
		<description><![CDATA[It seems that many of my old posts no longer have working videos. There are two reasons for this: I have disabled the plugin used to embed the videos, the video has been taken off of YouTube because of terms of use violation. Not sure how to feel about the copyright issue. Not sure that [...]]]></description>
				<content:encoded><![CDATA[<p>It seems that many of my old posts no longer have working videos. There are two reasons for this: I have disabled the plugin used to embed the videos, the video has been taken off of YouTube because of terms of use violation. Not sure how to feel about the copyright issue. Not sure that I fully understand it either. Does anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/more-copyright/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Cloud a bust?</title>
		<link>http://jon.breitenbucher.net/make-cloud-a-bust/</link>
		<comments>http://jon.breitenbucher.net/make-cloud-a-bust/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 16:07:36 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Instructional Technology]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=304</guid>
		<description><![CDATA[So my RSS feed tagcloud doesn&#8217;t seem to be showing. Is the Pipe broken or is Make Cloud broken? I have no idea and will investigate. It may not matter as I noticed the site was super slow to load when it was working. I also have to ask myself what the point was. Why [...]]]></description>
				<content:encoded><![CDATA[<p>So my RSS feed tagcloud doesn&#8217;t seem to be showing. Is the Pipe broken or is Make Cloud broken? I have no idea and will investigate. It may not matter as I noticed the site was super slow to load when it was working. I also have to ask myself what the point was. Why did I want to have a tag cloud pulled from all the RSS feeds I read? Ideally a glance at that cloud could give me a sense of what was happening in the technology world since that is what most of the feeds are. It it the same reason people want to make clouds from their marketing messages. You want to see what the text is conveying as the important message. This seems to be a failed experiment and I really couldn&#8217;t find a better alternative. I guess it&#8217;s back to the drawing board. Do you think it&#8217;s worth it?</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/make-cloud-a-bust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stats</title>
		<link>http://jon.breitenbucher.net/stats/</link>
		<comments>http://jon.breitenbucher.net/stats/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 15:47:27 +0000</pubDate>
		<dc:creator>Jon</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://jon.breitenbucher.net/?p=301</guid>
		<description><![CDATA[It occurred to me that I used to have Performancing stats going on the site. I&#8217;ve noticed some referrences to Performancing as the page loads and thought I&#8217;d check. Of course the stats are all gone because of the move to the new domain, and I had forgotten my password (what I wouldn&#8217;t give for [...]]]></description>
				<content:encoded><![CDATA[<p>It occurred to me that I used to have <a href="http://pmetrics.performancing.com/">Performancing stats</a> going on the site. I&#8217;ve noticed some referrences to Performancing as the page loads and thought I&#8217;d check. Of course the stats are all gone because of the move to the new domain, and I had forgotten my password (what I wouldn&#8217;t give for a universal ID so that I wouldn&#8217;t have to remember a billion different username/password combos). I eventually remembered my password and set up this site and <a href="http://exilejewelry.com">Kath&#8217;s jewelry site</a> in Performancing. I also set them up in <a href="https://www.google.com/analytics/">Google analytics</a>, plus the blog has the WordPress stats, and I added SlimStats. So among those I should be able to get a good sense of what people are viewing and where they are coming from. It&#8217;s too bad I can&#8217;t look back and see what I wrote that caused 74 people to be on the site at the same time.</p>
]]></content:encoded>
			<wfw:commentRss>http://jon.breitenbucher.net/stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

 Served from: jon.breitenbucher.net @ 2013-05-19 15:21:25 by W3 Total Cache -->