<?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:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Brian Jeremy Kupetz | brianjeremy.com | my blog, who i am, what i do, what i've done, how to reach me, links</title>
	
	<link>http://www.brianjeremy.com</link>
	<description>who am i, what do i do, what have i've done?</description>
	<pubDate>Mon, 19 Oct 2009 23:13:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<geo:lat>34.146607</geo:lat><geo:long>-118.139103</geo:long><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BrianJeremyKupetz" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>SQL Server Nightly Backup Script</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/GBUxz-5rpG8/</link>
		<comments>http://www.brianjeremy.com/2009/10/19/sql-server-nightly-backup-script/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 23:13:34 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Application Servers]]></category>

		<category><![CDATA[Databases]]></category>

		<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=322</guid>
		<description><![CDATA[Below is a Microsoft SQL Server script that I use to create nightly backups.  The backups (.BAK files) can be copied to hard drive, tape, or remote storage to satisfy your disaster recovery requirements.  The script requires two (2) modifications - first change the &#8216;master_backup_dir&#8217; variable to the path on your server that [...]]]></description>
			<content:encoded><![CDATA[<p>Below is a Microsoft SQL Server script that I use to create nightly backups.  The backups (.BAK files) can be copied to hard drive, tape, or remote storage to satisfy your disaster recovery requirements.  The script requires two (2) modifications - first change the &#8216;master_backup_dir&#8217; variable to the path on your server that you would like the backups stored and second update the &#8216;retain_day&#8217; variable to the number of days you wish to retain the backups on physical disk prior to removal.</p>
<p>Configure the SQL Agent to run a nightly job with a single step that executes the T-SQL code.</p>

<div class="wp_syntax"><div class="code"><pre class="sql"><span style="color: #808080; font-style: italic;">/*********************************************************/</span>
<span style="color: #808080; font-style: italic;">/* Job requires use of xp_create_subdir and xp_delete_file to
create backup directories and delete old files */</span>
<span style="color: #808080; font-style: italic;">/*********************************************************/</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-- All Databases excluding (non-read only and sample) databases are backed up.</span>
<span style="color: #808080; font-style: italic;">-- Expired backups are deleted</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-- Backups of master, model and msdb are written to a 'System' folder</span>
<span style="color: #808080; font-style: italic;">-- Backups of user databases are written to folders named after the databases</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-- Get names of eligible databases (excluding tempdb and sample databases)</span>
&nbsp;
declare databases_to_backup cursor
<span style="color: #993333; font-weight: bold;">FOR</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> name <span style="color: #993333; font-weight: bold;">FROM</span> master..sysdatabases
<span style="color: #993333; font-weight: bold;">WHERE</span> name <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">IN</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'NorthWind'</span>,<span style="color: #ff0000;">'Pubs'</span>, <span style="color: #ff0000;">'AdventureWorks'</span>, <span style="color: #ff0000;">'tempdb'</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #993333; font-weight: bold;">AND</span> <span style="color: #66cc66;">&#40;</span><span style="color: #993333; font-weight: bold;">STATUS</span> &amp;amp; <span style="color: #cc66cc;">1024</span><span style="color: #66cc66;">&#41;</span> &amp;lt;&amp;gt; <span style="color: #cc66cc;">1024</span>
<span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span> name
<span style="color: #993333; font-weight: bold;">FOR</span> <span style="color: #993333; font-weight: bold;">READ</span> only
go
&nbsp;
<span style="color: #993333; font-weight: bold;">SET</span> nocount <span style="color: #993333; font-weight: bold;">ON</span>
&nbsp;
declare @db_name varchar<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">50</span><span style="color: #66cc66;">&#41;</span>,
@master_backup_dir varchar<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span>,
@specific_backup_dir varchar<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span>,
@backup_date char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">8</span><span style="color: #66cc66;">&#41;</span>,
@backup_time char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">4</span><span style="color: #66cc66;">&#41;</span>,
@filename varchar<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span>,
@retain_days tinyint,
@delete_date datetime
&nbsp;
<span style="color: #808080; font-style: italic;">-- Specify high level backup directory and number of days' backups to keep on disk</span>
<span style="color: #993333; font-weight: bold;">SET</span> @master_backup_dir = <span style="color: #ff0000;">'D:<span style="color: #000099; font-weight: bold;">\d</span>ata<span style="color: #000099; font-weight: bold;">\b</span>ackup<span style="color: #000099; font-weight: bold;">\s</span>ql2005<span style="color: #000099; font-weight: bold;">\'</span>
set @retain_days = 14
&nbsp;
-- Open the cursor and retrieve the first database name
open databases_to_backup
fetch databases_to_backup into @db_name
&nbsp;
while (@@fetch_status = 0)
begin
-- Build a datetime string to uniquely identify the backup
set @backup_date = convert(char(8),getdate(),112)
set @backup_time = right('</span><span style="color: #cc66cc;">00</span><span style="color: #ff0000;">' + convert(varchar(2),datepart(hh,getdate())),2) + right('</span><span style="color: #cc66cc;">00</span><span style="color: #ff0000;">' + convert(varchar(2),datepart(mi,getdate())),2)
&nbsp;
-- Build the specific backup directory path
if @db_name in ('</span>master<span style="color: #ff0000;">','</span>model<span style="color: #ff0000;">','</span>msdb<span style="color: #ff0000;">')
set @specific_backup_dir = @master_backup_dir + '</span>System\<span style="color: #ff0000;">'
else
set @specific_backup_dir = @master_backup_dir + @db_name + '</span>\<span style="color: #ff0000;">'
&nbsp;
-- Verify the backup directory exists
exec master.dbo.xp_create_subdir @specific_backup_dir
&nbsp;
-- Build a unique filename and backup the database
set @filename = @specific_backup_dir + @db_name + '</span>_db_<span style="color: #ff0000;">' + @backup_date + @backup_time + '</span>.bak<span style="color: #ff0000;">'
BACKUP DATABASE @db_name TO DISK = @filename
&nbsp;
-- Delete files older than specified retain days
set @delete_date = dateadd(d, (@retain_days * -1) , getdate())
exec xp_delete_file 0, @specific_backup_dir, N'</span>bak<span style="color: #ff0000;">', @delete_date
&nbsp;
-- Get the next database name
fetch databases_to_backup into @db_name
end
&nbsp;
set nocount off
&nbsp;
close databases_to_backup
deallocate databases_to_backup</span></pre></div></div>

<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/GBUxz-5rpG8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/10/19/sql-server-nightly-backup-script/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/10/19/sql-server-nightly-backup-script/</feedburner:origLink></item>
		<item>
		<title>Sprite Step Off wins Site of the Day</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/9HpWabigt_8/</link>
		<comments>http://www.brianjeremy.com/2009/09/13/sprite-step-off-wins-site-of-the-day/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 23:30:08 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Juxt Interactive]]></category>

		<category><![CDATA[Recent Works]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=321</guid>
		<description><![CDATA[On September 6th, The FWA (Favourite Website Awards) issued the Site of The Day award to Sprite Step Off. This is a project Juxt has been working on since late 2008.  Many site enhancements are on the way.  Expect a case study in December.

]]></description>
			<content:encoded><![CDATA[<p>On September 6th, <a title="The FWA" href="http://www.thefwa.com/" target="_self">The FWA</a> (Favourite Website Awards) issued the Site of The Day award to <a title="Sprite Step Off" href="http://www.spritestepoff.com" target="_self">Sprite Step Off</a>. This is a project <a title="JUXT Interactive" href="http://www.juxtinteractive.com" target="_self">Juxt</a> has been working on since late 2008.  Many site enhancements are on the way.  Expect a case study in December.</p>
<p><img src="http://www.brianjeremy.com/_media/sprite-step-off-fwa.jpg" alt="Sprite Step Off FWA" width="500" height="323" /></p>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/9HpWabigt_8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/09/13/sprite-step-off-wins-site-of-the-day/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/09/13/sprite-step-off-wins-site-of-the-day/</feedburner:origLink></item>
		<item>
		<title>5 Firefox add-on’s Web Developers can’t live without</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/V7wJD8fYsMk/</link>
		<comments>http://www.brianjeremy.com/2009/07/19/5-firefox-add-ons-web-developers-cant-live-without/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 00:41:06 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[HTML Development]]></category>

		<category><![CDATA[Quality Assurance]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[Troubleshooting]]></category>

		<category><![CDATA[Web Servers]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=320</guid>
		<description><![CDATA[Over the past few years the Firefox community has growth fast and fierce.  For web developers there have been countless add-on&#8217;s and plugins published that making building websites (i) more efficient (ii) more browser-compatible, and (iii) easier to debug.  Below are my top five:
Top 5 Web Developer Firefox Add-on&#8217;s

Web Developer - Integrates with Firefox to [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past few years the Firefox community has growth fast and fierce.  For web developers there have been countless add-on&#8217;s and plugins published that making building websites (i) more efficient (ii) more browser-compatible, and (iii) easier to debug.  Below are my top five:</p>
<h3>Top 5 Web Developer Firefox Add-on&#8217;s</h3>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/60">Web Developer</a> - Integrates with Firefox to create a menu and a toolbar with various web developer tools (e.g. outlining page elements, re-sizing browser window size, site-specific cookie management, and validation tools )</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a> - Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5369">YSlow</a> - YSlow brings additional functionality to Firebug regarding site performance. YSlow analyzes web pages and suggests ways to improve their performance based on a set of rules for high performance web pages which coincides with the YSlow team as well as metrics defined in the book <a href="http://www.amazon.com/High-Performance-Web-Sites-Essential/dp/0596529309/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1248050841&amp;sr=8-1">High Performance Web Sites: Essential Knowledge for Front-End Engineers</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2036 ">Server Spy</a> - Indicates the web server type for the sites you visit (e.g. Apache, IIS, Tomcat, nginx, and so forth) this data is invaluable during debugging complex server-side issues.</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/3829">Live HTTP Headers</a> - Similar to Server Spy which just pulls the &#8216;Server&#8217; element from the HTTP response header, this add-on makes additional elements available for debugging.  See &#8216;<a href="http://en.wikipedia.org/wiki/HTTP_header">List of HTTP headers</a>&#8216; on the Wikipedia for a full listing of request/response definitions.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/V7wJD8fYsMk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/07/19/5-firefox-add-ons-web-developers-cant-live-without/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/07/19/5-firefox-add-ons-web-developers-cant-live-without/</feedburner:origLink></item>
		<item>
		<title>Twitter Strategy in the Workplace</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/jeMvvT3trsg/</link>
		<comments>http://www.brianjeremy.com/2009/07/02/twitter-strategy-in-the-workplace/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 09:56:15 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Marketing]]></category>

		<category><![CDATA[Social Media]]></category>

		<category><![CDATA[Twitter]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=319</guid>
		<description><![CDATA[Employees tweet at work just as they use instant messaging services assuming your company doesn&#8217;t have a policy prohibiting them said usage.  So here is my views on how to harness Twitter in the workplace:
Define a strategy for your company, just as we have done!  I believe transparency is important so here are [...]]]></description>
			<content:encoded><![CDATA[<p>Employees tweet at work just as they use instant messaging services assuming your company doesn&#8217;t have a policy prohibiting them said usage.  So here is my views on how to harness Twitter in the workplace:</p>
<p>Define a strategy for your company, just as we have done!  I believe transparency is important so here are excerpts from the concepts behind the strategy we are implementing at <a title="Juxt Interactive, A GPJ Company" href="http://www.juxtinteractive.com" target="_self">Juxt Interactive</a> along with explanations of the driving factors behind our approach.</p>
<ul>
<li>Have each and every individual that wants to use twitter at work to benefit the company determine their voice.  How will they position their messaging and how can that help your company?  If you follow me you&#8217;ll notice at least 80% of what I say is focused towards business. tasks I&#8217;m currently working on, industry news, and research &amp; development.</li>
<li>Have more seasoned users mentor new users.  Technology is usually inherently confusing and twitter is no exception to the rule.</li>
<li>Adjust your email footer to include a link to follow you on twitter, this is simple and a great way to gain followers.</li>
<li>Be aware that your clients, prospects, vendors, and staff follow you, if you send messages that are offensive to any of these groups, you probably shouldn&#8217;t be part of your company&#8217;s twitter team.</li>
<li>The time of your tweets matter.  If you have an important message sending it at 10pm on a Friday night may go unnoticed by many [at least those users who stream in real-time.] with the exclusion of people in different time zones.</li>
<li>We live in a global economy, if you don&#8217;t already do business internationally be prepared to do so, don&#8217;t limit yourself to local discussions.</li>
<li>Retweeting is imperative, but don&#8217;t use your companies Twitter account as a straight unidirectional promotional channel.  Have employees retweet as necessary at different intervals so your message is seen by different groups of people at different moments in time.</li>
<li>Deliver content that is relevant to the audience that you wish to target.</li>
<li>Make sure your voice is authentic as is your message.</li>
<li>Engage others in your field in communication.</li>
<li>Understand Twitter is a push/pull medium - don&#8217;t just speak; ask, listen, react.</li>
<li>People are as smart as you give them credit, don’t just promote your company. Good rule of thumb: think of your audience as your wife, or husband. Don&#8217;t be condescending, be respectful.</li>
<li>Watch the length of your tweet, 140 characters is obviously short.  Use it wisely.  If you @reply to many users in a tweet it becomes an issue when retweeting.</li>
<li>Lastly, Twitter is dynamic &#8212; always changing.  Understand this and embrace this.  Change the structure of your tweets, the sequencing the people you reply too, the tags, etc.</li>
</ul>
<p>Again, we&#8217;ll see over time if this strategy proves to be sucessful.  Currently this is just aggregated research and an attempt at creating a strategy to streamline and organize communication over this specific medium.</p>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/jeMvvT3trsg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/07/02/twitter-strategy-in-the-workplace/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/07/02/twitter-strategy-in-the-workplace/</feedburner:origLink></item>
		<item>
		<title>The making of a ringtone generator</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/x4dvDjvabw8/</link>
		<comments>http://www.brianjeremy.com/2009/06/07/the-making-of-a-ringtone-generator/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 02:26:35 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Adobe Flash]]></category>

		<category><![CDATA[Application Servers]]></category>

		<category><![CDATA[Interactive Advertising]]></category>

		<category><![CDATA[Recent Works]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=316</guid>
		<description><![CDATA[**Note, before you read this scroll down and click the &#8216;preview&#8217; button to pause the application while you read this article.  The preview button is located to the right of the pan &#038; volume.
In late 2008 Coca-Cola asked Juxt to create a ringtone generator for their Sprite brand.  The concept was fairly fairly [...]]]></description>
			<content:encoded><![CDATA[<p><strong>**Note, before you read this scroll down and click the &#8216;preview&#8217; button to pause the application while you read this article.  The preview button is located to the right of the pan &#038; volume.</strong></p>
<p>In late 2008 <a href="http://www.coca-cola.com">Coca-Cola</a> asked <a href="http://www.juxtinteractive.com">Juxt</a> to create a ringtone generator for their <a href="http://www.sprite.com">Sprite</a> brand.  The concept was fairly fairly straight forward, create an engaging rich media campaign for Sprite that would supplement and drive additional traffic to their under the cap program.  The under the cap program gives participants a digital prize on their mobile phone every time they text a cap code found under the cap of a 20 oz Sprite.</p>
<p>The rich media unit allowed visitors to mix custom samples to create a ringtone which then could be sent to their mobile phone.  The mechanism for delivery of the ringtone was sending a text message with a unique code to 77483 [Sprite&#8217;s short code].  The unique code was determined by the selection and pattern of samples chosen in the mixer.</p>
<p>So far so good, four samples (drums, bass, lead, and synth) and four measures the only piece missing is a creative mind to mix yourself a ringtone.  This is where things get both complicated and interesting.  Due to the hosting environment infrastructure and mobile messaging platform we were unable to create ringtones on demand in real-time.  Instead we were require to create all possible combination of ringtones in advance.  Using a 4&#215;4 grid of samples and measures we are left with  65,536 possible combination&#8217;s but one option is complete silence so our magic number is 65,535 distinct ringtone possibilities.</p>
<p>We tried a wide variety of different software applications to sequence audio tracks to generate our 65,535 ringones.  However, after much research we determined that each piece of software resulted in poor results.  For the most part, desktop applications weren&#8217;t able to process the sheer bulk size of the files we were trying to sequence.  It became evident that this wasn&#8217;t going to be an easy task.  Eventually I found a audio conversion application for linux called <a href="http://sox.sourceforge.net/">the Swiss Army knife of sound processing</a> (SOX).  After trial and error and a make shift syntax manual I was able to join four samples (drums, bass, synth, lead) so they all played at the same time.  Success.  Well, not quite success but progress.</p>
<p>Having a solution to merge audio tracks was comforting, but there was still a few more hurdles.  Mainly, how do I go from creating one combination to over sixty-five thousand, and how would I generate a code that could easily be interpreted by the Flash mixing interface so the right SMS code could be generated?  Since SOX is a linux tool it made sense to create a script to write an application to sequence the ringtones.  PHP was an obvious candidate, its available, easy to write, and very robust. I am going to spare the details of the contents of the script, but I can tell you that it used bit arrays, translation, loops, and math.  As I mentioned previously matching the code to a specific ringtone is extremely important.  If you are in the industry you are aware that banners and rich media units have file size requirements.  In our case the flash mixer needed to be less than 100k.  The design and functionality already left us at nearly 100k which meant we didn&#8217;t have room for logic in the application and we could not load a mapping into the flash application via XML because the file size would be ~5MB which would kill the experience.  </p>
<p>Regardless, we found a pattern relying on hex that allowed us to use a simple naming scheme that the mixer could understand with very little logic.  Then we modified the naming convention slightly to make sure we didn&#8217;t generate any codes that matched data in the 18,000 row document explaining how to spell vulgar or inappropriate terms using your keypad. After generating 65,535 ringtones in a number of formats we put them on a terabyte drive sent them to an unnamed country in Europe and the rest is history, run through the MTV or VHS properties to find the ringtone mixer and get yourself a new ringtone.</p>
<div id="player">
		<script type="text/javascript">
                               var so = new FlashObject("/portfolio/2009-sprite-under-the-cap-ringtone-mixer/mixer.swf", "player", "500", "300", "9");
				so.write("player");
		</script>
</div>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/x4dvDjvabw8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/06/07/the-making-of-a-ringtone-generator/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/06/07/the-making-of-a-ringtone-generator/</feedburner:origLink></item>
		<item>
		<title>JUXT Interactive 2009 Site Launch</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/hT5JFjrNPfI/</link>
		<comments>http://www.brianjeremy.com/2009/04/06/juxt-interactive-2009-site-launch/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 13:40:37 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Development]]></category>

		<category><![CDATA[Industry]]></category>

		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Recent Works]]></category>

		<category><![CDATA[Sites &amp; Inspiration]]></category>

		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=314</guid>
		<description><![CDATA[Today, we launched a new juxtinteractive.com corporate site to replace the 2004 placeholder that&#8217;s paid its dues since 2004.  The previous placeholder site was designed by Seth Weisfeld and Joe Stewart.

]]></description>
			<content:encoded><![CDATA[<p>Today, we launched a new <a title="JUXT Interactive" href="http://www.juxtinteractive.com" target="_self">juxtinteractive.com</a> corporate site to replace the 2004 placeholder that&#8217;s paid its dues since 2004.  The previous placeholder site was designed by <a title="Seth Weisfeld" href="http://www.in8design.com" target="_self">Seth Weisfeld</a> and <a title="Joe Stewart" href="http://www.ilovejoestewart.com" target="_self">Joe Stewart.</a></p>
<p><a href="http://www.brianjeremy.com/_media/juxt-interactive-com-2009-homepage.jpg"><img class="alignnone size-full wp-image-315" title="juxt-interactive-com-2009-homepage" src="http://www.brianjeremy.com/_media/juxt-interactive-com-2009-homepage.jpg" alt="juxtinteractive.com - 2009" width="500" height="700" /></a></p>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/hT5JFjrNPfI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/04/06/juxt-interactive-2009-site-launch/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/04/06/juxt-interactive-2009-site-launch/</feedburner:origLink></item>
		<item>
		<title>JUXT Interactive Brand Board</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/u1UsiQU8GX4/</link>
		<comments>http://www.brianjeremy.com/2009/04/05/juxt-interactive-brand-board/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 08:45:01 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Adobe Flash]]></category>

		<category><![CDATA[Alltop]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Interactive Advertising]]></category>

		<category><![CDATA[Marketing]]></category>

		<category><![CDATA[Recent Works]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=312</guid>
		<description><![CDATA[So, below are our  current and/or former clients.  These are the folks I dedicate my life to providing great service too.  Enjoy this is a teaser as the new JUXT site will be launched tomorrow with a new portfolio of our work.

]]></description>
			<content:encoded><![CDATA[<p>So, below are our  current and/or former clients.  These are the folks I dedicate my life to providing great service too.  Enjoy this is a teaser as the new JUXT site will be launched tomorrow with a new portfolio of our work.</p>
<p><a href="http://www.brianjeremy.com/_media/juxt-interactive-brand-board.gif"><img class="alignnone size-full wp-image-313" title="juxt-interactive-brand-board" src="http://www.brianjeremy.com/_media/juxt-interactive-brand-board.gif" alt="Juxt Inteactive Brand Board" width="500" height="261" /></a></p>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/u1UsiQU8GX4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/04/05/juxt-interactive-brand-board/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/04/05/juxt-interactive-brand-board/</feedburner:origLink></item>
		<item>
		<title>OC Ad Club 2009 Addy Awards</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/PD4MikLo2ME/</link>
		<comments>http://www.brianjeremy.com/2009/03/25/oc-ad-club-2009-addy-awards/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 19:51:44 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=311</guid>
		<description><![CDATA[JUXT entered two pieces into the 2009 Addy Awards, Coke Zero Golf &#38; Adobe Shortcut to Brilliant.  I had the pleasure of attending the event, and we won for both entries.  Coke Zero Golf won a gold for the category interactive &#8220;Banners / 3D / Pop-ups / Screen Savers&#8221; while Adobe Shortcut to Brilliant won [...]]]></description>
			<content:encoded><![CDATA[<p><a title="jUXT Interactive" href="http://www.juxtinteractive.com" target="_self">JUXT</a> entered two pieces into the <a title="OC AD Club" href="http://www.ocadclub.org" target="_self">2009 Addy Awards</a>, Coke Zero Golf &amp; <a title="Adobe Shortcut to Brilliant" href="http://review.juxtinteractive.com/adobe/v14" target="_self">Adobe Shortcut to Brilliant</a>.  I had the pleasure of attending the event, and we won for both entries.  Coke Zero Golf won a gold for the category interactive &#8220;Banners / 3D / Pop-ups / Screen Savers&#8221; while Adobe Shortcut to Brilliant won a silver for the category interactive &#8220;Website Consumer Flash.&#8221;</p>
<p><img src="http://www.brianjeremy.com/_media/ocadclub-2009-03.jpg" alt="OC AD Club 2009 - ADDYS" width="500" height="375" /></p>
<p><img src="http://www.brianjeremy.com/_media/ocadclub-2009-02.jpg" alt="OC AD Club 2009" width="500" height="375" /></p>
<p><img src="http://www.brianjeremy.com/_media/ocadclub-2009-01.jpg" alt="OC AD Club 2009" width="500" height="667" /></p>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/PD4MikLo2ME" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/03/25/oc-ad-club-2009-addy-awards/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/03/25/oc-ad-club-2009-addy-awards/</feedburner:origLink></item>
		<item>
		<title>Site featured on Browsershots.org</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/He20j-AD0qI/</link>
		<comments>http://www.brianjeremy.com/2009/03/15/site-featured-on-browsershotsorg/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 03:53:37 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=309</guid>
		<description><![CDATA[brianjeremy.com was featured on the new browsershots.org gallery.  Not only is this a great honor, but this is by far one the of the best Q&#38;A products for testing websites against most all browsers for maxium compatability.  Thanks Johann Rocholl and the Browsershots team, continue the great work &#8212; its an excellent product.
]]></description>
			<content:encoded><![CDATA[<p><a title="Brian Jeremy Kupetz" href="http://www.brianjeremy.com" target="_self">brianjeremy.com</a> was featured on the new <a title="Browsershots" href="http://browsershots.org/showcase/website/9faa630c12c149422affaa5aa5148685.">browsershots.org gallery</a>.  Not only is this a great honor, but this is by far one the of the best Q&amp;A products for testing websites against most all browsers for maxium compatability.  Thanks Johann Rocholl and the Browsershots team, continue the great work &#8212; its an excellent product.</p>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/He20j-AD0qI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/03/15/site-featured-on-browsershotsorg/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/03/15/site-featured-on-browsershotsorg/</feedburner:origLink></item>
		<item>
		<title>Blogging Backlog, State of Blogging, TechCrunch</title>
		<link>http://feedproxy.google.com/~r/BrianJeremyKupetz/~3/NA0Yz2_oVJ4/</link>
		<comments>http://www.brianjeremy.com/2009/01/28/blogging-backlog-state-of-blogging-techcrunch/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 16:21:29 +0000</pubDate>
		<dc:creator>brian</dc:creator>
		
		<category><![CDATA[Blogs]]></category>

		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.brianjeremy.com/?p=308</guid>
		<description><![CDATA[Personally, I&#8217;ve lost my voice [literally, not metaphorically] along with a plethora of business to attend to which has thus left my blog yet again under maintained. In all actuality, I think I have finally found my voice.  In the queue I will be shortly publishing a followup on the initial Bay Area Security Professionals [...]]]></description>
			<content:encoded><![CDATA[<p>Personally, I&#8217;ve lost my voice [literally, not metaphorically] along with a plethora of business to attend to which has thus left my blog yet again under maintained. In all actuality, I think I have finally found my voice.  In the queue I will be shortly publishing a followup on the initial Bay Area Security Professionals / PCI Group meeting, as well as my research on Cloud Computing including articles on <a title="Rightscale" href="http://www.rightscale.com" target="_self">RightScale</a>, <a title="Mosso" href="http://www.mosso.com" target="_self">Mosso</a>, <a title="Amazon Web Services" href="http://aws.amazon.com" target="_self">Amazon AWS</a>, and <a title="Go Grid" href="http://www.gogrid.com" target="_self">GoGrid</a>.</p>
<p>Lastly, I&#8217;ve got some portfolio additions that will appear in <a title="Brian Jeremy Kupetz Portfolio" href="http://www.brianjeremy.com/what-ive-done/" target="_self">What I&#8217;ve Done</a> section in the coming weeks.</p>
<img src="http://feeds.feedburner.com/~r/BrianJeremyKupetz/~4/NA0Yz2_oVJ4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.brianjeremy.com/2009/01/28/blogging-backlog-state-of-blogging-techcrunch/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.brianjeremy.com/2009/01/28/blogging-backlog-state-of-blogging-techcrunch/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.452 seconds --><!-- Cached page served by WP-Cache -->
