<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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>Mixed Content</title>
	<link>http://www.mixedcontent.com</link>
	<description>Assorted ramblings of Colin Brumelle</description>
	<pubDate>Fri, 04 Jul 2008 04:12:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>Introducing prankmail.org (and the Drupal way VS roll&#8217;yer own)</title>
		<link>http://www.mixedcontent.com/miscellany/2006/11/introducing-prankmailorg-and-the-drupal-way-vs-roll-yer-own/</link>
		<comments>http://www.mixedcontent.com/miscellany/2006/11/introducing-prankmailorg-and-the-drupal-way-vs-roll-yer-own/#comments</comments>
		<pubDate>Tue, 28 Nov 2006 22:16:43 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[Miscellany]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/miscellany/2006/11/introducing-prankmailorg-and-the-drupal-way-vs-roll-yer-own/</guid>
		<description><![CDATA[A few rainy weekends ago, I had the urge to roll up my sleeves and build something. Every web application I&#8217;ve built in the last few years has been built on Drupal, and I wanted to see (remind myself) what it would be like to develop an application from scratch (where &#8220;scratch&#8221; =  a [...]]]></description>
			<content:encoded><![CDATA[<p>A few rainy weekends ago, I had the urge to roll up my sleeves and build something. Every web application I&#8217;ve built in the last few years has been built on <a href="http://drupal.org">Drupal</a>, and I wanted to see (remind myself) what it would be like to develop an application from scratch (where &#8220;scratch&#8221; =  a random collection of open source components combined with bits from Drupal). I also had given myself the timeframe of a weekend, so building &#8220;Basecamp right&#8221; was out. I wanted a simple coding project.</p>
<p>Since I&#8217;m extremely childish, immature, and a fan of the practical joke, I decided to build a web app that let you send an email to someone, but make it appear as if it comes from someone else. I decided to call it Prankmail. Frivolous, slightly dangerous, and perfect for a rainy weekend indoors.</p>
<p><strong>Skipping to the good part, you can check it out at:</strong><br />
<a href="http://prankmail.org">http://prankmail.org</a></p>
<p>And if you would like to read about how I built it, and how the<br />
<strong>&#8220;build from scratch&#8221; process compares to building a Drupal site, continue on:</strong></p>
<p>Before I really started with application specific code, I wanted to grab a few Open Source pieces and get a simple and efficient framework to build on (We&#8217;re not using Drupal, after all).</p>
<p>I wanted to have clean URL&#8217;s (none of that goofy query string nonsense) so I took a look at how Drupal uses MOD_REWRITE and .htaccess files and cobbled together a simple solution. I&#8217;ve also been looking at the new <a href="http://framework.zend.com/Zend">Zend framework</a>, and I like the way it maps URL&#8217;s to controllers. I am also a fan of Drupal menu system, so I hacked up the arg() function from Drupal, and made it route URL&#8217;s to controllers. I like Ruby&#8217;s &#8220;convention over configuration&#8221; and so by default, I set it up so a URL of &#8216;/message/123&#8242; gets passed to a function &#8216;controller_message&#8217; with an arg of &#8216;123&#8242;, if that function exists.</p>
<p>I really like Drupal&#8217;s very light weight DB abstraction layer, and so I grabbed that as well (mostly because the syntax is so natural to me at this point), and stuck it in my web app. </p>
<p>For templating, I decided to give Smarty one last try. Every time I struggled with the syntax, or found myself fighting along, I could hear <a hre="http://lerdorf.com/">Rasmus</a> saying &#8220;PHP *is* a templating language, stupid!&#8221; Next time, I think I will just stick with a &#8216;pure&#8217; PHP templating solution.</p>
<p>Setting up this simple framework let me write the rest of the application with speed and ease. Included libraries aside, the actual application itself is quite small.</p>
<p>For help on the UI, I used <a hre="http://jquery.com/">JQuery</a> and specifically <a hre="http://jquery.com/demo/thickbox/">thickbox</a>. I also found the <a href="www.visualjquery.com">visual JQuery</a> site to be a great resource when I got tripped up on syntax. JQuery is truly fun to code with, and it&#8217;s a great feeling to have so much control over the DOM, with such simple and beautiful syntax.</p>
<p>I mean, how is the following snippet not poetry in it&#8217;s simplicity:<br />
<code>//add a token to the form that we will check to<br />
//make sure the form processor only looks at forms<br />
//submitted from this page...<br />
$.get("/token",function(txt){<br />
  $("#mailform").append('<br />
<input type="hidden" name="ts" value="'+txt+'" />&#8216;);<br />
});</code></p>
<p>The above snippet leads into how I was concerned with spammers and bots submitting mail, so I borrowed a technique from <a href="http://15daysofjquery.com/examples/contact-forms/">Jack Born</a> and used JQuery to append a token (MD5&#8242;d salt + timestamp) to the submission forms DOM, and at the same time inserting the same token into the Session. When the form is submitted, I check to make sure that the timestamp is &#8220;fresh&#8221; (within 20 minutes), and that the two tokens match. This should prevent, or at least make it more difficult for a bot to make a post directly to my form processor (and I don&#8217;t have to use a silly CAPTCHA). </p>
<p><strong>So how did the whole process work, compared to using my usual framework of choice, Drupal?</strong></p>
<p>Setting up the whole framework from scratch was definitely the fun part. I really enjoyed having a chance to &#8220;do things my way&#8221;, rather then hunt through documentation or lines of code in search of an answer. I think many people code because it feels good to build something, and while Drupal gives you many things &#8220;for free&#8221;, it was very enjoyable and satisfying to dive in and do it myself. </p>
<p>When it got to the point of <a href="http://prankmail.org/messages/id/4#comments">adding comments</a> and RSS feeds to the site, I have to admit that it was proving to get a bit tedious, and it would have been nice just to &#8220;turn comments on&#8221;, in Drupal. But all that being said, the whole exercise reminds me that there are many ways to get a job done. Drupal is a fantastic tool for a specific set of problems, but it&#8217;s just that. </p>
<p><strong><br />
Moral of the story is?</strong></p>
<p>There are no silver bullets, and building silly websites is easy and fun.</p>
<p>Now go <a href="http://prankmail.org">send some mail</a>!</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/coding" rel="tag">coding</a>, <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a>, <a href="http://technorati.com/tag/humor" rel="tag">humor</a>, <a href="http://technorati.com/tag/jokes" rel="tag">jokes</a>, <a href="http://technorati.com/tag/jquery" rel="tag">jquery</a>, <a href="http://technorati.com/tag/php" rel="tag">php</a>, <a href="http://technorati.com/tag/smarty" rel="tag">smarty</a>, <a href="http://technorati.com/tag/thickbox" rel="tag">thickbox</a>, <a href="http://technorati.com/tag/prankmail" rel="tag">prankmail</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/miscellany/2006/11/introducing-prankmailorg-and-the-drupal-way-vs-roll-yer-own/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back from Brussels</title>
		<link>http://www.mixedcontent.com/coding/php/2006/09/back-from-brussels/</link>
		<comments>http://www.mixedcontent.com/coding/php/2006/09/back-from-brussels/#comments</comments>
		<pubDate>Wed, 27 Sep 2006 15:42:49 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/coding/php/2006/09/back-from-brussels/</guid>
		<description><![CDATA[So I&#8217;m back in San Francisco after returning from Brussels and one insane week packed with conferences. (EuroOSCON, GovCamp,  DrupalCon, and BarCampBrussels). I&#8217;m exhausted, but buzzing with excitement. There are just too many people doing interesting things in this world. 
Next up: San Fran Drupaler&#8217;s should unite and throw something serious down at the [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;m back in San Francisco after returning from Brussels and one insane week packed with conferences. (<a href="http://conferences.oreillynet.com/euos2006/ ">EuroOSCON</a>, <a href="http://www.govcamp.org/index.php/Main_Page">GovCamp</a>,  <a href="http://drupal.org/node/85882">DrupalCon</a>, and <a href="http://barcamp.org/BarCampBrussels">BarCampBrussels</a>). I&#8217;m exhausted, but buzzing with excitement. There are just too many people doing interesting things in this world. </p>
<p>Next up: San Fran Drupaler&#8217;s should unite and throw something serious down at the upcoming <a href=" http://upcoming.org/event/101629/">Yahoo! Hack Day</a>. I&#8217;d like to go, so if there are other <a href="http://drupal.org">Drupal heads</a> in attendance, I&#8217;d love to work on any kind of hack involving Drupal, Yahoo! maps, upcoming.org concert data, and last.fm. Send me a shout if you&#8217;re interested!</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/barcampbrussels" rel="tag">barcampbrussels</a>, <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a>, <a href="http://technorati.com/tag/drupalcon2006" rel="tag">drupalcon2006</a>, <a href="http://technorati.com/tag/govcamp" rel="tag">govcamp</a>, <a href="http://technorati.com/tag/san+francisco" rel="tag">san francisco</a>, <a href="http://technorati.com/tag/yahoo+hack+day" rel="tag">yahoo hack day</a>, <a href="http://technorati.com/tag/yahoo!" rel="tag">yahoo!</a>, <a href="http://technorati.com/tag/eurooscon" rel="tag">eurooscon</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2006/09/back-from-brussels/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Speeding up XML-RPC calls in Drupal</title>
		<link>http://www.mixedcontent.com/coding/php/2006/04/107/</link>
		<comments>http://www.mixedcontent.com/coding/php/2006/04/107/#comments</comments>
		<pubDate>Wed, 19 Apr 2006 17:13:08 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/miscellany/2006/04/107/</guid>
		<description><![CDATA[Through Bryght, I’ve been working on an interesting project that really exercises the “toolkit” and “web services platform” like nature of Drupal. The final architecture of our project ended up having many distributed processes, all sending data to Drupal through XML-RPC, and we were using Drupal mainly to aggregate and display the results.
Performance was very [...]]]></description>
			<content:encoded><![CDATA[<p>Through Bryght, I’ve been working on an interesting project that really exercises the “toolkit” and “web services platform” like nature of Drupal. The final architecture of our project ended up having many distributed processes, all sending data to Drupal through XML-RPC, and we were using Drupal mainly to aggregate and display the results.</p>
<p>Performance was very important, and we were having a huge bottle neck with Drupal’s XML-RPC library. XML-RPC calls were talking a long fricken time, and we were making tons of them.</p>
<p>Fortunately I had help from Walkah and Moshe, and I thought I would pass on what we did to drastically increase XML-RPC performance. This worked for us, so maybe it might help someone else out.</p>
<p>The problem is of course that Drupal does a full bootstrap for every XML-RPC call. </p>
<p>Our solution:<br />
The first, simple (and huge) win was to utilize a PHP opcode cacher - this drastically reduces this bootstrapping time. We used eAccelerator, but there are many others.</p>
<p>Secondly, since we were working in a controlled environment (we knew what modules were going to be called via XML-RPC) we were able to hack the xmlrpc.php file to avoid a full bootstrap. The downside is we had to hardcode a few path things into the file, but again, this is for a particular app/site, and the performance gains were worth it. </p>
<p>Courtesy of Moshe, here is our revised xmlrpc.php file (you might want to rename it to xmlrpcs.php or something):</p>
<p><code><br />
< ?php<br />
// $Id$</p>
<p>/**<br />
 * @file<br />
 * Optimized php page for handling xml-rpc requests. Your module must use declare the hook_init() or hook_exit()<br />
 * so that it is loaded during the boostrap. Otherise, use hook_xmlrpc as usual. Note that only required modules are loaded at this point.<br />
 *<br />
 * @author<br />
 * Moshe Weitzman <weitzman AT tejasa DOT com><br />
 */</p>
<p>// CONFIGURE<br />
$path = &#8216;./sites/mwpb-9.local/modules/&#8217;;<br />
$module = &#8216;my-xmlrpc-module&#8217;; //the name of the module where your xml-rpc calls are<br />
// END CONFIGURE</p>
<p>include_once &#8216;./includes/bootstrap.inc&#8217;;<br />
drupal_bootstrap(DRUPAL_BOOTSTRAP_DATABASE);<br />
include_once &#8216;./includes/xmlrpc.inc&#8217;;<br />
include_once &#8216;./includes/xmlrpcs.inc&#8217;;</p>
<p>require_once $path. $module. &#8216;.module&#8217;;<br />
$function = $module. &#8216;_xmlrpc&#8217;;<br />
$callbacks = $function();<br />
// print_r($callbacks);<br />
xmlrpc_server($callbacks);</p>
<p>// put any common.inc or other core functions here that your module relies upon.<br />
function t($string) {<br />
  return $string;<br />
}<br />
?><br />
</code></p>
<p>This was enough to get a huge increase in performance. (Yeah!)</p>
<p>Further thoughts:<br />
One could use “mysql_query()” and avoid bootstrap all together, although I don’t think this is very much overhead, and the benefits of using Drupal’s “Database abstraction layer” probably out way any performance overhead here.</p>
<p>I wonder if there is any way to get Drupal to intelligently load necessary code instead of doing a full bootstrap. The “hardcoding” method above certainly works, but I am craving a more elegant and universal solution. Any thoughts?</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/xml-rpc" rel="tag">xml-rpc</a>, <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2006/04/107/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Playlist module released</title>
		<link>http://www.mixedcontent.com/coding/php/2005/09/playlist-module-released/</link>
		<comments>http://www.mixedcontent.com/coding/php/2005/09/playlist-module-released/#comments</comments>
		<pubDate>Tue, 27 Sep 2005 18:23:25 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/miscellany/2005/09/playlist-module-released/</guid>
		<description><![CDATA[Over the last little while I&#8217;ve been working on a playlist module for Drupal. Farsheed was also working on a playlist module. So we have combined forces and now present to you the fruit of our labours: The new, improved, ass kicking playlist module.
 Features include: 

support for mulitple playlist formats, including xspf, m3u, pls
podcastable [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last little while I&rsquo;ve been working on a playlist module for Drupal. <a target="_self" href="http://www.midnightparking.com/ ">Farsheed</a> was also working on a playlist module. So we have combined forces and now present to you the fruit of our labours: The new, improved, <a target="_self" href="http://drupal.org/node/32345">ass kicking</a> <a target="_self" href="http://drupal.org/project/playlist">playlist module</a>.</p>
<p> Features include:<br /> 
<ul>
<li>support for mulitple playlist formats, including <a target="_self" href="http://www.xspf.org/">xspf</a>, m3u, pls</li>
<li>podcastable playlists</li>
<li>AJAX ordering of audio tracks</li>
<li>multiple ways to add an audio track to a playlist</li>
<li>For the geeks in the crowd, playlists are implemented as a new node type.   </li>
</ul>
<p> Farsheed has set up <a target="_self" href="http://playlist-demo.drupalart.org/">a nice demo site</a> where you can go and kick tires a bit, but you have to sign up first to create your own playlists. Enjoy!</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/audio" rel="tag">audio</a>, <a href="http://technorati.com/tag/playlist" rel="tag">playlist</a>, <a href="http://technorati.com/tag/xspf" rel="tag">xspf</a>, <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2005/09/playlist-module-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Podcasting and the post-album world</title>
		<link>http://www.mixedcontent.com/coding/php/2005/08/podcasting-and-the-post-album-world/</link>
		<comments>http://www.mixedcontent.com/coding/php/2005/08/podcasting-and-the-post-album-world/#comments</comments>
		<pubDate>Thu, 18 Aug 2005 21:30:05 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/coding/php/2005/08/podcasting-and-the-post-album-world/</guid>
		<description><![CDATA[Fellow Vancouverite Tim Bray has an interesting post about podcasting and the economic impact it will have on musicians. I agree with just about everything he says. Which is good, since the same ideas he discusses form the impetus for Bryght’s new musician focused web platform. 
Tim suggests a subscription based podcast service, and this [...]]]></description>
			<content:encoded><![CDATA[<p>Fellow Vancouverite <a href="http://www.tbray.org/ongoing/">Tim Bray</a> has an <a href="http://www.tbray.org/ongoing/When/200x/2005/08/17/Patricia-and-Podcasting">interesting post about podcasting</a> and the economic impact it will have on musicians. I agree with just about everything he says. Which is good, since the same ideas he discusses form the impetus for <a href="http://www.bryght.com/blog/colin-brumelle/bryghts-recording-artist-and-record-label-platform-in-development">Bryght’s new musician focused web platform</a>. </p>
<p>Tim suggests a subscription based podcast service, and this is one type of revenue generating solution Bryght plans to offer to musicians. I’ve said this before, but based on my own informal surveys, I think there are many musicians out there who might want to be free from the constraints of the album. As an artist, why not just release and sell a few tracks a month, delivered straight to your fans MP3 player through Podcasts? </p>
<p>One could argue that the very concept of the “album” is arbitrary and is simply an artifact of our current (and physical) distribution channels. In the past, an album has been a convenient way to get music to the people. Stores stocked high selling albums, due to limited shelf space. People came and bought them. But now, we are at an interesting time. Digital distribution channels have matured to the point where they will start to influence the art that people produce and consume. Music distribution technology influencing music? That’s right, it’s a two way street!</p>
<p>For example, the phonograph and radio drastically influenced the music that was produced, simply by creating new markets. Would 80’s rock bands have worn as much makeup if their faces weren’t being beamed via MTV to millions of homes?</p>
<p>Looking ahead, I think a post-album future filled with regular releases of individual tracks will be more then simply a sea of singles, and I can’t wait to find out what takes shape.</p>
<p>&#8211; Update &#8211;<br />
<a href="http://www.justagwailo.com/filter/2005/08/18/radio-free">Richard chimes in with some good thoughts</a></p>
<div class="ttag">tags: <a href="http://technorati.com/tag/bryght" rel="tag">bryght</a>, <a href="http://technorati.com/tag/podcast" rel="tag">podcast</a>, <a href="http://technorati.com/tag/post-album" rel="tag">post-album</a>, <a href="http://technorati.com/tag/music+distribution" rel="tag">music distribution</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2005/08/podcasting-and-the-post-album-world/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mambo developers stick a fork in it</title>
		<link>http://www.mixedcontent.com/coding/php/2005/08/mambo-developers-stick-a-fork-in-it/</link>
		<comments>http://www.mixedcontent.com/coding/php/2005/08/mambo-developers-stick-a-fork-in-it/#comments</comments>
		<pubDate>Thu, 18 Aug 2005 19:21:22 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/coding/php/2005/08/mambo-developers-stick-a-fork-in-it/</guid>
		<description><![CDATA[It is being reported in a few  different places that the core developers for Mambo have split from Miro, the commercial entity that holds the Mambo copyright and trademark. The problems stem from how Miro set up the Mambo Foundation, particularily how they failed to consult many of the main developers.
In response, it seems [...]]]></description>
			<content:encoded><![CDATA[<p>It is being reported in a <a href="http://www.newsforge.com/newsvac/05/08/18/1413218.shtml">few</a>  <a href="http://www.opensourcematters.org/">different</a> <a href="http://developers.slashdot.org/developers/05/08/18/1622210.shtml?tid=169&#038;tid=106">places</a> that the core developers for Mambo have split from Miro, the commercial entity that holds the Mambo copyright and trademark. The problems stem from how Miro set up the Mambo Foundation, particularily how they failed to consult many of the main developers.</p>
<p>In response, it seems that the Mambo development team is going to fork the open source project and go forth on their own, which certainly puts many members of the Mambo community in a tight spot. </p>
<p>Most important though, is what will the new forked project be called? My vote is for <a href="http://en.wikipedia.org/wiki/Lambada">Lambada</a>, all though <a href="http://en.wikipedia.org/wiki/Merengue_%28dance%29">Meringue</a> also has a nice ring to it.</p>
<p>Lessons for the <a href="http://drupal.org">Drupal</a> community? Greed sucks, be open and transparent (especially when setting up a foundation), and play nice with others!</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/gpl" rel="tag">gpl</a>, <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a>, <a href="http://technorati.com/tag/miro" rel="tag">miro</a>, <a href="http://technorati.com/tag/opensource" rel="tag">opensource</a>, <a href="http://technorati.com/tag/mambo" rel="tag">mambo</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2005/08/mambo-developers-stick-a-fork-in-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ticket Master wins again</title>
		<link>http://www.mixedcontent.com/coding/php/2005/08/ticket-master-wins-again/</link>
		<comments>http://www.mixedcontent.com/coding/php/2005/08/ticket-master-wins-again/#comments</comments>
		<pubDate>Wed, 17 Aug 2005 21:51:24 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/coding/php/2005/08/ticket-master-wins-again/</guid>
		<description><![CDATA[I just purchased 4 tickets to see Sigur Ros in Vancouver at the Orpheum. I fully expected to be gouged by the usual service charges, but even so, I was impressed with the audacity of Ticket Master. 
Face Value of Actual Ticket - $35.00
Facility Charge - $1.75
Convenience Charge - $5.00
Processing Fee - $2.25
For four $35 [...]]]></description>
			<content:encoded><![CDATA[<p>I just purchased 4 tickets to see <a href="http://www.sigur-ros.co.uk/">Sigur Ros</a> in Vancouver at the Orpheum. I fully expected to be gouged by the usual service charges, but even so, I was impressed with the audacity of Ticket Master. </p>
<p>Face Value of Actual Ticket - $35.00<br />
Facility Charge - $1.75<br />
Convenience Charge - $5.00<br />
Processing Fee - $2.25</p>
<p>For four $35 tickets, one might expect to pay around 4 X $35 = $140, but when all the charges add up, I was billed $169.25! Before tax! </p>
<p>What we need is an open source, <a href="http://drupal.org">Drupal</a> based, <a href="http://bryght.com">Bryght</a> hosted, concert ticketing solution. </p>
<div class="ttag">tags: <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a>, <a href="http://technorati.com/tag/music" rel="tag">music</a>, <a href="http://technorati.com/tag/ticket+master" rel="tag">ticket master</a>, <a href="http://technorati.com/tag/ticketing" rel="tag">ticketing</a>, <a href="http://technorati.com/tag/sigur+ros" rel="tag">sigur ros</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2005/08/ticket-master-wins-again/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Audio Module released</title>
		<link>http://www.mixedcontent.com/coding/php/2005/08/audio-module-released/</link>
		<comments>http://www.mixedcontent.com/coding/php/2005/08/audio-module-released/#comments</comments>
		<pubDate>Tue, 16 Aug 2005 19:24:00 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/miscellany/2005/08/audio-module-released/</guid>
		<description><![CDATA[
At Bryght, I have the enviable job of customizing Drupal for use on recording artists and record label web sites. One of the first things I wanted to do was to beef up audio support in Drupal, and so last week I was able to release the first version of the audio module. It can [...]]]></description>
			<content:encoded><![CDATA[<div class="img-dec"><a href="http://drupal.org"><img src="http://www.mixedcontent.com/wp-content/drupalicon.png" alt="drupal icon" border="0"/></a></div>
<p>At <a href="http://www.bryght.com">Bryght</a>, I have the enviable job of customizing <a href="http://drupal.org">Drupal</a> for use on recording artists and record label web sites. One of the first things I wanted to do was to beef up audio support in Drupal, and so last week I was able to release the first version of the <a href="http://drupal.org/project/audio">audio module</a>. It can read and write ID3 tag information, can stream and download audio, and generates proper podcast-safe RSS enclosures. I am still working on adding support for iTunes RSS extensions, and cleaning up the code a bit, but it is working well on my site. Hopefully it will help others out there as well!</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/cms" rel="tag">cms</a>, <a href="http://technorati.com/tag/rss" rel="tag">rss</a>, <a href="http://technorati.com/tag/audio" rel="tag">audio</a>, <a href="http://technorati.com/tag/multimedia" rel="tag">multimedia</a>, <a href="http://technorati.com/tag/music" rel="tag">music</a>, <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2005/08/audio-module-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blink Sale</title>
		<link>http://www.mixedcontent.com/coding/php/2005/07/blink-sale/</link>
		<comments>http://www.mixedcontent.com/coding/php/2005/07/blink-sale/#comments</comments>
		<pubDate>Tue, 26 Jul 2005 19:01:29 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/coding/php/2005/07/blink-sale/</guid>
		<description><![CDATA[I love the new basecamp-ish look of the blinksale accounting program. As a freelancer, I am horrible at keeping my billing straight, and this online application looks like a fantastic solution. The invoices are sharp and stylish, the interface is filled with AJAX goodness, iCal and RSS integration; What’s not to like?!
It seems like there [...]]]></description>
			<content:encoded><![CDATA[<p>I love the new basecamp-ish look of the <a href="http://www.blinksale.com/">blinksale</a> accounting program. As a freelancer, I am horrible at keeping my billing straight, and this online application looks like a fantastic solution. The invoices are sharp and stylish, the interface is filled with AJAX goodness, iCal and RSS integration; What’s not to like?!</p>
<p>It seems like there are now a number of web applications whose feature set and usability levels rival (and surpass) those of their desktop competitors. I actually prefer the Gmail interface to that of many desktop email clients, and from my brief look at blinksale, it seems to be easier to use then many desktop accounting programs. Exciting times for web development!</p>
<p><b>Update:</b><br />
So I have tried to automate my billing with blinksale this month, and have been unsuccessful. There was no place for me to enter my GST number, or any other additional fields that I required. Maybe I have to upgrade to the non-free account to accomplish this, but at this point I have lost my enthusiasm. Sigh&#8230; Back to Excel templates.</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/ajax" rel="tag">ajax</a>, <a href="http://technorati.com/tag/web+development" rel="tag">web development</a>, <a href="http://technorati.com/tag/blinksale" rel="tag">blinksale</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2005/07/blink-sale/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DrupalART website launched</title>
		<link>http://www.mixedcontent.com/coding/php/2005/07/drupalart-website-launched/</link>
		<comments>http://www.mixedcontent.com/coding/php/2005/07/drupalart-website-launched/#comments</comments>
		<pubDate>Mon, 18 Jul 2005 21:00:25 +0000</pubDate>
		<dc:creator>Colin Brumelle</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Technology]]></category>

		<category><![CDATA[Coding]]></category>

		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.mixedcontent.com/coding/php/2005/07/drupalart-website-launched/</guid>
		<description><![CDATA[DrupalART has been recently launched. What are they about?
DrupalART is a site dedicated to helping people build and develop Drupal sites for artists and musicians. The goals are to show (through examples) various ways Drupal can be used to build artist websites, and build documentation aimed at newbies trying to use Drupal for their art [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://drupalart.org/">DrupalART</a> has been recently launched. What are they about?</p>
<blockquote><p>DrupalART is a site dedicated to helping people build and develop Drupal sites for artists and musicians. The goals are to show (through examples) various ways Drupal can be used to build artist websites, and build documentation aimed at newbies trying to use Drupal for their art or music website.</p></blockquote>
<p>To start with, <a href="http://www.midnightparking.com/">Farsheed</a> has put up <a href="http://drupalart.org/community-podcast-tutorial">a good tutorial on how to podcast</a> with Drupal. This site looks like it will be a great resource for artists and musicians.</p>
<div class="ttag">tags: <a href="http://technorati.com/tag/drupalart" rel="tag">drupalart</a>, <a href="http://technorati.com/tag/music" rel="tag">music</a>, <a href="http://technorati.com/tag/drupal" rel="tag">drupal</a></div>]]></content:encoded>
			<wfw:commentRss>http://www.mixedcontent.com/coding/php/2005/07/drupalart-website-launched/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
