<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>jazzsequencejazzsequence | music, WordPress, and other assorted geekery</title><link>http://www.jazzsequence.com</link><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Jazzs3quence" /><description>music, WordPress, and other assorted geekery</description><language>en</language><lastBuildDate>Sat, 19 May 2012 15:06:12 PDT</lastBuildDate><generator>http://wordpress.org/?v=3.3.2</generator><sy:updatePeriod xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">hourly</sy:updatePeriod><sy:updateFrequency xmlns:sy="http://purl.org/rss/1.0/modules/syndication/">1</sy:updateFrequency><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Jazzs3quence" /><feedburner:info uri="jazzs3quence" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://www.jazzsequence.com/?pushpress=hub" /><media:thumbnail url="http://www.jazzsequence.com/wp-content/themes/jazzsequence-20/images/podcast.jpg" /><media:keywords>indie,electronic,idm,goth,darkwave,industrial,experimental,post,rock,uk,garage,dance,drum,bass,turntablism</media:keywords><media:category scheme="http://www.itunes.com/dtds/podcast-1.0.dtd">Music</media:category><itunes:owner><itunes:email>chris@jazzsequence.com</itunes:email><itunes:name>jazzs3quence</itunes:name></itunes:owner><itunes:author>jazzs3quence</itunes:author><itunes:explicit>yes</itunes:explicit><itunes:image href="http://www.jazzsequence.com/wp-content/themes/jazzsequence-20/images/podcast.jpg" /><itunes:keywords>indie,electronic,idm,goth,darkwave,industrial,experimental,post,rock,uk,garage,dance,drum,bass,turntablism</itunes:keywords><itunes:subtitle>the sounds in my head</itunes:subtitle><itunes:summary>a semi-regular mix of electronic, idm, and indie music, that occasionally ventures into the realms of hip-hop, metal, and goth -- really, whatever is spinning in my head at the moment.</itunes:summary><itunes:category text="Music" /><geo:lat>40.777746</geo:lat><geo:long>-111.874919</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><image><link>http://www.jazzsequence.com</link><url>http://feeds2.feedburner.com/~fc/Jazzs3quence?bg=4A2412&amp;amp;fg=F3ECCE&amp;amp;anim=0</url><title>jazzs3quence</title></image><feedburner:emailServiceId>Jazzs3quence</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>Making theme options modular</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/XsrLvGQ8BR0/</link><category>museum themes</category><category>coding</category><category>modular</category><category>museum core</category><category>theme options</category><category>Tips &amp; Tricks</category><category>WordPress theme development</category><category>wordpress themes</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Thu, 10 May 2012 16:28:18 PDT</pubDate><guid isPermaLink="false">http://museumthemes.com/?p=961</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>Today I submitted version 1.1 of <a href="http://wordpress.org/extend/themes/museum-core/" >Museum Core</a> to the <a href="http://wordpress.org/extend/themes/" >WordPress theme repository</a> for review.  Originally this was going to just be a simple update with some bugfixes, but I had thought of a way to make it easier to build child themes that include <em>some</em> options settings from the parent theme (Museum Core) without having to include <em>all</em> of the options from the parent.  It started out with <a href="https://github.com/jazzsequence/AP-Museum_Core/issues/30" >this ticket I created on GitHub</a>.</p>
<p>Now, the ticket evolved from that first sketch of an idea, and I ultimately abandoned the concept of using actions and <code>remove_action</code> to change what options get used.  But the current approach is, I think, a pretty powerful way to approach theme options development so that things can be reused or abandoned in child themes and it isn&#8217;t something that I&#8217;ve seen other people doing.  (To be fair, this is actually what&#8217;s <a href="http://codex.wordpress.org/Child_Themes#Using_functions.php" >described in the WordPress Codex</a>, but I haven&#8217;t seen it in action on very many <em>theme options</em> pages, or any tutorials talking about how one would go about writing a theme options page, so I thought it was worth writing about.)  And it reduces my entire theme options down to this code:</p>
<p><script src="https://gist.github.com/2656479.js?file=ap_options_form.php"></script></p>
<p>So let&#8217;s take a look at what we&#8217;re doing in <code>ap_core_do_theme_options</code>&#8230;</p>
<p>First of all, I&#8217;ve pulled out all the code and put it into a new file called <code>option-setup.php</code>.  This handles all the stuff that was previously where the <code>_do_theme_options</code> function is now but everything has been pretty drastically rewritten.  First we have <code>ap_core_do_theme_options</code> which looks like this:</p>
<p><script src="https://gist.github.com/2656479.js?file=ap_core_do_theme_options.php"></script></p>
<p>If you&#8217;ve tried or are currently using Museum Core, you&#8217;ll already know that the theme options page sports some tabs.  So the first function we&#8217;re calling in <code>_do_theme_options</code> is the tab setup. This is a pretty straightforward function that just spits out the html needed to set up the tabs.  The real meat is in the next three functions.  We won&#8217;t look at every single function, we&#8217;ll just dig into the main highlights so you get an idea of what&#8217;s going on.  Let&#8217;s peek at <code>ap_core_general_settings</code> which handles the, wait for it, general settings tab.</p>
<p><script src="https://gist.github.com/2656479.js?file=ap_core_general_settings.php"></script></p>
<p><code>ap_core_general_settings</code> looks an awful lot like <code>ap_core_do_theme_options</code>, with a bit of HTML thrown in to set up the table that&#8217;s going to hold the actual options.  That uniformity is intentional, the idea is that you can swap functions in and out however you want.  You can use your own modified version of <code>ap_core_general_settings</code> in your child theme, or you can do away with the tabs and just put all your options straight into <code>ap_core_do_theme_options</code>.  Or you can mix and match options from the various settings tabs and create your own tabs, it&#8217;s up to you.  Let&#8217;s take a look at what an individual option looks like now.</p>
<p><script src="https://gist.github.com/2656479.js?file=ap_core_sidebar_option.php"></script></p>
<p>That&#8217;s got a bit more heft to it.  But it&#8217;s still pretty basic.  All I did here is pull the table row from the original <code>theme-options.php</code> and added it to this function.  I&#8217;m using output buffering to store all the php/html as a variable and echoing the variable at the end which is what gets sent to the function calling this function (in this case <code>ap_core_sidebar_option</code>).  I&#8217;m also calling the defaults and options from the database so our values are loaded and stored.  This is done <em>ad nauseum</em> for each setting, so each setting gets called separately and can be isolated, grouped, cut out, whatever as needed by a child theme.</p>
<p>So what happens when I want to build a child theme and use some of these options?  Here&#8217;s an example:</p>
<p><script src="https://gist.github.com/2656479.js?file=do_my_custom_theme_options.php"></script></p>
<p>First what I&#8217;m going to do is start with a new theme options function.  I&#8217;m keeping the 3 tabs from Core, but I&#8217;m adding a 4th tab.  Since Core only supports 3 tabs, and I&#8217;ll need to set up the title for the fourth tab, I&#8217;m doing my own tabs.  We&#8217;ll start by setting up the tabs.  Remember, you don&#8217;t have to use the tabs at all; if you just want all of your options on the Theme Options page, you can just cut out the tabs function and then they&#8217;ll display normally, one on top of the other.</p>
<p><script src="https://gist.github.com/2656479.js?file=my_custom_tab_setup.php"></script></p>
<p>The two things that are changed are highlighted by the fact that the textdomain (&#8216;museum-core&#8217;, &#8216;my-theme&#8217;) has changed.  We don&#8217;t need to change the textdomain of the other tabs, because, assuming the text was translated in a language file, those would already be covered by the existing translation in Core &#8212; only the new translation strings need to be added (of course, none of this is necessary, really, if you don&#8217;t care about localization of your child theme).  We changed &#8220;Typography &#038; Fonts&#8221; to &#8220;Font Stuff&#8221; and added the fourth tab, &#8220;Custom Tab&#8221;.  So far, so good.  This is what it looks like:</p>
<div class="thumbnail"><a href="https://skitch.com/jazzs3quence/83c19/theme-options-localhost-test-site-wordpress"><img class="aligncenter" style="max-width:638px" src="https://img.skitch.com/20120511-8bgrj593pymrskawg7me5dky7y.medium.jpg" alt="20120511 8bgrj593pymrskawg7me5dky7y.medium Making theme options modular"  title="Making theme options modular" /></a></div>
<p><div class="clear"></div><br />
Now that we&#8217;ve got the tabs, and we&#8217;ve added the options pages that we&#8217;re pulling from Core, it&#8217;s time to create our new settings page.  We&#8217;ll do this really minimally and just add one option.  We won&#8217;t add a bunch of function calls (although we could), we&#8217;ll just put our option straight into the new <code>my_custom_theme_settings</code> function.  It looks something like this:</p>
<p><script src="https://gist.github.com/2656479.js?file=my_custom_theme_settings.php"></script></p>
<p>Now, in order for this to be actually functional, we&#8217;d need to define some new options for our theme so we could store them in the database, this is just meant to be an example and illustrate how we&#8217;re able to still pull functions from the parent theme and mix them into our custom theme functions.  Here&#8217;s what that new tab looks like:</p>
<p><img class="aligncenter" src="https://img.skitch.com/20120511-gjd8g2p9m9dw3a397wykaxw78g.png" alt="20120511 gjd8g2p9m9dw3a397wykaxw78g Making theme options modular"  title="Making theme options modular" /><br />
<div class="clear"></div></p>
<p>To summarize, what I&#8217;ve got is a modular way of calling individual settings that can be swapped in and out at will and replaced with custom settings (or not) however you want.  If you have any thoughts or questions, feel free to post in the comments.  If you&#8217;d like to dig into the source files, you can grab the latest version of <a href="http://wordpress.org/extend/themes/museum-core/" >Museum Core</a> from <a href="https://github.com/jazzsequence/AP-Museum_Core" >GitHub</a>.  You can also take a look at <a href="https://gist.github.com/2656479#file_my_functions.php" >the complete code from this tutorial on GitHub</a>.  And if you want to take a look at the files on your computer and hack them up, you can <a href="http://museumthemes.com/downloads/modular-theme-options">download the source files</a> used to create the child theme in the screenshots <a href="http://museumthemes.com/downloads/modular-theme-options">here</a>.</p>
<img src="http://feeds.feedburner.com/~r/museumthemes/~4/adHUDGAkCx8" height="1" width="1"/><p>You're reading <a href="http://feedproxy.google.com/~r/museumthemes/~3/adHUDGAkCx8/">Making theme options modular</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=XsrLvGQ8BR0:9GhowgxBnq4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=XsrLvGQ8BR0:9GhowgxBnq4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=XsrLvGQ8BR0:9GhowgxBnq4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=XsrLvGQ8BR0:9GhowgxBnq4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=XsrLvGQ8BR0:9GhowgxBnq4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=XsrLvGQ8BR0:9GhowgxBnq4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=XsrLvGQ8BR0:9GhowgxBnq4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=XsrLvGQ8BR0:9GhowgxBnq4:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/XsrLvGQ8BR0" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;Today I submitted version 1.1 of Museum Core to the WordPress theme repository for review. Originally this was going to just be a simple update with some bugfixes, but I had thought of a way to make it easier to build child themes that include some options settings from the parent theme (Museum Core) without...&amp;#160;(&lt;a href="http://museumthemes.com/tips-tricks/modular-theme-options/"&gt;read more&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://feedproxy.google.com/~r/museumthemes/~3/adHUDGAkCx8/"&gt;Making theme options modular&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://museumthemes.com/tips-tricks/modular-theme-options/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://feedproxy.google.com/~r/museumthemes/~3/adHUDGAkCx8/</feedburner:origLink></item><item><title>Took you long enough, MPAA…</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/eIFuTgGi0S0/</link><category>asides</category><category>geek of technology</category><category>ministry of movies</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Mon, 07 May 2012 15:42:03 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?p=11485</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>Interesting article on how the movie industry has now suddenly realized they can actually make money on YouTube (something YouTube web series&#8217; and content creators have already figured out) and are (possibly) no longer under the assertion that it is, in fact, evil&#8230;</p>
<p><a href="http://www.techdirt.com/blog/innovation/articles/20120503/03522718754/after-years-trying-to-kill-youtube-movie-studios-are-embracing-profiting-it.shtml">After Years Of Trying To Kill YouTube, Movie Studios Are Embracing &amp; Profiting From It | Techdirt</a>.</p>
<p>(via @isohunt)</p>
<p>You're reading <a href="http://www.jazzsequence.com/2012/05/07/took-you-long-enough-mpaa/">Took you long enough, MPAA&#8230;</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=eIFuTgGi0S0:1g_Q-fsjLaA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=eIFuTgGi0S0:1g_Q-fsjLaA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=eIFuTgGi0S0:1g_Q-fsjLaA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=eIFuTgGi0S0:1g_Q-fsjLaA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=eIFuTgGi0S0:1g_Q-fsjLaA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=eIFuTgGi0S0:1g_Q-fsjLaA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=eIFuTgGi0S0:1g_Q-fsjLaA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=eIFuTgGi0S0:1g_Q-fsjLaA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/eIFuTgGi0S0" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;Interesting article on how the movie industry has now suddenly realized they can actually make money on YouTube (something YouTube web series&amp;#8217; and content creators have already figured out) and are (possibly) no longer under the assertion that it is, in fact, evil&amp;#8230; After Years Of Trying To Kill YouTube, Movie Studios Are Embracing &amp;#38;...&amp;#160;(&lt;a href="http://www.jazzsequence.com/2012/05/07/took-you-long-enough-mpaa/"&gt;read more&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.jazzsequence.com/2012/05/07/took-you-long-enough-mpaa/"&gt;Took you long enough, MPAA&amp;#8230;&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/05/07/took-you-long-enough-mpaa/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.jazzsequence.com/2012/05/07/took-you-long-enough-mpaa/</feedburner:origLink></item><item><title>Museum Core listed in WPCandy’s Theme Release Roundup</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/RZ1vuPUd61o/</link><category>division of design</category><category>welcome to the working week</category><category>museum core</category><category>museum themes</category><category>omfg</category><category>theme release</category><category>wordpress theme</category><category>wpcandy</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Fri, 04 May 2012 20:21:50 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?p=11477</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>&#8230;and in case you haven&#8217;t seen my (numerous, ecstatic) tweets, Facebook shares, etc&#8230;Museum Core was listed on a little blog called <a href="http://wpcandy.com" target="_blank">WPCandy</a>&#8230;</p>
<p><a href="http://wpcandy.com/reports/theme-releases-2012-5-4#comment-504724">The Weekly WordPress Theme Release Roundup | WPCandy</a>.</p>
<p>You're reading <a href="http://www.jazzsequence.com/2012/05/04/museum-core-listed-in-wpcandys-theme-release-roundup/">Museum Core listed in WPCandy&#8217;s Theme Release Roundup</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=RZ1vuPUd61o:aiDqE7i6XUs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=RZ1vuPUd61o:aiDqE7i6XUs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=RZ1vuPUd61o:aiDqE7i6XUs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=RZ1vuPUd61o:aiDqE7i6XUs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=RZ1vuPUd61o:aiDqE7i6XUs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=RZ1vuPUd61o:aiDqE7i6XUs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=RZ1vuPUd61o:aiDqE7i6XUs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=RZ1vuPUd61o:aiDqE7i6XUs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/RZ1vuPUd61o" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;&amp;#8230;and in case you haven&amp;#8217;t seen my (numerous, ecstatic) tweets, Facebook shares, etc&amp;#8230;Museum Core was listed on a little blog called WPCandy&amp;#8230; The Weekly WordPress Theme Release Roundup &amp;#124; WPCandy.&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.jazzsequence.com/2012/05/04/museum-core-listed-in-wpcandys-theme-release-roundup/"&gt;Museum Core listed in WPCandy&amp;#8217;s Theme Release Roundup&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/05/04/museum-core-listed-in-wpcandys-theme-release-roundup/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.jazzsequence.com/2012/05/04/museum-core-listed-in-wpcandys-theme-release-roundup/</feedburner:origLink></item><item><title>One theme to rule them all</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/u_8tYA2GU7Q/</link><category>museum themes</category><category>css3</category><category>free theme</category><category>GPL theme</category><category>html5</category><category>museum core</category><category>News</category><category>theme options</category><category>wordpress</category><category>WordPress repository</category><category>wordpress theme</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Thu, 03 May 2012 12:21:39 PDT</pubDate><guid isPermaLink="false">http://museumthemes.com/?p=943</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p style="text-align: center;"><a href="http://museumthemes.com/home/attachment/museum-core-2/" rel="attachment wp-att-942"><img class="aligncenter  wp-image-942" title="museum-core" src="http://museumthemes.com/wp-content/uploads/2010/06/museum-core.jpg" alt="museum core One theme to rule them all" width="790" height="395" /></a></p>
<p>If you follow us on Twitter or Facebook, you may already know that we recently released our first theme to the official WordPress repository.  It&#8217;s called <a href="http://wordpress.org/extend/themes/museum-core" >Museum Core</a>.</p>
<p>Museum Core is the product of over a year of development.  A solid foundation built on responsive design, HTML5 and CSS3, with a theme options page that is secure and flexible.  It also supports localization into any language you want.  In less than a month, <a href="http://wordpress.org/extend/themes/museum-core/stats/" >it&#8217;s already been downloaded more than 3,000 times</a>.</p>
<p>Core marks the beginning of our shift in scope for Museum Themes.  Rather than maintaining dozens of different themes independently, all themes, past and future, will become child themes of Core.  Additionally, we&#8217;ll be using Core to build WordPress versions of our most popular and favorite <a href="http://museumthemes.com/category/blogger-templates/">Blogger templates</a> &#8212; we&#8217;ve already released WordPress versions of <a title="Grandma’s Hat Box" href="http://museumthemes.com/museum-themes/grandmas-hat-box/">Grandma&#8217;s Hat Box</a> and <a title="dear Audrey" href="http://museumthemes.com/museum-themes/dear-audrey/">dear Audrey</a>, and more are on the way.  Soon all our themes will be driven by the powerful Core framework, while maintaining the same level of customization options they currently offer.</p>
<p>Exciting things are coming in the next few months for Museum Themes.  For now, here&#8217;s our promo video for Core and some more information about what it supports.</p>
<p><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='640' height='390' src='http://www.youtube.com/embed/jUtyzdbvnTM?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span></p>
<p>Here&#8217;s a list of some of the features in <a href="http://wordpress.org/extend/themes/museum-core" >Museum Core</a>:</p>
<ul>
<li>customizable sidebar (left or right)</li>
<li>full posts or excerpts on main blog page and archive pages (excerpts support post thumbnails)</li>
<li>customizable footer text (no hard-coded author credit)</li>
<li>five typeface options for 3 different locations (headings, body and alternate) with an eye for international language support</li>
<li>customizable link colors via an easy-to-use color-picker</li>
<li>custom favicon</li>
<li>optional support for Twitter hovercards</li>
<li>responsive design that supports smaller screens and mobile</li>
<li>supports all WordPress post formats with different layouts optimized for each</li>
<li>internationalization support.  Complete Polish translation in 1.0.9 courtesy of <a href="http://kratery.com/" >anemoone</a>.</li>
</ul>
<div></div>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/museumthemes/~4/izC2aMvmy0E" height="1" width="1"/><p>You're reading <a href="http://feedproxy.google.com/~r/museumthemes/~3/izC2aMvmy0E/">One theme to rule them all</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=u_8tYA2GU7Q:wZQ7G5ZeXcY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=u_8tYA2GU7Q:wZQ7G5ZeXcY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=u_8tYA2GU7Q:wZQ7G5ZeXcY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=u_8tYA2GU7Q:wZQ7G5ZeXcY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=u_8tYA2GU7Q:wZQ7G5ZeXcY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=u_8tYA2GU7Q:wZQ7G5ZeXcY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=u_8tYA2GU7Q:wZQ7G5ZeXcY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=u_8tYA2GU7Q:wZQ7G5ZeXcY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/u_8tYA2GU7Q" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;If you follow us on Twitter or Facebook, you may already know that we recently released our first theme to the official WordPress repository.  It&amp;#8217;s called Museum Core. Museum Core is the product of over a year of development.  A solid foundation built on responsive design, HTML5 and CSS3, with a theme options page that...&amp;#160;(&lt;a href="http://museumthemes.com/news/theme-rule/"&gt;read more&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://feedproxy.google.com/~r/museumthemes/~3/izC2aMvmy0E/"&gt;One theme to rule them all&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://museumthemes.com/news/theme-rule/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://feedproxy.google.com/~r/museumthemes/~3/izC2aMvmy0E/</feedburner:origLink></item><item><title>teh s3quence 016 – spring mix</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/-j8XXy8pVRs/</link><category>ministry of music</category><category>dance</category><category>electronic</category><category>idm</category><category>mixcloud</category><category>mixtape</category><category>spring</category><category>teh s3quence</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Sat, 28 Apr 2012 09:14:41 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?p=11465</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>After a seemingly long winter (it was, wasn&#8217;t it?), Spring is here again.  This is a collection of tracks that hint of the Summer to come and reflect the newness of the season.</p>
<div><object width="480" height="480" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="wmode" value="opaque" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.mixcloud.com/media/swf/player/mixcloudLoader.swf?feed=http%3A%2F%2Fwww.mixcloud.com%2Fjazzsequence%2Fteh-s3quence-016-spring-2012%2F&amp;embed_uuid=6763b1c3-3bf2-416c-9c21-16c080d98405&amp;stylecolor=&amp;embed_type=widget_standard" /><param name="allowfullscreen" value="true" /><embed width="480" height="480" type="application/x-shockwave-flash" src="http://www.mixcloud.com/media/swf/player/mixcloudLoader.swf?feed=http%3A%2F%2Fwww.mixcloud.com%2Fjazzsequence%2Fteh-s3quence-016-spring-2012%2F&amp;embed_uuid=6763b1c3-3bf2-416c-9c21-16c080d98405&amp;stylecolor=&amp;embed_type=widget_standard" allowFullScreen="true" wmode="opaque" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<div style="clear: both; height: 3px;"></div>
<p style="display: block; font-size: 12px; font-family: Helvetica, Arial, sans-serif; padding-top: 3px; padding-right: 4px; padding-bottom: 3px; padding-left: 4px; color: #02a0c7; text-align: center; margin: 0px;"><a style="color: #02a0c7; font-weight: bold;" href="http://www.mixcloud.com/jazzsequence/teh-s3quence-016-spring-2012/?utm_source=widget&amp;utm_medium=web&amp;utm_campaign=base_links&amp;utm_term=resource_link" target="_blank">Teh s3quence 016 &#8211; spring 2012</a> by <a style="color: #02a0c7; font-weight: bold;" href="http://www.mixcloud.com/jazzsequence/?utm_source=widget&amp;utm_medium=web&amp;utm_campaign=base_links&amp;utm_term=profile_link" target="_blank">Jazzsequence</a> on <a style="color: #02a0c7; font-weight: bold;" href="http://www.mixcloud.com/?utm_source=widget&amp;utm_medium=web&amp;utm_campaign=base_links&amp;utm_term=homepage_link" target="_blank"> Mixcloud</a></p>
<div style="clear: both; height: 3px;"></div>
</div>
<p style="padding-left: 60px;">Tracklist:</p>
<p style="padding-left: 60px;">Eskmo &#8211; Cloudlight<br />
Gramatik &#8211; DreamBIG<br />
MJ Cole &#8211; I See<br />
Boards of Canada &#8211; 1969<br />
cEven kEy &#8211; Shortwave Connector<br />
Pretty Lights &#8211; Keep &#8216;Em Bouncin&#8217;<br />
Daft Punk &#8211; End of Line (Photek Remix)<br />
Goldfrapp &#8211; Alive (Dave Aude Remix)<br />
BT &#8211; Loving You More (BT&#8217;s Final Spiritual Journey)<br />
Logical Disorder &#8211; Come to me I wanna show you something<br />
Beck &#8211; Where It&#8217;s At (UNKLE Remix)<br />
Luscious Jackson &#8211; Space Diva<br />
Jill Cunniff &#8211; Lazy Girls<br />
The Chemical Brothers &#8211; Hey Boy, Hey Girl<br />
The Crystal Method &#8211; Murder<br />
Moby &#8211; If Things Were Perfect<br />
Steve Reich &#8211; Music for 18 Musicians (Coldcut Remix)</p>
<p>You're reading <a href="http://www.jazzsequence.com/2012/04/28/teh-s3quence-016-spring-mix/">teh s3quence 016 &#8211; spring mix</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=-j8XXy8pVRs:rw-aZUViM4o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=-j8XXy8pVRs:rw-aZUViM4o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=-j8XXy8pVRs:rw-aZUViM4o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=-j8XXy8pVRs:rw-aZUViM4o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=-j8XXy8pVRs:rw-aZUViM4o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=-j8XXy8pVRs:rw-aZUViM4o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=-j8XXy8pVRs:rw-aZUViM4o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=-j8XXy8pVRs:rw-aZUViM4o:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/-j8XXy8pVRs" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;After a seemingly long winter (it was, wasn&amp;#8217;t it?), Spring is here again.  This is a collection of tracks that hint of the Summer to come and reflect the newness of the season. Teh s3quence 016 &amp;#8211; spring 2012 by Jazzsequence on Mixcloud Tracklist: Eskmo &amp;#8211; Cloudlight Gramatik &amp;#8211; DreamBIG MJ Cole &amp;#8211; I See...&amp;#160;(&lt;a href="http://www.jazzsequence.com/2012/04/28/teh-s3quence-016-spring-mix/"&gt;read more&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.jazzsequence.com/2012/04/28/teh-s3quence-016-spring-mix/"&gt;teh s3quence 016 &amp;#8211; spring mix&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/04/28/teh-s3quence-016-spring-mix/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.jazzsequence.com/2012/04/28/teh-s3quence-016-spring-mix/</feedburner:origLink></item><item><title>Typography and language as a WordPress theme developer</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/5xk9WLerb40/</link><category>division of design</category><category>subdivision of random</category><category>the soapbox</category><category>design</category><category>i18n</category><category>internationalization</category><category>theme design</category><category>theme development</category><category>typography</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Thu, 26 Apr 2012 09:51:37 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?p=11457</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>Today I have submitted <a href="http://wordpress.org/extend/themes/museum-core/" target="_blank">Museum Core</a> version 1.0.9. Unless there are any major issues with the update, it should get approved and be available in the WordPress themes repository in the next couple days. Among other features both under the hood and out in the open, this is the first version of any theme I have ever written with a full translation in another language thanks to <a href="http://kratery.com">anemoone</a>&#8216;s Polish translation. I&#8217;ve had to teach myself a lot about the internationalization (<a href="http://codex.wordpress.org/I18n_for_WordPress_Developers" target="_blank">i18n</a>) process, about proper use of <code>_e</code>, <code>__()</code>, <code>_n</code>, <code>sprintf</code> and how and why those are different from <code>echo</code> which I&#8217;ve learned both through managing the <a href="http://eventespresso.com/features/languages/" target="_blank">i18n process for Event Espresso</a> and through the theme review process. However working with an actual translator made me discover things I had previously not considered about typography and how it changes depending on what <em>language</em> you are looking at it in.</p>
<p>The first thing I had to address was that I was <a href="http://wpseek.com/_doing_it_wrong/" target="_blank"><code>_doing_it_wrong</code></a>, at least in terms of i18n. I was dealing with typefaces from a programmer&#8217;s and a designer&#8217;s standpoint &#8212; <em>not</em> from the standpoint of someone actually looking to use the theme in another language. While I could say &#8220;yes, this theme supports translations&#8221; I wasn&#8217;t doing it in a way that was actually very supportive. A designer/developer will look at a font file and try to cut the file size as much as possible to decrease page load time. One way to do this is to strip out non-latin characters. That&#8217;s great for English speakers, but it means that everyone else is left in the lurch. Rather than rebuilding my font files with the extra characters included, 1.0.9 is letting Google handle the heavy lifting of supplying the fonts because, presumably, their servers will serve the entire character set faster than yours will.</p>
<p>The second thing is typeface design. I will freely admit that I have my own tastes as far as typefaces go, and that colors the fonts used in the themes that I build. I have a strong dislike for Times New Roman, for example, and while I like Georgia, I feel it&#8217;s over used. While it&#8217;s not my favorite serif typeface (that would probably fall to <a href="http://www.theleagueofmoveabletype.com/goudy-bookletter-1911" target="_blank">Goudy Bookletter 1911</a>, but that didn&#8217;t really fit with the clean and modern design of Core), I included <a href="http://www.google.com/webfonts/specimen/PT+Serif" target="_blank">PT Serif</a> in Core as a serif option because it has many similarities to Times and Georgia while not being too spindly (like Times) or wide (like Georgia). However, all of that goes out the window when you are looking at a typeface in a <em>different language</em>. Our eyes naturally follow the shape and contours of the letters in our own language, but I couldn&#8217;t tell you what an attractive type in Poland would be. Not only do the letterforms follow some different rules, but there are different tastes and preferences in what an attractive typeface is. So when I was told that some of my embedded fonts didn&#8217;t support Polish characters, I asked what a good font for the Polish language was, and was pointed in the direction of <a href="http://www.google.com/webfonts/specimen/Lato" target="_blank">Lato</a>, by a Polish designer. To me, it just looks like a bit of a squat sans-serif (at least when compared with <a href="http://www.google.com/webfonts/specimen/Droid+Sans" target="_blank">Droid Sans</a>), but who am I to judge its ability to display Polish characters like ł and ą in an attractive and readable way?</p>
<p>We all interpret words differently. We bring different experiences to the act of reading an article or blog post, so different things will resonate with each of us. What we as designers and developers (especially for open source software that may be used in other parts of the world that we may never have even considered &#8212; as opposed to client work for a specific person or organization in a native-language-speaking country) may not appreciate is that the same rules apply to type and design &#8212; what is seen as attractive and appealing in Tokyo is certainly not the same thing as what we see as attractive and appealing in Utah. The internet is making the world more of a melting pot than it was before as styles and trends from one part of the world affect preferences in another. Even so, individual preferences and tastes will always be unique, making design a unique challenge when you are trying to appeal to a range of potential users.</p>
<p>You're reading <a href="http://www.jazzsequence.com/2012/04/26/typography-language-wordpress-theme-developer/">Typography and language as a WordPress theme developer</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=5xk9WLerb40:z2ZZMB_Zbuo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=5xk9WLerb40:z2ZZMB_Zbuo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=5xk9WLerb40:z2ZZMB_Zbuo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=5xk9WLerb40:z2ZZMB_Zbuo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=5xk9WLerb40:z2ZZMB_Zbuo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=5xk9WLerb40:z2ZZMB_Zbuo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=5xk9WLerb40:z2ZZMB_Zbuo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=5xk9WLerb40:z2ZZMB_Zbuo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/5xk9WLerb40" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;Today I have submitted Museum Core version 1.0.9. Unless there are any major issues with the update, it should get approved and be available in the WordPress themes repository in the next couple days. Among other features both under the hood and out in the open, this is the first version of any theme I...&amp;#160;(&lt;a href="http://www.jazzsequence.com/2012/04/26/typography-language-wordpress-theme-developer/"&gt;read more&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.jazzsequence.com/2012/04/26/typography-language-wordpress-theme-developer/"&gt;Typography and language as a WordPress theme developer&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/04/26/typography-language-wordpress-theme-developer/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.jazzsequence.com/2012/04/26/typography-language-wordpress-theme-developer/</feedburner:origLink></item><item><title>The Signal is now available to download</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/4yteqrBVnjo/212533</link><category>Kickstarter</category><category>ministry of music</category><category>jazzsequence</category><category>kickstarter</category><category>the signal</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Sun, 22 Apr 2012 07:15:39 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?guid=39ee5a60caa1bcd03a9b62558dc0a820</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>Hey everyone.  The Signal is now available for download via Bandcamp.  I'd like to thank again everyone who signed up to be a backer for this project.  We may not have reached our goal, but your contribution and generosity means a lot to me.</p><p>If you signed up to sponsor/donate to/pre-order the album and you have not received a download code email me at chris at jazzsequence dot com and I will send it over.  Otherwise, you can buy the album for 5 bucks here: <a href="http://jazzsequence.bandcamp.com/album/the-signal" >The Signal</a>.</p><p>You can also read the post I wrote on Percussa's blog about the project.  <br><a href="http://www.percussa.com/2012/04/21/the-signal-an-experimental-electronic-music-project-using-percussa-audiocubes/" >The Signal: an Experimental Electronic Music Project using Percussa AudioCubes</a></p><p>You're reading <a href="http://www.kickstarter.com/projects/jazzs3quence/the-signal/posts/212533">The Signal is now available to download</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=4yteqrBVnjo:RsteLpj9uRE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=4yteqrBVnjo:RsteLpj9uRE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=4yteqrBVnjo:RsteLpj9uRE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=4yteqrBVnjo:RsteLpj9uRE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=4yteqrBVnjo:RsteLpj9uRE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=4yteqrBVnjo:RsteLpj9uRE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=4yteqrBVnjo:RsteLpj9uRE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=4yteqrBVnjo:RsteLpj9uRE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/4yteqrBVnjo" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;Hey everyone.  The Signal is now available for download via Bandcamp.  I'd like to thank again everyone who signed up to be a backer for this project.  We may not have reached our goal, but your contribution and generosity means a lot to me.If you s...&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.kickstarter.com/projects/jazzs3quence/the-signal/posts/212533"&gt;The Signal is now available to download&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/04/22/the-signal-is-now-available-to-download/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.kickstarter.com/projects/jazzs3quence/the-signal/posts/212533</feedburner:origLink></item><item><title>Read about The Signal on Percussa’s blog</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/56I-H-f3pvg/</link><category>department of special projects</category><category>ministry of music</category><category>audiocubes</category><category>guest post</category><category>jazzsequence</category><category>percussa</category><category>the signal</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Sat, 21 Apr 2012 09:43:39 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?p=11446</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p><img src="http://uploads.jazzsequence.com/2012/04/IMG_0043-150x150.jpg" alt="" title="IMG_0043" width="150" height="150" class="alignleft size-thumbnail wp-image-11448" /></a>Celine from <a href="http://percussa.com" target="_blank">Percussa</a> asked me to write a blog post for their site on <a href="http://music.jazzsequence.com/album/the-signal" target="_blank"><em>The Signal</em></a> because she thought I&#8217;d probably do a better job of talking about it than she would.  I did, and the post is now live on their site.  This is the first time since the Kickstarter project that I&#8217;ve really talked about the project and the process.  Check it out.</p>
<p><a href='http://www.percussa.com/2012/04/21/the-signal-an-experimental-electronic-music-project-using-percussa-audiocubes/'>The Signal: an Experimental Electronic Music Project using AudioCubes<a href="http://uploads.jazzsequence.com/2012/04/IMG_0043.jpg"></a></p>
<p>You're reading <a href="http://www.jazzsequence.com/2012/04/21/read-signal-percussas-blog/">Read about The Signal on Percussa&#8217;s blog</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=56I-H-f3pvg:MEa_yrsywE8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=56I-H-f3pvg:MEa_yrsywE8:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=56I-H-f3pvg:MEa_yrsywE8:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=56I-H-f3pvg:MEa_yrsywE8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=56I-H-f3pvg:MEa_yrsywE8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=56I-H-f3pvg:MEa_yrsywE8:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=56I-H-f3pvg:MEa_yrsywE8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=56I-H-f3pvg:MEa_yrsywE8:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/56I-H-f3pvg" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;Celine from Percussa asked me to write a blog post for their site on The Signal because she thought I&amp;#8217;d probably do a better job of talking about it than she would. I did, and the post is now live on their site. This is the first time since the Kickstarter project that I&amp;#8217;ve really...&amp;#160;(&lt;a href="http://www.jazzsequence.com/2012/04/21/read-signal-percussas-blog/"&gt;read more&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.jazzsequence.com/2012/04/21/read-signal-percussas-blog/"&gt;Read about The Signal on Percussa&amp;#8217;s blog&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/04/21/read-signal-percussas-blog/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.jazzsequence.com/2012/04/21/read-signal-percussas-blog/</feedburner:origLink></item><item><title>New look for jazzsequence.com (again…)</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/1aaeqH9FjWk/</link><category>department of special projects</category><category>coding</category><category>free wordpress theme</category><category>jazzsequence</category><category>museum core</category><category>redesign</category><category>theme development</category><category>web design</category><category>wordpress</category><category>wordpress theme</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Fri, 13 Apr 2012 20:39:37 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?p=11421</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p>So, the jazzsequence.com redesign is still on (or at least planned), but I figured, since I just got <a href="http://wordpress.org/extend/themes/museum-core" target="_blank">a theme hosted in the WordPress.org themes repository</a>, I might as well make it, you know, <em>my theme</em> so that at least <em>one person</em> is using it live, right?  So here it is: <a href="http://wordpress.org/extend/themes/museum-core" target="_blank">Museum Core</a>.  I&#8217;ve also disabled <a href="http://wordpress.org/extend/plugins/wptouch/" target="_blank">WPTouch</a> so if you&#8217;re looking at it in a mobile browser, you can see it in all its responsive glory.</p>
<p>I&#8217;m really excited about this theme.  Not just because it&#8217;s badass and not just because I spent over a year developing it.  Those things, too.  But because&#8230;wait, no, it&#8217;s pretty much because it&#8217;s badass.  I learned a lot through the whole process, particularly the theme review process, and it took over a month of revising and revising to get this (my first (accepted) submission to the repository) actually hosted on <a href="http://wordpress.org/extend/themes/" target="_blank">WordPress.org</a>.  It&#8217;s no small feat.  It requires dedication, the ability to take criticism, and willingness to adhere to WordPress&#8217; (high) standards.  I don&#8217;t say that to pat myself on the back.  I say that because it&#8217;s effing hard.  Okay, yeah, and to pat myself on the back.  A little bit.  But possibly WordPress says it best on their page about <a href="http://wordpress.org/extend/themes/about/" target="_blank">why you would want to host your themes on WordPress.org</a>:</p>
<blockquote><p>The goal of our themes directory isn&#8217;t to have every theme in the world, it&#8217;s to have the best.</p></blockquote>
<p>That&#8217;s their words, not mine.  I certainly wouldn&#8217;t call my theme the best.  But it&#8217;s damn fine (if I do say so myself) and I&#8217;m going to stand behind it and show it off for a little bit by making it the theme for my website.  I&#8217;m allowed to do that.  If you want to download it, go get it here: <a href="http://wordpress.org/extend/themes/museum-core" target="_blank">Museum Core</a>.</p>
<p>You're reading <a href="http://www.jazzsequence.com/2012/04/13/jazzsequencecom/">New look for jazzsequence.com (again&#8230;)</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=1aaeqH9FjWk:MfExrfFWvJY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=1aaeqH9FjWk:MfExrfFWvJY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=1aaeqH9FjWk:MfExrfFWvJY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=1aaeqH9FjWk:MfExrfFWvJY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=1aaeqH9FjWk:MfExrfFWvJY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=1aaeqH9FjWk:MfExrfFWvJY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=1aaeqH9FjWk:MfExrfFWvJY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=1aaeqH9FjWk:MfExrfFWvJY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/1aaeqH9FjWk" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;So, the jazzsequence.com redesign is still on (or at least planned), but I figured, since I just got a theme hosted in the WordPress.org themes repository, I might as well make it, you know, my theme so that at least one person is using it live, right? So here it is: Museum Core. I&amp;#8217;ve also...&amp;#160;(&lt;a href="http://www.jazzsequence.com/2012/04/13/jazzsequencecom/"&gt;read more&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.jazzsequence.com/2012/04/13/jazzsequencecom/"&gt;New look for jazzsequence.com (again&amp;#8230;)&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/04/13/jazzsequencecom/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.jazzsequence.com/2012/04/13/jazzsequencecom/</feedburner:origLink></item><item><title>Plugin Development &amp; Tutorial Writing is Charity</title><link>http://feedproxy.google.com/~r/Jazzs3quence/~3/Po49AS5RNwo/</link><category>asides</category><category>free</category><category>freemium</category><category>link</category><category>open source</category><category>plugin</category><category>tutorial</category><category>wordpress</category><category>wordpress development</category><category>wordpress plugin</category><category>wordpress tutorial</category><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">chris@jazzsequence.com (jazzs3quence)</dc:creator><pubDate>Thu, 12 Apr 2012 08:48:51 PDT</pubDate><guid isPermaLink="false">http://www.jazzsequence.com/?p=11417</guid><content:encoded xmlns:content="http://purl.org/rss/1.0/modules/content/"><![CDATA[<p><a href='http://www.kevinleary.net/charity-dilemma/'>The Charity Dilemma: Appreciate What You Are Given | kevinleary.net</a>.</p>
<p>You're reading <a href="http://www.jazzsequence.com/2012/04/12/plugin-development-tutorial-writing-is-charity/">Plugin Development &#038; Tutorial Writing is Charity</a> via RSS -- which is awesome, by the way -- but you might want to check it out on <a href="http://www.jazzsequence.com">jazzsequence</a> to get the full experience.</p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=Po49AS5RNwo:I0TSTRTsIlU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=Po49AS5RNwo:I0TSTRTsIlU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=Po49AS5RNwo:I0TSTRTsIlU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=Po49AS5RNwo:I0TSTRTsIlU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=Po49AS5RNwo:I0TSTRTsIlU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=Po49AS5RNwo:I0TSTRTsIlU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Jazzs3quence?a=Po49AS5RNwo:I0TSTRTsIlU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/Jazzs3quence?i=Po49AS5RNwo:I0TSTRTsIlU:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Jazzs3quence/~4/Po49AS5RNwo" height="1" width="1"/>]]></content:encoded><description>&lt;p&gt;The Charity Dilemma: Appreciate What You Are Given &amp;#124; kevinleary.net.&lt;/p&gt;&lt;p&gt;You're reading &lt;a href="http://www.jazzsequence.com/2012/04/12/plugin-development-tutorial-writing-is-charity/"&gt;Plugin Development &amp;#038; Tutorial Writing is Charity&lt;/a&gt; via RSS -- which is awesome, by the way -- but you might want to check it out on &lt;a href="http://www.jazzsequence.com"&gt;jazzsequence&lt;/a&gt; to get the full experience.&lt;/p&gt;</description><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.jazzsequence.com/2012/04/12/plugin-development-tutorial-writing-is-charity/feed/</wfw:commentRss><slash:comments xmlns:slash="http://purl.org/rss/1.0/modules/slash/">0</slash:comments><feedburner:origLink>http://www.jazzsequence.com/2012/04/12/plugin-development-tutorial-writing-is-charity/</feedburner:origLink></item><media:credit role="author">jazzs3quence</media:credit><media:rating>adult</media:rating><media:description type="plain">the sounds in my head</media:description></channel></rss>

