<?xml version="1.0"?>
<News hasArchived="true" page="8280" pageCount="10826" pageSize="10" timestamp="Sun, 20 Sep 2026 21:00:14 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8280&amp;range=2">
<NewsItem contentIssues="true" id="36945" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36945">
<Title>Extending jQuery: the UI Effects Framework</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/10/thumbnail13.jpg" width="200" height="160" style="max-width: 100%; height: auto;">The jQuery UI effects framework is modularized, just like the widget framework, allowing you to choose which parts of the package you want to use and reduce the code requirements. You can <a href="http://jqueryui.com/download" rel="nofollow external" class="bo">create a custom download for yourself,</a> which takes into account dependencies between the modules.</p> <p>Before looking at how to create a new effect, you should be aware of the other functionality already offered by the jQuery UI effects framework, so that you can use it when developing your own effects.</p> <p>Underlying the individual jQuery UI effects modules is a core of commonly used functionality. These abilities are implemented here so that you don’t need to re-invent them and can apply them immediately to your own effects. Along with color animation, you’ll find animation from the attributes of one class to another, and several low-level functions that may be useful in developing new effects.</p> <h1>Color animation</h1> <p>The Effects Core module adds custom animation support for style attributes that contain color values: foreground and background colors, and border and outline colors. jQuery itself only allows the animation of attributes that are simple numeric values, with an optional units designator such as px, em, or %. It doesn’t know how to interpret more complex values, like colors, or how to increment those values correctly to achieve the desired transition, such as from blue to red via an intermediate purple color.</p> <p>Color values are made up of three components: the red, green, and blue contributions, each with a value between 0 and 255. They can be specified in HTML and CSS in a number of different ways, as listed here:</p> <ul> <li>Hexadecimal digits—#DDFFE8</li> <li>Minimal hexadecimal digits—#CFC</li> <li>Decimal RGB values—rgb(221, 255, 232)</li> <li>Decimal RGB percentages—rgb(87%, 100%, 91%)</li> <li>Decimal RGB and transparency values—rgba(221, 255, 232, 127)</li> <li>A named color—lime</li> </ul> <p>The red, green, and blue components must be separated out and individually animated from their initial values to their final ones, before being combined into the new composite color for the intermediate steps. jQuery UI adds animation steps for each affected attribute to correctly decode the current and desired colors, and to change the value as the animation runs. In addition to the color formats described in the previous list, the animate call can also accept an array of three numeric values (each between 0 and 255) to specify the color. Once these functions are defined, you can animate colors the same way you would do for other numeric attributes:</p> <pre>$('#myDiv').animate({backgroundColor: '#DDFFE8'});</pre> <p>jQuery UI contains an expanded list of named colors that it understands, from the basic red and green to the more esoteric darkorchid and darksalmon. There is even a transparent color.</p> <p> </p> <h1>Class animation</h1> <p>Standard jQuery lets you add, remove, or toggle classes on selected elements. jQuery UI goes one better by allowing you to animate the transition between the before and after states. It does this by extracting all the attribute values that can be animated (numeric values and colors) from the starting and ending configurations, and then invoking a standard animate call with all of these as properties to change. This new animation is triggered by specifying a duration when calling the addClass, removeClass, or toggleClass functions:</p> <pre>$('#myDiv').addClass('highlight', 1000);</pre> <p>jQuery UI also adds a new function, switchClass, which removes a class and adds a class, with the optional transition between the two states (when providing a duration):</p> <pre>$('#myDiv').switchClass('oldClass', 'newClass', 1000);<br><br></pre> <h1>Common effects functions</h1> <p>To better support the various effects of jQuery UI, the Effects Core module provides several functions that are of use to these effects, and perhaps to your own. To illustrate how several of these functions are used, the following listing shows the relevant parts of the slide effect.</p> <pre>$.effects.effect.slide = function( o, done ) {<br>// Create element<br>var el = $( this ),<br>        props = [ "position", "top", "bottom", "left", "right", "width", "height" ],<br>        mode = $.effects.setMode( el, o.mode || "show" ), ...; // Determine mode of operation<br><br>// Adjust<br>$.effects.save( el, props ); // Save current settings<br>el.show();<br>distance = o.distance || el[ ref === "top" ? "outerHeight" : "outerWidth" ]( true );<br>$.effects.createWrapper( el ).css({overflow: "hidden"}); // Create wrapper for animation<br>...<br><br>// Animation<br>animation[ ref ] = ...;<br><br>// Animate<br>el.animate( animation, {<br>                       queue: false,<br>                       duration: o.duration,<br>                       easing: o.easing,<br>                       complete: function() {<br>                               if ( mode === "hide" ) {<br>                                       el.hide();<br>                               }<br>                               $.effects.restore( el, props ); // Restore original settings<br>                               $.effects.removeWrapper( el ); // Remove animation wrapper<br>                               done();<br>                       }<br>            });<br>};</pre> <p>You can use the setMode function to convert a mode of toggle into the appropriate show or hide value based on the current visibility of the element. If the provided mode is show or hide, it retains that value, and in this case, defaults to show if not given at all.</p> <p>Before starting the animation for the effect, you might want to use the save function to remember the original values of several attributes (from the names in props) on the element, so that they can be restored when finished. The values are stored against the element using the jQuery data function.</p> <p>To facilitate the movement of an element for an effect, you can wrap a container around that element with the createWrapper function to use as the reference point for the motion. Positional information is copied from the specified element onto the wrapper so that it appears directly atop the original element. The element is then positioned within the new container at its top left so that the overall effect is unnoticeable by the user. The function returns a reference to the wrapper.</p> <p>Any changes to the left /right /top /bottom settings for the original element will now be relative to its original position, without affecting the surrounding elements. Having saved certain attribute values earlier, you’d use the restore function at the completion of the animation to return them to their original settings. At the same time, you should remove any wrapper that you created previously with the remove-Wrapper function. This function returns a reference to the wrapper if it was removed, or to the element itself if there was no wrapper.</p> <p>There are some other functions provided by the jQuery UI Effects Core module that may be of use:</p> <p><strong>getBaseline(origin, original) </strong>This function normalizes an origin specification (a two-element array of vertical and horizontal positions) into fractional values (0.0 to 1.0) given an original size (an object with height and width attributes). It converts named positions (top, left, center, and so on) to the values 0.0, 0.5, or 1.0, and converts numeric values into the proportion of the relevant dimension. The returned object has attributes x and y to hold the fractional values in the corresponding directions. For example,</p> <pre>var baseline = $.effects.getBaseline(['middle', 20], {height: 100, width: 200}); // baseline = {x: 0.1, y: 0.5}</pre> <p><strong>setTransition(element, list, factor, value)</strong> To apply a scaling factor to multiple attribute values at once, use this function. For each attribute name in list, retrieve its current value for element, and update that by multiplying it by factor. Set the result into the value object under the name of the attribute, and return that object from the function. For example, to reduce certain values by half, you might do this:</p> <pre>el.from = $.effects.setTransition(el, ['borderTopWidth', 'borderBottomWidth', ...], 0.5, el.from);</pre> <p><strong>cssUnit(key)</strong> To separate a named CSS attribute (key) into its amount and units (em, pt, px, or %), returned as an array of two values, use this function. If the units aren’t one of these known types, an empty array is returned. For example,</p> <pre>var value = el.cssUnit('width'); // e.g. value = [200, 'px']</pre> <p>The functions presented in this section are used by many of the effects provided by jQuery UI. These effects are reviewed in the next section.</p> <p> </p> <h1>Existing effects</h1> <p>Numerous effects are provided by jQuery UI. Most of these are designed to enhance how an element appears or disappears (such as blind and drop), whereas others serve to bring your attention to an element (such as highlight and shake):</p> <ul> <li>
    <strong>blind:</strong> Element expands or contracts vertically (default) or horizontally from its top or left</li> <li>
    <strong>bounce:</strong> Element drops into or out of view and bounces a few times</li> <li>
    <strong>clip:</strong> Element expands or contracts vertically (default) or horizontally from its center line</li> <li>
    <strong>drop:</strong> Element slides into or out of view from the left (default) or top, and fades to or from full opacity</li> <li>
    <strong>explode:</strong> Element breaks up into sections and flies apart, or reassembles itself from flying parts</li> <li>
    <strong>fade:</strong> Element fades to or from full opacity</li> <li>
    <strong>fold:</strong> Element expands or contracts first in one direction then in the other (horizontally then vertically by default)</li> <li>
    <strong>highlight:</strong> Element changes background color briefly</li> <li>
    <strong>puff:</strong> Element decreases or increases in size, and fades to or from full opacity</li> <li>
    <strong>pulsate:</strong> Element fades out and in several times</li> <li>
    <strong>scale:</strong> Element expands or contracts from or to its center point by a percentage amount</li> <li>
    <strong>shake:</strong> Element moves from side to side several times</li> <li>
    <strong>size:</strong> Element decreases or increases in size to given dimensions</li> <li>
    <strong>slide:</strong> Element slides horizontally (default) or vertically from its own edge</li> <li>
    <strong>transfer:</strong> Element is moved and resized to match a target element</li> </ul> <p>These effects may be used in conjunction with the enhanced jQuery UI show, hide, and toggle functions by providing the name of the desired effect as the first parameter. You can also supply additional options that change the behavior of the effect, the duration of the animation, and a callback function that’s triggered on completion.</p> <pre>$('#aDiv').hide('clip');<br>$('#aDiv').toggle('slide', {direction: 'down'}, 1000);</pre> <p> </p> <h1>Summary</h1> <p>Included in the jQuery UI modules are some basic utility functions, low-level behaviors (such as drag and drop), high-level components or widgets (such as Tabs and Datepicker), and numerous visual effects. You can use these effects to enhance the presentation of elements on your web page, or to bring a particular element to the user’s attention. To assist you in creating your own effects, there’s a core of commonly used functions available.</p> <p> </p> <p><em><strong>Have you used the jQuery UI effects framework? How does it compare to native CSS tweens? Let us know your thoughts in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/iresizer.html?ref=inwidget" rel="nofollow external" class="bo"><strong>iResizer: Rescale photos WITHOUT Rescaling the subject (Win/Mac) – only $9.97!</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="Extending jQuery: the UI Effects Framework" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/10/extending-jquery-the-ui-effects-framework/" 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%2Fextending-jquery-the-ui-effects-framework%2F&amp;t=Extending+jQuery%3A+the+UI+Effects+Framework" 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%2Fextending-jquery-the-ui-effects-framework%2F&amp;t=Extending+jQuery%3A+the+UI+Effects+Framework" 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%2Fextending-jquery-the-ui-effects-framework%2F&amp;t=Extending+jQuery%3A+the+UI+Effects+Framework" 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%2Fextending-jquery-the-ui-effects-framework%2F&amp;t=Extending+jQuery%3A+the+UI+Effects+Framework" 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%2Fextending-jquery-the-ui-effects-framework%2F&amp;t=Extending+jQuery%3A+the+UI+Effects+Framework" 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/176968174598/u/49/f/661066/c/35285/s/326e156c/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968174598/u/49/f/661066/c/35285/s/326e156c/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The jQuery UI effects framework is modularized, just like the widget framework, allowing you to choose which parts of the package you want to use and reduce the code requirements. You can create a...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/326e156c/sc/4/l/0L0Swebdesignerdepot0N0C20A130C10A0Cextending0Ejquery0Ethe0Eui0Eeffects0Eframework0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36945/guest@my.umbc.edu/db3eff8d6022cd20bd29347e641346c7/api/pixel</TrackingUrl>
<Tag>advanced-jquery</Tag>
<Tag>animating-classes-with-jquery</Tag>
<Tag>animating-color-with-jquery</Tag>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>extending-jquery</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>jquery</Tag>
<Tag>jquery-animation</Tag>
<Tag>jquery-ui-effects</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>Mon, 14 Oct 2013 06:15:37 -0400</PostedAt>
<EditAt>Mon, 14 Oct 2013 06:15:37 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36955" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36955">
<Title>Bits Blog: Facebook Buys Israeli Maker of Data-Compression Software for Mobile Web Effort</Title>
<Body>
<![CDATA[
    <div class="html-content">Onavo, a start-up based in Tel Aviv, has been bought by Facebook as part of its Internet.org effort to bring free or low-cost Internet access to billions around the world without it.<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%2F14%2Ffacebook-acquires-onavo-and-a-foothold-in-israel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Facebook+Buys+Israeli+Maker+of+Data-Compression+Software+for+Mobile+Web+Effort" 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%2F14%2Ffacebook-acquires-onavo-and-a-foothold-in-israel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Facebook+Buys+Israeli+Maker+of+Data-Compression+Software+for+Mobile+Web+Effort" 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%2F14%2Ffacebook-acquires-onavo-and-a-foothold-in-israel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Facebook+Buys+Israeli+Maker+of+Data-Compression+Software+for+Mobile+Web+Effort" 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%2F14%2Ffacebook-acquires-onavo-and-a-foothold-in-israel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Facebook+Buys+Israeli+Maker+of+Data-Compression+Software+for+Mobile+Web+Effort" 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%2F14%2Ffacebook-acquires-onavo-and-a-foothold-in-israel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Facebook+Buys+Israeli+Maker+of+Data-Compression+Software+for+Mobile+Web+Effort" 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/176966014177/u/0/f/640387/c/34625/s/32701d53/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176966014177/u/0/f/640387/c/34625/s/32701d53/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176966014177/u/0/f/640387/c/34625/s/32701d53/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176966014177/u/0/f/640387/c/34625/s/32701d53/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176966014177/u/0/f/640387/c/34625/s/32701d53/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176966014177/u/0/f/640387/c/34625/s/32701d53/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176966014177/u/0/f/640387/c/34625/s/32701d53/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176966014177/u/0/f/640387/c/34625/s/32701d53/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Onavo, a start-up based in Tel Aviv, has been bought by Facebook as part of its Internet.org effort to bring free or low-cost Internet access to billions around the world without it.      </Summary>
<Website>http://bits.blogs.nytimes.com/2013/10/14/facebook-acquires-onavo-and-a-foothold-in-israel/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36955/guest@my.umbc.edu/158af78824cb44c40a3baf7a0de79c35/api/pixel</TrackingUrl>
<Tag>facebook-inc</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>internet-org</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mobile</Tag>
<Tag>new</Tag>
<Tag>smartphones</Tag>
<Tag>social</Tag>
<Tag>social-media</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Tag>zuckerberg-mark-e</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>Mon, 14 Oct 2013 05:07:51 -0400</PostedAt>
<EditAt>Mon, 14 Oct 2013 21:34:30 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36968" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36968">
<Title>Ryan Cook Signs Professional Basketball Contract in Bosnia and Herzegovina</Title>
<Body>
<![CDATA[
    <div class="html-content">Former UMBC Retriever basketball standout Ryan Cook has signed a professional contract with OKK Sloboda Tuzla in the Bosnian Liga I in Bosnia and Herzegovina. The Laurel, Md. native was selected to the America East Conference Second Team and to the 2013 America East All-Tournament team. OKK Sloboda Tuzla was the runner-up in both the regular season and the championships of Liga I in 2012-13.</div>
]]>
</Body>
<Summary>Former UMBC Retriever basketball standout Ryan Cook has signed a professional contract with OKK Sloboda Tuzla in the Bosnian Liga I in Bosnia and Herzegovina. The Laurel, Md. native was selected...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=8223</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36968/guest@my.umbc.edu/791afd0d4de294a50f454d64345f262d/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>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 14 Oct 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="36974" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36974">
<Title>Strong Numbers Highlight Sixth Annual Rob Magin 5k Dawg Chase on Homecoming Morning</Title>
<Body>
<![CDATA[
    <div class="html-content">BALTIMORE � A total of 143 runners took to the loop course at UMBC for the Sixth Annual Rob Magin 5k Dawg Chase, Saturday morning during Homecoming festivities on campus.  The race included the UMBC and George Washington Running Clubs, in addition to numerous other participants.</div>
]]>
</Body>
<Summary>BALTIMORE � A total of 143 runners took to the loop course at UMBC for the Sixth Annual Rob Magin 5k Dawg Chase, Saturday morning during Homecoming festivities on campus.  The race included the...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=8224</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36974/guest@my.umbc.edu/e3382a649119f84faed03e44b98e2588/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>Mon, 14 Oct 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="36944" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36944">
<Title>Leading Economist Predicts a Bitcoin Backlash</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Economist Simon Johnson says governments will feel the urge to suppress the crypto-currency Bitcoin.</p>
    <p>Governments and established financial institutions are likely to launch a campaign to quash the decentralized digital currency Bitcoin, according to a leading economist and academic. <a href="http://mitsloan.mit.edu/faculty/detail.php?in_spseqno=41226" rel="nofollow external" class="bo">Simon Johnson</a>, a professor of entrepreneurship at MIT’s Sloan School of Management, expects Bitcoin to face political pressure and aggressive lobbying from big banks because of its disruptive nature.</p>
    </div>
]]>
</Body>
<Summary>Economist Simon Johnson says governments will feel the urge to suppress the crypto-currency Bitcoin.  Governments and established financial institutions are likely to launch a campaign to quash...</Summary>
<Website>http://www.technologyreview.com/news/520296/leading-economist-predicts-a-bitcoin-backlash/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36944/guest@my.umbc.edu/84f1d0930154c832e1c464836f29285e/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>Mon, 14 Oct 2013 00:00:00 -0400</PostedAt>
<EditAt>Mon, 14 Oct 2013 00:00:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36943" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36943">
<Title>Chipotle Just Got Better.</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2013/10/steakbowl.jpg" rel="nofollow external" class="bo"><img alt="steakbowl" src="http://usdemocrazy.net/wp-content/uploads/2013/10/steakbowl-300x210.jpg" width="300" height="210" style="max-width: 100%; height: auto;"></a></p>
    <p><em>Chipotle Mexican Grill </em>if often thought of as the ultimate grub spot- a place where you can get more than you can eat for under $10.  </p>
    <p>Not to mention, Chipotle practices what they call <em><a href="http://www.timesunion.com/living/article/Integrity-is-key-to-Chipotle-brand-547662.php" rel="nofollow external" class="bo">Food With Integrity</a>.  </em></p>
    <p>What exactly does this mean? Chipotle maintains an active effort to purchase produce from small and midsize local farms throughout the growing season and only purchases chicken and pork that are naturally and humanely raised, to name a few.  </p>
    <p>Though it’s hard to believe, Chipotle just got even better.  </p>
    <p><em><a href="http://www.businessinsider.com/" rel="nofollow external" class="bo">Business Insider</a> </em>recently published an article titled “How To Get Huge Portions At Chipotle.”</p>
    <p>Find the life-changing article <a href="http://www.businessinsider.com/how-to-get-bigger-portions-at-chipotle-2013-10" rel="nofollow external" class="bo">here</a>.</p>
    <p>You’re welcome. </p>
    </div>
]]>
</Body>
<Summary>Chipotle Mexican Grill if often thought of as the ultimate grub spot- a place where you can get more than you can eat for under $10.     Not to mention, Chipotle practices what they call Food With...</Summary>
<Website>http://usdemocrazy.net/chipotle-just-got-better/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36943/guest@my.umbc.edu/b96dc2af98d8579d18a7305b6a093cee/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>53</PawCount>
<CommentCount>17</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Sun, 13 Oct 2013 22:32:31 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36942" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36942">
<Title>Naughtyahu</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>           <a href="http://usdemocrazy.net/wp-content/uploads/2013/10/110414125416_ben_netanyahu.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2013/10/110414125416_ben_netanyahu.jpg" width="512" height="288" style="max-width: 100%; height: auto;"></a>    </p>
    <p>We all hit rough patches, and we all need a way to blow off steam. But depending on how you choose to do so, discretion might be in order.</p>
    <p>               Israel’s Prime Minister is learning that the hard way.</p>
    <p>               Benjamin Netanyahu’s Twitter feed elicited a snicker or two <a href="http://www.timesofisrael.com/pms-twitter-account-follows-iranian-porn-feed/" rel="nofollow external" class="bo">after it was discovered that the PM was briefly following an Iranian sex website.</a></p>
    <p>               Unbecoming of a world leader? Perhaps.</p>
    <p>               But between <a href="http://www.bbc.co.uk/news/world-middle-east-24435408" rel="nofollow external" class="bo">warning of Iran’s jean-deprivation</a> or <a href="http://www.nytimes.com/2013/10/12/world/middleeast/alone-and-relishing-it-israeli-leader-presses-case-against-iran.html?_r=0" rel="nofollow external" class="bo">alerting us of its more sinister nuclear ambitions</a>, such a high-profile job can be filled with angst and anxiety.</p>
    <p>               Can we really blame a guy with so much on his plate for trying to liven things up a little?</p>
    </div>
]]>
</Body>
<Summary>                  We all hit rough patches, and we all need a way to blow off steam. But depending on how you choose to do so, discretion might be in order.                  Israel’s Prime...</Summary>
<Website>http://usdemocrazy.net/naughtyahu/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36942/guest@my.umbc.edu/69ca97725e7c326f6860bfbb8e91a0f2/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>19</PawCount>
<CommentCount>9</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Sun, 13 Oct 2013 22:29:24 -0400</PostedAt>
<EditAt>Sun, 13 Oct 2013 22:30:24 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36940" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36940">
<Title>Privacy Fears Grow as Cities Increase Surveillance</Title>
<Body>
<![CDATA[
    <div class="html-content">A program in Oakland, Calif., is one of the latest and most contentious examples of cities using big data technology, and federal dollars, for routine law enforcement.<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%2F14%2Ftechnology%2Fprivacy-fears-as-surveillance-grows-in-cities.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Privacy+Fears+Grow+as+Cities+Increase+Surveillance" 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%2F14%2Ftechnology%2Fprivacy-fears-as-surveillance-grows-in-cities.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Privacy+Fears+Grow+as+Cities+Increase+Surveillance" 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%2F14%2Ftechnology%2Fprivacy-fears-as-surveillance-grows-in-cities.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Privacy+Fears+Grow+as+Cities+Increase+Surveillance" 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%2F14%2Ftechnology%2Fprivacy-fears-as-surveillance-grows-in-cities.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Privacy+Fears+Grow+as+Cities+Increase+Surveillance" 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%2F14%2Ftechnology%2Fprivacy-fears-as-surveillance-grows-in-cities.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Privacy+Fears+Grow+as+Cities+Increase+Surveillance" 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/176968146196/u/0/f/640387/c/34625/s/326a3e0e/sc/8/kg/390/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146196/u/0/f/640387/c/34625/s/326a3e0e/sc/8/kg/390/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968146196/u/0/f/640387/c/34625/s/326a3e0e/sc/8/kg/390/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146196/u/0/f/640387/c/34625/s/326a3e0e/sc/8/kg/390/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968146196/u/0/f/640387/c/34625/s/326a3e0e/sc/8/kg/390/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146196/u/0/f/640387/c/34625/s/326a3e0e/sc/8/kg/390/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176968146196/u/0/f/640387/c/34625/s/326a3e0e/kg/390/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146196/u/0/f/640387/c/34625/s/326a3e0e/kg/390/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A program in Oakland, Calif., is one of the latest and most contentious examples of cities using big data technology, and federal dollars, for routine law enforcement.      </Summary>
<Website>http://www.nytimes.com/2013/10/14/technology/privacy-fears-as-surveillance-grows-in-cities.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36940/guest@my.umbc.edu/cae5e8ffcf477869d75a2d72f3aa1dd1/api/pixel</TrackingUrl>
<Tag>american-civil-liberties-union</Tag>
<Tag>cameras</Tag>
<Tag>data-mining-and-database-marketing</Tag>
<Tag>federal-aid-us</Tag>
<Tag>honda-motor-co-ltd-hmc-nyse</Tag>
<Tag>international-business-machines-corporation-ibm-nyse</Tag>
<Tag>law-and-legislation</Tag>
<Tag>leidos-holdings-inc-ldos-nyse</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>national-security-agency</Tag>
<Tag>new</Tag>
<Tag>oakland-calif</Tag>
<Tag>police</Tag>
<Tag>privacy</Tag>
<Tag>saic-inc-sai-nyse</Tag>
<Tag>surveillance-of-citizens-by-government</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>Sun, 13 Oct 2013 21:09:11 -0400</PostedAt>
<EditAt>Tue, 15 Oct 2013 21:26:55 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36941" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36941">
<Title>Bolstering a Phone&#8217;s Defenses Against Breaches</Title>
<Body>
<![CDATA[
    <div class="html-content">To help ward off corporate data breaches, Lookout is using its app to slip under the door of enterprises via the employees who regularly bring their personal devices to work.<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%2F14%2Ftechnology%2Fbolstering-a-phones-defenses-against-breaches.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Bolstering+a+Phone%E2%80%99s+Defenses+Against+Breaches" 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%2F14%2Ftechnology%2Fbolstering-a-phones-defenses-against-breaches.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Bolstering+a+Phone%E2%80%99s+Defenses+Against+Breaches" 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%2F14%2Ftechnology%2Fbolstering-a-phones-defenses-against-breaches.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Bolstering+a+Phone%E2%80%99s+Defenses+Against+Breaches" 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%2F14%2Ftechnology%2Fbolstering-a-phones-defenses-against-breaches.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Bolstering+a+Phone%E2%80%99s+Defenses+Against+Breaches" 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%2F14%2Ftechnology%2Fbolstering-a-phones-defenses-against-breaches.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Bolstering+a+Phone%E2%80%99s+Defenses+Against+Breaches" 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/176968146195/u/0/f/640387/c/34625/s/326a3e0c/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146195/u/0/f/640387/c/34625/s/326a3e0c/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968146195/u/0/f/640387/c/34625/s/326a3e0c/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146195/u/0/f/640387/c/34625/s/326a3e0c/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968146195/u/0/f/640387/c/34625/s/326a3e0c/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146195/u/0/f/640387/c/34625/s/326a3e0c/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176968146195/u/0/f/640387/c/34625/s/326a3e0c/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968146195/u/0/f/640387/c/34625/s/326a3e0c/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>To help ward off corporate data breaches, Lookout is using its app to slip under the door of enterprises via the employees who regularly bring their personal devices to work.      </Summary>
<Website>http://www.nytimes.com/2013/10/14/technology/bolstering-a-phones-defenses-against-breaches.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36941/guest@my.umbc.edu/0e04f9fbd28bb68d96e85cc6e88f61f4/api/pixel</TrackingUrl>
<Tag>blackberry-bbry-nasdaq</Tag>
<Tag>cigna-corporation-ci-nyse</Tag>
<Tag>data-mining-and-database-marketing</Tag>
<Tag>gartner-inc-it-nyse</Tag>
<Tag>intel-corporation-intc-nasdaq</Tag>
<Tag>lookout-inc</Tag>
<Tag>new</Tag>
<Tag>security-and-warning-systems</Tag>
<Tag>smartphones</Tag>
<Tag>sprint-nextel-corporation-s-nyse</Tag>
<Tag>symantec-corporation-symc-nasdaq</Tag>
<Tag>t-mobile-us-inc-tmus-nyse</Tag>
<Tag>technology</Tag>
<Tag>verizon-communications-inc-vz-nyse</Tag>
<Tag>wireless-communications</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>Sun, 13 Oct 2013 20:17:05 -0400</PostedAt>
<EditAt>Tue, 15 Oct 2013 14:37:03 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36938" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36938">
<Title>Google Jousts With Wired South Korea Over Quirky Internet Rules</Title>
<Body>
<![CDATA[
    <div class="html-content">South Korea, while leading in so many wired ways, has strong rules governing the Internet, including some on mapping services.<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%2F14%2Fbusiness%2Finternational%2Fgoogle-jousts-with-south-koreas-piecemeal-internet-rules.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Jousts+With+Wired+South+Korea+Over+Quirky+Internet+Rules" 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%2F14%2Fbusiness%2Finternational%2Fgoogle-jousts-with-south-koreas-piecemeal-internet-rules.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Jousts+With+Wired+South+Korea+Over+Quirky+Internet+Rules" 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%2F14%2Fbusiness%2Finternational%2Fgoogle-jousts-with-south-koreas-piecemeal-internet-rules.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Jousts+With+Wired+South+Korea+Over+Quirky+Internet+Rules" 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%2F14%2Fbusiness%2Finternational%2Fgoogle-jousts-with-south-koreas-piecemeal-internet-rules.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Jousts+With+Wired+South+Korea+Over+Quirky+Internet+Rules" 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%2F14%2Fbusiness%2Finternational%2Fgoogle-jousts-with-south-koreas-piecemeal-internet-rules.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Jousts+With+Wired+South+Korea+Over+Quirky+Internet+Rules" 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/176968136936/u/0/f/640387/c/34625/s/32688921/sc/30/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968136936/u/0/f/640387/c/34625/s/32688921/sc/30/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968136936/u/0/f/640387/c/34625/s/32688921/sc/30/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968136936/u/0/f/640387/c/34625/s/32688921/sc/30/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968136936/u/0/f/640387/c/34625/s/32688921/sc/30/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968136936/u/0/f/640387/c/34625/s/32688921/sc/30/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176968136936/u/0/f/640387/c/34625/s/32688921/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968136936/u/0/f/640387/c/34625/s/32688921/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>South Korea, while leading in so many wired ways, has strong rules governing the Internet, including some on mapping services.      </Summary>
<Website>http://www.nytimes.com/2013/10/14/business/international/google-jousts-with-south-koreas-piecemeal-internet-rules.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36938/guest@my.umbc.edu/479d178d25c8adbe1f67b44a7f52488a/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>maps</Tag>
<Tag>new</Tag>
<Tag>regulation-and-deregulation-of-industry</Tag>
<Tag>south-korea</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>Sun, 13 Oct 2013 16:41:25 -0400</PostedAt>
<EditAt>Sun, 13 Oct 2013 16:41:25 -0400</EditAt>
</NewsItem>

</News>
