<?xml version="1.0"?>
<News hasArchived="true" page="8601" pageCount="10794" pageSize="10" timestamp="Mon, 07 Sep 2026 13:14:40 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8601&amp;range=2">
<NewsItem contentIssues="true" id="32496" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32496">
<Title>How to transition app designs to iOS 7</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="Transitioning apps to iOS 7" src="http://netdna.webdesignerdepot.com/uploads/2013/06/thumbnail34.jpg" width="200" height="160" style="max-width: 100%; height: auto;">There’s been a lot of talk about iOS 7 since its unveiling earlier this month and most of it has been centered around the design, in particular the new icons. Now, as we’ve all had time to mull over the changes, questions are beginning to be asked about how they will affect the design of our own apps. As a result, a debate has broken out about how much of an influence iOS 7′s new UI should have.</p> <p>While some believe that apps should remain true to their own style and <em>shouldn’t</em> be redesigned purely to match the look of iOS 7, others believe that apps <em>should</em> be redesigned in order to make them feel more native. To add to this, there appears to be some confusion over how strict <a title="iOS Human Interface Guidelines" href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/MobileHIG/index.html#//apple_ref/doc/uid/TP40006556" rel="nofollow external" class="bo">Apple’s iOS Human Interface Guidelines</a> actually are. </p> <p>In an effort to clear things up, I’ve taken a long look at the documents within <a title="iOS 7 Design Resources" href="https://developer.apple.com/library/prerelease/ios/design/index.html#//apple_ref/doc/uid/TP40013289" rel="nofollow external" class="bo">Apple’s iOS 7 Design Resources</a> and will use this post to share some of my findings.</p> <h1>Understanding Apple’s guidelines</h1> <p>With regards to the debate over whether all apps should now adopt a “flat” aesthetic, it’s purely a matter of opinion. If you use custom UI elements in your design then ultimately stylistic decisions lie with you and your team. Although Apple do suggest that you revisit the use of drop shadows, gradients, and bezels, I’ve seen no evidence to suggest that this is a strict requirement.</p> <p>In the snippet of text below, taken from the <a title="iOS 7 UI Transition Guide" href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/index.html#//apple_ref/doc/uid/TP40013174-CH6-SW1" rel="nofollow external" class="bo">iOS 7 UI Transition Guide</a>, more details are given on different levels of customization and how each will affect the amount of work that you need to do in order to prepare your apps for the transition.</p> <blockquote> <p>Think of app customization as being divided into the following three types:</p> <ul> <ul> <li>
    <strong>Standard.</strong> The app contains only standard, uncustomized UI elements provided by UIKit.</li> <li>
    <strong>Custom.</strong> The app presents a completely custom UI that doesn’t include any UIKit UI elements.</li> <li>
    <strong>Hybrid.</strong> The app contains a mix of standard and custom elements, including standard elements that you customized using UIKit tinting and appearance-customization APIs.</li> </ul> </ul> <p>For a standard app, you need to decide whether your visual and user experience designs still make sense in the iOS 7 environment. If you decide to keep the current layout and interaction model, most of the work involves making minor adjustments and ensuring that the app handles the new systemwide gestures correctly.</p> <p>Custom apps—that is, apps that use no UIKit UI elements—require a more nuanced approach. For example, if you feel that the current UI and experience of the app is still appropriate, there may be very little to do. On the other hand, if you feel that the app’s personality and user experience should change in order to delight iOS 7 users, you have more work to do.</p> <p>Hybrid apps vary in the amount of work required, depending on the customizations you did and how you combined custom and standard elements. In addition to revisiting the overall design of a hybrid app, you need to make sure that your customizations still work well and look good when they’re integrated with standard elements.</p> </blockquote> <p>It’s also noted at the end of the document quoted above that an app that mimics standard iOS 6 UI in a completely custom way is likely to require a lot of work because it will simply look out of date. This is certainly a prospect that you’re going to want to consider.</p> <p>Also taken from the <a title="iOS 7 UI Transition Guide" href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/Scoping.html#//apple_ref/doc/uid/TP40013174-CH7-SW1" rel="nofollow external" class="bo">iOS 7 UI Transition Guide</a> is the text below, which features two lists — things every app <em>must</em> do and things every app <em>should</em> do. Given the change in language, I’d consider the first to be a list of strict requirements and the second to be a list of things that at the very least should be given some thought.</p> <blockquote> <p><strong>Things every app must do</strong></p> <ul> <li>Update the app icon. In iOS 7, app icons are 120 x 120 pixels (high resolution).</li> <li>Update the launch image to include the status bar area if it doesn’t already do so.</li> <li>Support Retina display and iPhone 5 in all your artwork and designs, if you’re not already doing so. </li> </ul> <p><strong>Things every app should do</strong></p> <ul> <li>Make sure that app content is discernible through translucent UI elements—such as bars and keyboards—and the transparent status bar. In iOS 7, view controllers use full-screen layout (to learn more, see <a href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/AppearanceCustomization.html#//apple_ref/doc/uid/TP40013174-CH15-SW2" rel="nofollow external" class="bo">Using View Controllers</a>).</li> <li>Redesign custom bar button icons. In iOS 7, bar button icons are lighter in weight and have a different style.</li> <li>Prepare for borderless buttons by moving away from supplying button background images and by reassessing your layout.</li> <li>Examine your app for hard-coded UI values—such as sizes and positions—and replace them with those you derive dynamically from system-provided values. Use Auto Layout to help your app respond when layout changes are required. (If you’re new to Auto Layout, learn about it by reading <em><a href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/AutolayoutPG/Articles/Introduction.html#//apple_ref/doc/uid/TP40010853" rel="nofollow external" class="bo">Cocoa Auto Layout Guide</a></em>.)</li> <li>Examine your app for places where the metrics and style changes of UIKit controls and views affect the layout and appearance. For example, switches are wider, grouped tables are no longer inset, and progress views are thinner. For more information on specific UI elements, see <a href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/Bars.html#//apple_ref/doc/uid/TP40013174-CH8-SW1" rel="nofollow external" class="bo">Bars and Bar Buttons</a>, <a href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/Controls.html#//apple_ref/doc/uid/TP40013174-CH9-SW1" rel="nofollow external" class="bo">Controls</a>, <a href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/ContentViews.html#//apple_ref/doc/uid/TP40013174-CH10-SW1" rel="nofollow external" class="bo">Content Views</a>, and <a href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/TempViews.html#//apple_ref/doc/uid/TP40013174-CH11-SW1" rel="nofollow external" class="bo">Temporary Views</a>.</li> <li>Adopt Dynamic Type. In iOS 7, users can adjust the text size they see in apps. When you adopt Dynamic Type, you get text that responds appropriately to user-specified size changes. For more information, see <a href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/TransitionGuide/AppearanceCustomization.html#//apple_ref/doc/uid/TP40013174-CH15-SW4" rel="nofollow external" class="bo">Using Fonts</a>.</li> <li>Make sure your app doesn’t respond inappropriately to the new Control Center gesture or to a navigation controller’s swipe to go back gesture, especially if you perform custom touch handling.</li> <li>Revisit the use of drop shadows, gradients, and bezels. Because the iOS 7 aesthetic is smooth and layered—with much less emphasis on using visual effects to make UI elements look physical—you may want to rethink these effects.</li> <li>If necessary, update your app to best practices for iOS 6—such as Auto Layout and storyboards—and ensure that the app uses no deprecated API.</li> </ul> </blockquote> <p>iOS 7 doesn’t mean the end of the ultra detailed app icon either. The snippet of text below, taken from the <a title="iOS Human Interface Guidelines" href="https://developer.apple.com/library/prerelease/ios/documentation/UserExperience/Conceptual/MobileHIG/AppIcons.html#//apple_ref/doc/uid/TP40006556-CH19-SW1" rel="nofollow external" class="bo">iOS Human Interface Guidelines</a>, suggests there is still a place for realism. However, as mentioned above, all app icons will need to be updated.</p> <blockquote> <p><strong>If you want to portray real substances, do it accurately.</strong> Icons or images that represent real objects should also look as though they are made of real materials and have real mass. Realistic icons accurately replicate the characteristics of substances such as fabric, glass, paper, and metal, and convey an object’s weight and feel.</p> </blockquote> <p> </p> <h1>To summarise</h1> <p>Although there is a lot more to the documents within <a title="iOS Design Resources" href="https://developer.apple.com/library/prerelease/ios/design/index.html#//apple_ref/doc/uid/TP40013289" rel="nofollow external" class="bo">Apple’s iOS 7 Design Resources</a>, and I would recommend reading through them all, I felt that these three snippets in particular provide some much needed clarity. Apple’s new approach may do it’s best to shun drop shadows, gradients, and bezels, but it doesn’t mean that you <em>have</em> to follow suit, and whether you should or not is purely a matter of opinion.</p> <p>Regardless of what stylistic choices you make, as long as you carefully consider all of the above, then you should have no problem in successfully transitioning your apps to iOS 7.</p> <p> </p> <p><em><strong>Has this cleared up any concerns you had? Are you looking forward to making the transition? Let us know in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/flatcartoon.html?ref=inwidget" rel="nofollow external" class="bo"><strong>1000+ Fun And Engaging Cartoon Illustrations – only $17!</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="How to transition app designs to iOS 7" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/07/how-to-transition-app-designs-to-ios-7/" 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%2F07%2Fhow-to-transition-app-designs-to-ios-7%2F&amp;t=How+to+transition+app+designs+to+iOS+7" 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%2F07%2Fhow-to-transition-app-designs-to-ios-7%2F&amp;t=How+to+transition+app+designs+to+iOS+7" 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%2F07%2Fhow-to-transition-app-designs-to-ios-7%2F&amp;t=How+to+transition+app+designs+to+iOS+7" 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%2F07%2Fhow-to-transition-app-designs-to-ios-7%2F&amp;t=How+to+transition+app+designs+to+iOS+7" 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%2F07%2Fhow-to-transition-app-designs-to-ios-7%2F&amp;t=How+to+transition+app+designs+to+iOS+7" 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/165666481218/u/49/f/661066/c/35285/s/2e81e9d2/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666481218/u/49/f/661066/c/35285/s/2e81e9d2/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>There’s been a lot of talk about iOS 7 since its unveiling earlier this month and most of it has been centered around the design, in particular the new icons. Now, as we’ve all had time to mull...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/2e81e9d2/l/0L0Swebdesignerdepot0N0C20A130C0A70Chow0Eto0Etransition0Eapp0Edesigns0Eto0Eios0E70C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32496/guest@my.umbc.edu/5cc263b411b406e836feb69f195305be/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>changing-to-ios7</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>designing-for-ios7</Tag>
<Tag>development</Tag>
<Tag>how-to</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>ios7</Tag>
<Tag>ios7-updates</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</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, 11 Jul 2013 05:15:56 -0400</PostedAt>
<EditAt>Thu, 11 Jul 2013 05:15:56 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="32520" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32520">
<Title>Mikush and Vanderplas Named Cal Ripken League All-Stars</Title>
<Body>
<![CDATA[
    <div class="html-content">ROCKVILLE, Md. � UMBC rising sophomore pitchers Denis Mikush and Joe Vanderplas have been named to the 2013 Cal Ripken League All-Star Game, the collegiate summer league office announced on Wednesday night.  Both pitchers, who are playing for the Vienna Riverdogs, will represent the South Division at the All-Star Game.</div>
]]>
</Body>
<Summary>ROCKVILLE, Md. � UMBC rising sophomore pitchers Denis Mikush and Joe Vanderplas have been named to the 2013 Cal Ripken League All-Star Game, the collegiate summer league office announced on...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=8060</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32520/guest@my.umbc.edu/52caf61d943d5fb805cc4f6b4217bcd3/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, 11 Jul 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="32493" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32493">
<Title>Next in Wearable Computing: A Device for Dogs</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>As Google Glass gains momentum, companies and researchers are trying to decide what will be the next big breakthrough in wearable technology.</p>
    <p>We’re just starting to see the early adopters of wearable computing wandering the streets gazing through Google’s head-worn computer or staring down at their Pebble smart watch. But a slew of researchers are already hard at work figuring out what will come next. Among the more outlandish ideas these researchers are experimenting with: sensors embedded in clothing and teeth, and—oh yes—a wearable computer designed just for dogs.</p>
    </div>
]]>
</Body>
<Summary>As Google Glass gains momentum, companies and researchers are trying to decide what will be the next big breakthrough in wearable technology.  We’re just starting to see the early adopters of...</Summary>
<Website>http://www.technologyreview.com/news/516461/next-in-wearable-computing-a-device-for-dogs/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32493/guest@my.umbc.edu/d5ebce6e3abe73b484722bb0b08666bc/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 11 Jul 2013 00:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32491" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32491">
<Title>Young, Rich and Relocating Yet Again in Hunt for Political Office</Title>
<Body>
<![CDATA[
    <div class="html-content">Sean Eldridge and his husband, the Facebook co-founder Chris Hughes, bought two multimillion-dollar homes in New York State that were seen as launching pads for a Congressional run.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F11%2Fnyregion%2FYoung-Rich-and-Relocating-to-Hudson-Valley-in-Hunt-for-Political-Office.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Young%2C+Rich+and+Relocating+Yet+Again+in+Hunt+for+Political+Office" 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%2F07%2F11%2Fnyregion%2FYoung-Rich-and-Relocating-to-Hudson-Valley-in-Hunt-for-Political-Office.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Young%2C+Rich+and+Relocating+Yet+Again+in+Hunt+for+Political+Office" 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%2F07%2F11%2Fnyregion%2FYoung-Rich-and-Relocating-to-Hudson-Valley-in-Hunt-for-Political-Office.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Young%2C+Rich+and+Relocating+Yet+Again+in+Hunt+for+Political+Office" 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%2F07%2F11%2Fnyregion%2FYoung-Rich-and-Relocating-to-Hudson-Valley-in-Hunt-for-Political-Office.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Young%2C+Rich+and+Relocating+Yet+Again+in+Hunt+for+Political+Office" 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%2F07%2F11%2Fnyregion%2FYoung-Rich-and-Relocating-to-Hudson-Valley-in-Hunt-for-Political-Office.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Young%2C+Rich+and+Relocating+Yet+Again+in+Hunt+for+Political+Office" 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/165666470499/u/0/f/640387/c/34625/s/2e7ea3f0/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666470499/u/0/f/640387/c/34625/s/2e7ea3f0/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Sean Eldridge and his husband, the Facebook co-founder Chris Hughes, bought two multimillion-dollar homes in New York State that were seen as launching pads for a Congressional run.     </Summary>
<Website>http://www.nytimes.com/2013/07/11/nyregion/Young-Rich-and-Relocating-to-Hudson-Valley-in-Hunt-for-Political-Office.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32491/guest@my.umbc.edu/7df8b27a1e884551c792fda33964797d/api/pixel</TrackingUrl>
<Tag>eldridge-sean</Tag>
<Tag>elections-house-of-representatives</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>gibson-christopher-p</Tag>
<Tag>hudson-river-valley-ny</Tag>
<Tag>hughes-chris</Tag>
<Tag>new</Tag>
<Tag>technology</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>Wed, 10 Jul 2013 23:07:59 -0400</PostedAt>
<EditAt>Wed, 10 Jul 2013 23:07:59 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="123194" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123194">
<Title>UMBC&#8217;s Kevin Maxwell chosen to lead Prince George&#8217;s schools</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Kevin Maxwell ’02, has been appointed chief executive officer of Prince George’s public schools. As CEO, Maxwell will be tasked with turning around the struggling school system and closing the achievement gap so it is more aligned with surrounding county systems.</p>
    <p>Maxwell has a long history in public education, having spent more than 20 years as a teacher, principal and chief educational administrator of Prince George’s County. Most recently, he was superintendent of Anne Arundel County.</p>
    <p>Maxwell received his Ph.D. in Language, Literacy and Culture from the University of Maryland, Baltimore County (UMBC).</p>
    <p>You can read more on Kevin Maxwell’s appointment below:</p>
    <p><a title="Anne Arundel superintendent chosen to lead Prince George’s schools, sources say" href="http://www.washingtonpost.com/local/education/anne-arundel-schools-chief-chosen-to-lead-prince-georges-schools/2013/06/26/4462d986-dea4-11e2-b2d4-ea6d8f477a01_story.html" rel="nofollow external" class="bo">Washington Post article »</a><br>
    <a title="Maxwell welcomed 'home' as Prince George's schools CEO" href="http://www.baltimoresun.com/news/maryland/howard/laurel/ph-ll-maxwell-superintendent-0704-20130704,0,42135.story" rel="nofollow external" class="bo">Baltimore Sun article »</a><br>
    <a title="Hail to the (new schools) chief" href="http://www.capitalgazette.com/bowie_bladenews/opinion/hail-to-the-new-schools-chief/article_8e1df652-071b-5e7e-9864-0afc6325b852.html" rel="nofollow external" class="bo">The Bowie Blade-News article »</a><br>
    <a title="Maxwell’s Career Path Takes Him Back Home" href="http://www.afro.com/sections/news/prince-georges-county-news/story.htm?storyid=79017" rel="nofollow external" class="bo">Afro-American Newspapers article »</a></p>
    </div>
]]>
</Body>
<Summary>Kevin Maxwell ’02, has been appointed chief executive officer of Prince George’s public schools. As CEO, Maxwell will be tasked with turning around the struggling school system and closing the...</Summary>
<Website>https://umbc.edu/stories/umbcs-kevin-maxwell-chosen-to-lead-prince-georges-schools/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123194/guest@my.umbc.edu/d9b1d049b3b5f2baddfae083748fa79a/api/pixel</TrackingUrl>
<Tag>admin</Tag>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 10 Jul 2013 22:15:48 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32489" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32489">
<Title>E-Book Ruling Gives Amazon an Advantage</Title>
<Body>
<![CDATA[
    <div class="html-content">A federal judge’s antitrust finding against Apple over e-book prices underscores how much the book industry has changed and bolsters the advantage held by the online retailer.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F11%2Fbusiness%2Fe-book-ruling-gives-amazon-an-advantage.html%3Fpartner%3Drss%26emc%3Drss&amp;t=E-Book+Ruling+Gives+Amazon+an+Advantage" 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%2F07%2F11%2Fbusiness%2Fe-book-ruling-gives-amazon-an-advantage.html%3Fpartner%3Drss%26emc%3Drss&amp;t=E-Book+Ruling+Gives+Amazon+an+Advantage" 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%2F07%2F11%2Fbusiness%2Fe-book-ruling-gives-amazon-an-advantage.html%3Fpartner%3Drss%26emc%3Drss&amp;t=E-Book+Ruling+Gives+Amazon+an+Advantage" 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%2F07%2F11%2Fbusiness%2Fe-book-ruling-gives-amazon-an-advantage.html%3Fpartner%3Drss%26emc%3Drss&amp;t=E-Book+Ruling+Gives+Amazon+an+Advantage" 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%2F07%2F11%2Fbusiness%2Fe-book-ruling-gives-amazon-an-advantage.html%3Fpartner%3Drss%26emc%3Drss&amp;t=E-Book+Ruling+Gives+Amazon+an+Advantage" 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/165666467989/u/0/f/640387/c/34625/s/2e7dca80/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666467989/u/0/f/640387/c/34625/s/2e7dca80/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A federal judge’s antitrust finding against Apple over e-book prices underscores how much the book industry has changed and bolsters the advantage held by the online retailer.     </Summary>
<Website>http://www.nytimes.com/2013/07/11/business/e-book-ruling-gives-amazon-an-advantage.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32489/guest@my.umbc.edu/e2f7844835bda4267040916bf76e71a5/api/pixel</TrackingUrl>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>antitrust-laws-and-competition-issues</Tag>
<Tag>apple-inc</Tag>
<Tag>barnes-and-noble-inc-bks-nyse</Tag>
<Tag>book-trade-and-publishing</Tag>
<Tag>decisions-and-verdicts</Tag>
<Tag>e-books-and-readers</Tag>
<Tag>e-commerce</Tag>
<Tag>gannett-company-inc-gci-nyse</Tag>
<Tag>new</Tag>
<Tag>penguin-group</Tag>
<Tag>random-house</Tag>
<Tag>technology</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>Wed, 10 Jul 2013 21:32:52 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32490" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32490">
<Title>Differences on Cybertheft Complicate China Talks</Title>
<Body>
<![CDATA[
    <div class="html-content">The Obama administration’s hopes of persuading Chinese leaders to crack down on the daily barrage of theft and espionage over the Internet are likely to be difficult.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F11%2Fworld%2Fasia%2Fdifferences-on-cybertheft-complicate-china-talks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Differences+on+Cybertheft+Complicate+China+Talks" 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%2F07%2F11%2Fworld%2Fasia%2Fdifferences-on-cybertheft-complicate-china-talks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Differences+on+Cybertheft+Complicate+China+Talks" 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%2F07%2F11%2Fworld%2Fasia%2Fdifferences-on-cybertheft-complicate-china-talks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Differences+on+Cybertheft+Complicate+China+Talks" 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%2F07%2F11%2Fworld%2Fasia%2Fdifferences-on-cybertheft-complicate-china-talks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Differences+on+Cybertheft+Complicate+China+Talks" 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%2F07%2F11%2Fworld%2Fasia%2Fdifferences-on-cybertheft-complicate-china-talks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Differences+on+Cybertheft+Complicate+China+Talks" 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/165666467987/u/0/f/640387/c/34625/s/2e7dca82/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666467987/u/0/f/640387/c/34625/s/2e7dca82/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The Obama administration’s hopes of persuading Chinese leaders to crack down on the daily barrage of theft and espionage over the Internet are likely to be difficult.     </Summary>
<Website>http://www.nytimes.com/2013/07/11/world/asia/differences-on-cybertheft-complicate-china-talks.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32490/guest@my.umbc.edu/5d68f88fc1c62f38a504f0875b9e00c6/api/pixel</TrackingUrl>
<Tag>biden-joseph-r-jr</Tag>
<Tag>china</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>industrial-espionage</Tag>
<Tag>intellectual-property</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>united-states-international-relations</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>Wed, 10 Jul 2013 20:56:41 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="123195" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123195">
<Title>The Hilltop Institute in The Baltimore Sun, on WYPR and More</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Last Tuesday, the U.S. Department of the Treasury announced it would give companies with more than 50 full-time workers more time to understand the requirements of the Affordable Care Act (ACA) before implementing penalties for businesses that do not provide health insurance to employees.</p>
    <p>In her report on this development, <a href="http://articles.baltimoresun.com/2013-07-03/health/bs-hs-mandate-follow-20130703_1_health-research-educational-trust-health-insurance-individual-insurance" rel="nofollow external" class="bo"><em>The Baltimore Sun</em></a>‘s Andrea K. Walker cites analysis by The Hilltop Institute at UMBC, published last year, which found that delaying the employer mandate would affect about 10,000 people in Maryland. As individuals would still be required to buy insurance by Jan. 1 or face a $95 penalty, that report predicted around 5,000 would enroll as individuals through the state insurance exchange established under the ACA. Another 5,000 would remain uninsured. WYPR’s Maryland Morning also cites this finding in today’s segment “<a href="http://www.wypr.org/podcast/how-health-care-law-affecting-marylands-smallish-businesses" rel="nofollow external" class="bo">How the Health Care Law is Affecting Maryland’s Small(ish) Businesses</a>.”</p>
    <p>The WebMD Health News story “<a href="http://www.webmd.com/health-insurance/news/20130708/maryland-delays-small-business-exchange" rel="nofollow external" class="bo">Maryland Delays Small-Business Enrollment</a>” and Herald-Mail story “<a href="http://www.herald-mail.com/news/hm-maryland-health-connection-to-help-families-small-businesses-compare-health-insurance-options-20130710,0,2060506.story" rel="nofollow external" class="bo">Maryland Health Connection to assist families, small businesses in comparing health insurance options</a>” cite related figures.</p>
    </div>
]]>
</Body>
<Summary>Last Tuesday, the U.S. Department of the Treasury announced it would give companies with more than 50 full-time workers more time to understand the requirements of the Affordable Care Act (ACA)...</Summary>
<Website>https://umbc.edu/stories/the-hilltop-institute-in-the-baltimore-sun-and-on-wypr/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123195/guest@my.umbc.edu/1b91a66a59a141fdcdd90910a6e0f003/api/pixel</TrackingUrl>
<Tag>policy-and-society</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 10 Jul 2013 19:53:39 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="123196" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123196">
<Title>Thomas Schaller, Political Science, in the New Republic and Baltimore Sun</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="/wp-content/uploads/2012/08/tom-schaller-11.jpg" rel="nofollow external" class="bo"><img alt="Tom Schaller" src="/wp-content/uploads/2012/08/tom-schaller-11.jpg?w=300" width="240" height="160" style="max-width: 100%; height: auto;"></a>It’s been a busy few weeks in the news for UMBC political science professor Thomas F. Schaller. In addition to his regular <em>Baltimore Sun</em> op-eds — most recently on <a href="http://www.baltimoresun.com/news/opinion/oped/bs-ed-schaller-immigration-20130625,0,6354841.column" rel="nofollow external" class="bo">immigration reform </a>and the <a href="http://www.baltimoresun.com/news/opinion/oped/bs-ed-schaller-republicans-20130709,0,3274644.column" rel="nofollow external" class="bo">GOP’s demographic future</a> — Schaller was quoted in <em>The New Republic</em> article “<a href="http://www.newrepublic.com/article/113671/martin-omalley-would-make-lousy-presidential-candidate#" rel="nofollow external" class="bo">He’s Handsome, He’s Progressive, He’s a Rocker…</a>” on Gov. Martin O’Malley’s presidential prospects. There, Schaller argues that it’s hard do build a national campaign on being a competent manager, without having a clear, coherent political identity.</p>
    <p>Additionally, <a href="http://www.baltimoresun.com/news/maryland/politics/bs-md-ci-rawlings-blake-endorses-brown-20130701,0,2551030.story" rel="nofollow external" class="bo">Schaller commented in the <em>Baltimore Sun </em></a>on Mayor Stephanie Rawlings-Blake’s endorsement of Lt. Gov. Anthony G. Brown as governor, calling the announcement “big.” Schaller reflected that Brown “is well known mostly in the suburbs [and] Prince George’s County,” and the mayor’s support “gives him a huge head start.”</p>
    </div>
]]>
</Body>
<Summary>It’s been a busy few weeks in the news for UMBC political science professor Thomas F. Schaller. In addition to his regular Baltimore Sun op-eds — most recently on immigration reform and the GOP’s...</Summary>
<Website>https://umbc.edu/stories/thomas-schaller-political-science-in-the-new-republic-and-baltimore-sun/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123196/guest@my.umbc.edu/c3d0465e2354943f86d5ca4b383c243b/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>politicalscience</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 10 Jul 2013 19:18:08 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32488" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32488">
<Title>Bits Blog: Lenovo Is Top Supplier as Global PC Sales Fall</Title>
<Body>
<![CDATA[
    <div class="html-content">The market is saturated in many areas, analysts say, and personal computers last longer than before, so replacement cycles are slowing.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F07%2F10%2Flenovo-is-top-supplier-as-global-pc-sales-fall%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Lenovo+Is+Top+Supplier+as+Global+PC+Sales+Fall" 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%2F07%2F10%2Flenovo-is-top-supplier-as-global-pc-sales-fall%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Lenovo+Is+Top+Supplier+as+Global+PC+Sales+Fall" 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%2F07%2F10%2Flenovo-is-top-supplier-as-global-pc-sales-fall%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Lenovo+Is+Top+Supplier+as+Global+PC+Sales+Fall" 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%2F07%2F10%2Flenovo-is-top-supplier-as-global-pc-sales-fall%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Lenovo+Is+Top+Supplier+as+Global+PC+Sales+Fall" 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%2F07%2F10%2Flenovo-is-top-supplier-as-global-pc-sales-fall%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Lenovo+Is+Top+Supplier+as+Global+PC+Sales+Fall" 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>The market is saturated in many areas, analysts say, and personal computers last longer than before, so replacement cycles are slowing.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/07/10/lenovo-is-top-supplier-as-global-pc-sales-fall/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32488/guest@my.umbc.edu/d88cb7598f82acdb61bc80f3f2e44a8f/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>devices</Tag>
<Tag>gartner-inc</Tag>
<Tag>gartner-inc-it-nyse</Tag>
<Tag>international-data-corp</Tag>
<Tag>lenovo-group</Tag>
<Tag>new</Tag>
<Tag>technology</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>Wed, 10 Jul 2013 18:49:57 -0400</PostedAt>
</NewsItem>

</News>
