<?xml version="1.0"?>
<News hasArchived="true" page="8806" pageCount="10714" pageSize="10" timestamp="Mon, 06 Jul 2026 05:49:50 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8806">
<NewsItem contentIssues="true" id="28223" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28223">
<Title>Responsive Layouts: How To Maintain Hierarchy Through Content Choreography</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>One of the issues we need to be concerned with in <a href="http://coding.smashingmagazine.com/2013/03/11/responsible-web-design/" rel="nofollow external" class="bo">responsive design</a> is how to maintain hierarchy as elements on the screen are resized and reflowed. Trent Walton first called attention to the issue with his post “<a href="http://trentwalton.com/2011/07/14/content-choreography/" rel="nofollow external" class="bo">Content Choreography</a>,” which showed <strong>how visual hierarchy gets lost</strong> when columns are dropped below one another.</p>
    <p>While techniques exist to help with part of the problem, the solution also requires conscious thought in <a href="http://mobile.smashingmagazine.com/2013/01/14/preparing-websites-for-the-unexpected/" rel="nofollow external" class="bo">how you structure blocks of content</a> in your HTML. You need to think about how you’ll want to rearrange blocks of content as your design moves from single to multiple columns.</p>
    <h3>What Is Content Choreography?</h3>
    <p>As a layout changes from a widescreen to a tablet to a smartphone, the number of columns is usually reduced from three or four down to one. The typical and easiest solution is to drop the columns one by one and stack them on top of each other.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/04/dropping-columns.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/dropping-columns.png" alt="Diagram showing how columns drop in a typical 3 column responsive design" width="500" height="350" style="max-width: 100%; height: auto;"></a><br>
    <em>The figure above shows three columns of content. The lines below the two right columns indicate that each will drop below the main content as the screen’s width decreases.</em></p>
    <p>Once you’re down to a single column, the layout is constrained by the source order of the content blocks in the HTML. Whichever column comes first in the HTML is displayed at the top; whichever column is next in the HTML goes right below; and so on down the stack.</p>
    <p>Unfortunately, this means that information that is highly visible at the top of the page when multiple columns are present ends up being far down the page as one column drops below another. If content is important enough to show at the top of the page when viewed on a widescreen browser, <strong>do we want to bury it on a smartphone screen?</strong></p>
    <p>All of the information in your sidebar column probably isn’t as important as all of the information in your main content column, but some of the sidebar content is likely more important than some of the main content.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/04/single-columns.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/single-columns.png" alt="Two examples of single column responsive designs" width="500" height="651" style="max-width: 100%; height: auto;"></a><br>
    <em>The left side of the figure above shows a single column layout, where each column drops in its entirety below the previous one. The right side shows elements from each column mixing with other elements.</em></p>
    <p>The left side of the image above shows the typical column drop. As the design is reduced to a single column, the content inside each container or column is dropped below all of the content in another container.</p>
    <p><strong>Ideally, the visual hierarchy would be maintained</strong>, and the content in different columns would intermix as the design moves from three columns to two to one. We’d also like more control over the display order of content, beyond the HTML source order. Both scenarios are illustrated on the right side of the image above.</p>
    <p>This greater control over the blocks inside containers is what’s considered content choreography. I assume Trent chose the word “choreography” as a metaphor for how we’d like to orchestrate the movement of blocks of content as our layout changes.</p>
    <p>Our current development practices don’t make this choreography easy. What they do make easy is dropping entire columns one below the other, which means that everything inside one column must always end up in its entirety above or below everything in another column.</p>
    <h4>Two Problems in One</h4>
    <p>What I’ve described above are really two separate problems:</p>
    <ul>
    <li>
    <strong>Source order</strong><br>
    In a single-column layout, blocks of content will display in the same order as they’re located in the HTML structure. Unfortunately, the best source order for one layout isn’t necessarily the best source order for another.</li>
    <li>
    <strong>Intermixing content</strong><br>
    Instead of having to drop entire columns of content below one another, we’d like to mix blocks of content from the different columns in the single-column layout.</li>
    </ul>
    <p>The first issue has some technical solutions on the way, one of which is just about here. The second issue will require that we change our thinking in how we develop layouts.</p>
    <h3>Solving The Source-Order Problem</h3>
    <p>In time, there will be several solutions to the source-order issue, in the form of <strong>new CSS specifications</strong>. Depending on which browsers you need to support and what you’re willing to do to support them, one of those specifications may already be here.</p>
    <p>Three specifications that we’ll likely find ourselves using in the future are:</p>
    <ul>
    <li>“<a href="http://www.w3.org/TR/css3-flexbox/" rel="nofollow external" class="bo">Flexbox</a>,”</li>
    <li>“<a href="http://dev.w3.org/csswg/css3-regions/" rel="nofollow external" class="bo">Regions</a>,”</li>
    <li>“<a href="http://dev.w3.org/csswg/css3-grid-layout/" rel="nofollow external" class="bo">Grid Layout</a>.”</li>
    </ul>
    <p>The second and third of these specifications have almost no support in current browsers. Surprisingly, Internet Explorer is leading the way with both. IE 10 supports regions and grid layouts with the <code>-ms</code> vendor prefix. No other browser offers any support at the moment, so we’ll have to wait on these specs a bit longer.</p>
    <p>Flexbox, however, <a href="http://caniuse.com/#search=flex" rel="nofollow external" class="bo">has pretty good support</a>. The spec has undergone some changes, and two <a href="http://css-tricks.com/old-flexbox-and-new-flexbox/" rel="nofollow external" class="bo">versions are currently supported by browsers</a>. If you don’t mind <a href="http://css-tricks.com/using-flexbox/" rel="nofollow external" class="bo">mixing the old and new syntaxes</a>, you can get flexbox to work in the current versions of almost all browsers.</p>
    <p><strong>Opera mini and IE below version 10 don’t support any flexbox syntax.</strong> However, you can use the <a href="http://flexiejs.com/" rel="nofollow external" class="bo">Flexie polyfill</a> to add support for IE. Flexie uses the old flexbox syntax, but it does support IE as far back as version 6. Flexbox deserves its own article to be explained in detail, so I’ll point you to some articles I’ve written showing the <a href="http://www.vanseodesign.com/css/flexbox/" rel="nofollow external" class="bo">old syntax</a> and the <a href="http://www.vanseodesign.com/css/flexbox-revisited/" rel="nofollow external" class="bo">new syntax</a>, as well as one that walks you through the <a href="http://www.adobe.com/devnet/html5/articles/working-with-flexbox-the-new-spec.html" rel="nofollow external" class="bo">new syntax to set up a responsive layout</a> that overcomes the issue of source order.</p>
    <p>Suffice it to say that with a single CSS property, we can essentially tell our documents to display blocks of content in a different order than how the source code orders the blocks in the HTML. Jordan Moore has also written about <a href="http://www.jordanm.co.uk/post/21863299677/building-with-content-choreography" rel="nofollow external" class="bo">flexbox and content choreography</a>, and he’s created a <a href="http://www.jordanm.co.uk/lab/contentchoreography" rel="nofollow external" class="bo">demo to illustrate</a>.</p>
    <p>What you should take away from this section is that solutions to the source-order problem are coming soon — one of them very soon. It won’t be long before we can easily rearrange blocks inside a single container. However, rearranging blocks inside one container isn’t the same as rearranging them across several containers.</p>
    <h3>Solving The Intermixing Content Problem</h3>
    <p>Unlike the source-order problem, the issue of intermixing content across columns doesn’t have a technical solution. It’s up to us, and, ultimately, it means we need to wrap content in fewer HTML containers.</p>
    <p>We’ll have to dig a little deeper into the problem to understand why this is so.</p>
    <h4>CSS Visual Formatting Models</h4>
    <p>CSS offers several <a href="http://www.w3.org/TR/CSS2/visuren.html#visual-model-intro" rel="nofollow external" class="bo">visual formatting models</a>, such as the normal document flow, floated elements and positioned elements. Flexbox is part of another, the <a href="http://www.w3.org/TR/css3-flexbox/" rel="nofollow external" class="bo">flexible box layout model</a>. In all of these models, elements are located relative to a containing element.</p>
    <p>We can make it look as though elements are not bound by their containers, but they still are. For example, you could float an element that’s inside one column and give it a negative margin so large that it appears to be located in another column, however, elements in that other column won’t reorient themselves. To these elements, the floated element is still in the first column.</p>
    <p>Other elements in the first column may relocate themselves to fill the now vacated space, but elements in the second column won’t. <strong>Even positioned elements are positioned relative to some parent</strong>, although that parent might be the <code>html</code> element itself. When you absolutely position an element and move it somewhere on the screen, other elements won’t get out of the way. We need them to get out of the way, though, if we’re going to intermix page elements.</p>
    <p>With a little thought and CSS, you can usually figure out some way to rearrange elements inside one container however you like. With a little more thought, you can even make elements in one container appear to be located inside another, although you’ll usually have to position the elements in that other container with more complex CSS and with what <a href="http://csswizardry.com/2012/11/code-smells-in-css/" rel="nofollow external" class="bo">Harry Roberts refers to as “magic numbers</a>.”</p>
    <p>If the term is new to you, magic numbers are those numbers we use to make something work in a single particular instance. They typically stop working as soon as some other value changes, and, given the nature of responsive design, other values are always changing. <strong>Magic numbers in CSS are best avoided.</strong></p>
    <h4>We Need to Give Up Containers</h4>
    <p>For the last few years, whenever we’ve wanted to move a group of adjacent elements to a certain part of a layout, we’d wrap those elements in a container and write CSS to display the container somewhere in the design. I’m sure you’ve used CSS selectors like <code>#wrapper</code> and <code>#container</code> more than once.</p>
    <p>We need fewer of these HTML containers and more CSS virtual container classes that we can apply to different elements as needed.</p>
    <p>In other words, instead of this…</p>
    <pre><code>&#x000A;    &lt;div id="container"&gt;&#x000A;      &lt;div&gt;Content here&lt;/div&gt;&#x000A;      &lt;div&gt;Content here&lt;/div&gt;&#x000A;      &lt;div&gt;Content here&lt;/div&gt;&#x000A;    &lt;/div&gt;&#x000A;    </code></pre>
    <p>… <strong>we need more of this:</strong></p>
    <pre><code>&#x000A;    &lt;div class="container"&gt;Content here&lt;/div&gt;&#x000A;    &lt;div class="container"&gt;Content here&lt;/div&gt;&#x000A;    &lt;div class="container"&gt;Content here&lt;/div&gt;&#x000A;    </code></pre>
    <p>In the latter block, each division might have a different class name or perhaps different additional classes applied. This allows for greater flexibility in rearranging them in the layout. In the first block of code, the three content divisions will always reside inside their parent container.</p>
    <p>I’m not suggesting that the first block of HTML above should never be used. There will absolutely be times when wrapping several divisions of content with a container makes sense. However, if you want some of those blocks to intermix with elements in other columns, then you’ll have to think more in terms of the second block of HTML above.</p>
    <p><strong>With CSS, we have the ability to rearrange blocks inside a container.</strong> We don’t have the ability to break content out of one container and move it inside another container. If you want more mixing of blocks, then you’ll need fewer containers.</p>
    <h3>Examples</h3>
    <p>While there are currently far more instances of websites that are dropping columns wholesale, there are certainly websites that mix content in one column with content in another column.</p>
    <p>Let me first offer a detailed look at my own website, since I’m most familiar with it. I’ll follow this up with a few other websites that intermix content in slightly different ways.</p>
    <h4>A Personal Example</h4>
    <p>Around the time that Trent coined the term “content choreography,” I was working on a redesign of my website and was trying to figure out how to <a href="http://www.vanseodesign.com/web-design/rearranging-boxes/" rel="nofollow external" class="bo">mix content blocks</a> as the layout changed.</p>
    <p>The image below shows the top of a typical blog post on my website when the browser is wide enough to accommodate two columns. Click the image to see the live post.</p>
    <p>Meta information such as my name and the publication date are in a column to the left, while the article’s title, main text, images, headings and so on are in a column to the right.</p>
    <p><a href="http://www.vanseodesign.com/web-design/unique-visual-language/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/vanseo-design-2-col1.png" alt="Screenshot of post from Vanseo Design with two-column layout" width="500" height="470" style="max-width: 100%; height: auto;"></a><br><em>My website when the browser is wide enough to accommodate two columns.</em></p>
    <p>Seeing the layout, you might instinctively think each “column” is wrapped in its own container and that I’ve floated both columns left or right; it’s how I would have developed this layout a few years ago. But doing that leads to the problem of <strong>one of the columns being forced to drop below the other</strong> on small screens.</p>
    <p>Below is the same page as a single column on a narrower screen. The meta information from the left column sits below the article’s title from the right column but above everything else in that right column. Both “columns” of content have actually been inside the same container all along.</p>
    <p><a href="http://www.vanseodesign.com/web-design/unique-visual-language/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/vanseo-design-single-col1.png" alt="Screenshot of post from Vanseo Design with single column layout" width="485" height="470" style="max-width: 100%; height: auto;"></a><br><em>My website as a single column on a narrower screen.</em></p>
    <p>The image below presents a more abstract view of what’s going on. On the left, you see the layout as it appears when displayed as a single column. On the right is the two-column version of the layout.</p>
    <p><strong>Every element is its own unique block and serves as its own container.</strong> The page’s main heading is its own contained block. All of the meta information is inside another container directly below it. After that, every paragraph, subheading and image is also its own self-contained block of content. The same goes for anything else that might end up in a post, such as a block quote or code block.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/04/vanseo-abstract-3.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/vanseo-abstract-3.png" alt="Abstract diagram showing content on Vanseo Design with single and 2 column layout" width="500" height="278" style="max-width: 100%; height: auto;"></a><br><em>A more abstract view of what’s going on.</em></p>
    <p>On small screens, all of the blocks display in the source order. On wider screens, I shift this entire single “column” to the right by adding a left margin to each individual block. In the CSS, I have a long list of selectors with a single line of declarations. When I want something to appear in the “left column,” I float it left and reset its margin to zero.</p>
    <p>The solution is hardly perfect. Blocks pulled into the virtual left column won’t slide up or down. They simply move to the left. This solution doesn’t enable me to display something from the bottom of the article at the top of the left column. But, hopefully, this illustrates <strong>how rethinking containers can help us intermix content</strong> from different columns into a single column.</p>
    <h4>The Next Web</h4>
    <p><a href="http://thenextweb.com/" rel="nofollow external" class="bo">The Next Web</a> mostly drops columns down as it rearranges from three columns to one, but it does intermix elements at the top of the page.</p>
    <p><a href="http://thenextweb.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/the-next-web.jpg" alt="Screenshots of The Next Web" width="500" height="636" style="max-width: 100%; height: auto;"></a></p>
    <p>The image above shows the website displayed as two columns (on the left) and a single column (on the right). The blue outline shows the container around elements at the top of the page. You can see that the secondary stories to the right of the top story drop below it but remain above the other stories, due to the way the containers have been set up.</p>
    <p>In the single column, the images in all of the first three stories are now physically the same size, so <strong>the hierarchy has changed</strong>. However, the second and third stories are still seen as “less important” because they come after the top story.</p>
    <p>This intermixing is achieved by thinking in advance of which elements will shift columns and by placing elements that need to be rearranged in the same container, separate from other containers of content.</p>
    <h4>Time</h4>
    <p><a href="http://www.time.com/time/" rel="nofollow external" class="bo">Time</a> magazine intermixes content across columns and containers. Notice how the “Latest Headlines” section (in the green container) moves from the right column at the top to just below the main image and story links in the single column.</p>
    <p><a href="http://www.time.com/time/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/time.jpg" alt="Screenshots of Time Magazine website" width="500" height="387" style="max-width: 100%; height: auto;"></a></p>
    <p>While not shown in the image above, the row of four images on the left follows the “Latest Headlines” in the single column. The remaining content in the right column drops much further down. You can see this by viewing the website directly.</p>
    <p>The website achieves this intermixing by ignoring most of what I’ve said in this post about using fewer containers. <strong>Instead, it uses JavaScript to rewrite the HTML</strong>, moving elements in and out of different containers as the layout changes. It is another solution to this issue, although better planning up front is preferable.</p>
    <h4>Enoch’s Fish &amp; Chips</h4>
    <p>The navigation on <a href="http://www.enochs.co.uk/" rel="nofollow external" class="bo">Enoch’s Fish &amp; Chips</a>’ website integrates with the logo and company blurb when the layout is a single column:</p>
    <p><a href="http://www.enochs.co.uk/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/enochs-single-col.jpg" alt="Screenshot of Enoch's Fish and Chips with single column" width="500" height="697" style="max-width: 100%; height: auto;"></a></p>
    <p>The navigation (and the tagline further down) moves to the right column when the browser is wide enough to accommodate multiple columns.</p>
    <p>The website rearranges these elements similar to the way I rearrange elements on my own website; the logo, navigation, blurb and tagline are each a separate container. <strong>To move them around, the website uses positioning</strong> instead of floats, but otherwise, the principle is the same.</p>
    <p><a href="http://www.enochs.co.uk/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/04/enochs-2-col.jpg" alt="Screenshot of Enoch's Fish and Chips at 2 columns" width="500" height="411" style="max-width: 100%; height: auto;"></a></p>
    <h3>Closing Thoughts</h3>
    <p>Many of us have, understandably, been taking the easy way out with responsive layouts. When the width of a screen cannot accommodate a column, we’ve been dropping the column in its entirety below other columns. In some cases, this is perfectly fine. In others, <strong>it breaks the carefully designed hierarchy</strong>.</p>
    <p>We face two issues in maintaining the hierarchy. The first is having to follow the HTML source order when the layout is a single column. The solution to this problem is a technical one and is coming in the form of new CSS specs that will allow the display order and the HTML source order to be different.</p>
    <p>The second problem is less technical and more a challenge to how we think about structuring our HTML, particularly to how we use containers. Elements can’t move from one container to the next. We can fake it with complex CSS, or we can rewrite the HTML with JavaScript; but, ultimately, if we want to intermix elements, <strong>we’re best of using fewer HTML containers to create columns</strong>. Instead, we should leave more of our content blocks in their own containers and use CSS to create virtual columns in the layout.</p>
    <p>This solution doesn’t confine our elements to structural containers and instead enables us to more easily rearrange the elements in different layouts.</p>
    <p><em>(al)</em></p>
    <hr>
    <p><small>© Steven Bradley for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        One of the issues we need to be concerned with in responsive design is how to maintain hierarchy as elements on the screen are resized and reflowed. Trent Walton first called attention to...</Summary>
<Website>http://www.smashingmagazine.com/2013/04/25/maintain-hierarchy-content-choreography/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28223/guest@my.umbc.edu/0e2cd76d5afdeb16c1c7bebd2367853f/api/pixel</TrackingUrl>
<Tag>content</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>responsive-design</Tag>
<Tag>sql</Tag>
<Tag>techniques</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>Thu, 25 Apr 2013 06:57:04 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28222" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28222">
<Title>Don&#8217;t go cross-platform</Title>
<Body>
<![CDATA[
    <div class="html-content">For years, cross-platform toolkits offered ‘write-once, run-everywhere’ functionality – but never lived up to their promise. Beware, says Dermot Daly, the same snake oil is back on mobile<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fopinions%2Fdon-t-go-cross-platform&amp;t=Don%E2%80%99t+go+cross-platform" 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.netmagazine.com%2Fopinions%2Fdon-t-go-cross-platform&amp;t=Don%E2%80%99t+go+cross-platform" 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.netmagazine.com%2Fopinions%2Fdon-t-go-cross-platform&amp;t=Don%E2%80%99t+go+cross-platform" 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.netmagazine.com%2Fopinions%2Fdon-t-go-cross-platform&amp;t=Don%E2%80%99t+go+cross-platform" 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.netmagazine.com%2Fopinions%2Fdon-t-go-cross-platform&amp;t=Don%E2%80%99t+go+cross-platform" 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/164016368563/u/49/f/502346/c/32632/s/2b274b73/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/164016368563/u/49/f/502346/c/32632/s/2b274b73/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>For years, cross-platform toolkits offered ‘write-once, run-everywhere’ functionality – but never lived up to their promise. Beware, says Dermot Daly, the same snake oil is back on mobile     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/LAvgRMZ5hcQ/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28222/guest@my.umbc.edu/e9500aab0d26005c2c179ec168b22917/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</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>Thu, 25 Apr 2013 05:23:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28221" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28221">
<Title>Why should you become retina ready?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/thumb1.jpg" alt="" width="200" height="160" style="max-width: 100%; height: auto;"></p>
    <p>Oh, look! It’s a brand spanking new, shiny technological feature. And it probably helps that it’s being implemented by Apple products. A couple of great sites (like this one) have already started using it. What does it do? Will it be around forever? What does it mean and when or why should I try it?</p>
    <p>We’re talking about becoming retina ready. I’ll be honest with you; when I first heard about it, I just threw it to the side. It’s mainly on Apple devices and I figured it was something only they could do. It wasn’t a huge game changer because lots of other people couldn’t affect it. But boy, was I wrong.</p>
    <p>Now, I’ve perused a couple of sites and heard from a couple of ‘experts’ and it seems like there’s a real fascination with being retina ready. Let me also say, the fascination is mainly for web designers and artists who care about things looking good. I’m sure if you asked the average person (without an Apple device) what retina-ready is, they’d look at you like you had two heads. However, that doesn’t mean that it won’t be something that essentially turns out to be great and take over the world soon.</p>
    <p> </p>
    <h1>So…what is it?</h1>
    <p><a href="http://www.apple.com/macbook-pro/features-retina/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/Apple-MacBook-Pro-with-Retina-display-Features-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p>When we look at our screens, sometimes we can see the individual pixels. Try taking a look at something like a CSS rounded corner or a really blurry image that’s being blown up. You can see the little tiny squares or dots that are trying to make up the element. Pixels are extremely small, but to a trained eye, like a designer’s, we can just sort of tell. We know when we see pixelation and we know when images and elements are just straight up ugly. </p>
    <p>The problem wasn’t a huge deal until things like responsive design and the need to fit one thing into several browser sizes came along. Before, you just dealt with it because your browser, whichever you were on, was going to show exactly what you asked it to show. Now with responsive design and the workings of tablets and other devices, I can pinch an image to make it smaller or double tap my screen to increase the size of the page.</p>
    <p>On websites that are not retina ready, pages will look awfully pixelated and blurry in their normal state as well as when page sizes are increased. Retina ready websites, along with the devices, allow you to see more pixels per square inch. Therefore, your trained eye sees a very smooth, high quality image or element and no distortion. Becoming retina ready is done with some CSS and Javascript. However, for images, they are created at least double the size that they’ll be shown online.</p>
    <p> </p>
    <h1>Benefits of retina ready websites</h1>
    <p><strong>1. Sharper images:</strong> As we’ve already talked about, the entire idea of the retina ready technology is to give us sharper images. The idea behind retina ready is to create something that would look as sharp as it would in print. Colors are vivid and bright because you get more pixels per inch on retina ready devices. It’s essentially like high definition for your laptop, phone or tablet. </p>
    <p><strong>2. Better aesthetics for responsive:</strong> Again, we’ve touched on the idea that you get better picture quality. What some may not know is that creating retina ready website allows for sharper fonts. When we sometimes zoom into webpages on websites, we end up stretching out some fonts that aren’t able to be stretched. Many of these fonts aren’t to be used in such a way and give us the same pixeled look we may get from some images.</p>
    <p>Retina ready websites help smooth over fonts. There are also some fonts that are prepared for retina ready sites and will maintain their image quality when zoomed in (or even out) on retina devices.</p>
    <p><strong>3. Designing with even more detail:</strong> I believe minimalism has become widely popular because it’s a simple concept to understand and design for. The idea is to remain as clean as possible and rid yourself of the fluff. Every so often, there are subtle details thrown into these types of themes, as well as others that are sometimes hard to see on regular screens. Retina devices are not only helpful in their high quality image projection but also in the brightness of their screen.</p>
    <p><strong>4. 30 million people think your site is ugly:</strong> Your web site is suffering right this minute if you are not retina ready. Over 30 million users have purchased these Apple devices that have this sharper screen feature. When they view your site, images are pixelated, fonts are tough to read and overall there’s probably a bad aesthetic. If you know your audience is probably the same audience that has these devices, it may be time to go ahead and prepare your site to become retina ready.</p>
    <p> </p>
    <h1>Tutorials and resources</h1>
    <h2>Retina.js</h2>
    <p>Retina.js is a JavaScript script that checks your server to see if you have high resolution pictures available on your website. For example, if you originally have picture.jpg available, to make it retina ready, they will look for that picture that you uploaded that’s twice the size, and should be named accordingly. This takes care of much of the issue with high-res pictures.</p>
    <p><a href="http://retinajs.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/Retina.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <h2> </h2>
    <h2>How to make your WordPress theme Retina Ready</h2>
    <p>Once you get Retina.js, that deals mainly with the pictures, which is obviously a large portion of creating a retina ready site. This tutorial goes through some of the ways you can change the remainder of your site so that it works on these devices. There’s some CSS as well as swapping graphics outs for fonts and more.</p>
    <p><a href="http://www.presscoders.com/2012/10/how-to-make-your-wordpress-theme-retina-ready/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/How-to-make-your-WordPress-Theme-Retina-Ready-Press-Coders.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <h2> </h2>
    <h2>How to Create Retina Graphics for your Web Designs</h2>
    <p>We understand that most of the work is with graphics, so how do you change the graphics you have to make the retina ready? And how do you continue to make retina ready graphics? Line25 explains some of the techniques available in Photoshop and Illustrator to get your graphics in order.</p>
    <p><a href="http://line25.com/tutorials/how-to-create-retina-graphics-for-your-web-designs" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/How-to-Create-Retina-Graphics-for-your-Web-Designs.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h2>How to Create Retina Ready Graphics in Adobe Photoshop CS6</h2>
    <p>For those of us in a time crunch and want a quick fix to creating retina images in Photoshop only, this is the tutorial for you. With 3 quick steps, you’ll be a master of creating retina ready graphics in no time.</p>
    <p><a href="http://www.mrgeek.me/technology/tutorials/photoshop/how-to-create-retina-ready-graphics-in-photoshop-cs6-tutorial/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/How-to-create-Retina-ready-graphics-in-Photoshop-CS6-Tutorial-Mr.jpg" width="650" style="max-width: 100%; height: auto;"></a></p>
    <p> </p>
    <h1>Conclusion</h1>
    <p>The retina ready world is still new and it’s still something that Apple has a grasp on. Nobody knows like time does, so we shall wait and see. In the meantime, many of us should enjoy the super crisp images and all around better design.</p>
    <p><em><strong>How do you feel about the web becoming retina ready? Does it even matter to you? Share your comments and links to retina ready sites in the comments.</strong></em></p>
    <p><br><br>
    </p>
    <table width="100%">
    <tbody>
    <tr>
    <td>
          <a href="http://www.mightydeals.com/deal/spybar.html?ref=inwidget" rel="nofollow external" class="bo"><strong>SpyBar: Reverse Engineer Any Website – only $7!</strong></a>
        </td>
    <td>
          <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br>
            <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" style="max-width: 100%; height: auto;"><br>
          </a>
        </td>
    </tr>
    </tbody>
    </table>
    <p><br> </p>
    <a href="http://www.webdesignerdepot.com/2013/04/why-should-you-become-retina-ready/" rel="nofollow external" class="bo">Source</a>
    </div>
]]>
</Body>
<Summary>Oh, look! It’s a brand spanking new, shiny technological feature. And it probably helps that it’s being implemented by Apple products. A couple of great sites (like this one) have already started...</Summary>
<Website>http://www.webdesignerdepot.com/2013/04/why-should-you-become-retina-ready/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28221/guest@my.umbc.edu/913e8181aeb7ae661531a2381c711c3a/api/pixel</TrackingUrl>
<Tag>apple-products</Tag>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>how-to-get-retina-ready</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>resources</Tag>
<Tag>responsive-design</Tag>
<Tag>retina-ready</Tag>
<Tag>retina-ready-tutorials</Tag>
<Tag>sharper-images</Tag>
<Tag>sql</Tag>
<Tag>trend</Tag>
<Tag>web-design</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>Thu, 25 Apr 2013 05:15:52 -0400</PostedAt>
<EditAt>Thu, 25 Apr 2013 05:15:52 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="28426" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28426">
<Title>Why should you become retina ready?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/thumb1.jpg" alt="" width="200" height="160" style="max-width: 100%; height: auto;"></p> <p>Oh, look! It’s a brand spanking new, shiny technological feature. And it probably helps that it’s being implemented by Apple products. A couple of great sites (like this one) have already started using it. What does it do? Will it be around forever? What does it mean and when or why should I try it?</p> <p>We’re talking about becoming retina ready. I’ll be honest with you; when I first heard about it, I just threw it to the side. It’s mainly on Apple devices and I figured it was something only they could do. It wasn’t a huge game changer because lots of other people couldn’t affect it. But boy, was I wrong.</p> <p>Now, I’ve perused a couple of sites and heard from a couple of ‘experts’ and it seems like there’s a real fascination with being retina ready. Let me also say, the fascination is mainly for web designers and artists who care about things looking good. I’m sure if you asked the average person (without an Apple device) what retina-ready is, they’d look at you like you had two heads. However, that doesn’t mean that it won’t be something that essentially turns out to be great and take over the world soon.</p> <p> </p> <h1>So…what is it?</h1> <p><a href="http://www.apple.com/macbook-pro/features-retina/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/Apple-MacBook-Pro-with-Retina-display-Features-copy.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p>When we look at our screens, sometimes we can see the individual pixels. Try taking a look at something like a CSS rounded corner or a really blurry image that’s being blown up. You can see the little tiny squares or dots that are trying to make up the element. Pixels are extremely small, but to a trained eye, like a designer’s, we can just sort of tell. We know when we see pixelation and we know when images and elements are just straight up ugly. </p> <p>The problem wasn’t a huge deal until things like responsive design and the need to fit one thing into several browser sizes came along. Before, you just dealt with it because your browser, whichever you were on, was going to show exactly what you asked it to show. Now with responsive design and the workings of tablets and other devices, I can pinch an image to make it smaller or double tap my screen to increase the size of the page.</p> <p>On websites that are not retina ready, pages will look awfully pixelated and blurry in their normal state as well as when page sizes are increased. Retina ready websites, along with the devices, allow you to see more pixels per square inch. Therefore, your trained eye sees a very smooth, high quality image or element and no distortion. Becoming retina ready is done with some CSS and Javascript. However, for images, they are created at least double the size that they’ll be shown online.</p> <p> </p> <h1>Benefits of retina ready websites</h1> <p><strong>1. Sharper images:</strong> As we’ve already talked about, the entire idea of the retina ready technology is to give us sharper images. The idea behind retina ready is to create something that would look as sharp as it would in print. Colors are vivid and bright because you get more pixels per inch on retina ready devices. It’s essentially like high definition for your laptop, phone or tablet. </p> <p><strong>2. Better aesthetics for responsive:</strong> Again, we’ve touched on the idea that you get better picture quality. What some may not know is that creating retina ready website allows for sharper fonts. When we sometimes zoom into webpages on websites, we end up stretching out some fonts that aren’t able to be stretched. Many of these fonts aren’t to be used in such a way and give us the same pixeled look we may get from some images.</p> <p>Retina ready websites help smooth over fonts. There are also some fonts that are prepared for retina ready sites and will maintain their image quality when zoomed in (or even out) on retina devices.</p> <p><strong>3. Designing with even more detail:</strong> I believe minimalism has become widely popular because it’s a simple concept to understand and design for. The idea is to remain as clean as possible and rid yourself of the fluff. Every so often, there are subtle details thrown into these types of themes, as well as others that are sometimes hard to see on regular screens. Retina devices are not only helpful in their high quality image projection but also in the brightness of their screen.</p> <p><strong>4. 30 million people think your site is ugly:</strong> Your web site is suffering right this minute if you are not retina ready. Over 30 million users have purchased these Apple devices that have this sharper screen feature. When they view your site, images are pixelated, fonts are tough to read and overall there’s probably a bad aesthetic. If you know your audience is probably the same audience that has these devices, it may be time to go ahead and prepare your site to become retina ready.</p> <p> </p> <h1>Tutorials and resources</h1> <h2>Retina.js</h2> <p>Retina.js is a JavaScript script that checks your server to see if you have high resolution pictures available on your website. For example, if you originally have picture.jpg available, to make it retina ready, they will look for that picture that you uploaded that’s twice the size, and should be named accordingly. This takes care of much of the issue with high-res pictures.</p> <p><a href="http://retinajs.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/Retina.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <h2> </h2> <h2>How to make your WordPress theme Retina Ready</h2> <p>Once you get Retina.js, that deals mainly with the pictures, which is obviously a large portion of creating a retina ready site. This tutorial goes through some of the ways you can change the remainder of your site so that it works on these devices. There’s some CSS as well as swapping graphics outs for fonts and more.</p> <p><a href="http://www.presscoders.com/2012/10/how-to-make-your-wordpress-theme-retina-ready/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/How-to-make-your-WordPress-Theme-Retina-Ready-Press-Coders.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <h2> </h2> <h2>How to Create Retina Graphics for your Web Designs</h2> <p>We understand that most of the work is with graphics, so how do you change the graphics you have to make the retina ready? And how do you continue to make retina ready graphics? Line25 explains some of the techniques available in Photoshop and Illustrator to get your graphics in order.</p> <p><a href="http://line25.com/tutorials/how-to-create-retina-graphics-for-your-web-designs" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/How-to-Create-Retina-Graphics-for-your-Web-Designs.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h2>How to Create Retina Ready Graphics in Adobe Photoshop CS6</h2> <p>For those of us in a time crunch and want a quick fix to creating retina images in Photoshop only, this is the tutorial for you. With 3 quick steps, you’ll be a master of creating retina ready graphics in no time.</p> <p><a href="http://www.mrgeek.me/technology/tutorials/photoshop/how-to-create-retina-ready-graphics-in-photoshop-cs6-tutorial/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/How-to-create-Retina-ready-graphics-in-Photoshop-CS6-Tutorial-Mr.jpg" width="650" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Conclusion</h1> <p>The retina ready world is still new and it’s still something that Apple has a grasp on. Nobody knows like time does, so we shall wait and see. In the meantime, many of us should enjoy the super crisp images and all around better design.</p> <p><em><strong>How do you feel about the web becoming retina ready? Does it even matter to you? Share your comments and links to retina ready sites in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/spybar.html?ref=inwidget" rel="nofollow external" class="bo"><strong>SpyBar: Reverse Engineer Any Website – only $7!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/04/why-should-you-become-retina-ready/" rel="nofollow external" class="bo">Source</a> <div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F04%2Fwhy-should-you-become-retina-ready%2F&amp;t=Why+should+you+become+retina+ready%3F" 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.webdesignerdepot.com%2F2013%2F04%2Fwhy-should-you-become-retina-ready%2F&amp;t=Why+should+you+become+retina+ready%3F" 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.webdesignerdepot.com%2F2013%2F04%2Fwhy-should-you-become-retina-ready%2F&amp;t=Why+should+you+become+retina+ready%3F" 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.webdesignerdepot.com%2F2013%2F04%2Fwhy-should-you-become-retina-ready%2F&amp;t=Why+should+you+become+retina+ready%3F" 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.webdesignerdepot.com%2F2013%2F04%2Fwhy-should-you-become-retina-ready%2F&amp;t=Why+should+you+become+retina+ready%3F" 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/164876685504/u/49/f/657673/c/35285/s/2b4ad68b/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/164876685504/u/49/f/657673/c/35285/s/2b4ad68b/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Oh, look! It’s a brand spanking new, shiny technological feature. And it probably helps that it’s being implemented by Apple products. A couple of great sites (like this one) have already started...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/657673/s/2b4ad68b/l/0L0Swebdesignerdepot0N0C20A130C0A40Cwhy0Eshould0Eyou0Ebecome0Eretina0Eready0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28426/guest@my.umbc.edu/57f508f53c96773a302df8be8e48a83c/api/pixel</TrackingUrl>
<Tag>apple-products</Tag>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>how-to-get-retina-ready</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>resources</Tag>
<Tag>responsive-design</Tag>
<Tag>retina-ready</Tag>
<Tag>retina-ready-tutorials</Tag>
<Tag>sharper-images</Tag>
<Tag>sql</Tag>
<Tag>trend</Tag>
<Tag>web-design</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>Thu, 25 Apr 2013 05:15:52 -0400</PostedAt>
<EditAt>Thu, 25 Apr 2013 05:15:52 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="28220" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28220">
<Title>PHP 5.5 beta 4 is now available</Title>
<Body>
<![CDATA[
    <div class="html-content">The PHP development team announces the release of the 4th beta of PHP 5.5.0.
            This release fixes some bugs against beta 3 and cleans up some features.
         
    
         THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!
    
         
          PHP 5.5.0beta4 is shipped with some bug fixes. Here is the list:
         
         
            Fixed bug #64677, execution operator `` stealing surrounding arguments.
            Fixed bug #64342, ZipArchive::addFile() has to check for file existence.
            Fixed Windows x64 version of stream_socket_pair() and improved error handling.
            Remove curl stream wrappers
         
    
         You can read the full list of changes in the
          NEWS file contained
          in the release archive.
         
    
         
          For source downloads of PHP 5.5.0beta4 please visit
          the download page, Windows binaries
          can be found on windows.php.net/qa/.
         
    
         
          Next step is Release Candidate. Our 1st RC is expected for May 9th.
         
    
         
            Thank you for supporting PHP.</div>
]]>
</Body>
<Summary>The PHP development team announces the release of the 4th beta of PHP 5.5.0.         This release fixes some bugs against beta 3 and cleans up some features.             THIS IS A DEVELOPMENT...</Summary>
<Website>http://php.net/index.php#id2013-04-25-1</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28220/guest@my.umbc.edu/48c472547f1cab0838770039d7a9550d/api/pixel</TrackingUrl>
<Tag>design</Tag>
<Tag>develop</Tag>
<Tag>frontpage</Tag>
<Tag>learn</Tag>
<Tag>mysql</Tag>
<Tag>news</Tag>
<Tag>php</Tag>
<Tag>releases</Tag>
<Tag>sql</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>Thu, 25 Apr 2013 04:18:09 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28287" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28287">
<Title>Deller Earns Top-Ten Finish as Retrievers Start Competition at Penn Relays</Title>
<Body>
<![CDATA[
    <div class="html-content">PHILADELPHIA � UMBC senior Amanda Deller earned a top-ten finish as she recorded a season-best in the shot put, Thursday afternoon on day one of the Penn Relays at Franklin Field.</div>
]]>
</Body>
<Summary>PHILADELPHIA � UMBC senior Amanda Deller earned a top-ten finish as she recorded a season-best in the shot put, Thursday afternoon on day one of the Penn Relays at Franklin Field.</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7946</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28287/guest@my.umbc.edu/0e491f2eec286ca1051853664d06cbd1/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 25 Apr 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28270" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28270">
<Title>Eckhoff Named America East Winter Scholar-Athlete for Second-Straight Year</Title>
<Body>
<![CDATA[
    <div class="html-content">CAMBRIDGE, Mass. � UMBC senior diver Andrew Eckhoff has been named an America East Winter Scholar-Athlete for the second-straight year, the conference office announced on Thursday afternoon.  He is the lone repeat Scholar-Athlete from the Winter 2011-12 squad.</div>
]]>
</Body>
<Summary>CAMBRIDGE, Mass. � UMBC senior diver Andrew Eckhoff has been named an America East Winter Scholar-Athlete for the second-straight year, the conference office announced on Thursday afternoon.  He...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7945</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28270/guest@my.umbc.edu/51ac3362083ad13facb0f2c5ce9cfa14/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 25 Apr 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28229" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28229">
<Title>Playoff Berth on the Line as Men's Lacrosse Hosts Binghamton on "Senior Day" Saturday Afternoon</Title>
<Body>
<![CDATA[
    <div class="html-content">The UMBC men's lacrosse team is one of five America East Conference squads battling for a playoff berth as the regular season comes to a conclusion on Saturday, April 27. Tenth-ranked Albany (10-3, 4-0) has sewn up the top seed, but everything else is up for grabs as the Retrievers (5-7, 2-2) host Binghamton (5-8, 1-3) at 3:40 p.m. UMBC's 14 seniors will be honored in pregame ceremonies and coverage is available on Q1370 and via <a href="http://www.umbcretrievers.tv">www.umbcretrievers.tv</a>. With a win, the Retrievers would clinch a spot in the four-team playoff for the tenth time in ten league seasons.</div>
]]>
</Body>
<Summary>The UMBC men's lacrosse team is one of five America East Conference squads battling for a playoff berth as the regular season comes to a conclusion on Saturday, April 27. Tenth-ranked Albany...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7942</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28229/guest@my.umbc.edu/c1c4fdee133a5fc1a015de5da31a89a6/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 25 Apr 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28266" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28266">
<Title>Women's Lacrosse Looks to Clinch Playoff Spot on Senior Day Versus New Hampshire</Title>
<Body>
<![CDATA[
    <div class="html-content">UMBC women's lacrosse hosts New Hampshire on Saturday, April 27 as part of a Retriever lacrosse doubleheader. Women's lacrosse opens up the afternoon as it looks to clinch its fourth-straight playoff berth on Senior Day at the UMBC Stadium. First draw is set for noon, followed by men's lacrosse playing host to Binghamton at 3:30 p.m.</div>
]]>
</Body>
<Summary>UMBC women's lacrosse hosts New Hampshire on Saturday, April 27 as part of a Retriever lacrosse doubleheader. Women's lacrosse opens up the afternoon as it looks to clinch its fourth-straight...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7944</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28266/guest@my.umbc.edu/5f74e806d2fbed35f36098c0cca7ef46/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 25 Apr 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28240" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28240">
<Title>Women's Soccer Has First Annual Alumni vs. Alumni Game</Title>
<Body>
<![CDATA[
    <div class="html-content">UMBC women's soccer team hosted its second Alumni Game under head coach Leslie Wray, its first annual alumni versus alumni game with Wray at the helm. Twenty-five former players were in attendance for the event on Saturday afternoon at Retriever Soccer Park.</div>
]]>
</Body>
<Summary>UMBC women's soccer team hosted its second Alumni Game under head coach Leslie Wray, its first annual alumni versus alumni game with Wray at the helm. Twenty-five former players were in attendance...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=7943</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28240/guest@my.umbc.edu/43b25a795e943ddb201503b5b4cdfe01/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 25 Apr 2013 01:00:00 -0400</PostedAt>
</NewsItem>

</News>
