<?xml version="1.0"?>
<News hasArchived="true" page="7671" pageCount="10785" pageSize="10" timestamp="Wed, 02 Sep 2026 10:03:18 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7671&amp;range=2">
<NewsItem contentIssues="true" id="42967" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42967">
<Title>Test Code Coverage: From Myth to Reality</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>There was a time when programmers were paid by the number of lines of code they wrote. They were treated as source code producing machines working in cubicles and in return they considered programming just a job that they do eight hours a day and then forget about it, for the rest of the day.</p>
    
    <p>But times have changed. Most cubicle workplaces disappeared and programmers started loving their craft. With the advent of Agile techniques and the Software Craftsmanship movement, many new tools emerged to help the programmer and the process. TDD is slowly becoming the de facto way of writing code and the secrets of SCRUM or Kanban were revealed even to the programmers in the darkest corners of the cubicle world.</p>
    
    <p>Automated testing and test driven development (TDD) are some of the essential techniques Agile provided to us programmers. And a tool that comes with those methodologies is used to produce test code coverage, which is the topic of this article.</p>
    
    <h2>Definition</h2>
    
    <p>"In computer science, code coverage is a measure used to describe the degree to which the source code of a program is tested by a particular test suite." ~ Wikipedia </p>
    
    <p>The definition above, taken from Wikipedia, is one of the simplest ways to describe what code coverage means. Basically, in your project you have a bunch of production code as well as a bunch of test code. The test code exercises the production code and the test coverage tells you how much of your production code was exercised by the tests.</p>
    
    <p>Information can be presented in various ways, from simple percentages to nice graphics or even real-time highlighting in your favorite IDE.</p>
    
    <h2>Let's Check It in Action</h2>
    
    <p>We will use PHP as the language to exemplify our code. Additionally, we will need PHPUnit and XDebug to test our code and gather coverage data.</p>
    
    <h3>The Source Code</h3>
    
    <p>Here is the source code we will use. You can also find it in the attached archive.</p>
    
    <pre>class WordWrap {&#x000A;    &#x000A;    	public function wrap($string = '', $cols) {&#x000A;    		$string = trim($string);&#x000A;    		if (strlen($string) &gt; $cols) {&#x000A;    			$lastSpaceIndex = strrpos(substr($string, 0, $cols), ' ');&#x000A;    			if ($lastSpaceIndex !== false &amp;&amp; substr($string, $cols, 1) != ' ') {&#x000A;    				return substr($string, 0, $lastSpaceIndex) . "\n" . $this-&gt;wrap(substr($string, $lastSpaceIndex), $cols);&#x000A;    			} else {&#x000A;    				return substr($string, 0, $cols) . "\n" . $this-&gt;wrap(substr($string, $cols), $cols);&#x000A;    			}&#x000A;    		}&#x000A;    &#x000A;    		return $string;&#x000A;    	}&#x000A;    }</pre>
    
    <p>The above code contains a simple function that wraps text to a specified number of characters, per line.</p>
    
    <h3>The Test Code</h3>
    
    <p>We wrote this code using <a href="http://code.tutsplus.com/tutorials/lets-tdd-a-simple-app-in-php--net-26186" rel="nofollow external" class="bo">Test Driven Development (TDD)</a> and we have 100% code coverage for it. This means that by running our test, we exercise each and every line of the source code.</p>
    
    <pre>require_once __DIR__ . '/../WordWrap.php';&#x000A;    &#x000A;    class WordWrapTest extends PHPUnit_Framework_TestCase {&#x000A;    &#x000A;    	function testItCanWrap() {&#x000A;    		$w = new WordWrap();&#x000A;    &#x000A;    		$this-&gt;assertEquals('', $w-&gt;wrap(null, 0));&#x000A;    		$this-&gt;assertEquals('', $w-&gt;wrap('', 0));&#x000A;    		$this-&gt;assertEquals('a', $w-&gt;wrap('a', 1));&#x000A;    		$this-&gt;assertEquals("a\nb", $w-&gt;wrap('a b', 1));&#x000A;    		$this-&gt;assertEquals("a b\nc", $w-&gt;wrap('a b c', 3));&#x000A;    		$this-&gt;assertEquals("a\nbc\nd", $w-&gt;wrap('a bc d', 3));&#x000A;    	}&#x000A;    }</pre>
    
    <h3>Running the Tests in CLI With Text Only Coverage</h3>
    
    <p>One way to obtain coverage data is to run our tests in the CLI (command line interface) and analyze the output. For this example, we will assume a UNIX like operating system (Linux, MacOS, FreeBSD, etc). Windows users will need to slightly adapt the paths and executable names, but it should be fairly similar.</p>
    
    <p>Let's open a console and change directories in to your <code>test</code> folder. Then run <code>phpunit</code> with an option to generate coverage data as plain text.</p>
    
    <pre>phpunit --coverage-text=./coverage.txt ./WordWrapTest.php</pre>
    
    <p>This should work out of the box on most systems if XDebug is installed, however in some cases, you may encounter an error related to time zones.</p>
    
    <pre>PHP Warning:  date(): It is not safe to rely on the system's timezone settings.&#x000A;    You are *required* to use the date.timezone setting or the date_default_timezone_set() function.&#x000A;    In case you used any of those methods and you are still getting this warning, you most likely&#x000A;    misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set&#x000A;    date.timezone to select your timezone. in <a href="phar:///usr/share/php/phpunit/phpunit.phar/">phar:///usr/share/php/phpunit/phpunit.phar/</a>&#x000A;    PHP_CodeCoverage-1.2.10/PHP/CodeCoverage/Report/Text.php on line 124&#x000A;    </pre>
    
    <p>This can be easily fixed by specifying the suggested setting in your <code>php.ini</code> file. You can find the way to specify your timezone in <a href="http://ro1.php.net/manual/en/timezones.php" rel="nofollow external" class="bo">this list</a>. I am from Romania, so I will use the following setting:</p>
    
    <pre>date.timezone = Europe/Bucharest</pre>
    
    <p>Now, if you run the <code>phpunit</code> command again, you should see no error messages. Instead, the test results will be shown.</p>
    
    <pre>PHPUnit 3.7.20 by Sebastian Bergmann.&#x000A;    ..&#x000A;    Time: 0 seconds, Memory: 5.00Mb&#x000A;    OK (2 tests, 7 assertions)&#x000A;    </pre>
    
    <p>And the coverage data will be in the specified text file.</p>
    
    <pre>$ cat ./coverage.txt&#x000A;    &#x000A;    Code Coverage Report&#x000A;      2014-03-02 13:48:11&#x000A;    &#x000A;     Summary:&#x000A;      Classes: 100.00% (1/1)&#x000A;      Methods: 100.00% (1/1)&#x000A;      Lines:   2.68% (14/522)&#x000A;    &#x000A;    WordWrap&#x000A;      Methods: 100.00% ( 1/ 1)   Lines: 100.00% (  7/  7)&#x000A;    </pre>
    
    <p>Let's analyze this a little bit.</p>
    
    <ul>
    	<li>
    <em>Classes</em>: refers to how many classes were tested and how many of them were covered. <code>WordWrap</code> is our only class.</li>
    	<li>
    <em>Methods</em>: same as with classes. We have only our <code>wrap()</code> method, nothing else.</li>
    	<li>
    <em>Lines</em>: same as above, but for lines of code. Here we have a lot of lines because the summary contains all the lines from PHPUnit itself.</li>
    	<li>Then we have a section for each class. In our case, that is only <code>WordWrap</code>. Each section has its own methods and line details. </li>
    </ul>
    
    <p>Based on these observations, we can conclude that our code is 100% covered by tests. Exactly as we expected before analyzing the coverage data.</p>
    
    <h3>Generating HTML Coverage Output</h3>
    
    <p>By just changing a simple parameter for PHPUnit, we can generate nice HTML output.</p>
    
    <pre>$ mkdir ./coverage&#x000A;    $ phpunit --coverage-html ./coverage ./WordWrapTest.php </pre>
    
    <p>If you check your <code>./coverage</code> directory, you will find a lot of files there. I won't paste the list here because it is quite extensive. Instead, I will show you how it looks in a web browser.</p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20442/image/HTMLCoverageSummary.png" style="max-width: 100%; height: auto;"><p>This is the equivalent of the summary section from the text version above. We can zoom in by following the proposed links and see more details.</p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20442/image/HTMLCoverageClassWithCode.png" style="max-width: 100%; height: auto;"><h3>Coverage Inside Our IDE</h3>
    
    <p>The previous examples were interesting and they are quite useful, <em>if</em> your code is built on some remote server to which you have only SHH or web access to. But wouldn't it be nice to have all this info, live in your IDE?</p>
    
    <p>If you use PHPStorm, everything is within the distance of a single click! Select to run your tests with coverage and all the info will just simply show up, magically.</p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20442/image/RunTestWithCoverage.png" style="max-width: 100%; height: auto;"><p>The coverage information will be present in your IDE, in several ways and in several places:</p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20442/image/CoverageInIDE.png" style="max-width: 100%; height: auto;">
    
    <ol>
    	<li>Test coverage percentage will be shown near each directory and file.</li>
    	<li>In the editor, while editing code, on the left of the line numbers, a green or red rectangle will mark each line. Green represents tested lines, red represents untested ones. Lines without actual code (empty lines, only braces or parentheses, class or method declarations) will not have any marks.</li>
    	<li>On the right side there will be file browsers where you can quickly browse and sort files by coverage.</li>
    	<li>In the test output, you will see a line of text announcing to you that code coverage was generated.</li>
    </ol>
    
    <h2>The Myths About Code Coverage</h2>
    
    <p>With such a powerful tool in the developer's hands and under the management's nose, it was inevitable for some myths to surface. After programmers refused to be payed by the number of lines of code they write, or managers realized how easy it is to game the system, some of them started paying programmers by the percentage of code coverage. Higher code coverage means the programmer was more careful, right? It's a myth. Code coverage is not a measure of how well you write code.</p>
    
    <p>Sometimes programmers tend to think that code with 100% coverage has no bugs. Another myth. Code coverage merely tells you that you have tested each line of code. It is a measure of the number of lines exercised. It is not a measure of the number of lines correctly implemented. For example, half written algorithms with only half defined tests will still have 100% coverage. This does not mean the algorithm is finished or that it works correctly.</p>
    
    <p>Finally, gaming the system is very easy. Of course, if you use TDD, you are naturally having a high coverage value. On whole projects, 100% is impossible. But on small modules or classes, obtaining 100% coverage is very easy. Take for example our source code and imagine you have no tests at all. What would be the simplest test to exercise all the code?</p>
    
    <pre>function testItCanWrap() {&#x000A;    	$w = new WordWrap();&#x000A;    	$this-&gt;assertEquals("a b\nc", $w-&gt;wrap('a b c', 3));&#x000A;    	$this-&gt;assertEquals("a\nbc\nd", $w-&gt;wrap('a bc d', 3));&#x000A;    }</pre>
    
    <p>That's it. Two assertions and full coverage. This is not what we want. This test is so far from descriptive and complete, that it is ridiculous.</p>
    
    <h2>The Reality About Code Coverage</h2>
    
    <p>Code coverage is a status indicator, not a unit to measure performance or correctness.</p>
    
    <p>Code coverage is for programmers, not for managers. It is a way to spot problems in our code. A way to find old, untested classes. A way to find paths not exercised by the tests that could lead to problems.</p>
    
    <p>On real projects, code coverage will always be under 100%. Achieving perfect coverage is not possible, or if it is, it's rarely a must. However, to have 98% of coverage you must target 100%. Having anything else as your target is non-sense.</p>
    
    <p>Here is the code coverage on Syneto's StorageOS configuration application.</p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/45/posts/20442/image/SynetoCoverage.png" style="max-width: 100%; height: auto;"><p>The total is only about 35%, but the results need interpretation. Most of the modules are in the green, with more than 70% coverage. However there is a single folder, <code>Vmware</code>, which pulls down the average. It is a module with a lot of classes containing only definitions for the communication API. There is no reason to test those classes. They were automatically generated by trusted code. The programmers will know this and they will know how to interpret the results. A manager may insist on testing it because it is a red bar and it looks suspicious for someone not knowing the internal details of the project. Would it make any sense to test it? Not at all! It would be a useless test, that would take up precious tens of seconds of build time without any advantage.<br></p>
    
    <h2>Final Thoughts</h2>
    
    <p>So here is where we are with code coverage: it's a great tool for programmers, a source of information to highlight possible problems, a misunderstood reality for most managers, and another tool to force and measure programmers' activities. As with any other tool, it is one that can be correctly used and misused easily. </p>
    </div>
]]>
</Body>
<Summary>There was a time when programmers were paid by the number of lines of code they wrote. They were treated as source code producing machines working in cubicles and in return they considered...</Summary>
<Website>http://code.tutsplus.com/articles/test-code-coverage-from-myth-to-reality--cms-20442</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42967/guest@my.umbc.edu/98d3db02a2a316896b39211f3ffa1fbf/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 11:00:12 -0400</PostedAt>
<EditAt>Fri, 28 Mar 2014 11:00:12 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42964" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42964">
<Title>April is Sexual Assault Awareness Month</Title>
<Tagline>2014 Calendar of Events</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h5><strong>April is Sexual Assault Awareness Month.</strong></h5>
    <div><span><br></span></div>
    <div><span><em>Every 2 minutes, someone in America is sexually assaulted.</em></span></div>
    <div><span><em>1 in 5 college women experience a sexual assault.</em></span></div>
    <div><span><em>95% of college-aged victims know their attacker.</em></span></div>
    <div><span><br></span></div>
    <div>
    <span>These are just a few statistics to highlight why this month of awareness is so very important for our campus and our greater community. </span><span>We have several events this April that will </span><span>honor the voices and experiences of survivors of sexual assault. Additionally, there are  events that will seek to raise awareness about sexual assault and the importance of effective consent.</span>
    </div>
    <div><span><br></span></div>
    <div>The event calendar is attached to this news story. Please feel free to download, mark your calendar with the events you plan on attending, and share the word with other students, staff, and faculty.</div>
    <div><br></div>
    <div><strong><em>Highlighted Events:</em></strong></div>
    <div><strong><em><br></em></strong></div>
    <div>
    <strong>Rape Culture 101 Workshop: </strong>Thursday, April 3rd from 4-6pm in Lower Level Flat Tuesdays </div>
    <div><br></div>
    <div>
    <strong><a href="http://my.umbc.edu/groups/womenscenter/events/23645" rel="nofollow external" class="bo">The Clothesline Project Display</a></strong>: Thursday, April 10th on Commons Main Street from 10am-4pm, followed by a discussion at 4pm in the Women's Center. (Opportunities to make shirts for the display will be made available on several occasions leading up to the 10th... see calendar for details)</div>
    <div><br></div>
    <div>
    <strong><a href="http://my.umbc.edu/groups/womenscenter/events/23615" rel="nofollow external" class="bo">Take Back the Night</a></strong>: Tuesday, April 15th beginning at 6:30pm on the Commons Terrace</div>
    <div><br></div>
    <div>
    <span><strong><a href="http://my.umbc.edu/groups/training/events/23309" rel="nofollow external" class="bo">Voices Against Violence protocol</a></strong>, </span><em>Responding to Sexual Assault and Relationship Violence at UMBC </em><span>on Tuesday, April 22nd from 1-2:30pm. To register, click <a href="http://my.umbc.edu/groups/training/events/23309" rel="nofollow external" class="bo">here</a>.</span>
    </div>
    <div><span><br></span></div>
    <div><span><strong><em><br></em></strong></span></div>
    <div><span><strong><em>Follow #UMBCaware and #UMBCtbtn for updates throughout the month. </em></strong></span></div>
    <div><span><br></span></div>
    <div>
    <div><br></div>
    <div>If you have questions about any of the listed events or about sexual assault resources, please contact Jess Myers, Women's Center Director, at <a href="mailto:jessm@umbc.edu">jessm@umbc.edu</a>, 410-455-2714 or Mickey Irizarry, Health Education Coordinator, at <a href="mailto:parora@umbc.edu">parora@umbc.edu</a>, 410-455-3752</div>
    </div>
    </div>
]]>
</Body>
<Summary>April is Sexual Assault Awareness Month.     Every 2 minutes, someone in America is sexually assaulted.  1 in 5 college women experience a sexual assault.  95% of college-aged victims know their...</Summary>
<Website>https://www.facebook.com/womenscenterumbc</Website>
<AttachmentKind>Document</AttachmentKind>
<AttachmentUrl>https://assets2-my.umbc.edu/system/shared/attachments/26c46f5dbd3e6a8eb99c2b2207ea54f0/6a982ca6/news/000/042/964/c0eab2dce3fc614a18251fb483e71dee/SAAM 2014 Calendar of Events.pdf?1396018480</AttachmentUrl>
<Attachments>
<Attachment kind="Document" url="https://my3.my.umbc.edu/posts/42964/attachments/13001"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42964/guest@my.umbc.edu/65acf36b11eff7230d97f6d9ea8bfc83/api/pixel</TrackingUrl>
<Group token="womenscenter">Women's, Gender, &amp;amp; Equity Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/womenscenter</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/xsmall.png?1750974263</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/original.png?1750974263</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/xxlarge.png?1750974263</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/xlarge.png?1750974263</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/large.png?1750974263</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/medium.png?1750974263</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/small.png?1750974263</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/xsmall.png?1750974263</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/125/78272a4842689b30dbf74672182b78f8/xxsmall.png?1750974263</AvatarUrl>
<Sponsor>Women's Center</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/964/1c97011ef06a98042c1f735107ede8eb/xxlarge.jpg?1396018504</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/964/1c97011ef06a98042c1f735107ede8eb/xlarge.jpg?1396018504</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/964/1c97011ef06a98042c1f735107ede8eb/large.jpg?1396018504</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/964/1c97011ef06a98042c1f735107ede8eb/medium.jpg?1396018504</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/964/1c97011ef06a98042c1f735107ede8eb/small.jpg?1396018504</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/964/1c97011ef06a98042c1f735107ede8eb/xsmall.jpg?1396018504</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/964/1c97011ef06a98042c1f735107ede8eb/xxsmall.jpg?1396018504</ThumbnailUrl>
<PawCount>46</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 10:57:40 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42961" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42961">
<Title>Project Modified: 344 - SAAAC SR - Online Grade Change Process</Title>
<Body>
<![CDATA[
    <div class="html-content">The following project has been modified by Molly Burdusi.<br>
    <br>
    <strong>Project Name</strong><br>
    SAAAC SR - Online Grade Change Process<br>
    <br>
    <strong>Project Sponsor</strong><br>
     Steven Smith<br>
    <br>
    <strong>Project Description</strong><br>
    #41 in Faculty Spreadsheet\r\nProvide a mechanism for online grade changes. incorporate workflow processing to capture necessary approvals and communications\r\n\r\nRequested by member(s) of the SA Academic Advisory Committee<br>
    <br>
    <strong>The items that have changed are:</strong><br>
      <strong>Status Summary: </strong>New IT Specialist in RO has skills necessary to build eForms.  Will work with Kevin for appropriate training and introduction to system so that she can build this new process.  Should be implemented this fall. <br>
    <br>
    Link to project summary in Project Tracker: <a href="https://pt.umbc.edu/PT_proj_report.php?projID=344" rel="nofollow external" class="bo">Click Here</a>
    </div>
]]>
</Body>
<Summary>The following project has been modified by Molly Burdusi.    Project Name  SAAAC SR - Online Grade Change Process    Project Sponsor   Steven Smith    Project Description  #41 in Faculty...</Summary>
<Website>http://pt.umbc.edu/PT_proj_report.php?projID=344&amp;update=1396016281</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42961/guest@my.umbc.edu/66a2367b6cc65ef5a3ea4c35eee574c9/api/pixel</TrackingUrl>
<Group token="sa-advisory">SA Academic Advisory Committee</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/sa-advisory</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xsmall.png?1575475842</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/original.jpg?1575475842</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xxlarge.png?1575475842</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xlarge.png?1575475842</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/large.png?1575475842</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/medium.png?1575475842</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/small.png?1575475842</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xsmall.png?1575475842</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xxsmall.png?1575475842</AvatarUrl>
<Sponsor>SA Academic Advisory Committee</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 10:45:23 -0400</PostedAt>
<EditAt>Tue, 05 Sep 2017 08:01:11 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42963" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42963">
<Title>Project Modified: 717 - SAAAC - System to view course transferability from other colleges</Title>
<Body>
<![CDATA[
    <div class="html-content">The following project has been modified by Molly Burdusi.<br>
    <br>
    <strong>Project Name</strong><br>
    SAAAC - System to view course transferability from other colleges<br>
    <br>
    <strong>Project Sponsor</strong><br>
     Steven Smith<br>
    <br>
    <strong>Project Description</strong><br>
    System for people to access a database to view course transferability from other colleges.\r\n\r\nYvette, Should this be part of effort to increase efficiencies in the transfer credit area?\r\n\r\n10/21/13  Registrar\'s Office securing TES system to allow more transparency in transfer credit information and facilitate more efficient review of transfer credit evaluation.<br>
    <br>
    <strong>The items that have changed are:</strong><br>
      <strong>Status Summary: </strong>Implementation is nearing completion.  For listing - rules are cleaned and are being verified.  For process - over 20 faculty members have been trained. <br>
    <br>
    Link to project summary in Project Tracker: <a href="https://pt.umbc.edu/PT_proj_report.php?projID=717" rel="nofollow external" class="bo">Click Here</a>
    </div>
]]>
</Body>
<Summary>The following project has been modified by Molly Burdusi.    Project Name  SAAAC - System to view course transferability from other colleges    Project Sponsor   Steven Smith    Project...</Summary>
<Website>http://pt.umbc.edu/PT_proj_report.php?projID=717&amp;update=1396016229</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42963/guest@my.umbc.edu/be34da82212dc20c51641e47cc57dd0a/api/pixel</TrackingUrl>
<Group token="sa-advisory">SA Academic Advisory Committee</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/sa-advisory</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xsmall.png?1575475842</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/original.jpg?1575475842</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xxlarge.png?1575475842</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xlarge.png?1575475842</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/large.png?1575475842</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/medium.png?1575475842</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/small.png?1575475842</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xsmall.png?1575475842</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xxsmall.png?1575475842</AvatarUrl>
<Sponsor>SA Academic Advisory Committee</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 10:45:23 -0400</PostedAt>
<EditAt>Tue, 05 Sep 2017 08:01:11 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42962" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42962">
<Title>Project Modified: 780 - SAAAC-Proposed-Allow Faculty and Students to find repeatable classes</Title>
<Body>
<![CDATA[
    <div class="html-content">The following project has been modified by Molly Burdusi.<br>
    <br>
    <strong>Project Name</strong><br>
    SAAAC-Proposed-Allow Faculty and Students to find repeatable classes<br>
    <br>
    <strong>Project Sponsor</strong><br>
     Steven Smith<br>
    <br>
    <strong>Project Description</strong><br>
    Action: Review this item at the next advisory committee for support \r\n\r\nPer email form Dr. Worchesky, \'At this\r\ntime, there is no way for students/faculty/advisors to see if a course\r\nis repeatable for credit.  As an example, a research course that the\r\nPhysics Department has, PHYS499.  It was assumed that students could\r\ndo multiple semesters of research under this course, but it turns out\r\nthat is not the case.  There is no way for me to be able to see this\r\nabout the course, in the catalog or in the Schedule of Classes\r\ndescriptions.  Steve Smith says it should be taken up by the SA Advisory Committee.  I would think\r\nthat this is an issue that doesn\'t need to be discussed, but should\r\njust be fixed.  Hopefully you can help, since you are in charge of the\r\nRegistrar\'s Office, and are partially in charge of the SA Committee.\r\nThanks for your help.\'\r\n\r\n<br>
    <br>
    <strong>The items that have changed are:</strong><br>
      <strong>Status Summary: </strong> Process is underway.  Project should be completed by May 1. <br>
    <br>
    Link to project summary in Project Tracker: <a href="https://pt.umbc.edu/PT_proj_report.php?projID=780" rel="nofollow external" class="bo">Click Here</a>
    </div>
]]>
</Body>
<Summary>The following project has been modified by Molly Burdusi.    Project Name  SAAAC-Proposed-Allow Faculty and Students to find repeatable classes    Project Sponsor   Steven Smith    Project...</Summary>
<Website>http://pt.umbc.edu/PT_proj_report.php?projID=780&amp;update=1396016258</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42962/guest@my.umbc.edu/c3954a0eeac85994fcd04e715f7be30d/api/pixel</TrackingUrl>
<Group token="sa-advisory">SA Academic Advisory Committee</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/sa-advisory</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xsmall.png?1575475842</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/original.jpg?1575475842</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xxlarge.png?1575475842</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xlarge.png?1575475842</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/large.png?1575475842</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/medium.png?1575475842</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/small.png?1575475842</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xsmall.png?1575475842</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/441/64546b5e7f66564695db8f6789b59e5c/xxsmall.png?1575475842</AvatarUrl>
<Sponsor>SA Academic Advisory Committee</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 10:45:23 -0400</PostedAt>
<EditAt>Tue, 05 Sep 2017 08:01:11 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42968" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42968">
<Title>Tesla Adds Shielding to Prevent Model S Fires, Protect EVs' Reputation</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Titanium sheets and additional aluminum deflect or block road debris, better protecting the lithium ion battery in the Model S.</p>
    <p>This morning Tesla’s CEO, Elon Musk, <a href="http://www.teslamotors.com/blog/tesla-adds-titanium-underbody-shield-and-aluminum-deflector-plates-model-s" rel="nofollow external" class="bo">announced</a> that, in response to three vehicle fires last year, Tesla is adding additional shielding to the undercarriage of its Model S electric car. Two of the fires started after the cars ran into objects in the road, damaging the lithium ion battery. The last occurred when the driver ran into a concrete wall going 110 miles per hour, Musk said.</p>
    </div>
]]>
</Body>
<Summary>Titanium sheets and additional aluminum deflect or block road debris, better protecting the lithium ion battery in the Model S.  This morning Tesla’s CEO, Elon Musk, announced that, in response to...</Summary>
<Website>http://www.technologyreview.com/view/525961/tesla-adds-shielding-to-prevent-model-s-fires-protect-evs-reputation/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42968/guest@my.umbc.edu/2c624db234a8d6c2dae90f0799ec2568/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 10:14:04 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42955" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42955">
<Title>BlackBerry Sees Hope for Future in Security</Title>
<Body>
<![CDATA[
    <div class="html-content">BlackBerry has had relentlessly bad financial news, but analysts are no longer raising concerns that the company is rapidly heading toward collapse.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Ftechnology%2Fdespite-loss-blackberry-has-some-hope-for-future.html%3Fpartner%3Drss%26emc%3Drss&amp;t=BlackBerry+Sees+Hope+for+Future+in+Security" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Ftechnology%2Fdespite-loss-blackberry-has-some-hope-for-future.html%3Fpartner%3Drss%26emc%3Drss&amp;t=BlackBerry+Sees+Hope+for+Future+in+Security" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Ftechnology%2Fdespite-loss-blackberry-has-some-hope-for-future.html%3Fpartner%3Drss%26emc%3Drss&amp;t=BlackBerry+Sees+Hope+for+Future+in+Security" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Ftechnology%2Fdespite-loss-blackberry-has-some-hope-for-future.html%3Fpartner%3Drss%26emc%3Drss&amp;t=BlackBerry+Sees+Hope+for+Future+in+Security" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Ftechnology%2Fdespite-loss-blackberry-has-some-hope-for-future.html%3Fpartner%3Drss%26emc%3Drss&amp;t=BlackBerry+Sees+Hope+for+Future+in+Security" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359515239/u/0/f/640387/c/34625/s/38b7f86c/sc/2/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>BlackBerry has had relentlessly bad financial news, but analysts are no longer raising concerns that the company is rapidly heading toward collapse.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38b7f86c/sc/2/l/0L0Snytimes0N0C20A140C0A30C290Ctechnology0Cdespite0Eloss0Eblackberry0Ehas0Esome0Ehope0Efor0Efuture0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42955/guest@my.umbc.edu/637422cae512639703cd51ce4a7c2f63/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>blackberry-bbry-nasdaq</Tag>
<Tag>chen-john-s</Tag>
<Tag>company-reports</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>international-business-machines-corporation-ibm-nyse</Tag>
<Tag>new</Tag>
<Tag>oracle-corporation-orcl-nyse</Tag>
<Tag>sap-ag-sap-nyse</Tag>
<Tag>technology</Tag>
<Tag>vmware-inc-vmw-nyse</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 07:28:45 -0400</PostedAt>
<EditAt>Mon, 31 Mar 2014 22:21:42 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42956" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42956">
<Title>Bits Blog: Google Flu Trends: The Limits of Big Data</Title>
<Body>
<![CDATA[
    <div class="html-content">Two recent research papers, examining Google Flu Trends, offer a critique of big-data analysis.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F28%2Fgoogle-flu-trends-the-limits-of-big-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Flu+Trends%3A+The+Limits+of+Big+Data" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F28%2Fgoogle-flu-trends-the-limits-of-big-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Flu+Trends%3A+The+Limits+of+Big+Data" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F28%2Fgoogle-flu-trends-the-limits-of-big-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Flu+Trends%3A+The+Limits+of+Big+Data" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F28%2Fgoogle-flu-trends-the-limits-of-big-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Flu+Trends%3A+The+Limits+of+Big+Data" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F28%2Fgoogle-flu-trends-the-limits-of-big-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Flu+Trends%3A+The+Limits+of+Big+Data" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359802664/u/0/f/640387/c/34625/s/38b82405/sc/5/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Two recent research papers, examining Google Flu Trends, offer a critique of big-data analysis.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38b82405/sc/5/l/0Lbits0Bblogs0Bnytimes0N0C20A140C0A30C280Cgoogle0Eflu0Etrends0Ethe0Elimits0Eof0Ebig0Edata0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42956/guest@my.umbc.edu/3689ff30a97c6a4902be50eeacf6c517/api/pixel</TrackingUrl>
<Tag>big-data</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>google-inc</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>harvard-university</Tag>
<Tag>influenza</Tag>
<Tag>king-gary</Tag>
<Tag>new</Tag>
<Tag>northeastern-university</Tag>
<Tag>policy</Tag>
<Tag>social</Tag>
<Tag>technology</Tag>
<Tag>university-of-houston</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 07:11:54 -0400</PostedAt>
<EditAt>Fri, 28 Mar 2014 17:00:59 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42954" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42954">
<Title>U.S. Judge Dismisses Lawsuit Against Chinese Search Engine</Title>
<Body>
<![CDATA[
    <div class="html-content">Eight writers and video producers had accused Baidu of violating their right to free speech by blocking users in the United States from viewing their pro-democracy material.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Fbusiness%2Fus-judge-dismisses-lawsuit-against-chinese-search-engine.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Judge+Dismisses+Lawsuit+Against+Chinese+Search+Engine" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Fbusiness%2Fus-judge-dismisses-lawsuit-against-chinese-search-engine.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Judge+Dismisses+Lawsuit+Against+Chinese+Search+Engine" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Fbusiness%2Fus-judge-dismisses-lawsuit-against-chinese-search-engine.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Judge+Dismisses+Lawsuit+Against+Chinese+Search+Engine" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Fbusiness%2Fus-judge-dismisses-lawsuit-against-chinese-search-engine.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Judge+Dismisses+Lawsuit+Against+Chinese+Search+Engine" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F29%2Fbusiness%2Fus-judge-dismisses-lawsuit-against-chinese-search-engine.html%3Fpartner%3Drss%26emc%3Drss&amp;t=U.S.+Judge+Dismisses+Lawsuit+Against+Chinese+Search+Engine" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360662821/u/0/f/640387/c/34625/s/38b765db/sc/2/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Eight writers and video producers had accused Baidu of violating their right to free speech by blocking users in the United States from viewing their pro-democracy material.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38b765db/sc/2/l/0L0Snytimes0N0C20A140C0A30C290Cbusiness0Cus0Ejudge0Edismisses0Elawsuit0Eagainst0Echinese0Esearch0Eengine0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42954/guest@my.umbc.edu/0bee5e4a17e8b29ce7acad3a4621f6b0/api/pixel</TrackingUrl>
<Tag>baidu-inc-bidu-nasdaq</Tag>
<Tag>censorship</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>first-amendment-us-constitution</Tag>
<Tag>freedom-of-speech-and-expression</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>twitter-twtr-nyse</Tag>
<Tag>yahoo-inc-yhoo-nasdaq</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 06:08:59 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42953" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42953">
<Title>14 Examples of Websites That Use Web Tableaus</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong>Web tableaus</strong> — photographed scenes of work environments — are a popular web design trend right now.</p>
    <p>I came across the term from Frank Chimero’s <a href="http://frankchimero.com/blog/web-tableaus/" rel="nofollow external" class="bo">blog post</a> about the subject, and it was the first time I’ve seen the web tableau trend  analyzed.</p>
    <p>I thought I’d put together a showcase of websites that use web tableaus for you.</p>
    <p></p>
    <h3>Examples of Web Tableaus</h3>
    <p>Here are a few sites that use web tableaus:</p>
    <h4><a href="http://grovemade.com/" rel="nofollow external" class="bo">Grovemade</a></h4>
    <p><a href="http://grovemade.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-02_web_tableau_example_grovemade.jpg" width="550" height="382" alt="Grovemade" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://www.squarespace.com/stories/#paul-pope" rel="nofollow external" class="bo">Squarespace Stories</a></h4>
    <p><a href="http://www.squarespace.com/stories/#paul-pope" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-03_squarespace.jpg" width="550" height="382" alt="Squarespace Stories" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://littlelines.com/" rel="nofollow external" class="bo">Littlelines</a></h4>
    <p><a href="http://littlelines.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-05_web_tableau_example_littlelines.jpg" width="550" height="382" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://princeink.com/" rel="nofollow external" class="bo">The Prince Ink Company</a></h4>
    <p><a href="http://princeink.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-04_web_tableau_example_princeink.jpg" width="550" height="382" alt="The Prince Ink Company" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="https://thebrandbat.com/" rel="nofollow external" class="bo">The Brand Bat</a></h4>
    <p><a href="https://thebrandbat.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-06_web_tableau_example_brandsbat.jpg" width="550" height="382" alt="The Brand Bat" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://evablackdesign.com/" rel="nofollow external" class="bo">Eva Black Design</a></h4>
    <p><a href="http://evablackdesign.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-10_web_tableau_example_evablack.jpg" width="550" height="382" alt="Eva Black Design" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://sickdesigner.com/" rel="nofollow external" class="bo">Sickdesigner.com</a></h4>
    <p><a href="http://sickdesigner.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-11_web_tableau_example_sickdesignr.jpg" width="550" height="382" alt="Sickdesigner.com" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://www.dorisresearch.com/" rel="nofollow external" class="bo">Doris Research</a></h4>
    <p><a href="http://www.dorisresearch.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-07_web_tableau_example_doris.jpg" width="550" height="382" alt="Doris Research" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://bjoernmeier.com/" rel="nofollow external" class="bo">BJÖRN MEIER</a></h4>
    <p><a href="http://bjoernmeier.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-13_web_tableau_example_bjornmei.jpg" width="550" height="382" alt="BJÖRN MEIER" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://www.littleco.com/" rel="nofollow external" class="bo">Little</a></h4>
    <p><a href="http://www.littleco.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-12_web_tableau_example_little.jpg" width="550" height="382" alt="Little" style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="http://ollysorsby.co.uk/" rel="nofollow external" class="bo">Olly Sorsby Design Co.</a></h4>
    <p><a href="http://ollysorsby.co.uk/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-08_web_tableau_example_olly.jpg" width="550" height="382" alt="Olly Sorsby Design Co." style="max-width: 100%; height: auto;"></a></p>
    <h4><a href="https://munchery.com/" rel="nofollow external" class="bo">Munchery</a></h4>
    <p><a href="https://munchery.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-14_web_tableau_example_munchery.jpg" width="550" height="382" alt="Munchery" style="max-width: 100%; height: auto;"></a></p>
    <h3>Why Use Web Tableaus?</h3>
    <p>Every single thing a web designer does should be meaningful. Design decisions must meet an <a href="http://sixrevisions.com/user-interface/designing-for-objectives/" title="Designing for Your Objectives" rel="nofollow external" class="bo">objective</a> besides achieving great aesthetics.</p>
    <p>Here are a couple of reasons for using web tableaus in your designs:</p>
    <h4>To Show How Your Product Works</h4>
    <p>When we initially stumble upon a new digital product (like a mobile app) that we’ve never seen before, it’s hard to envision how it could possibly work for us and how it could fit into our lives.</p>
    <p>And for developers of digital products, it’s extremely challenging to explain how useful their product is when people can’t touch it or immediately experience its benefits.</p>
    <p>Web tableaus are practical visuals for demonstrating a product’s utility.</p>
    <p>For example, let’s look at <a href="https://www.wallmob.com/" rel="nofollow external" class="bo">Wallmob’s</a> web tableau.</p>
    <p>Wallmob is a networked point-of-sale application. That’s not very sexy, is it? And how does it work?</p>
    <p><a href="https://www.wallmob.com/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-01_web_tableau_example_wallmob.jpg" width="550" height="382" alt="Wallmob" style="max-width: 100%; height: auto;"></a></p>
    <p>The scene of a person holding a mobile tablet with the Wallmob app up on the device’s screen is a very informative visual.</p>
    <p>It gives potential users of the software an idea of what Wallmob can provide them: A portable point-of-sale system that has a user-friendly interface that runs on existing touchscreen mobile devices. No more dedicated and extremely expensive POS systems.</p>
    <p>The picture is truly worth a thousand words. With just one photo, Wallmob is able to communicate the pain point the company is trying to solve.</p>
    <h4>To Keep It Real</h4>
    <p>By giving people a sneak peek of the place in which we craft our work, we’re able to humanize and add value to our products.</p>
    <p>A good discussion point for this is <a href="http://wootten.com.au/" rel="nofollow external" class="bo">Wootten</a> — a company that creates handmade shoes and other leather products.</p>
    <p>If you’re not familiar with the brand, just by looking at their merchandise, you wouldn’t be able to know or appreciate that real people painstakingly make all Wootten products.</p>
    <p>But handcrafted, customized apparel is what makes Wootten different from the big, incumbent fashion brands that get their products mass-manufactured in some undisclosed factory.</p>
    <p>How can Wootten articulate their uniqueness to their buyers?</p>
    <p>Through a web tableau.</p>
    <p><a href="http://wootten.com.au/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0411-09_web_tableau_example_wootten.jpg" width="550" height="382" alt="Wootten" style="max-width: 100%; height: auto;"></a></p>
    <p>In the tableau, we see a craftsman with manual tools laboring on a workbench and the beginnings of a Wootten item.</p>
    <p>This one scene was able to tell the brand’s entire story, and viewers end up having a better appreciation of the company’s products.</p>
    <p>On his <a href="http://frankchimero.com/blog/web-tableaus/" title="Web Tableaus" rel="nofollow external" class="bo">web tableaus post</a>, Frank Chimero shares his thoughts on what web tableaus bring to the table — you should <em>definitely</em> read his post for more insights into this trend.</p>
    <p><strong>What do you think of web tableaus? What are other reasons for using them in web designs? </strong></p>
    <h3>Related Content</h3>
    <ul>
    <li><a href="http://sixrevisions.com/design-showcase-inspiration/using-photos-web-design/" rel="nofollow external" class="bo">Excellent Examples of Using Photos in Web Design</a></li>
    <li><a href="http://sixrevisions.com/web_design/what-your-website-design-says/" rel="nofollow external" class="bo">What Your Website’s Design Says About You</a></li>
    <li><a href="http://sixrevisions.com/web-development/advanced-image-optimization/" rel="nofollow external" class="bo">Advanced Image Optimization Tricks</a></li>
    <li>
    <em>Related categories:</em> <a href="http://sixrevisions.com/category/design-showcase-inspiration/" rel="nofollow external" class="bo">Showcase/Inspiration</a> and <a href="http://sixrevisions.com/category/web_design/" rel="nofollow external" class="bo">Web Design</a>
    </li>
    </ul>
    <h3>About the Author</h3>
    <p><img src="http://images.sixrevisions.com/authors/jacob_gube_small.jpg" alt="" width="80" height="80" style="max-width: 100%; height: auto;"><span><strong>Jacob Gube</strong> is the founder and editor-in-chief of Six Revisions. He’s a front-end web developer by profession. If you’d like to connect with him, head on over to the <a href="http://sixrevisions.com/contact/" rel="nofollow external" class="bo"><strong>contact page</strong></a> or follow him on Twitter: <strong>@<a href="http://twitter.com/sixrevisions" rel="nofollow external" class="bo">sixrevisions</a></strong>.</span></p>
    <p>The post <a href="http://sixrevisions.com/design-showcase-inspiration/web-tableaus/" rel="nofollow external" class="bo">14 Examples of Websites That Use Web Tableaus</a> appeared first on <a href="http://sixrevisions.com" rel="nofollow external" class="bo">Six Revisions</a>.</p>
    </div>
]]>
</Body>
<Summary>Web tableaus — photographed scenes of work environments — are a popular web design trend right now.   I came across the term from Frank Chimero’s blog post about the subject, and it was the first...</Summary>
<Website>http://feedproxy.google.com/~r/SixRevisions/~3/vuFeVAyVDfE/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42953/guest@my.umbc.edu/daf875a6bf5fbb1acd37c0c4b3803e03/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>database</Tag>
<Tag>design</Tag>
<Tag>design-showcase-inspiration</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Mar 2014 06:00:38 -0400</PostedAt>
<EditAt>Fri, 28 Mar 2014 06:00:38 -0400</EditAt>
</NewsItem>

</News>
