<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Inside our right (and left) brains</title>
	<atom:link href="http://blog.sangereby.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sangereby.com</link>
	<description>Our work, people, culture and streams of consciousness.</description>
	<lastBuildDate>Fri, 03 Sep 2010 07:00:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Improving Tables of Data with jQuery: DataTables</title>
		<link>http://blog.sangereby.com/2010/08/improving-tables-of-data-with-jquery-datatables/</link>
		<comments>http://blog.sangereby.com/2010/08/improving-tables-of-data-with-jquery-datatables/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 09:58:38 +0000</pubDate>
		<dc:creator>Jay Larbes</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=150</guid>
		<description><![CDATA[One of the reasons why I love the technology industry – and specifically the Internet subset of it – is that it is always changing, and usually changing very quickly. I love learning about new concepts and new ideas, and there is certainly always something new to learn about in the Internet development industry.  [...]]]></description>
			<content:encoded><![CDATA[<p>One of the reasons why I love the technology industry – and specifically the Internet subset of it – is that it is always changing, and usually changing very quickly. I love learning about new concepts and new ideas, and there is certainly always something new to learn about in the Internet development industry.  </p>
<p>One of the current fast-growing Internet trends is to push more control over functionality and animation to the client-side browser, now that newer browsers are powerful enough to run them natively. In simple terms, this gives us as designers and programmers more flexibility when coming up with creative solutions to problems. (Or, I could just say, we get to do more fun stuff!)  One of the leaders of this trend is jQuery, which is a JavaScript library that is very powerful.  </p>
<p>With jQuery, we can develop all kinds of solutions that improve the user’s experience, from improving form usability and validation, to <a href="http://www.macysmusicfestival.com/history/photos2009.aspx" target="_blank">more-engaging photo galleries</a>, to a <a href="https://www.53.com/csrreport" target="_blank">very fluid and dynamic browsing experience</a>. <span style="color: #ff0000;"><strong> </strong></span>And just as importantly, many times with jQuery we can build these new solutions more quickly and with less code than prior coding techniques. It’s the ultimate win-win: our clients get better-looking and better-functioning web sites without an increase in cost!  </p>
<p>Today, I’d like to talk about one specific jQuery component that I have used on a recent project. It’s a plug-in named <a href="http://www.datatables.net" target="_blank">DataTables</a>. From the DataTables web site, DataTables is:</p>
<div style="padding: 0 20px; font-style: italic">
<p>DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table.</p>
</div>
<p>Hmm. Maybe that definition doesn’t help us very much. To simplify, here’s my DataTables definition: DataTables gives programmers a set of tools when displaying a table of information that provides instantaneous pagination, sorting and searching. DataTables replaces the old, standard way of these three functionalities of having to send the request to the web server and wait for it to respond. An example:  </p>
<p><strong>Old way:</strong><br />
<strong>1:</strong> While browsing records 1-10 of a table, you click a link to go to the next page, containing records 11-20.<br />
<strong>2:</strong> The browser sends the request to go to the next page back to the web server.<br />
<strong>3:</strong> The web server passes the request on to the database server.<br />
<strong>4:</strong> The database server then works with the web server to get the data for the next page and sends it back to your browser. While this process is happening, your mouse becomes an hourglass while you wait for the page to load. </p>
<p><strong>New way:</strong> When you click a link to go to the next page, the browser instantly updates with the next page’s information! You click the link, and the page updates.  </p>
<p>Sorting and Searching provide similar experiences. Here’s an example of a table of information using DataTables:</p>
<link rel="stylesheet" href="http://blog.sangereby.com/wp-content/uploads/datatables/dataTables.css" type="text/css" media="screen" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script> <script src="/wp-content/uploads/datatables/jquery.dataTables.min.js" type="text/javascript"></script> <script type="text/javascript">// <![CDATA[
$(document).ready(function() {
jQuery.fn.dataTableExt.oSort['percent-asc']  = function(a,b) {
	var x = (a == "-") ? 0 : a.replace( /%/, "" );
	var y = (b == "-") ? 0 : b.replace( /%/, "" );
	x = parseFloat( x );
	y = parseFloat( y );
	return ((x < y) ? -1 : ((x > y) ?  1 : 0));
};
jQuery.fn.dataTableExt.oSort['percent-desc'] = function(a,b) {
	var x = (a == "-") ? 0 : a.replace( /%/, "" );
	var y = (b == "-") ? 0 : b.replace( /%/, "" );
	x = parseFloat( x );
	y = parseFloat( y );
	return ((x < y) ?  1 : ((x > y) ? -1 : 0));
};
      $('table.datatable').dataTable({
            "sPaginationType": "full_numbers",
            "aaSorting": [[ 3, "desc" ]],
            "aoColumns": [null, null, null, {"sType": "percent"}],
            "sDom": '<"datatable_filter"f><"datatable_pagination"p>rti',
            "oLanguage": {
                "oPaginate": {
                    "sPrevious": "&lt;",
                    "sNext": "&gt;",
                    "sFirst": "&lt;&lt;",
                    "sLast": "&gt;&gt;"
                }
            }
        });
});
// ]]&gt;</script></p>
<table class="datatable" border="0">
<thead>
<tr>
<th>Browser</th>
<th>Operating System</th>
<th>Screen Resolution</th>
<th>% of Visits</th>
</tr>
</thead>
<tbody>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1024&#215;768</td>
<td>11.0%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1280&#215;1024</td>
<td>7.0%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1440&#215;900</td>
<td>4.8%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1280&#215;800</td>
<td>4.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1280&#215;800</td>
<td>4.2%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1680&#215;1050</td>
<td>3.0%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1280&#215;1024</td>
<td>2.9%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1680&#215;1050</td>
<td>2.7%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1920&#215;1200</td>
<td>2.5%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1440&#215;900</td>
<td>2.5%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1024&#215;768</td>
<td>2.3%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1680&#215;1050</td>
<td>2.3%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1440&#215;900</td>
<td>2.0%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1280&#215;800</td>
<td>2.0%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1280&#215;800</td>
<td>1.9%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1366&#215;768</td>
<td>1.7%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1366&#215;768</td>
<td>1.7%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1920&#215;1200</td>
<td>1.5%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1920&#215;1080</td>
<td>1.5%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>2560&#215;1440</td>
<td>1.5%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1680&#215;1050</td>
<td>1.5%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1440&#215;900</td>
<td>1.3%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1440&#215;900</td>
<td>1.3%</td>
</tr>
<tr>
<td>Safari</td>
<td>iPhone</td>
<td>320&#215;480</td>
<td>1.3%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1152&#215;864</td>
<td>1.2%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1600&#215;1200</td>
<td>1.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>2560&#215;1600</td>
<td>1.1%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1280&#215;800</td>
<td>1.0%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1680&#215;1050</td>
<td>1.0%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1920&#215;1200</td>
<td>1.0%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1920&#215;1200</td>
<td>1.0%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1366&#215;768</td>
<td>1.0%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1024&#215;768</td>
<td>0.9%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1920&#215;1080</td>
<td>0.8%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>800&#215;600</td>
<td>0.8%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1920&#215;1080</td>
<td>0.7%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1280&#215;1024</td>
<td>0.7%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1280&#215;768</td>
<td>0.7%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>2560&#215;1440</td>
<td>0.7%</td>
</tr>
<tr>
<td>Safari</td>
<td>iPad</td>
<td>768&#215;1024</td>
<td>0.7%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1280&#215;1024</td>
<td>0.6%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1152&#215;864</td>
<td>0.6%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1280&#215;768</td>
<td>0.6%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1280&#215;854</td>
<td>0.6%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1920&#215;1080</td>
<td>0.6%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Macintosh</td>
<td>1440&#215;900</td>
<td>0.4%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Macintosh</td>
<td>1280&#215;800</td>
<td>0.4%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1600&#215;900</td>
<td>0.4%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1280&#215;960</td>
<td>0.4%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1600&#215;900</td>
<td>0.4%</td>
</tr>
<tr>
<td>Safari</td>
<td>Android</td>
<td>320&#215;480</td>
<td>0.4%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1024&#215;576</td>
<td>0.3%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1280&#215;960</td>
<td>0.3%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>983&#215;737</td>
<td>0.3%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1080&#215;810</td>
<td>0.3%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1536&#215;864</td>
<td>0.3%</td>
</tr>
<tr>
<td>Mozilla</td>
<td>Linux</td>
<td>1280&#215;1024</td>
<td>0.3%</td>
</tr>
<tr>
<td>Safari</td>
<td>iPhone</td>
<td>320&#215;396</td>
<td>0.3%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1360&#215;768</td>
<td>0.2%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1920&#215;1200</td>
<td>0.2%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1600&#215;900</td>
<td>0.2%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1024&#215;768</td>
<td>0.2%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>800&#215;600</td>
<td>0.2%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1024&#215;600</td>
<td>0.2%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1280&#215;720</td>
<td>0.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1024&#215;640</td>
<td>0.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1344&#215;840</td>
<td>0.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1317&#215;823</td>
<td>0.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1024&#215;819</td>
<td>0.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>731&#215;549</td>
<td>0.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1429&#215;1143</td>
<td>0.2%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1280&#215;720</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Android</td>
<td>480&#215;800</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Android</td>
<td>320&#215;452</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1024&#215;768</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1600&#215;1024</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1280&#215;960</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1600&#215;1200</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>480&#215;800</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>Windows</td>
<td>1024&#215;768</td>
<td>0.2%</td>
</tr>
<tr>
<td>Safari</td>
<td>iPod</td>
<td>320&#215;396</td>
<td>0.2%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Macintosh</td>
<td>1280&#215;1024</td>
<td>0.1%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Macintosh</td>
<td>1920&#215;1200</td>
<td>0.1%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Macintosh</td>
<td>1680&#215;1050</td>
<td>0.1%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1600&#215;1200</td>
<td>0.1%</td>
</tr>
<tr>
<td>Chrome</td>
<td>Windows</td>
<td>1024&#215;600</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Linux</td>
<td>1440&#215;900</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Linux</td>
<td>1024&#215;600</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1152&#215;870</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>2560&#215;1600</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1280&#215;854</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1152&#215;768</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Macintosh</td>
<td>1920&#215;1080</td>
<td>0.1%</td>
</tr>
<tr>
<td>Firefox</td>
<td>Windows</td>
<td>1600&#215;1024</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1311&#215;737</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>819&#215;614</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1276&#215;733</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1214&#215;910</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1093&#215;614</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1676&#215;943</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1600&#215;1200</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>2560&#215;1024</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1120&#215;700</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1619&#215;910</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>894&#215;524</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1603&#215;902</td>
<td>0.1%</td>
</tr>
<tr>
<td>Internet Explorer</td>
<td>Windows</td>
<td>1024&#215;600</td>
<td>0.1%</td>
</tr>
<tr>
<td>Konqueror</td>
<td>Linux</td>
<td>1024&#215;768</td>
<td>0.1%</td>
</tr>
<tr>
<td>Mozilla</td>
<td>Windows</td>
<td>1280&#215;800</td>
<td>0.1%</td>
</tr>
<tr>
<td>Opera</td>
<td>Linux</td>
<td>1024&#215;768</td>
<td>0.1%</td>
</tr>
<tr>
<td>Opera</td>
<td>Windows</td>
<td>1920&#215;1080</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Android</td>
<td>800&#215;1183</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Android</td>
<td>1005&#215;1487</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Android</td>
<td>854&#215;480</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Android</td>
<td>480&#215;854</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1280&#215;720</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1280&#215;1024</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Macintosh</td>
<td>1152&#215;864</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>Windows</td>
<td>1920&#215;1200</td>
<td>0.1%</td>
</tr>
<tr>
<td>Safari</td>
<td>iPod</td>
<td>320&#215;480</td>
<td>0.1%</td>
</tr>
</tbody>
</table>
<p>So, what you see here is a table of information showing browser statistics for visitors to sangereby.com during July 2010. As a small side-note, we are always reviewing browser statistics for audiences of our web sites to understand which browser and screen resolutions are relevant to our audience (again – it’s another principle of ever-changing trends in the Internet industry). Okay, let’s talk a little bit more about each feature:  </p>
<p><strong>Pagination:</strong> As already stated, the primary benefit of this pagination approach is its speed. It’s just blazing fast. But, almost as importantly, DataTables generates all of the pagination links and functionality automatically – we programmers do not have to develop custom code to generate the pagination. So, less code, faster development.  </p>
<p><strong>Sorting:</strong> Okay, you can already guess – it’s ultra-fast and minimizes code to write. Great! The sorting feature also packs some extra bells and whistles. Instead of coding only one primary column to make sortable, all columns are instantly sortable. In the header row, you get the wonderful icons and background-color indicating which column is currently sorted and whether it is sorted low-to-high or high-to-low. You can even sort on multiple columns, to further sort sub-sets of data (hold down SHIFT and click a second column heading).  </p>
<p><strong>Searching:</strong> Of course, the quickest way to find the information you’re looking for is to search for it, right? So, we have a search box. But, think of it as a high-powered search box, because it searches keystroke-by-keystroke. Go ahead, try it! Start typing in “M-a-c” to see all Macintosh users. The results filter with each keystroke – amazing!  </p>
<p>As someone who loves to dig through data and find the information buried within, tools like this that improve a table’s functionality are just plain outstanding. I look forward to using it (and learning about and using other jQuery tools) on future projects! If you want to know more, or have other jQuery recommendations, let me know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2010/08/improving-tables-of-data-with-jquery-datatables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Giving Back: Passion for Pets</title>
		<link>http://blog.sangereby.com/2010/08/giving-back-passion-for-pets/</link>
		<comments>http://blog.sangereby.com/2010/08/giving-back-passion-for-pets/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 14:56:36 +0000</pubDate>
		<dc:creator>Ashley Neiman</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Give Back]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=141</guid>
		<description><![CDATA[Throughout life everyone is presented with many opportunities … some are grand and amazing, some are small and pass by almost unnoticed. Some pass through your life quickly, some stay forever. But one thing is certain – these opportunities shape and mold you, leaving behind an imprint. My great opportunity did just that, in the [...]]]></description>
			<content:encoded><![CDATA[<p>Throughout life everyone is presented with many opportunities … some are grand and amazing, some are small and pass by almost unnoticed. Some pass through your life quickly, some stay forever. But one thing is certain – these opportunities shape and mold you, leaving behind an imprint. My great opportunity did just that, in the shape of a paw print.</p>
<p>In 2008, we received a call from a past colleague to help market a non-profit she was passionate about. As President of the Board of Directors for the United Coalition for Animals (UCAN), she recognized the organization’s need to form a relationship with a company that could help elevate the nonprofit to the next level and reached out to us to help.<br />
<img class="alignright size-full wp-image-146" style="border: 1px solid black;" title="petpix" src="http://blog.sangereby.com/wp-content/uploads/2010/08/petpix1.jpg" alt="petpix" width="88" height="475" /><br />
The opportunity aligned itself perfectly with one of Sanger &amp; Eby’s, and my own, core values: giving back. The Sanger &amp; Eby and UCAN relationship started out very simple – providing pro-bono graphic design support for the organization. I was allowed ample time to create brochures, newsletters and other necessary print pieces that would be used to educate people about UCAN’s mission – ending pet overpopulation and animal euthanasia through responsible pet care and spay/neuter surgeries.</p>
<p>With each piece I created I continued my own education, quickly learning why an organization like UCAN is so necessary. To explain things in the simplest way possible, there are too many pets and too few homes. For every person born each day in the United States, seven kittens and puppies are born* – more than we could ever hope to find homes for. A decline in pet overpopulation will lead to a decline in animal abuse and neglect. It will lead to a decrease economic strain by decreasing the amount of tax dollars spent yearly to round up, care for or euthanize these animals. And it will help increase our abilities to properly care for our own pets and our area’s homeless animals. Pet overpopulation and the resulting euthanasia of these healthy animals will remain with us unless the cause is consistently addressed. Since 2001, UCAN has worked to address that problem through its nonprofit spay neuter clinic and pet health programs.</p>
<p>Over the last two and a half years, that simple relationship of a company lending its expertise to a great cause has grown into so much more. I currently serve on the Board of Directors and as a member of the Marketing and Fundraising committees. I have been able to give my time and talents to an incredibly important cause. I have grown through education and through the people I have had an opportunity to meet. My life has been shaped by my experience with UCAN and I am left with an imprint, a paw print, because I have been able to give back to my community through my career at Sanger &amp; Eby.</p>
<p>*Facts from <em>SpayUSA</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2010/08/giving-back-passion-for-pets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A day in the life of an intern: first impressions</title>
		<link>http://blog.sangereby.com/2010/07/a-day-in-the-life-of-an-intern-first-impressions/</link>
		<comments>http://blog.sangereby.com/2010/07/a-day-in-the-life-of-an-intern-first-impressions/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 15:04:58 +0000</pubDate>
		<dc:creator>Sarah Schneider</dc:creator>
				<category><![CDATA[Intern Blog]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=133</guid>
		<description><![CDATA[
What is a summer internship? When some college students break free of that hectic schedule of classes, labs, papers, and exams it is time to kick back and enjoy a relaxing summer of sun and friends. For others, it is time to put their knowledge and skills to the test. As a strategic communication major, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-136" title="intern" src="http://blog.sangereby.com/wp-content/uploads/2010/07/intern.png" alt="intern" width="310" height="217" /></p>
<p>What is a summer internship? When some college students break free of that hectic schedule of classes, labs, papers, and exams it is time to kick back and enjoy a relaxing summer of sun and friends. For others, it is time to put their knowledge and skills to the test. As a strategic communication major, after two summers of a relaxing job by the pool, I decided to put my new education to the test by seeking summer internships. After the struggle of finding successful companies still offering internship opportunities in the tough economic times we face, fate brought me to Sanger &amp; Eby for a summer as their first Marketing Intern.</p>
<p>I had many preconceived ideas about what being a summer intern would be like as a junior in college. Many of these ideas including getting coffee, filing papers, and answering phones. I am now entering my fourth week as the marketing intern for Sanger &amp; Eby Design and any expectations I had for an internship have been blown out of the water. My first day on the job consisted of a client meeting at Macy’s corporate office, lunch at a quaint downtown Cincinnati café, followed by a client staging for a magnificent website our designers had created. I was thrown right into the meat of what strategic communications is all about.</p>
<p>Interning at Sanger &amp; Eby has already been beyond what I would have imagined. If my first day wasn’t good enough; I have since, written and mailed press releases, researched many topics for use on projects, participated in client meetings, been assigned lead for pro bono projects, and participated in the social media strategy of the company. As a college student I expected to come into a company and feel like a college student. Instead, upon working at Sanger &amp; Eby I have been welcomed, not as an intern but as a part of the team.</p>
<p>Every day that I am here I am learning something new. At Sanger &amp; Eby it does not feel like a group of designers, developers, and project managers; but, rather it feels like one team working together to create marketing masterpieces. Yes, as a marketing intern I have worked directly with project management, marketing, social media; but I have also worked directly with designers and programmers. I never expected to be able to interact with the founders of the company on a daily basis in my internship, but here everyone seems equal, everyone is valued, and everyone is heard.</p>
<p>I cannot speak for every summer internship a college student may hold, but I know for myself; up to this point my expectations have been completely demolished.  Each day I come to work with an open mind and ready for a new assignment, a new project, and a new lesson.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2010/07/a-day-in-the-life-of-an-intern-first-impressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Privacy Tradeoff</title>
		<link>http://blog.sangereby.com/2010/07/the-privacy-tradeoff/</link>
		<comments>http://blog.sangereby.com/2010/07/the-privacy-tradeoff/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 14:00:26 +0000</pubDate>
		<dc:creator>Tom Wright</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Foursquare]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=126</guid>
		<description><![CDATA[Do you have a Facebook profile? Regularly Tweet your status? Check in on Foursquare everywhere you go?
If you’re like millions of other Internet users who engage in those activities, chances are pretty good that you’re exposing a lot of personal information to more than just your online friends.
There has been a lot of backlash in [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have a Facebook profile? Regularly Tweet your status? Check in on Foursquare everywhere you go?</p>
<p>If you’re like millions of other Internet users who engage in those activities, chances are pretty good that you’re exposing a lot of personal information to more than just your online friends.</p>
<p>There has been a lot of backlash in the media lately about Facebook repeatedly updating and changing its privacy policy and default privacy settings, exposing additional user information to both their marketing partners and search engines like Google, Yahoo and Bing.</p>
<p>For GenXers (like me) and many folks of older generations, the concept of privacy is something we consider sacred. Making your weekend escapades public and spouting off controversial statements for everyone to see and hear is typically not something we would have done before the advent of the World Wide Web and social networking.</p>
<p>So, why do so many of the younger generation do it now? (And get off my lawn while you’re at it!)</p>
<p>Is the concept of privacy outdated to them? Do they not realize that the things they post now can <a href="http://www.urbandictionary.com/define.php?term=dooced">come back to haunt them</a> later in life or when <a href="http://mashable.com/2009/08/19/social-media-screening/">entering the job force</a>? Or does it just not matter as much?</p>
<p>The simple fact is that the pervasiveness of social networking has somehow made it acceptable to trade our privacy and personal information away for luxury of being connected to other people. I personally disagree with this philosophy, but for those kids and teens who have never known a world without the Web, it’s a <a href="http://articles.sfgate.com/2006-05-20/news/17296311_1_privacy-line-eavesdropping-young-people">different story</a>. The fact that the Web enables anyone to self-publish is a double-edged sword.</p>
<p>Facebook and other social networking sites may be “free,” but there is nothing truly free about them. In exchange for you giving out information about your interests, hobbies, job and games and friends, they let you use their site to connect with your friends. They use your personal information to sell ads targeted directly to you. Facebook’s default privacy settings expose a <strong>lot</strong> of personal information to search engines and even to Facebook visitors who are not logged in. Their own <a href="http://www.facebook.com/privacy">privacy policy</a> is quite clear:</p>
<p style="text-align: left;"><em>Information set to “everyone” is publicly available information, just like your name, profile picture, and connections.  Such information may, for example, be accessed by everyone on the Internet (including people not logged into Facebook), be indexed by third party search engines, and be imported, exported, distributed, and redistributed by us and others without privacy limitations. Such information may also be associated with you, including your name and profile picture, even outside of Facebook, such as on public search engines and when you visit other sites on the internet.  The default privacy setting for certain types of information you post on Facebook is set to “everyone.” You can review and change the default settings in your privacy settings. If you delete “everyone” content that you posted on Facebook, we will remove it from your Facebook profile, but have no control over its use outside of Facebook.</em></p>
<p>This disturbing trend continues unabated all across the Web at sites like <a href="http://www.spokeo.com/">Spokeo</a>, which collects information about people all over the world based on their location and other highly personal data (like address, phone number, home value and credit score) and allows anyone to view a good amount of that information free of charge.</p>
<p>It was shocking enough to me (a fairly jaded Internet veteran) that when I viewed my own Spokeo profile, I immediately filled out the form to have my information removed from the site. A lot of it was dead-on, but there was some info that was just dead-wrong. I won’t deny I looked up few people myself while I was there, though.</p>
<p>So, how can you protect yourself and your children from this invasion of privacy? First and foremost, you can simply choose not to participate. Don’t set up a Facebook profile or MySpace page. Don’t give out any revealing personal information to any Web site or use the Internet for banking or communications.</p>
<p>The problem is that not all of us who are privacy-conscious want to be Luddites. In this era of instant communication, live blogging, YouTube, smartphones and all of the other cool stuff the Internet allows us to do, staying disconnected is probably not an option.</p>
<p>The Web is no different from going into a bad neighborhood – you have to watch your back and make sure you are protected. Unfortunately, there are no Internet Police, but there are some things you can do to prevent your personal information from leaking on to the Internet.</p>
<ol>
<li>Read the Privacy Policy. I know that it is paragraph after paragraph of legalese and it’s really dry stuff, but it literally tells you how the site will use your personal information. If you disagree with site’s privacy practices, don’t sign up.</li>
<li>Get familiar with the privacy settings on the site you’re using and set them to a level that makes you comfortable. For example, I lock down my Facebook page and make very little available to non-friends. You can see my picture and my name and that’s about it.</li>
<li>Log out of the site and attempt to access your page to see what information is publicly accessible. Adjust your privacy settings to prevent any personal information from being exposed.</li>
<li>Learn <a href="http://internetlaw.uslegal.com/privacy/">your rights</a> and <a href="http://www.epic.org/">how companies use your information</a>.</li>
<li>Sign up for a credit-monitoring service if you do any online shopping. Consider using a pre-paid debit card for online purchases, as it will help protect you from identity theft and credit card fraud.</li>
<li>For parents, make your kids give you their passwords and make sure you are friends with them so you can monitor their online activities. Make it a condition of being allowed to use the Internet.</li>
<li>Actually monitor your child’s online activities. Whether that means using a NetNanny/ CyberSitter-like filtering or monitoring solution or just popping in and keeping an eye on what they’re doing, it’s your responsibility to make sure that they are safe online. It’s no different than vetting their friends or making sure they aren’t watching inappropriate television shows.</li>
<li>Educate your children on what privacy means and how something they post online is basically the equivalent of hanging a giant sign on your door proclaiming the same thing. The Canadian government has an excellent parent &amp; child resource site that contains relevant information for US citizens, too: <a href="http://youthprivacy.ca/en/index.html">http://youthprivacy.ca/en/index.html</a>.</li>
</ol>
<p>In short, there is no way to totally protect yourself online. It’s just like the real world – you need to be conscious of your surroundings and take the appropriate steps to protect yourself and those you love.</p>
<p>I’d love to hear some of the ways you protect your privacy online in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2010/07/the-privacy-tradeoff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rhythm, Style &amp; Design: New Macy&#8217;s Music Festival Site Launch</title>
		<link>http://blog.sangereby.com/2010/07/rhythm-style-design-new-macys-music-festival-site-launch/</link>
		<comments>http://blog.sangereby.com/2010/07/rhythm-style-design-new-macys-music-festival-site-launch/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 19:15:34 +0000</pubDate>
		<dc:creator>Adam Sonnett</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Website Development]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=117</guid>
		<description><![CDATA[Macy&#8217;s Music Festival is returning to downtown Cincinnati for the 46th  Annual summer music celebration. To coincide with the festival, a new website was  launched to help enhance ticket sales, as well as, to spread the word  about this year&#8217;s Rhythm and U themed festival.
Sanger &#38; Eby created and developed the new [...]]]></description>
			<content:encoded><![CDATA[<p>Macy&#8217;s Music Festival is returning to downtown Cincinnati for the 46th  Annual summer music celebration. To coincide with the festival, a new website was  launched to help enhance ticket sales, as well as, to spread the word  about this year&#8217;s Rhythm and U themed festival.</p>
<p>Sanger &amp; Eby created and developed the new website for the Festival. The  goal was to create a site that captured the style and feel of R&amp;B, jazz,  hip-hop, soul along with this year&#8217;s theme of Rhythm and U. The new site  is filled with information about the upcoming artists, lodging, dining  and a complete history of the the sights and sounds of previous  festivals, allowing the audience to revisit their favorite artists  performances from years past.</p>
<p>This was my first project after I came on at Sanger &amp; Eby as a designer.  It was fitting for me that it was a music related site, as music plays a  very important part in my life and I have past experience designing and  building sites for musicians and artists. Finding music new and old is  something I enjoy greatly and to be able to be a part of this project  was very fulfilling. This genre is something I&#8217;m not all familiar with,  so it gave me a great opportunity to add new artists (at least to me!),  like Charlie Wilson, to my iPod as well as give me a chance to explore a  new design style.</p>
<p>After the initial meeting with the Macy&#8217;s team, viewing the poster art  for the festival, and watching a few of the performances from years past  I felt I had a good grasp on what style they were looking for to capture  the essence of the music and festival weekend. By using bright colors,  some of the artwork from the festival poster and a &#8220;street art&#8221;  typeface, we were able to give the festival website a fresh look and  feel that highlights the important information for the user.</p>
<p>You can visit the new site by following this link:<br />
<a href="http://www.macysmusicfestival.com/">http://www.macysmusicfestival.com/</a></p>
<p style="text-align: center;"><a href="http://www.macysmusicfestival.com"><img class="aligncenter size-full wp-image-118" style="border: 0.25px solid black;" title="Macy's Music Festival Home Page " src="http://blog.sangereby.com/wp-content/uploads/2010/07/MMF-HOME.jpg" alt="Macy's Music Festival Home Page " width="504" height="496" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2010/07/rhythm-style-design-new-macys-music-festival-site-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solving the Interactive Design Challenge with JQuery</title>
		<link>http://blog.sangereby.com/2010/06/solving-the-interactive-design-challenge-with-jquery/</link>
		<comments>http://blog.sangereby.com/2010/06/solving-the-interactive-design-challenge-with-jquery/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 21:22:17 +0000</pubDate>
		<dc:creator>Trevor Minton</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[cost-savings]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[searchability]]></category>
		<category><![CDATA[user experience]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=114</guid>
		<description><![CDATA[“I want to do something different with this report. I don’t just want to put a PDF on the site; I want this to be a standalone experience, and I’d like it to be similar to the experience of the book.”
So came the challenge from our client, who wanted to generate excitement and interest as [...]]]></description>
			<content:encoded><![CDATA[<p>“I want to do something different with this report. I don’t just want to put a PDF on the site; I want this to be a standalone experience, and I’d like it to be similar to the experience of the book.”</p>
<p>So came the challenge from our client, who wanted to generate excitement and interest as well as to substantially cut costs for a major printed piece.  If we could make the primary experience online engaging enough, we’d need significantly fewer copies of the actual book printed—and that could save tens of thousands of dollars. Plus, it would be fun.</p>
<p>The catch was that we still wanted the online experience of the text-heavy content to be like the experience of the printed piece, without traditional navigation or long, scrolling text—but still with a good, intuitive user experience.  Our client used the visual of an animated page turn to describe what she was looking for, though she knew that wasn’t the right solve.  I agreed—combining the weaknesses of one medium with the weaknesses of another doesn’t leave much hope for a good user experience.</p>
<p>So there we are.  Well. I love a challenge.</p>
<p>Knowing I had to fit the experience into what’s comfortable for the user to look at on the screen, I started working through the options while I visualized how the end result should look and flow.  Putting the book online isn’t a clean transition from print—it’s more like a presentation than a website.  I initially thought about Flash, but I wanted an easily searchable, truly accessible experience.  So how could we get the dynamic qualities of Flash combined with the user-friendly qualities of HTML and CSS?</p>
<p>I walked through my thinking with my programming partner on this project, Aaron.  He suggested jQuery as a solve.  If you’re not familiar with it (I wasn’t), it’s a cross-browser JavaScript library that streamlines interactions between JavaScript and HTML, and provides the capability to do what we were trying to achieve with this experience.  A quick check with the client’s IT group confirmed it would not only run in their environment, but was actually their preferred solution. Sold!</p>
<p>Aaron built a prototype to test the idea, which was a big win. It confirmed the idea would work as we envisioned it, and brought it to life for the client.  The solution allows the user to focus on a single page while still having awareness of the other pages in the document—similar to a book, but without the added tools and navigation of a standard web implementation.  The navigation mechanism is clearly visible and moves with the user, creating the illusion of the eye moving to focus on a different part of the document (think of a newspaper with multiple articles artfully arranged on a single large-format page and you’ve got the idea).</p>
<p>Adding value to the solution, it’s also easily searchable and indexable by search engines, and meets accessibility standards—a growing requirement for online content as well as a passion area of mine.  Accessibility is not only key for an equitable user experience—it’s a growing legal concern.  Developing sites and online experiences to be accessible just makes sense, for the business as well as from the human perspective.</p>
<p>So how did it work? Really well.  Our client was able to share the information, provide an excellent user experience with great search visibility, and dramatically reduce her printing costs—final savings are in the tens of thousands of dollars.  We’ll post an update on more results as they develop.  Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2010/06/solving-the-interactive-design-challenge-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What the heck is FourSquare and why should my company care?</title>
		<link>http://blog.sangereby.com/2010/05/what-the-heck-is-foursquare-and-why-should-my-company-care/</link>
		<comments>http://blog.sangereby.com/2010/05/what-the-heck-is-foursquare-and-why-should-my-company-care/#comments</comments>
		<pubDate>Wed, 26 May 2010 20:58:23 +0000</pubDate>
		<dc:creator>Monika Royal</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Foursquare]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=102</guid>
		<description><![CDATA[“I’m at Sanger &#38; Eby (501 Chestnut St, Cincinnati)
How many of these tweets and/or Facebook updates have you seen from the people in your social media network? Tens? Hundreds? If you’re like me, you see these updates all the time. Whether at work, school, a restaurant or a bar, people are now sharing the details [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.foursquare.com"><img class="size-full wp-image-103 alignleft" style="border: 3px solid black; margin: 3px;" src="http://blog.sangereby.com/wp-content/uploads/2010/05/Picture-1.png" alt="Foursquare " width="290" height="161" /></a>“I’m at Sanger &amp; Eby (501 Chestnut St, Cincinnati)</p>
<p>How many of these tweets and/or Facebook updates have you seen from the people in your social media network? Tens? Hundreds? If you’re like me, you see these updates all the time. Whether at work, school, a restaurant or a bar, people are now sharing the details of where they go via Foursquare, one of the hottest new location-based social networking tools.</p>
<p>Simply explained, Foursquare lets you “check-in” at different places and share your location with your friends. As you check-in around town, you earn points, and if you accumulate enough points by visiting a venue often, you can become “Mayor” of that venue. Your check-ins can be shared via Twitter, Facebook and the Foursquare app, which is available for iPhone, Droid, Blackberry and Palm. Your check-ins are only shared with friends, who are people you approve to follow you.</p>
<p>So who cares where I go and what I do? All of my friends of course, and not surprisingly, the businesses I frequent. With over a half a million users as of March, 2010, companies are increasingly interested in Foursquare as a way to reward repeat visitors through discounts and incentives.</p>
<p>Foursquare has developed a set of business tools that allow business to create four different types of incentive offers: Mayor Specials, Frequency Specials, Check-in Specials and Wildcards. The goal is to get repeat visits, engage customers and make it lucrative for you to “check-in” and share your location with your social network. Foursquare provides real-time venue stats so companies can see if an offer is generating new and repeat visits, as well as mentions on Facebook and Twitter.</p>
<p>Think local businesses around the country (and globe) aren’t testing the Foursquare waters? Think again. In Cincinnati, where Sanger &amp; Eby is based, plenty are:</p>
<ul>
<li>Bakery Sugar Cupcakery rewarded my friend @redrabbit with a free cupcake for visiting and checking in</li>
<li>Blackfinn American Saloon offers free cover on certain days when you check in</li>
<li>Grinders Coffee rewards you with $1.00 off every fifth check-in</li>
<li>Taste of Belgium, a waffle shop in Findlay market, recently posted that specials via Foursquare would be coming soon</li>
</ul>
<p>Nationally, brands like Starbucks ($1 off Frappucinos for Mayors) and Carrabas (show you’re the Mayor and enjoy a complimentary dessert with entrée purchase) are getting on the bandwagon too. Know of any other Cincinnati businesses that are using Foursquare? National? Who do you think should be actively promoting business on Foursquare?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2010/05/what-the-heck-is-foursquare-and-why-should-my-company-care/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cincinnati Chamber of Commerce Selects Sanger &amp; Eby as finalist</title>
		<link>http://blog.sangereby.com/2009/11/cincinnati-chamber-of-commerce-selects-sanger-eby-as-finalist/</link>
		<comments>http://blog.sangereby.com/2009/11/cincinnati-chamber-of-commerce-selects-sanger-eby-as-finalist/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 22:00:44 +0000</pubDate>
		<dc:creator>Monika Royal</dc:creator>
				<category><![CDATA[Culture]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=91</guid>
		<description><![CDATA[Giving back to the community becomes even more rewarding when hard work is recognized. We are a finalist in the WE Celebrate awards, nominated for best Marketing Campaign for women. Our nomination is based on the work done on behalf of Impact 100, a local group founded to promote philanthropy among women. Sanger &#38; Eby [...]]]></description>
			<content:encoded><![CDATA[<p>Giving back to the community becomes even more rewarding when hard work is recognized. We are a finalist in the <a href="http://www.cincinnatichamber.com/we.aspx?ekmensel=3ed1b7ac_144_224_6996_1" target="_blank">WE Celebrate awards</a>, nominated for best Marketing Campaign for women. Our nomination is based on the work done on behalf of Impact 100, a local group founded to promote philanthropy among women. Sanger &amp; Eby donated $40,000 worth of time and creative to develop a new website for the group.  The goal was to create a website with an “at a glance” informational homepage, as well as a members-only section to allow the committees of Impact 100 to more effectively communicate.  Sanger &amp; Eby designed the site based on Impact 100’s existing logo with a yellow and purple color scheme, built discussion forums for members and implemented a content management system (CMS) to update the site.</p>
<p>We are thrilled to share our nomination with the other worthy finalists, and while we’re looking forward to finding out who won, we are truly honored to be nominated.</p>
<p><!--EndFragment--> <!--EndFragment--></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2009/11/cincinnati-chamber-of-commerce-selects-sanger-eby-as-finalist/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Looking forward and giving back</title>
		<link>http://blog.sangereby.com/2009/08/looking-forward-and-giving-back/</link>
		<comments>http://blog.sangereby.com/2009/08/looking-forward-and-giving-back/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 16:09:55 +0000</pubDate>
		<dc:creator>Lisa Sanger</dc:creator>
				<category><![CDATA[Culture]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=87</guid>
		<description><![CDATA[It just feels good to do work with clients that do good, repeatedly. Working recently with Macy’s on their “Shop for a Cause” website, application and database has reminded us how much Macy’s gives back to local communities. Their contributions, leadership and volunteer efforts help create stronger, healthier places to work and live and we [...]]]></description>
			<content:encoded><![CDATA[<p>It just feels good to do work with clients that do good, repeatedly. Working recently with Macy’s on their “Shop for a Cause” website, application and database has reminded us how much Macy’s gives back to local communities. Their contributions, leadership and volunteer efforts help create stronger, healthier places to work and live and we are proud to play a small part.</p>
<p>Shop for a Cause is Macy&#8217;s national charity shopping day to support national and local nonprofit organizations. And, since 2006, Shop for a Cause has helped non-profits raise more than $28 million for their ongoing charitable efforts.</p>
<p>As of August 1, things just got a whole lot easier with online registration for non-profits nationwide. Macy’s has partnered with Sanger &amp; Eby to develop the site and robust application system. For the first time ever, non-profits can register their organizations for the October 17 fundraiser, select from a list of participating stores, and get email updates for and about the big day — all online. The site and backend database helps Macy’s streamline the entire registration and communication process, with tools to track ticket sales, validate charitable status, and manage specific store events.</p>
<p>We are proud of our continued relationship with a company whose culture, like ours, is deeply rooted in giving back. </p>
<p>If you are involved with a non-profit group and want to see what a difference a day makes, <a title="Shop for a Cause" href="http://www.macysinc.com/shopforacause/CreateUser.asp" target="_blank">sign up</a> to get your group started.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2009/08/looking-forward-and-giving-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Twitter</title>
		<link>http://blog.sangereby.com/2009/07/introduction-to-twitter/</link>
		<comments>http://blog.sangereby.com/2009/07/introduction-to-twitter/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 13:23:22 +0000</pubDate>
		<dc:creator>Jay Larbes</dc:creator>
				<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://blog.sangereby.com/?p=82</guid>
		<description><![CDATA[What is Twitter?
According to twitter.com, &#8220;Twitter is a service for friends, family, and co–workers to communicate and stay connected through the exchange of quick, frequent answers to one simple question: What are you doing?&#8221;
Twitter is a &#8220;micro-blog&#8221;. Like a blog, Twitter allows you to create an online journal or diary and share it with the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is Twitter?</strong></p>
<p>According to <a target="_blank" href="http://www.twitter.com">twitter.com</a>, &#8220;Twitter is a service for friends, family, and co–workers to communicate and stay connected through the exchange of quick, frequent answers to one simple question: What are you doing?&#8221;</p>
<p>Twitter is a &#8220;micro-blog&#8221;. Like a blog, Twitter allows you to create an online journal or diary and share it with the world. However, unlike a blog, Twitter only allows entries/thoughts that are less than 140 characters. This limitation demands short updates and quick thoughts. This allows users to share experiences through Twitter much faster and more frequently than is conventionally done through a blog.</p>
<p><strong>Why are we using Twitter at Sanger &amp; Eby?</strong></p>
<p>Well, just like the definition above stats, we want to share what we&#8217;re doing here at Sanger &amp; Eby. We believe that we have a great story to tell, and want to have a running dialogue with you – our friend. We&#8217;ll be sharing stories right here on our blog as well, of course, but Twitter will allow us to quickly record and publish smaller experiences.</p>
<p>Also, we understand the you live in a busy world – if you <a target="_blank" href="http://twitter.com/sangereby">follow our Twitter feed</a>, you&#8217;ll be able to very quickly get a feel for recent happenings here at Sanger &amp; Eby. If you have time to learn more, then you can read the blog!</p>
<p>Finally, we are always striving to stay in touch with the latest Internet trends, and what better way to showcase this expertise than by putting it to use ourselves!</p>
<p><strong>Twitter Fun</strong></p>
<p>Many celebrities, including Ashton Kutcher (<a target="_blank" href="http://twitter.com/APlusK">@APlusK</a>), Lance Armstrong (<a target="_blank" href="http://twitter.com/lancearmstronG">@lancearmstronG</a>), Shaquille O&#8217;Neal (<a target="_blank" href="http://twitter.com/The_Real_Shaq">@The_Real_Shaq</a>) and even Cincinnati&#8217;s Chad Johnson / Ochocinco (<a target="_blank" href="http://twitter.com/ogochocinco">@OGOchoCinco</a>) to name a few, are using Twitter to talk directly to their fans. And not just one-way communication, either. I follow the @The_Real_Shaq and @OGOchoCinco Twitter pages. They regularly post dozens of Tweets a day, which are nearly completely filled with replies to people who have sent messages to them directly. I&#8217;m not the biggest fan of Chad, but I have a lot of respect for how engaging he is with his fans. </p>
<p><strong>More Information</strong></p>
<p>Of course, this is just an introduction. There&#8217;s a lot more than meets the eye at first glance with Twitter. A few examples: using Twitter via mobile phone SMS messages, learning about breaking news – many events hit Twitter before mainstream media, and even chatting directly with your favorite celebrity, as highlighted above.</p>
<p>If you want to learn more about Twitter, here are a few links that may be helpful:</p>
<p><a target="_blank" href="http://twitter.com/">Twitter.com/</a></p>
<p><a target="_blank" href="http://websearch.about.com/od/blogsforumssocialsites/qt/twitter.htm">What is Twitter? Twitter Basics</a></p>
<p><a target="_blank" href="http://www.twitip.com/how-to-set-up-a-twitter-account/">How to Set Up a Twitter Account</a></p>
<p><a target="_blank" href="http://www.davidleeking.com/2008/07/09/why-use-twitter/">Why Use Twitter?</a></p>
<p><strong>How to follow Sanger &amp; Eby on Twitter:</strong></p>
<ol>
<li>Create a Twitter account: <a target="_blank" href="https://twitter.com/signup">https://twitter.com/signup</a></li>
<li>Visit the @SangerEby Twitter page:  <a target="_blank" href="http://twitter.com/sangereby">http://twitter.com/sangereby</a></li>
<li>Click the Follow button.</li>
</ol>
<p>That&#8217;s it! Now, when you&#8217;re logged in to twitter.com, our updates will be included on your home page!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sangereby.com/2009/07/introduction-to-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
