<?xml version="1.0"?>
<News hasArchived="true" page="8301" pageCount="10825" pageSize="10" timestamp="Sun, 20 Sep 2026 08:02:50 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8301&amp;range=2">
<NewsItem contentIssues="true" id="36693" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36693">
<Title>Lightening Your Responsive Website Design With RESS</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><em><strong>Editor’s Note</strong>: This article features just one of the many solutions for creating high-performance mobile websites. We suggest that you review different approaches such as <a href="http://mobile.smashingmagazine.com/2013/06/12/building-a-responsive-web-application/" rel="nofollow external" class="bo">Building A Responsive Web App</a>, <a href="http://mobile.smashingmagazine.com/2013/04/09/improve-mobile-support-with-server-side-enhanced-responsive-design/" rel="nofollow external" class="bo">Improving Mobile Support</a> and <a href="http://mobile.smashingmagazine.com/2013/04/03/build-fast-loading-mobile-website/" rel="nofollow external" class="bo">Making Your Websites Faster</a> before choosing a particular solution.</em></p>
    <p>This article explains how to use RESS (responsive design with server-side components) to make significant performance and reach improvements to a website for both mobile and desktop devices alike. <strong>This technique requires just a few lines of code</strong>, some simple configuration and no ongoing maintenance.</p>
    <p>Your website will change from one that works on desktops, tablets and smartphones to one that works on almost anything anywhere and loads faster in all cases. It’s hard to over-emphasize the importance of this, but if you need a good case study, <a href="http://blog.chriszacharias.com/page-weight-matters" rel="nofollow external" class="bo">read about what happened to YouTube</a> when Google lightened its pages (spoiler: entire new territories opened up to it).</p>
    <p>The following three screenshots show a sample website with increasing levels of RESS optimization being applied to it and the resulting overall page sizes:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_original.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_original_r2.png" style="max-width: 100%; height: auto;"></a><br><em>Original: 1,027 KB (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_original.png" rel="nofollow external" class="bo">large preview</a>)</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_partial.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_step1_r2.png" style="max-width: 100%; height: auto;"></a><br><em>Partial optimization: 253 KB (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_partial.png" rel="nofollow external" class="bo">large preview</a>)</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_full.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_step3_r2.png" style="max-width: 100%; height: auto;"></a><br><em>Full optimization: 153 KB (<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/07/iphone_screenshot_full.png" rel="nofollow external" class="bo">large preview</a>)</em></p>
    <p>The discerning reader will note that the screenshots all look the same, and that’s the whole point: The optimization procedure we’ll be applying ensures that <strong>the optics of the website remain intact</strong>, while improving the user experience significantly due to the smaller page size. In fact, the screenshots are <em>not</em> exactly the same (click to view them at native size), but the slight differences in the quality of the images tend to go unnoticed on phone screens.</p>
    <p>Language issues aside, making a website truly accessible worldwide usually comes with two problems:</p>
    <ul>
    <li>
    <strong>Diversity of devices</strong><br>
    Remember what the first two W’s in WWW stand for? A truly global website should work on any devices that your customers use, with varying connectivity standards, world-wide.</li>
    <li>
    <strong>Constrained connectivity</strong><br>
    Many places are not well connected to the Internet, whether in terms of capacity, data plans, etc. This problem affects people living in modern well-connected cities as much as people in less developed rural areas.</li>
    </ul>
    <p>This article will help your website break through this glass ceiling (or floor) and enable everyone everywhere to reach your content with equal ease. Note that we’ll be using open-source software in conjunction with a device-detection library to achieve this goal; there are many device-detection solutions out there (such as WURFL, <a href="http://openddr.org" rel="nofollow external" class="bo">OpenDDR</a> and <em>DeviceAtlas</em> — I was involved in developing the latter one).</p>
    <p>We’ll demonstrate three levels of optimization, each building on the previous one, but each of which can be implemented separately, too. These optimizations will take on the following:</p>
    <ol>
    <li>Reduce image payload (the biggest effect),</li>
    <li>Reduce JavaScript and CSS payload,</li>
    <li>Further optimize based on bandwidth detection.</li>
    </ol>
    <p>Before we begin, let’s confirm <em>why</em> this process is necessary.</p>
    <h3>Background On Responsive Web Design And RESS</h3>
    <p>Responsive Web design is fast becoming the preferred method for making a website mobile-friendly, and with good reason. For many websites, it achieves a reasonable balance between mobile-friendliness and ease of implementation.</p>
    <p>But design isn’t just about appearance, and the main problem that we all are struggling with in Responsive Web design is that by “default” (when using the simplest way to display and hide containers with <code>display: none;</code>) all devices are sent the same payload. It means that devices with low-resolution screens are sent the same images as those sent to high-resolution devices, even though they can’t show them at their native resolution. This is inefficient at best and market-limiting at worst. The result is a page that works well on high-end well-connected devices with generous data plans.</p>
    <p>Many attempts have been made to solve this problem, with varying levels of effectiveness. Probably the most promising approach has been to have the browser determine the most appropriate image version to fetch. The W3C has an <a href="http://www.w3.org/community/respimg/" title="responsive images group" rel="nofollow external" class="bo">ongoing initiative</a> to standardize an approach, but this likely won’t be commonplace in browsers within the next year or so. The candidate solutions — the new <code>&lt;picture&gt;</code> element and new <code>srcset</code> attribute for the <code>&lt;img&gt;</code> element — each has its own issues and benefits. Rather than discuss them here, I suggest reading <a href="http://twitter.com/grigs" rel="nofollow external" class="bo">Jason Grigsby</a>’s “<a href="http://blog.cloudfour.com/the-real-conflict-behind-picture-and-srcset/" rel="nofollow external" class="bo">The Real Conflict Behind <code>&lt;picture&gt;</code> and @srcset</a>.” In the meantime, polyfills such as <a href="http://twitter.com/borismus" rel="nofollow external" class="bo">Boris Smus</a>’ <a href="https://github.com/borismus/srcset-polyfill/" rel="nofollow external" class="bo">srcset-polyfill</a> will mimic some of the proposed attribute’s behavior.</p>
    <p>We’ll describe a relatively straightforward approach to minimizing page weight in RWD using a touch of server-side magic. We’ll use device detection on the server to optimize images when they’re requested by the browsers by reducing their dimensions to the optimum size.</p>
    <p>Some people use <a href="http://www.sencha.com/learn/how-to-use-src-sencha-io/" rel="nofollow external" class="bo">Sencha.io Src</a> (neé TinySRC) and other image-resizing libraries, but doing this yourself is just as easy, and then you’ll have total control over the result. Yes, this does exchange one external dependancy for another, but it also enables you to optimize much more than images. We’ll use <a href="https://developers.google.com/speed/pagespeed/mod" rel="nofollow external" class="bo">PageSpeed</a> for this purpose, an open-source project from Google.</p>
    <p>PageSpeed is a Web server module that applies multiple best practices to a website without forcing the developer to change their workflow. These optimizations include combining and minifying JavaScript and CSS files, inlining small resources, removing unused meta data from each file, and re-encoding images to the most efficient format accessible to the user. PageSpeed is available for both Apache and NGINX. We’ll take advantage of a little-used image-resizing feature of PageSpeed.</p>
    <p>The resulting weight savings are dramatic and require very little work. If you follow the steps in this article, you should be able to cut down on image weight many times over with three easy steps, only four lines of code and one line of configuration.</p>
    <p>This article assumes that you are using the Apache Web server and are comfortable with some light PHP coding, but the techniques will work with <a href="http://nginx.org" rel="nofollow external" class="bo">NGINX</a> also, and any programming language.</p>
    <h3>The Website</h3>
    <p>Our sample website is based on Twitter’s open-source <a href="http://twitter.github.io/bootstrap/" rel="nofollow external" class="bo">Bootstrap</a> Web framework, to save the world from my design skills. I created a single-page “website” for a fictional mobile phone store. The page is visually rich, with an <a href="http://httparchive.org/trends.php" rel="nofollow external" class="bo">industry-average breakdown</a> of HTML, images and JavaScript. This page is based on a lightly modified version of Bootstrap’s <a href="http://twitter.github.io/bootstrap/examples/carousel.html" rel="nofollow external" class="bo">carousel template</a>. Here is the page in its entirety, as you would see it in a desktop browser:</p>
    <p><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/full_site_r.png" alt="full website image" style="max-width: 100%; height: auto;"></p>
    <p>The website has an approximately industry-average payload that breaks down as follows:</p>
    <table>
    <thead>
    <tr>
    <th><strong>Component</strong></th>
    <th><strong>Size on disk</strong></th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>HTML</td>
    <td>12 KB</td>
    </tr>
    <tr>
    <td>Image</td>
    <td>941 KB (73%)</td>
    </tr>
    <tr>
    <td>JavaScript (mostly minified)</td>
    <td>159 KB</td>
    </tr>
    <tr>
    <td>CSS</td>
    <td>170 KB</td>
    </tr>
    <tr>
    <td><strong>Total</strong></td>
    <td><strong>1,281 KB</strong></td>
    </tr>
    </tbody>
    </table>
    <h3>Instructions</h3>
    <h4>Step 1</h4>
    <p>Install PageSpeed. This is best done by following <a href="https://developers.google.com/speed/pagespeed/module/download" rel="nofollow external" class="bo">Google’s instructions</a>. The installation process will usually activate the module for the default website, but you might need to <a href="https://developers.google.com/speed/pagespeed/module/configuration" rel="nofollow external" class="bo">ensure that it works with your virtual hosts</a>, if they’re configured. Basically, you just have to add a line to each one, or get them all to inherit from the default configuration server-wide.</p>
    <p>Next, restart your Web server.</p>
    <h4>Step 2</h4>
    <p>Get a device detection library set up. In our case, if you are using DeviceAtlas (which we’ll use just as an example here), you’ll need to enter your license key in the <code>DeviceAtlasCloud/Client.php</code> file after you unpack the ZIP file. We then can use DeviceAtlas to determine the optimal size for images.</p>
    <h4>Step 3</h4>
    <p>Copy DeviceAtlas’ PHP file to a directory where it is executable by the Web server. In this case, I’ve created a directory in the root of the website, named <code>DeviceAtlasCloud</code>. Enter the following code at the top of your HTML file or website template to set up a couple of variables that we can use throughout the page. If you’re using a different solution, then the syntax will vary but the same properties should be available.</p>
    <pre><code>&#x000A;    &lt;?php&#x000A;      include 'DeviceAtlasCloud/Client.php'; // instantiate client&#x000A;      $results = DeviceAtlasCloudClient::getDeviceData(); // fetch props &#x000A;      $props = $results['properties']; // store result&#x000A;      // set $width to correct width or "" if unknown &#x000A;      $width = (isset($props['displayWidth'])) ? $props['displayWidth'] :""; &#x000A;    ?&gt;&#x000A;    </code></pre>
    <p>The impact of this fetching of properties should be no more than a few milliseconds if everything is set up correctly as most solutions will cache data.</p>
    <h4>Step 4</h4>
    <p>The final step is to give all of your images that might need resizing a <code>width</code> attribute, set to use the <code>$width</code> variable:</p>
    <pre><code>&#x000A;    &lt;img src="<a href="http://media.smashingmagazine.com/wp-content/uploads/2013/07slide-01.jpg">http://media.smashingmagazine.com/wp-content/uploads/2013/07slide-01.jpg</a>" width="&lt;?php echo $width; ?&gt;" alt="image description" /&gt;&#x000A;    </code></pre>
    <p>Thus, images will now have their <code>width</code> attribute set from the <code>$width</code> variable, which is set automatically to the maximum display width for each device. Then, PageSpeed will notice the <code>width="…"</code> tag for each image and scale it down if necessary, replacing the image source’s attribute with a reference to a resized version of the same thing. There is no need to set the <code>height</code> attribute because PageSpeed automatically retains the aspect ratio. Resized images are cached, so there isn’t really any significant impact on the server. Refer to the PageSpeed configuration notes below for more fine-grained control of this cache.</p>
    <p>Add this variable <code>width</code> tag only to images that will need to be resized for each device; that is, don’t add it to images that are already small enough (such as bullets and icons). Manually resizing images that require special attention might also be wise. Also, be aware that the <code>width</code> attribute for each image will need to play nice with any CSS used for image styling. Anyone using a content management system (CMS) might have to use a different technique for this, depending on how much access the CMS gives them to the underlying HTML.</p>
    <p>Background images might require a different approach, depending on how they are implemented on the website. Still, PageSpeed will read inline <code>style="…"</code> tags.</p>
    <h3>Result</h3>
    <p>With those changes made, it’s time to see how the website looks. To measure the impact of this step, I tested the download speed of our website for different devices and network speeds, using the ever-useful <a href="http://www.charlesproxy.com" rel="nofollow external" class="bo">Charles Proxy</a> as well as real devices that I forced into various network configurations to reduce available bandwidth.</p>
    <p>Before making the changes, the page’s overall size was 1,027 KB, regardless of device (i.e. a <em>dynamic range</em> of exactly 1.0). The breakdown is as follows:</p>
    <table>
    <thead>
    <tr>
    <th><strong>Component</strong></th>
    <th><strong>Size on disk</strong></th>
    <th><strong>Size over network</strong></th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>HTML</td>
    <td>12 KB</td>
    <td>3 KB</td>
    </tr>
    <tr>
    <td>Images</td>
    <td>941 KB</td>
    <td>941 KB (73%)</td>
    </tr>
    <tr>
    <td>JavaScript</td>
    <td>159 KB</td>
    <td>55 KB</td>
    </tr>
    <tr>
    <td>CSS</td>
    <td>170 KB</td>
    <td>27 KB</td>
    </tr>
    <tr>
    <td><strong>Total</strong></td>
    <td><strong>1,281 KB</strong></td>
    <td><strong>1,027 KB</strong></td>
    </tr>
    </tbody>
    </table>
    <p>This is the over-the-network size of the page, thanks to gzip compression from Apache. The RWD makes the page <em>look</em> OK on small screens, but it isn’t an efficient use of network resources because the original images are about five times wider (in pixels) than the average phone screen and, hence, impossible to display at full resolution without panning. In fact, the sheer size of the page means that it doesn’t even finish loading on some devices.</p>
    <p>After following the above steps, the payload breakdown for an iPhone is this:</p>
    <table>
    <thead>
    <tr>
    <th><strong>Component</strong></th>
    <th><strong>Size over network</strong></th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>HTML</td>
    <td>3 KB</td>
    </tr>
    <tr>
    <td>Images</td>
    <td>177 KB</td>
    </tr>
    <tr>
    <td>JavaScript</td>
    <td>51 KB</td>
    </tr>
    <tr>
    <td>CSS</td>
    <td>21 KB</td>
    </tr>
    <tr>
    <td><strong>Total</strong></td>
    <td><strong>253 KB</strong></td>
    </tr>
    </tbody>
    </table>
    <p>So, the page has dropped to one fourth of its original size, with image sizes accounting for the majority of this reduction. On devices with lower-resolutions screens, further gains are possible; the same page on a Nokia feature phone (Nokia 6230) now has a total image weight of just 89 KB, a large saving compared to the original. Importantly, the before and after websites have <strong>no perceptible difference to the user</strong>; the image data that was removed cannot easily be seen by the mobile user.</p>
    <p>After following the four steps outlined here, the page’s weight now varies between 1,027 KB and about 150 KB. In other words, the page has gone from having a <em>dynamic range</em> factor of exactly 1.0 to a decent 6.8, with the image payload shrinking from 941 KB to just 80 KB. This will have a huge impact on real-world customers:</p>
    <ul>
    <li>Much faster page-loading times lead to better engagement and fewer drop-offs.</li>
    <li>A smaller impact on the user’s data plan leads to more return visits.</li>
    <li>Wider device and network compatibility leads to improved reach.</li>
    </ul>
    <p>Here’s the loading-time effect on a Retina iPhone using 3G and 2.5G networks:</p>
    <table>
    <thead>
    <tr>
    <th><strong>Device and network</strong></th>
    <th><strong>Before</strong></th>
    <th><strong>After</strong></th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>iPhone 3G</td>
    <td>14s</td>
    <td>6s (2.3× faster)</td>
    </tr>
    <tr>
    <td>iPhone GPRS</td>
    <td>2m 30s</td>
    <td>35s (4.3× faster)</td>
    </tr>
    </tbody>
    </table>
    <p>The results on Android devices are similar. On lower-end devices with smaller screens, more dramatic improvements are possible because the image-resizing gains are greater.</p>
    <h3>Going Further, Part 1: JavaScript And CSS</h3>
    <p>So far, we’ve looked only at the main source of bloat on pages: images. But screen size shouldn’t be the sole factor in our methods — user contexts and constraints demand more of a multi-device publishing strategy because many additional optimizations are to be made. For example, if you know that the requesting device doesn’t support JavaScript or rich CSS, then ditching them might make sense. This is quite straightforward to accomplish.</p>
    <p>If we add another line of PHP to the top of our HTML file, we can do a little more.</p>
    <pre><code>&#x000A;    $highEndDevice = (isset($properties['browserRenderingEngine']) &amp;&amp; in_array($properties['browserRenderingEngine'], array('Gecko', 'Trident', 'WebKit', 'Presto')));&#x000A;    </code></pre>
    <p>We are making the determination of a low-end device based on its rendering engine. This is a crude rule but good enough to demonstrate a point. Based on this variable, we can now selectively include some resources only if they’re beneficial. In this case, if the device appears to be low end, we’ll jettison the CSS and JavaScript, because low-end phones will have problems with both the file size and the rendering of this CSS, and they usually won’t run the JavaScript:</p>
    <pre><code>&#x000A;    &lt;?php if ($highEndDevice): ?&gt;&#x000A;        &lt;link href="css/bootstrap.css" rel="stylesheet"&gt;&#x000A;        &lt;link href="css/bootstrap-responsive.css" rel="stylesheet"&gt;&#x000A;        &lt;link href="css/additional.css" rel="stylesheet"&gt;&#x000A;    &lt;?php endif; ?&gt; &#x000A;    </code></pre>
    <p>And now the JavaScript:</p>
    <pre><code>&#x000A;    &lt;?php if ($highEndDevice): ?&gt;&#x000A;        &lt;!-- Le javascript&#x000A;        ================================================== --&gt;&#x000A;        &lt;!-- Placed at the end of the document so the pages load faster --&gt;&#x000A;        &lt;script src="js/jquery.js"&gt;&lt;/script&gt;&#x000A;        .&#x000A;        .&#x000A;    &lt;?php endif; ?&gt;&#x000A;    </code></pre>
    <p>This saves a further 72 KB (quite a reduction from 253 KB!) and actually makes the page look better on low-end devices (see the screenshot at the end of this article), in addition to being quicker to render. Now, when viewed on a low-end device, the page’s weight is as follows:</p>
    <table>
    <thead>
    <tr>
    <th><strong>Component</strong></th>
    <th><strong>Size over network</strong></th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>HTML</td>
    <td>3 KB</td>
    </tr>
    <tr>
    <td>Images</td>
    <td>50 KB</td>
    </tr>
    <tr>
    <td>JavaScript</td>
    <td>0 KB</td>
    </tr>
    <tr>
    <td>CSS</td>
    <td>0 KB</td>
    </tr>
    <tr>
    <td><strong>Total</strong></td>
    <td><strong>53 KB</strong></td>
    </tr>
    </tbody>
    </table>
    <p>This means that our simple RWD page has gone from a fixed size of about 1 MB to a highly varying one that goes as low as about 50 KB, or 20 times smaller than the page we started with. Not a bad result for fewer than 10 lines of code. The net result is that our page is now viewable on almost anything, anywhere, from televisions to feature phones — and quickly! You might not be targeting televisions and feature phones, but now they will come to you.</p>
    <p><strong>Note:</strong> In testing this approach on real devices, HTML5’s <code>doctype</code> tag did not cause problems. The page loaded on pretty much every device I tried.</p>
    <h3>Going Further, Part 2: Connectivity Detection</h3>
    <p>Most of the weight savings so far hinge on certain low-end mobile devices not needing full-resolution images, rich styling or JavaScript. This set of techniques is highly effective, but we can do more to cater to our users and extend our reach. Desktop devices sometimes need help, too. Anyone who has used a laptop over airport Wi-Fi or in a poorly connected country knows just how frustrating viewing large pages is.</p>
    <p>Connectivity detection comes to the rescue here. The idea is that, if you can detect the connectivity available to the requesting browser, then you can apply similar image-compression techniques <strong>dynamically</strong> according to the client’s available bandwidth. This can make a huge difference to the browsing experience, at some cost to page fidelity: If we detect a poor connection, then images can be aggressively compressed without reducing their pixel size. The result is a page that loads much faster, with only a slight impact on the experience — the page’s layout and overall appearance will be preserved. Depending on the compression levels, many people won’t even notice.</p>
    <p>The W3C is working on making bandwidth information available to the browser, but the <a href="https://dvcs.w3.org/hg/dap/raw-file/tip/network-api/Overview.html" rel="nofollow external" class="bo">Network Information API</a> is still in draft status and so won’t be widely deployed in the near future.</p>
    <p>In the meantime, we can use some server-side capabilities. DeviceAtlas incorporates a feature to do exactly this, enabling the developer to make useful decisions about what to send to the client when bandwidth is limited. For this example, we’ll do something simple yet effective: If the bandwidth available to the device is detected to fall below a certain threshold, then we will redirect the browser to a different virtual host. This virtual host will be served by the same Web server and will serve exactly the same page, but it will trigger a different set of options for PageSpeed. In this case, we’ll change the image-compression level from its default to something much lower — say, 20%. At this level, images will still be very recognizable and will fit the page’s layout but will be many times smaller in bytes.</p>
    <p>What follows is a simple way to achieve this, explained merely as a quick example of what is possible rather than as a definitive technique. First, add a new virtual host to your server’s configuration, and configure PageSpeed to use different settings for it. Then, restart your Web server. I am using <code>site.com</code> and <code>lo.site.com</code> as my virtual hosts. Note that the <code>DocumentRoot</code> is the same in each case — the exact same HTML is being served for both virtual hosts.</p>
    <pre><code>&#x000A;    &lt;VirtualHost *:80&gt;&#x000A;        ServerAdmin webmaster@localhost&#x000A;        ServerName site.com&#x000A;        DocumentRoot /var/www/site.com&#x000A;        ModPagespeed on&#x000A;    &lt;/VirtualHost&gt;&#x000A;    &#x000A;    &lt;VirtualHost *:80&gt;&#x000A;        ServerAdmin webmaster@localhost&#x000A;        ServerName lo.site.com&#x000A;        DocumentRoot /var/www/site.com&#x000A;        ModPagespeed on&#x000A;        ModPagespeedImageRecompressionQuality 20&#x000A;    &lt;/VirtualHost&gt;&#x000A;    </code></pre>
    <p>Next, add the connectivity-checking code to your website’s template. This is what switches the virtual host if connectivity appears to be poor:</p>
    <pre><code>&#x000A;    require_once 'DeviceAtlasNPC.php';        // check network performance&#x000A;    session_start();&#x000A;    $deviceAtlasNPC = new DeviceAtlasNPC();   // instantiate NPC&#x000A;    $quality = $deviceAtlasNPC-&gt;getQuality(); // test network performance&#x000A;    $path = $_SERVER['SCRIPT_NAME'];&#x000A;    &#x000A;    switch($quality) {&#x000A;        case DeviceAtlasNPC::HIGH_QUALITY:&#x000A;            if ($_SERVER['HTTP_HOST'] == 'lo.site.com') {&#x000A;                header("Location: <a href="http://site.com%22.%24path">http://site.com".$path</a> );&#x000A;            }&#x000A;            break;&#x000A;        case DeviceAtlasNPC::MEDIUM_QUALITY:&#x000A;            if ($_SERVER['HTTP_HOST'] == 'lo.site.com') {&#x000A;                header("Location: <a href="http://site.com%22.%24path">http://site.com".$path</a> );&#x000A;            }&#x000A;            break;&#x000A;        case DeviceAtlasNPC::LOW_QUALITY:&#x000A;            if ($_SERVER['HTTP_HOST'] == 'site.com') {&#x000A;                header("Location: <a href="http://lo.site.com%22.%24path">http://lo.site.com".$path</a> );&#x000A;            }&#x000A;            break;&#x000A;        default:&#x000A;    }&#x000A;    </code></pre>
    <p>Yes, the initial redirection to the low-bandwidth website does affect the loading time, but this penalty is far outweighed by the net savings in doing so, particularly for users with constrained bandwidth; high-bandwidth users should be almost unaffected. The cost of this redirection on a slow GPRS connection is approximately one second, but the resulting savings can add up to minutes.</p>
    <h3>Overall Results</h3>
    <p>So, let’s look at how this all comes together with the various optimizations, device types and connectivity options. The following table sums it all up.</p>
    <table>
    <thead>
    <tr>
    
    <th colspan="2"><strong>Original website</strong></th>
    <th colspan="2"><strong>Add image resizing</strong></th>
    <th colspan="2"><strong>Add adaptive JS and CSS</strong></th>
    </tr>
    </thead>
    <thead>
    <tr>
    
    <td>Page size</td>
    <td>Loading time</td>
    <td>Page size</td>
    <td>Loading time</td>
    <td>Page size</td>
    <td>Loading time</td>
    </tr>
    <tr>
    <td>Desktop (high-speed)</td>
    <td>1027 KB</td>
    <td>3s</td>
    <td>921 KB</td>
    <td>3s</td>
    <td>921 KB</td>
    <td>3s</td>
    </tr>
    <tr>
    <td>Desktop (56k modem)</td>
    <td>1027 KB</td>
    <td>3m 27s</td>
    <td>921 KB</td>
    <td>3m 14s</td>
    <td>921 KB</td>
    <td>2m 05s</td>
    </tr>
    <tr>
    <td>iPhone 3G</td>
    <td>1027 KB</td>
    <td>14s</td>
    <td>253 KB</td>
    <td>7s</td>
    <td>253 KB</td>
    <td>6s</td>
    </tr>
    <tr>
    <td>iPhone GPRS</td>
    <td>1027 KB</td>
    <td>2m 30s</td>
    <td>253 KB</td>
    <td>40s</td>
    <td>253 KB</td>
    <td>40s</td>
    </tr>
    <tr>
    <td>Feature phone (2G)</td>
    <td>1027 KB</td>
    <td>∞</td>
    <td>203 KB</td>
    <td>35s</td>
    <td>87 KB</td>
    <td>25s</td>
    </tr>
    </thead>
    </table>
    <table>
    <thead>
    <tr>
    
    <th colspan="2"><strong>Original website</strong></th>
    <th colspan="2"><strong>Add network adaptivity</strong></th>
    </tr>
    </thead>
    <thead>
    <tr>
    
    <td>Page size</td>
    <td>Loading time</td>
    <td>Page size</td>
    <td>Loading time</td>
    </tr>
    <tr>
    <td>Desktop (high-speed)</td>
    <td>1027 KB</td>
    <td>3s</td>
    <td>921 KB</td>
    <td>3s</td>
    </tr>
    <tr>
    <td>Desktop (56k modem)</td>
    <td>1027 KB</td>
    <td>3m 27s</td>
    <td>227 KB</td>
    <td>40s</td>
    </tr>
    <tr>
    <td>iPhone 3G</td>
    <td>1027 KB</td>
    <td>14s</td>
    <td>153 KB</td>
    <td>5s</td>
    </tr>
    <tr>
    <td>iPhone GPRS</td>
    <td>1027 KB</td>
    <td>2m 30s</td>
    <td>153 KB</td>
    <td>25s</td>
    </tr>
    <tr>
    <td>Feature phone (2G)</td>
    <td>1027 KB</td>
    <td>∞</td>
    <td>25 KB</td>
    <td>12s</td>
    </tr>
    </thead>
    </table>
    <p>These loading times are all worst-case scenarios, tested with an empty cache. Subsequent page loads as you traverse the website will feel much faster.</p>
    <p>With all of these optimizations in place, we now have a more sensible responsive design that scales dynamically in richness and size, from 1 MB all the way down to 25 KB, all in. The website incorporates the best of RWD and server-side optimizations to yield a <em>dynamic range</em> factor of over 40.</p>
    <p>The website is now <strong>responsive to multiple factors</strong>, not just one: screen size, device capabilities and network performance. As a result, the reach of this page has extended from desktop and smart devices in well-connected locations to almost everything, everywhere, regardless of connection type. Apart from getting our image size tags to populate dynamically, we didn’t have to do much work to make this happen.</p>
    <p>Website <strong>before optimization</strong> on various devices:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/before_1360x768.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/original_desktop_r.png" style="max-width: 100%; height: auto;"></a><br>
    <em>Desktop: 1360 × 768 pixels, page size 1,027 KB</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/before_320x480.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/original_iphone_r.png" style="max-width: 100%; height: auto;"></a><br>
    <em>iPhone: 320 × 480 pixels, page size 1,027 KB</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/before_240x320.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/original_6300_r.png" style="max-width: 100%; height: auto;"></a><br>
    <em>Nokia 6300: 240 × 320 pixels, page size 1,027 KB</em></p>
    <p>Website <strong>after optimization</strong> on various devices:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/10/after_1360x768.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/steps1-2_desktop_r.png" style="max-width: 100%; height: auto;"></a><br>
    <em>Desktop: 1360 × 768 pixels, page size 1,027 KB</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/after_320x480.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/steps1-2_iphone_r.png" style="max-width: 100%; height: auto;"></a><br>
    <em>iPhone: 320 × 480 pixels, page size 153 KB</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/08/after_240x320.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/steps1-2_6300_r.png" style="max-width: 100%; height: auto;"></a><br>
    <em>Nokia 6300: 240 × 320 pixels, page size 25 KB</em></p>
    <p>Circling back to the page linked at the top of this article, Chris Zacharias, speaking of his experience optimizing YouTube’s page weight, <a href="http://blog.chriszacharias.com/page-weight-matters" rel="nofollow external" class="bo">says the following</a>:</p>
    <blockquote><p>“[Previously], entire populations of people simply could not use YouTube because it took too long to see anything… By keeping your code small and lightweight, you can literally open your product up to new markets.”</p></blockquote>
    <p>By using some of the techniques outlined in this article, you might be able to achieve similar results for your website.</p>
    <ul>
    <li>
    <a href="http://mobiforge.com/files/ress_example.zip" rel="nofollow external" class="bo">Download the source of the various versions of the sample website</a> (ZIP), mobiForge</li>
    </ul>
    <h4>Notes</h4>
    <p>PageSpeed has a couple of other useful <a href="http://mobiforge.com/page/mod-pagespeed-configuration-notes" rel="nofollow external" class="bo">tricks up its sleeve</a>.</p>
    <p><em>Many thanks to <a href="https://twitter.com/jonathanheron" rel="nofollow external" class="bo">Jonathan Heron</a> of <a href="http://mccannblue.ie" rel="nofollow external" class="bo">McCannBlue</a> for reviewing this article.</em></p>
    <p><em>(al, il)</em></p>
    <hr>
    <p><small>© Ronan Cremin for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        Editor’s Note: This article features just one of the many solutions for creating high-performance mobile websites. We suggest that you review different approaches such as Building A...</Summary>
<Website>http://www.smashingmagazine.com/2013/10/08/lightening-your-responsive-website-design-with-ress/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36693/guest@my.umbc.edu/e89323c8b4780ea095f14823db56df3c/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mobile</Tag>
<Tag>mysql</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>Tue, 08 Oct 2013 08:55:26 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36694" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36694">
<Title>Bits Blog: A Woman to Serve on Twitter&#8217;s Board? Here Are 25</Title>
<Body>
<![CDATA[
    <div class="html-content">As Twitter faces criticism for its all-white, all-male board, tech insiders, executive recruiters and academics suggested dozens of qualified women.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F10%2F08%2Fa-woman-to-serve-on-twitters-board-here-are-25%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Woman+to+Serve+on+Twitter%E2%80%99s+Board%3F+Here+Are+25" 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%2F2013%2F10%2F08%2Fa-woman-to-serve-on-twitters-board-here-are-25%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Woman+to+Serve+on+Twitter%E2%80%99s+Board%3F+Here+Are+25" 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%2F2013%2F10%2F08%2Fa-woman-to-serve-on-twitters-board-here-are-25%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Woman+to+Serve+on+Twitter%E2%80%99s+Board%3F+Here+Are+25" 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%2F2013%2F10%2F08%2Fa-woman-to-serve-on-twitters-board-here-are-25%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Woman+to+Serve+on+Twitter%E2%80%99s+Board%3F+Here+Are+25" 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%2F2013%2F10%2F08%2Fa-woman-to-serve-on-twitters-board-here-are-25%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Woman+to+Serve+on+Twitter%E2%80%99s+Board%3F+Here+Are+25" 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/176968243768/u/0/f/640387/c/34625/s/32321af3/sc/38/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968243768/u/0/f/640387/c/34625/s/32321af3/sc/38/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968243768/u/0/f/640387/c/34625/s/32321af3/sc/38/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968243768/u/0/f/640387/c/34625/s/32321af3/sc/38/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968243768/u/0/f/640387/c/34625/s/32321af3/sc/38/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968243768/u/0/f/640387/c/34625/s/32321af3/sc/38/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176968243768/u/0/f/640387/c/34625/s/32321af3/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968243768/u/0/f/640387/c/34625/s/32321af3/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>As Twitter faces criticism for its all-white, all-male board, tech insiders, executive recruiters and academics suggested dozens of qualified women.      </Summary>
<Website>http://bits.blogs.nytimes.com/2013/10/08/a-woman-to-serve-on-twitters-board-here-are-25/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36694/guest@my.umbc.edu/73372357af8b19144fc5610782f0d5bb/api/pixel</TrackingUrl>
<Tag>ahrendts-angela</Tag>
<Tag>beers-charlotte</Tag>
<Tag>boards-of-directors</Tag>
<Tag>costolo-dick</Tag>
<Tag>gallop-cindy</Tag>
<Tag>greene-diane</Tag>
<Tag>leive-cindi</Tag>
<Tag>lyne-susan</Tag>
<Tag>millard-wenda-harris</Tag>
<Tag>new</Tag>
<Tag>online-advertising</Tag>
<Tag>technology</Tag>
<Tag>twitter</Tag>
<Tag>twitters-i-p-o-filing</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>Tue, 08 Oct 2013 08:38:09 -0400</PostedAt>
<EditAt>Tue, 08 Oct 2013 16:30:27 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36691" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36691">
<Title>The Simple Things You Should Be Doing Every Morning</Title>
<Tagline>Wellness Article of the Week: Huffington Post Healthy Living</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p>"The alarm sounds and you're off: Onto checking emails, finding car keys and, if you're lucky, brushing your hair.</p>
    <p>The madness, the rush of it all -- it's got to stop. Adding intention into your morning routine is in your best interest: It sets the tone for the rest of your day, and may ultimately reflect how productive, happy and calm you'll be for your following waking hours. </p>
    <p>You have the power to wake up on the right side of the bed every single morning for the rest of your life.</p>
    <p>"If the first thing you do in the morning isn’t 100 percent for you, selfishly, then the rest of your day will be spent not doing anything for you," writes Micah Baldwin, founder and CEO of Graphicly. "Find something that is yours, and yours alone," Baldwin advises. He personally sets two alarms separated by 30 minutes and gets out of bed at the sound of the second. The ritual has him appreciating sleep. <br></p>
    <p>Take a cue from Baldwin. There are several things you can do, without leaving your bed, that'll ensure a fantastic day ahead. So before you roll out of the comfort of your warm, cozy nest, consider these eight rituals below."<br></p>
    <p><a href="http://www.huffingtonpost.com/2013/10/07/morning-rituals-worth-adopting_n_4025473.html?utm_hp_ref=healthy-living" rel="nofollow external" class="bo">Read more...</a></p>
    </div>
]]>
</Body>
<Summary>"The alarm sounds and you're off: Onto checking emails, finding car keys and, if you're lucky, brushing your hair.  The madness, the rush of it all -- it's got to stop. Adding intention into your...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36691/guest@my.umbc.edu/66e77186734fad9a0d5d67c59c71e9a0/api/pixel</TrackingUrl>
<Tag>health</Tag>
<Tag>meditation</Tag>
<Tag>sleep</Tag>
<Tag>wellness</Tag>
<Tag>yoga</Tag>
<Group token="wellness">Wellness Initiative</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/wellness</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xsmall.png?1504100162</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/original.jpg?1504100162</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xxlarge.png?1504100162</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xlarge.png?1504100162</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/large.png?1504100162</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/medium.png?1504100162</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/small.png?1504100162</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xsmall.png?1504100162</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/172/7c77f048a2d02e784926184a82686fa0/xxsmall.png?1504100162</AvatarUrl>
<Sponsor>Wellness Initiative</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/691/52158d6f6f2a8228033b2dd5924de7f7/xxlarge.jpg?1381235275</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/691/52158d6f6f2a8228033b2dd5924de7f7/xlarge.jpg?1381235275</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/691/52158d6f6f2a8228033b2dd5924de7f7/large.jpg?1381235275</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/691/52158d6f6f2a8228033b2dd5924de7f7/medium.jpg?1381235275</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/691/52158d6f6f2a8228033b2dd5924de7f7/small.jpg?1381235275</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/691/52158d6f6f2a8228033b2dd5924de7f7/xsmall.jpg?1381235275</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/691/52158d6f6f2a8228033b2dd5924de7f7/xxsmall.jpg?1381235275</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 08 Oct 2013 08:29:42 -0400</PostedAt>
<EditAt>Tue, 08 Oct 2013 08:30:06 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36721" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36721">
<Title>S.E.C. Investigates Accounting Practices at Xerox Unit</Title>
<Body>
<![CDATA[
    <div class="html-content">Xerox said the Securities and Exchange Commission is investigating accounting practices at Affiliated Computer Services, which it bought in 2010 for $5.5 billion.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2Freuters%2F2013%2F10%2F08%2Fbusiness%2F08reuters-xerox-sec.html%3Fpartner%3Drss%26emc%3Drss&amp;t=S.E.C.+Investigates+Accounting+Practices+at+Xerox+Unit" 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%2Freuters%2F2013%2F10%2F08%2Fbusiness%2F08reuters-xerox-sec.html%3Fpartner%3Drss%26emc%3Drss&amp;t=S.E.C.+Investigates+Accounting+Practices+at+Xerox+Unit" 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%2Freuters%2F2013%2F10%2F08%2Fbusiness%2F08reuters-xerox-sec.html%3Fpartner%3Drss%26emc%3Drss&amp;t=S.E.C.+Investigates+Accounting+Practices+at+Xerox+Unit" 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%2Freuters%2F2013%2F10%2F08%2Fbusiness%2F08reuters-xerox-sec.html%3Fpartner%3Drss%26emc%3Drss&amp;t=S.E.C.+Investigates+Accounting+Practices+at+Xerox+Unit" 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%2Freuters%2F2013%2F10%2F08%2Fbusiness%2F08reuters-xerox-sec.html%3Fpartner%3Drss%26emc%3Drss&amp;t=S.E.C.+Investigates+Accounting+Practices+at+Xerox+Unit" 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>
    </div>
]]>
</Body>
<Summary>Xerox said the Securities and Exchange Commission is investigating accounting practices at Affiliated Computer Services, which it bought in 2010 for $5.5 billion.      </Summary>
<Website>http://www.nytimes.com/reuters/2013/10/08/business/08reuters-xerox-sec.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36721/guest@my.umbc.edu/9b8bac979e456cfbcd90004966bd02c9/api/pixel</TrackingUrl>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>xerox-corporation-xrx-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>Tue, 08 Oct 2013 08:02:49 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36690" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36690">
<Title>Find out if you&#8217;re undercharging</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/10/thumbnail4.jpg" width="200" height="160" style="max-width: 100%; height: auto;">One of the hardest parts of starting your business or freelancing is trying to figure out what you should charge. Years ago after accepting pennies on the dollar for work, I decided I wanted to get really serious about freelancing. I wanted to dive in headfirst and never look back. But I didn’t know what to charge.</p> <p>So, I did what any real professional would do and I Google’d it. There were countless blogs and articles that attempted to break pricing down and give me a good idea about what I should charge. It was all too much for me to process until I just decided to charge what I felt was good and increase steadily each month.</p> <p>Pricing is a tough area for some of us, especially those of us who are passionate about the work. Many of us wouldn’t mind doing work for free just because we like it so much, but then, that’s irresponsible. So again, we’re left with the age old question, “What should I charge”?</p> <p> </p> <h1>YourRate.co</h1> <p>That’s where YourRate.co comes in. It’s a no-nonsense calculator that tells you how much you should charge. They ask 3 simple questions: how much do you want to make per month? How many hours a week do you want to work? And how many weeks do you want off a year? After inputting the info, you’ll get a figure that gives you your hourly rate.</p> <p>The key to YourRate’s approach? It’s not about what the market will bare, it’s about what you’re worth.</p> <p><strong>Pro:</strong> It’s simple. It was created solely to figure out how much a freelancer should make an hour.</p> <p><strong>Cons:</strong> It doesn’t include expenses. And this is really minor, but be aware that you want to factor that type of thing into your desired income per month. It’s no biggie to include on your own, but it’s definitely something you’ll want to think about. However, the calculator does double your rate for some expenses such as taxes.</p> <p><a href="http://yourrate.co" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/07/yourrate.jpg" width="650" alt="Find out if youre undercharging" style="max-width: 100%; height: auto;"></a> </p> <p>Here’s a picture of my ideals. I’m dreaming, but obviously you need to make sure these are figures you’re comfortable with and go from there. You also may want to see how this fits for you if you don’t do hourly and only do flat rates (like myself). The idea of this website is obviously to get you to value yourself more and charge more for what you desire. It’s all too easy to fall into the trap of charging what ‘the guy down the street’ charges; you’re not the guy down the street, if you’re not meeting your goals what <em>are</em> you doing?</p> <p> </p> <p><em><strong>Are you undercharging? How do you calculate your rate? Let us know in the comments.</strong></em></p> <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-133812953/stock-vector-money.html" rel="nofollow external" class="bo">money image</a> via Shutterstock.</em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/6500-creative-vectors.html?ref=inwidget" rel="nofollow external" class="bo"><strong>6,500+ Vectors + 1,000 Photoshop Brushes – 91% off!</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" alt="Find out if youre undercharging" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/10/find-out-if-youre-undercharging/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F10%2Ffind-out-if-youre-undercharging%2F&amp;t=Find+out+if+you%E2%80%99re+undercharging" 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%2F10%2Ffind-out-if-youre-undercharging%2F&amp;t=Find+out+if+you%E2%80%99re+undercharging" 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%2F10%2Ffind-out-if-youre-undercharging%2F&amp;t=Find+out+if+you%E2%80%99re+undercharging" 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%2F10%2Ffind-out-if-youre-undercharging%2F&amp;t=Find+out+if+you%E2%80%99re+undercharging" 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%2F10%2Ffind-out-if-youre-undercharging%2F&amp;t=Find+out+if+you%E2%80%99re+undercharging" 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/176968234623/u/49/f/661066/c/35285/s/3230cc28/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968234623/u/49/f/661066/c/35285/s/3230cc28/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>One of the hardest parts of starting your business or freelancing is trying to figure out what you should charge. Years ago after accepting pennies on the dollar for work, I decided I wanted to...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/3230cc28/sc/4/l/0L0Swebdesignerdepot0N0C20A130C10A0Cfind0Eout0Eif0Eyoure0Eundercharging0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36690/guest@my.umbc.edu/914df31d55b775b5d56c2eb83ae97110/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>business</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>freelance-rates</Tag>
<Tag>freelance-salaries</Tag>
<Tag>how-much-can-i-earn</Tag>
<Tag>how-much-should-i-charge</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>sql</Tag>
<Tag>web-designer-pay</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>Tue, 08 Oct 2013 06:15:00 -0400</PostedAt>
<EditAt>Tue, 08 Oct 2013 06:15:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36689" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36689">
<Title>Video: Gone In 60fps &#8211; Making A Site Jank-Free</Title>
<Body>
<![CDATA[
    <div class="html-content">Introduction What’s stopping your web pages from getting silky smooth scrolling, buttery animation and a user experience that’s snappy and fast? Jank-free rendering performance has been shown to positively affect user engagement and experience in many large sites, but remains … <a href="http://addyosmani.com/blog/making-a-site-jank-free/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Introduction What’s stopping your web pages from getting silky smooth scrolling, buttery animation and a user experience that’s snappy and fast? Jank-free rendering performance has been shown to...</Summary>
<Website>http://addyosmani.com/blog/making-a-site-jank-free/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36689/guest@my.umbc.edu/332a2f1a9724e8faf07364d2a2bcef2b/api/pixel</TrackingUrl>
<Tag>30fps</Tag>
<Tag>60fps</Tag>
<Tag>borders</Tag>
<Tag>chrome</Tag>
<Tag>chrome-rendering</Tag>
<Tag>composite</Tag>
<Tag>developer</Tag>
<Tag>devtools</Tag>
<Tag>jank</Tag>
<Tag>jank-free</Tag>
<Tag>javascript</Tag>
<Tag>layers</Tag>
<Tag>modern-javascript-development</Tag>
<Tag>paint-rectangles</Tag>
<Tag>radius</Tag>
<Tag>render</Tag>
<Tag>rendering</Tag>
<Tag>rendering-performance</Tag>
<Tag>slow-css</Tag>
<Tag>slow-scrolling</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>Tue, 08 Oct 2013 05:35:19 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36688" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36688">
<Title>2 Companies in Web Video Are Expected to Merge</Title>
<Body>
<![CDATA[
    <div class="html-content">Alloy Digital and Break Media, both privately held, would focus on entertaining people ages 12 to 34.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F10%2F08%2Ftechnology%2F2-companies-in-web-video-are-expected-to-merge.html%3Fpartner%3Drss%26emc%3Drss&amp;t=2+Companies+in+Web+Video+Are+Expected+to+Merge" 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%2F2013%2F10%2F08%2Ftechnology%2F2-companies-in-web-video-are-expected-to-merge.html%3Fpartner%3Drss%26emc%3Drss&amp;t=2+Companies+in+Web+Video+Are+Expected+to+Merge" 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%2F2013%2F10%2F08%2Ftechnology%2F2-companies-in-web-video-are-expected-to-merge.html%3Fpartner%3Drss%26emc%3Drss&amp;t=2+Companies+in+Web+Video+Are+Expected+to+Merge" 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%2F2013%2F10%2F08%2Ftechnology%2F2-companies-in-web-video-are-expected-to-merge.html%3Fpartner%3Drss%26emc%3Drss&amp;t=2+Companies+in+Web+Video+Are+Expected+to+Merge" 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%2F2013%2F10%2F08%2Ftechnology%2F2-companies-in-web-video-are-expected-to-merge.html%3Fpartner%3Drss%26emc%3Drss&amp;t=2+Companies+in+Web+Video+Are+Expected+to+Merge" 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/176968218059/u/0/f/640387/c/34625/s/322e5d56/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968218059/u/0/f/640387/c/34625/s/322e5d56/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968218059/u/0/f/640387/c/34625/s/322e5d56/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968218059/u/0/f/640387/c/34625/s/322e5d56/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968218059/u/0/f/640387/c/34625/s/322e5d56/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968218059/u/0/f/640387/c/34625/s/322e5d56/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176968218059/u/0/f/640387/c/34625/s/322e5d56/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968218059/u/0/f/640387/c/34625/s/322e5d56/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Alloy Digital and Break Media, both privately held, would focus on entertaining people ages 12 to 34.      </Summary>
<Website>http://www.nytimes.com/2013/10/08/technology/2-companies-in-web-video-are-expected-to-merge.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36688/guest@my.umbc.edu/467c136c2296bc4fa1be2b7a2e89518e/api/pixel</TrackingUrl>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>video-recordings-and-downloads</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>Tue, 08 Oct 2013 02:24:01 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="36719" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36719">
<Title>Eighth-Ranked Men's Soccer to Face William &amp; Mary in Tough Road Contest on Wednesday Evening</Title>
<Body>
<![CDATA[
    <div class="html-content">UMBC plays its final non-conference game of the season on Wednesday, Oct. 9, when the Retrievers travel to Williamsburg, Va. to meet the William &amp; Mary Tribe at Martin Family Stadium. The eighth-ranked Retrievers (10-1-0) shook off a tough 1-0 double overtime loss to Delaware last Tuesday and extended their road unbeaten streak to seven with a 2-1 America East Conference win at Hartford on Saturday. William &amp; Mary (5-3-1) is also coming of a Saturday evening victory, a 2-0 decision over College of Charleston. The Tribe has knocked off two teams- Creighton and North Carolina � that were ranked No. 1 in the nation at the time of the game. Live stats will be available via <a href="http://www.umbcretrievers.com">www.umbcretrievers.com</a> for the game, which kicks off at 7:00 p.m.</div>
]]>
</Body>
<Summary>UMBC plays its final non-conference game of the season on Wednesday, Oct. 9, when the Retrievers travel to Williamsburg, Va. to meet the William &amp; Mary Tribe at Martin Family Stadium. The...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=8205</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36719/guest@my.umbc.edu/07b33b40f207a9df3f5a22901c1bb794/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>Tue, 08 Oct 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36686" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36686">
<Title>ObamaCare is Kinda Universal</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://journey24pointoh.com/2012/02/25/healthcare-for-illegal-immigrants-serves-the-public-interest/" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2013/10/nohealthcare1.jpg" width="300" height="225" style="max-width: 100%; height: auto;"></a></p>
    <p>If you haven’t figured out Obamacare yet… join the club.</p>
    <p>There’s a lot <a href="http://www.youtube.com/watch?v=3-Ilc5xK2_E" rel="nofollow external" class="bo">we need to learn</a> about our new health care system.</p>
    <p>But there is SOMETHING we all do know… Obamacare offers Universal Healthcare, RIGHT?</p>
    <p>Er…wrong.</p>
    <p>Not for the estimated 11.7 million undocumented workers in the US.   And this could be a big problem for all of us.</p>
    <p>When these illegal immigrants have health issues they make expensive visits to hospital emergency rooms where <a href="http://www.debt.org/medical/emergency-room-urgent-care-costs/" rel="nofollow external" class="bo">average costs</a> for common illness can be staggering.</p>
    <p>So… who’s going to pay their bills? Well, taxpayer money has been subsidizing emergency care for undocumented workers for a while.</p>
    <p>There’s a government program <a href="http://www.washingtonpost.com/blogs/wonkblog/wp/2013/06/14/youre-already-paying-for-some-undocumented-immigrants-health-care/" rel="nofollow external" class="bo">the Washington Post</a> calls “emergency Medicaid.” Hospitals are reimbursed for treating Medicaid defined low-income illegal immigrants in the ER (only life or death situations and pregnancy care are covered).</p>
    <p>Here lies the rub… one of Obamacare’s key benefits was to decrease the cost of national healthcare. </p>
    <p>The hope was newly insured Americans would avoid the expensive ER as they receive increased access to primary care physicians (healthcare term for your everyday ‘doc). </p>
    <p>But with so many undocumented workers in the system, health costs for the country could remain stubbornly high.</p>
    <p>Would it be cheaper just to let illegal immigrants pay have health insurance like everybody else? </p>
    <p>Maybe… but this gets into the<a href="http://www.coburn.senate.gov/public/index.cfm/pressreleases?ContentRecord_id=a37d6eb3-ae41-4e45-9b3b-8af8da92745d" rel="nofollow external" class="bo"> messy politics</a> of immigration reform that is currently bottled up in dysfunctional Washington.</p>
    <p>So… have we made Obamacare any clearer for you?</p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    </div>
]]>
</Body>
<Summary>If you haven’t figured out Obamacare yet… join the club.   There’s a lot we need to learn about our new health care system.   But there is SOMETHING we all do know… Obamacare offers Universal...</Summary>
<Website>http://usdemocrazy.net/obamacare-is-kinda-universal/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36686/guest@my.umbc.edu/311a12278cc27eb4d4653b6d06cf828c/api/pixel</TrackingUrl>
<Tag>affordable-care-act</Tag>
<Tag>current</Tag>
<Tag>democracy</Tag>
<Tag>health-care</Tag>
<Tag>illegal-immigration</Tag>
<Tag>immigration</Tag>
<Tag>news</Tag>
<Tag>obamacare</Tag>
<Tag>politics</Tag>
<Tag>us</Tag>
<Tag>usdemocrazy</Tag>
<Group token="retired-12">USDemocrazy</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-12</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/original.jpg?1279120129</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/large.png?1279120129</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/medium.png?1279120129</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/small.png?1279120129</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxsmall.png?1279120129</AvatarUrl>
<Sponsor>USDemocrazy</Sponsor>
<PawCount>17</PawCount>
<CommentCount>5</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 08 Oct 2013 00:47:53 -0400</PostedAt>
<EditAt>Tue, 08 Oct 2013 00:49:53 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36685" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36685">
<Title>You can take this job and&#8230;</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/Ew_tdY0V4Zo" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <p>Have you ever quit a job?</p>
    <p>In this tight economy most of us are holding onto what we can get… even if we are feeling exploited by our bosses.</p>
    <p>              Not Marina Shifrin.</p>
    <p>She had enough with her job but did not write a “letter of resignation”…</p>
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2013/10/marina-shifrin-650-430.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2013/10/marina-shifrin-650-430.jpg" width="520" height="344" style="max-width: 100%; height: auto;"></a></p>
    <p>She told her former employer about her departure via<a href="http://www.youtube.com/watch?v=Ew_tdY0V4Zo" rel="nofollow external" class="bo"> this interpretive dance—for the whole world to see</a>.</p>
    <p>               And of course, most companies would accept a simple letter and let it at that. Her employer, Next Media Animation, based in Taiwan, <a href="https://www.youtube.com/watch?v=1ukGrwL4ky4" rel="nofollow external" class="bo">took things a little further than that</a>.</p>
    <p>               Regardless of how the relationship ended, both parties seem to now be moving on just handsomely. <a href="http://www.bbc.co.uk/news/world-asia-24394754" rel="nofollow external" class="bo">Ms. Shifrin has a potential new gig with Queen Latifah’s talk show, while NMA now has a creative new hiring tool</a>.</p>
    <p>               And of course, both sides elicited laughs and cheers.</p>
    <p>               Sure, there’s something to be said for traditional professionalism when it comes to resigning from a job. But maybe jazzing it up isn’t a bad option either.</p>
    </div>
]]>
</Body>
<Summary>[Video]    Have you ever quit a job?   In this tight economy most of us are holding onto what we can get… even if we are feeling exploited by our bosses.                 Not Marina Shifrin.   She...</Summary>
<Website>http://usdemocrazy.net/you-can-take-this-job-and/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36685/guest@my.umbc.edu/7822f9d600ced59984e8c927570bc932/api/pixel</TrackingUrl>
<Tag>current</Tag>
<Tag>democracy</Tag>
<Tag>news</Tag>
<Tag>politics</Tag>
<Tag>us</Tag>
<Tag>usdemocrazy</Tag>
<Group token="retired-12">USDemocrazy</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-12</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/original.jpg?1279120129</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/large.png?1279120129</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/medium.png?1279120129</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/small.png?1279120129</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxsmall.png?1279120129</AvatarUrl>
<Sponsor>USDemocrazy</Sponsor>
<PawCount>15</PawCount>
<CommentCount>1</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 08 Oct 2013 00:19:39 -0400</PostedAt>
<EditAt>Tue, 08 Oct 2013 00:23:39 -0400</EditAt>
</NewsItem>

</News>
