<?xml version="1.0"?>
<News hasArchived="true" page="8756" pageCount="10823" pageSize="10" timestamp="Fri, 18 Sep 2026 10:39:35 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8756&amp;range=2">
<NewsItem contentIssues="true" id="30881" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30881">
<Title>Mini-Icon Settings Menu with the jQuery Toolbar Plugin</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Some dynamic user profile layouts have been implementing more complicated JavaScript features. Notably the dropdown settings menu has been a staple of social networking websites. This is a great method for allowing easy access to updating the user profile, or even posting new content onto the website. The <a href="http://paulkinzett.github.io/toolbar/" rel="nofollow external" class="bo">jQuery Toolbar.js plugin</a> allows us to create a mini settings menu nested with <a href="http://twitter.github.io/bootstrap/base-css.html#icons" rel="nofollow external" class="bo">Bootstrap icons</a>.</p>
    <p>In this tutorial I want to show how we can build a small user profile page with a mini-settings tooltip popup. Each of the user options is defined by an icon glyph related to the action. This may be confusing to some users, but you can change these values to be any contextual item as well. The mini tooltip is meant to save room in your webpage by offering quick access to popular site features. Check out my live sample demo to get an idea of what we are making.</p>
    <p></p>
    <p><a href="http://byjakewithlove.com/treehouse/toolbarjs-menu/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/06/jquery-toolbar-plugin-tutorial-preview.png" alt="toolbar.js tutorial demo menu jquery plugin preview screenshot" style="max-width: 100%; height: auto;"></a></p>
    <p><strong><a href="http://byjakewithlove.com/treehouse/toolbarjs-menu/" rel="nofollow external" class="bo">Live Demo</a></strong> – <strong><a href="http://blog.teamtreehouse.com/wp-content/uploads/2013/06/jquery-toolbarjs-demo-menu-source.zip" rel="nofollow external" class="bo">Download Source Code</a></strong></p>
    <h2>Getting Started</h2>
    <p>The first step is to <a href="https://github.com/paulkinzett/toolbar" rel="nofollow external" class="bo">download a copy</a> of the Toolbar.js plugin from Github. This will include their own webpage demo, along with the core files we need to get the plugin working. Namely these are <strong>bootstrap.icons.css</strong> and the accompanying glyphicons PNG image. We also need the <strong>jquery.toolbars.css</strong> document for the default tooltip styles, along with <strong>jquery.toolbar.min.js</strong> for the actual toolbar plugin codes. This requires a dependency on jQuery which we can include directly through Google’s CDN.</p>
    <pre>&lt;!doctype html&gt;&#x000A;    &lt;html lang="en-US"&gt;&#x000A;    &lt;head&gt;&#x000A;      &lt;meta http-equiv="Content-Type" content="text/html;charset=utf-8"&gt;&#x000A;      &lt;title&gt;Popup Toolbar Icons Demo&lt;/title&gt;&#x000A;      &lt;meta name="author" content="Jake Rocheleau"&gt;&#x000A;      &lt;link rel="shortcut icon" href="<a href="http://teamtreehouse.com/assets/favicon.ico%22&amp;gt">http://teamtreehouse.com/assets/favicon.ico"&amp;gt</a>;&#x000A;      &lt;link rel="icon" href="<a href="http://teamtreehouse.com/assets/favicon.ico%22&amp;gt">http://teamtreehouse.com/assets/favicon.ico"&amp;gt</a>;&#x000A;      &lt;link rel="stylesheet" type="text/css" media="all" href="css/styles.css"&gt;&#x000A;      &lt;link rel="stylesheet" type="text/css" media="all" href="css/jquery.toolbars.css"&gt;&#x000A;      &lt;link rel="stylesheet" type="text/css" media="all" href="css/bootstrap.icons.css"&gt;&#x000A;      &lt;script type="text/javascript" src="<a href="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js%22&gt;&lt;/script&amp;gt">https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"&gt;&lt;/script&amp;gt</a>;&#x000A;      &lt;script type="text/javascript" src="js/jquery.toolbar.min.js"&gt;&lt;/script&gt;&#x000A;    &lt;/head&gt;&#x000A;    </pre>
    <p>When I was testing this plugin I could not get it to run properly with the <a href="http://code.jquery.com/jquery-1.10.1.min.js" rel="nofollow external" class="bo">jQuery 1.10.1</a> version. For some reason there must be a weird bug in the update because I can get everything working with the version released directly before this current release. Hopefully it will all work out in the near future. Just be aware of this tip when you go to build Toolbar.js into your own projects.</p>
    <h2>Adding the Icons</h2>
    <p>Looking inside the page HTML itself is rather easy to compile. You can place the toolbar navigation HTML almost anywhere in the page and it should work. The jQuery codes use absolute positioning to keep this element within the container, both for the fadeIn and fadeOut animation effects. In my page I have kept the toolbar HTML within the container so that everything is organized and easy to edit.</p>
    <pre>  &lt;div id="menucontainer" style="position: relative;"&gt;&#x000A;        &lt;span id="editmenu"&gt;&lt;img src="images/edit-profile-icon.png" alt="Edit"&gt;&lt;/span&gt;&#x000A;        &lt;div id="user-options" class="toolbar-icons" style="display: none;"&gt;&#x000A;            &lt;a href="#"&gt;&lt;em class="icon-user"&gt;&lt;/em&gt;&lt;/a&gt;&#x000A;            &lt;a href="#"&gt;&lt;em class="icon-edit"&gt;&lt;/em&gt;&lt;/a&gt;&#x000A;            &lt;a href="#"&gt;&lt;em class="icon-comment"&gt;&lt;/em&gt;&lt;/a&gt;&#x000A;            &lt;a href="#"&gt;&lt;em class="icon-picture"&gt;&lt;/em&gt;&lt;/a&gt;&#x000A;            &lt;a href="#"&gt;&lt;em class="icon-facetime-video"&gt;&lt;/em&gt;&lt;/a&gt;&#x000A;            &lt;a href="#"&gt;&lt;em class="icon-cog"&gt;&lt;/em&gt;&lt;/a&gt;&#x000A;        &lt;/div&gt;&#x000A;      &lt;/div&gt;&#x000A;    </pre>
    <p>The Twitter Bootstrap library has a class for organized PNG icons. These may be implemented almost anywhere in your layout, and the default Toolbar.js plugin uses them exclusively within the menu. Class names are based off the icons themselves, such as <strong>.icon-user</strong> which displays an outline of a person. It would be possible to use an icon font instead, which can scale naturally based on the font size. Or you could even use text and skip the glyphs altogether.</p>
    <p>But the greatest part of this navigation is the simplicity for getting it to append anywhere on the page. You merely attach this to an element and the event listener will activate based on the user’s click action. Most of the CSS menu items are typical but I want to outline one part of my custom styles.</p>
    <pre>#editmenu {&#x000A;      display: block;&#x000A;      margin-top: 5px;&#x000A;      width: 36px;&#x000A;      height: 30px;&#x000A;      text-align: center;&#x000A;      padding-top: 5px;&#x000A;      -webkit-border-radius: 5px;&#x000A;      -moz-border-radius: 5px;&#x000A;      border-radius: 5px;&#x000A;      border: 1px solid #121212;&#x000A;      box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.3), 0px 1px 0px 0px rgba(255,255,255,0.2);&#x000A;      background-color: #434343;&#x000A;      background-image: -webkit-gradient(linear, left top, left bottom, from(#595959), to(#434343));&#x000A;      background-image: -webkit-linear-gradient(top, #595959, #434343);&#x000A;      background-image: -moz-linear-gradient(top, #595959, #434343);&#x000A;      background-image: -ms-linear-gradient(top, #595959, #434343);&#x000A;      background-image: -o-linear-gradient(top, #595959, #434343);&#x000A;      background-image: linear-gradient(top, #595959, #434343);&#x000A;      cursor: pointer;&#x000A;    }&#x000A;    #editmenu:active {&#x000A;      background-color: #404040;&#x000A;      background-image: -webkit-gradient(linear, left top, left bottom, from(#505050), to(#404040));&#x000A;      background-image: -webkit-linear-gradient(top, #505050, #404040);&#x000A;      background-image: -moz-linear-gradient(top, #505050, #404040);&#x000A;      background-image: -ms-linear-gradient(top, #505050, #404040);&#x000A;      background-image: -o-linear-gradient(top, #505050, #404040);&#x000A;      background-image: linear-gradient(top, #505050, #404040);&#x000A;      box-shadow: inset 0px 2px 6px 1px rgba(0,0,0,0.65), 0px 1px 0px 0px rgba(255,255,255,0.2);  &#x000A;    }&#x000A;    &#x000A;    #editmenu img { opacity: 0.7; }&#x000A;    #editmenu:hover img { opacity: 1.0; }&#x000A;    </pre>
    <p>The edit menu is actually a span HTML tag located inside the menu container. The design is built using CSS3 gradients along with a small compose icon as a PNG image. It will increase to 100% opacity when the user hovers over the menu, and it provides a nice effect which is all generated using CSS3.</p>
    <h2>Toolbar.js in Action</h2>
    <p>Since all of the other CSS is written into libraries we really don’t need to examine it. You do have the option to overwrite all the default Toolbar styles for yourself, and it doesn’t take much effort when you can inspect the elements using Chrome or Firebug. But I am certainly more impressed with the Toolbar plugin so let’s dive into the JavaScript codes.</p>
    <pre>$(function(){&#x000A;      $('#editmenu').toolbar({&#x000A;        content: '#user-options',&#x000A;        position: 'bottom',&#x000A;        hideOnClick: true&#x000A;      });&#x000A;    </pre>
    <p>The toolbar is attached onto my <strong>#editmenu</strong> button and will trigger once the user clicks. For the plugin content option I’m passing <strong>#user-options</strong> which should target the internal menu list of icons. Remember that you can style this in any way you choose – it just helps to work with the default Toolbar.js styles as you are first getting started.</p>
    <p>The position may also be adjusted based on the top, right, left or bottom. I used “bottom” in my example because it has the most room where the icons are not cutting off important page content. But Toolbar.js is extremely flexible and you really can implement this almost anywhere. The other option <strong>hideOnClick</strong> will hide the toolbar menu after the user clicks an icon. This defaults to false but I’ve set it as “true” since that makes more sense.</p>
    <h2>Typical Event Handlers</h2>
    <p>Along with the typical options for Toolbar.js we can also attach functions onto various events. <strong>toolbarShown</strong> and <strong>toolbarHidden</strong> are two basic examples which allow you to run custom JS codes once the menu displays and hides itself. But within my demo example I have written a function attached onto <strong>toolbarItemClick</strong>. This will trigger a function after the user clicks onto any toolbar item.</p>
    <pre>  $('#editmenu').on('toolbarItemClick', function(event){&#x000A;        // when the user clicks an icon we call this function&#x000A;        console.dir(event);&#x000A;        $(this).trigger('click');&#x000A;      });&#x000A;    });&#x000A;    </pre>
    <p>The events are handled using jQuery’s internal <a href="http://api.jquery.com/on/" rel="nofollow external" class="bo">.on()</a> method. We pass the event object into this new function which can tell us details about the click event, and which specific icon has been selected. I am executing a function <strong>console.dir()</strong> which will output the event data into your browser console. It will display in a different section for each type of browser – but you can always view the console data in some way.</p>
    <p>Also you may notice that my last line of code uses jQuery’s <a href="http://api.jquery.com/trigger/" rel="nofollow external" class="bo">.trigger()</a> method for calling a click event. This will force the click to behave as normal instead of just executing my callback function. So we will get some console output related to the click event, and then the toolbar will auto-hide itself just like the user had clicked normally. There are lots of ways to customize this amazing plugin and I think my sample demo can provide a good starting point.</p>
    <p><a href="http://byjakewithlove.com/treehouse/toolbarjs-menu/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/06/jquery-toolbar-plugin-tutorial-preview.png" alt="toolbar.js tutorial demo menu jquery plugin preview screenshot" style="max-width: 100%; height: auto;"></a></p>
    <p><strong><a href="http://byjakewithlove.com/treehouse/toolbarjs-menu/" rel="nofollow external" class="bo">Live Demo</a></strong> – <strong><a href="http://blog.teamtreehouse.com/wp-content/uploads/2013/06/jquery-toolbarjs-demo-menu-source.zip" rel="nofollow external" class="bo">Download Source Code</a></strong></p>
    <h2>Final Thoughts</h2>
    <p>The vast quantity of jQuery plugins has been growing rapidly. I am a huge fan of open source web development, and the jQuery library is a prime example for modern webmasters. I hope this guide may prove useful for anybody looking to customize the Toolbar.js plugin. There are a number of optional parameters which let you control actions and callback functions after the user selects a menu item. I have gone into some detail about these parameters, but check out the <a href="http://paulkinzett.github.io/toolbar/" rel="nofollow external" class="bo">plugin homepage</a> if you want to learn more.</p>
    <p>The post <a href="http://blog.teamtreehouse.com/mini-icon-settings-menu-with-the-jquery-toolbar-plugin" rel="nofollow external" class="bo">Mini-Icon Settings Menu with the jQuery Toolbar Plugin</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>Some dynamic user profile layouts have been implementing more complicated JavaScript features. Notably the dropdown settings menu has been a staple of social networking websites. This is a great...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/TuLd7KUiZrY/mini-icon-settings-menu-with-the-jquery-toolbar-plugin</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30881/guest@my.umbc.edu/a8b81c51baa8a515fc1114da854fbc90/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>learn-to-code</Tag>
<Tag>responsive</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>Wed, 05 Jun 2013 17:05:05 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="30876" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30876">
<Title>Where do I go if I'm having trouble with my clicker?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~amocko1" rel="nofollow external" class="bo">Andrea Mocko</a>
                </p>
            <div>
            <h2>Tell Me</h2>
    <ol>
    <li>
    <p>If you're having trouble with your clicker, first stop by the Technology Support Center (TSC) in the Library.</p>
    <div><table>
    <colgroup></colgroup>
    <tbody><tr>
    <td><img src="/images/icons/emoticons/information.png" width="16" height="16" alt="" style="max-width: 100%; height: auto;"></td>
    <td><p><a href="https://wiki.umbc.edu/display/faq/Hours+of+Operation" rel="nofollow external" class="bo">Click here to see a the TSC's current hours of operation.</a></p></td>
    </tr></tbody>
    </table></div>
    </li>
    <li>The TSC will be able to troubleshoot the clicker.</li>
    <li>If after visiting the TSC, your clicker is found to be defective, please contact Turning Technologies for further support.</li>
    </ol>
    <div>
    <div><strong>Turning Technologies Contact Information</strong></div>
    <div>
    <ul>
    <li>Phone: 866-746-3015</li>
    <li>Email: <a href="#" rel="nofollow external" class="bo">support@turningtechnologies.com</a>
    </li>
    </ul>
    </div>
    </div>
    <p> </p>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766033&amp;q=0&amp;v=1&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766033" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766033" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766033&amp;q=0&amp;v=0&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Request Help</a></p>
    <p><a href="http://my.umbc.edu/help/request" rel="nofollow external" class="bo"><img src="https://wiki.umbc.edu/download/attachments/29853066/RequestHelpicon.png?version=1&amp;modificationDate=1335472984000&amp;api=v2" style="max-width: 100%; height: auto;"></a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=36766033" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=36766033&amp;revisedVersion=2&amp;originalVersion=1" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Andrea Mocko                                  Tell Me    If you're having trouble with your clicker, first stop by the Technology Support Center...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=36766033</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30876/guest@my.umbc.edu/265bd8278f72e53d871e42bfe0aa843f/api/pixel</TrackingUrl>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1789738931</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1789738931</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/1/xxlarge.png?1789738931</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/1/xlarge.png?1789738931</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1789738931</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/images/avatars/group/1/medium.png?1789738931</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/images/avatars/group/1/small.png?1789738931</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1789738931</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1789738931</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Jun 2013 16:13:34 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="123269" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123269">
<Title>Rugby Alums Give Back With &#8220;Day of Service&#8221;</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <img width="150" height="150" src="https://umbc.edu/wp-content/uploads/2022/02/rugby1-150x150.jpg" alt="" style="max-width: 100%; height: auto;"><p>UMBC Rugby players past and present joined together for the first <strong>UMBC Rugby Day of Service</strong>, partnering with Habitat for Humanity of the Chesapeake and Habitat for Humanity Sandtown to demolish and clean up one site, and to build a new home on another. Close to 30 players from the men’s and women’s club participated.</p>
    <p>“As an organization, we were looking for an event that would allow us to bring all of the teams together, past and present, to do something positive in the greater Baltimore community,” said <strong>Tracy Williams, Jr. ’06</strong>, who helped organize the event and who hopes to make this an annual event. “We were able to leverage our extensive alumni and current player network to make a long lasting difference in the lives of families in need.”</p>
    <a href="http://umbcalumni.files.wordpress.com/2013/06/rugby1.jpg" rel="nofollow external" class="bo"><img alt="Back Row L-R: Tyler Tippett, Colin McGrath, Jeremy Boyer '07, Karl Shuey, Robert Duvall '06, Richie Campbell, Brendan McQueeny, Amha Sertsu. Front Row:  Joe Letts, Hieu Truong '05, Candice Simmons, Jasmine Cashin, Allie Alton, Soheyl Soltani-Nia,  Matt Zvitkovitz, Jackson Sparrow Drury " src="http://umbcalumni.files.wordpress.com/2013/06/rugby1.jpg?w=640" width="640" height="424" style="max-width: 100%; height: auto;"></a>Sandtown Habitat: Back Row L-R: Tyler Tippett, Colin McGrath, Jeremy Boyer ’07, Karl Shuey, Robert Duvall ’06, Richie Campbell, Brendan McQueeny, Amha Sertsu. Front Row: Joe Letts, Hieu Truong ’05, Candice Simmons, Jasmine Cashin, Allie Alton, Soheyl Soltani-Nia, Matt Zvitkovitz, Jackson Sparrow Drury
    <a href="http://umbcalumni.files.wordpress.com/2013/06/rugby2.jpg" rel="nofollow external" class="bo"><img alt="Habitat Chesapeake: Back Row L-R: Mikhail Hershfield, Joe Bieberich '12, James Park, Arya Koolaee, Tracy Williams '06, Phillip Zwaig. Front Row: Andrew Gaither '94, James Nardei, Josh Herring '08,'11, Ricky Raccoon, Erik Anderson" src="http://umbcalumni.files.wordpress.com/2013/06/rugby2.jpg?w=640" width="640" height="480" style="max-width: 100%; height: auto;"></a>Habitat Chesapeake: Back Row L-R: Mikhail Hershfield, Joe Bieberich ’12, James Park, Arya Koolaee, Tracy Williams ’06, Phillip Zwaig. Front Row: Andrew Gaither ’94, James Nardei, Josh Herring ’08,’11, Ricky Raccoon, Erik Anderson</div>
]]>
</Body>
<Summary>UMBC Rugby players past and present joined together for the first UMBC Rugby Day of Service, partnering with Habitat for Humanity of the Chesapeake and Habitat for Humanity Sandtown to demolish...</Summary>
<Website>https://umbc.edu/stories/rugby-alums-give-back-with-day-of-service-2/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123269/guest@my.umbc.edu/1c0f6319aed946fcb700338494fa7c17/api/pixel</TrackingUrl>
<Tag>impact</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, 05 Jun 2013 15:36:37 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="30875" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30875">
<Title>State of the Art: Remember All Those Passwords? No Need</Title>
<Body>
<![CDATA[
    <div class="html-content">Dashlane is a dedicated password memorization program stuffed with features, and it’s free.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F06%2F06%2Ftechnology%2Fpersonaltech%2Ftoo-many-passwords-and-no-way-to-remember-them-until-now.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Remember+All+Those+Passwords%3F+No+Need" 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%2F06%2F06%2Ftechnology%2Fpersonaltech%2Ftoo-many-passwords-and-no-way-to-remember-them-until-now.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Remember+All+Those+Passwords%3F+No+Need" 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%2F06%2F06%2Ftechnology%2Fpersonaltech%2Ftoo-many-passwords-and-no-way-to-remember-them-until-now.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Remember+All+Those+Passwords%3F+No+Need" 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%2F06%2F06%2Ftechnology%2Fpersonaltech%2Ftoo-many-passwords-and-no-way-to-remember-them-until-now.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Remember+All+Those+Passwords%3F+No+Need" 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%2F06%2F06%2Ftechnology%2Fpersonaltech%2Ftoo-many-passwords-and-no-way-to-remember-them-until-now.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Remember+All+Those+Passwords%3F+No+Need" 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/165665230515/u/0/f/640387/c/34625/s/2ce40345/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665230515/u/0/f/640387/c/34625/s/2ce40345/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Dashlane is a dedicated password memorization program stuffed with features, and it’s free.     </Summary>
<Website>http://www.nytimes.com/2013/06/06/technology/personaltech/too-many-passwords-and-no-way-to-remember-them-until-now.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30875/guest@my.umbc.edu/27daa604aac5513d845672a5c180ad70/api/pixel</TrackingUrl>
<Tag>american-express-company-axp-nyse</Tag>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>computer-security</Tag>
<Tag>dashlane</Tag>
<Tag>e-commerce</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>mastercard-inc-ma-nyse</Tag>
<Tag>mobile-applications</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>visa-inc-v-nyse</Tag>
<Tag>web-browsers</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, 05 Jun 2013 15:09:03 -0400</PostedAt>
<EditAt>Thu, 06 Jun 2013 21:20:40 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="30892" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30892">
<Title>Bits: Start-Up to Connect Home Appliances</Title>
<Body>
<![CDATA[
    <div class="html-content">Ayla Networks unveiled a technology that it said would make bringing the Internet to ordinary devices more attractive for makers of household appliances.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F05%2Fstart-up-to-connect-thermostats-light-sensors%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Start-Up+to+Connect+Home+Appliances" 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%2F06%2F05%2Fstart-up-to-connect-thermostats-light-sensors%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Start-Up+to+Connect+Home+Appliances" 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%2F06%2F05%2Fstart-up-to-connect-thermostats-light-sensors%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Start-Up+to+Connect+Home+Appliances" 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%2F06%2F05%2Fstart-up-to-connect-thermostats-light-sensors%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Start-Up+to+Connect+Home+Appliances" 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%2F06%2F05%2Fstart-up-to-connect-thermostats-light-sensors%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Start-Up+to+Connect+Home+Appliances" 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/165665806331/u/0/f/640387/c/34625/s/2ce6bbd2/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665806331/u/0/f/640387/c/34625/s/2ce6bbd2/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Ayla Networks unveiled a technology that it said would make bringing the Internet to ordinary devices more attractive for makers of household appliances.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/06/05/start-up-to-connect-thermostats-light-sensors/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30892/guest@my.umbc.edu/ee0dbbc478cc8036b1453a3982fd4b49/api/pixel</TrackingUrl>
<Tag>devices</Tag>
<Tag>friedman-david</Tag>
<Tag>home-appliances</Tag>
<Tag>internet</Tag>
<Tag>nest-labs-inc</Tag>
<Tag>new</Tag>
<Tag>silicon-valley-calif</Tag>
<Tag>technology</Tag>
<Tag>thermostats</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, 05 Jun 2013 14:42:39 -0400</PostedAt>
<EditAt>Thu, 06 Jun 2013 09:30:43 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="30872" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30872">
<Title>Thinking of Running an Open Innovation Contest? Think Again.</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Open competitions can help find an optimal solution to a well-understood problem, but they are a poor way to innovate.</p>
    <p>Open innovation contests are gaining popularity with companies. The thinking is that since not all the smart people work for your company, and technology is developing so rapidly, why not hold a contest to get the best minds competing to innovate for you? While 99 percent of the entries will fail, those entries aren’t on your company’s income statement. And when that 1 percent succeeds by pulling off a true breakthrough, then your company will be the big winner.</p>
    </div>
]]>
</Body>
<Summary>Open competitions can help find an optimal solution to a well-understood problem, but they are a poor way to innovate.  Open innovation contests are gaining popularity with companies. The thinking...</Summary>
<Website>http://www.technologyreview.com/view/515751/thinking-of-running-an-open-innovation-contest-think-again/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30872/guest@my.umbc.edu/cb5db884a59bc0909be7d2787ed0aff6/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>Wed, 05 Jun 2013 14:30:00 -0400</PostedAt>
<EditAt>Wed, 05 Jun 2013 14:30:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="30863" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30863">
<Title>I do not see the Return Receipt option when sending email inside my Blackboard course.</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~amocko1%0A" rel="nofollow external" class="bo">Andrea Mocko</a>
                </p>
            <div>
            <h2>Show Me</h2>
    <p><a href="http://www.youtube.com/watch?v=UMBoK3GTCc0" rel="nofollow external" class="bo"><img src="http://img.youtube.com/vi/UMBoK3GTCc0/1.jpg" style="max-width: 100%; height: auto;"></a></p>
    <p>Video Length - 01:05</p>
    <h2>Tell Me</h2>    <div>
                                
                    <div>
                                <p>It is a known issue that the Return Receipt option will only appear on the email interface if you follow the steps below succinctly.</p>
                        </div>
        </div>
    <ol>
    <li>Navigate to your Blackboard course</li>
    <li>
    <p>Click the <strong>Send Email</strong> link from Course Management -&gt; Control Panel -&gt; Course Tools section</p>    <div>
                                
                    <div>
                                <p>If you are clicking on the Send Email link from the Tools section of your course, Return Receipt will not appear.</p>
                        </div>
        </div>
    </li>
    </ol>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766018&amp;q=0&amp;v=1&amp;s=faq&amp;l=blackboard+faculty" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766018" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766018" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D36766018&amp;q=0&amp;v=0&amp;s=faq&amp;l=blackboard+faculty" rel="nofollow external" class="bo">Request Help</a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=36766018" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=36766018&amp;revisedVersion=3&amp;originalVersion=2" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Andrea Mocko                                  Show Me    Video Length - 01:05  Tell Me...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=36766018</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30863/guest@my.umbc.edu/e89c105ee321f33ee3fb570a75f53148/api/pixel</TrackingUrl>
<Tag>blackboard</Tag>
<Tag>faculty</Tag>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1789738931</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1789738931</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/1/xxlarge.png?1789738931</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/1/xlarge.png?1789738931</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1789738931</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/images/avatars/group/1/medium.png?1789738931</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/images/avatars/group/1/small.png?1789738931</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/images/avatars/group/1/xsmall.png?1789738931</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1789738931</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Jun 2013 13:29:40 -0400</PostedAt>
<EditAt>Sat, 03 Aug 2013 18:15:14 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="30864" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30864">
<Title>Google to take on Adobe?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/06/thumbnail10.jpg" width="200" height="160" style="max-width: 100%; height: auto;">The growing dissatisfaction with Adobe’s exodus to the cloud and the accompanying subscription licensing model <a href="http://www.webdesignerdepot.com/2013/05/a-more-social-adobe-creative-cloud/" rel="nofollow external" class="bo">shows no sign of abating.</a></p>
    <p>Thousands of designers have been searching for alternatives to Creative Cloud products, but with Adobe’s near-monopoly on professional grade web design software alternate applications are thin on the ground.</p>
    <p>The time is right it seems, for an internet giant to step into the breach…</p>
    <p>The biggest name on the web, perhaps the biggest name anywhere, is Google and they already provide business tools that many professionals can’t live without; most of us use Google Drive where once we may have used Microsoft’s Office, and most people access Google Mail numerous times per day.</p>
    <p>Google haven’t previously looked like making a play for the huge web design market however, a curious decision given that they hold exclusive rights to the browser with the largest market share (it’s Chrome for anyone who’s been on the ISS for a decade).</p>
    <p>That looks about to change. Buried at the bottom of a <a href="http://doubleclickadvertisers.blogspot.co.uk/2013/06/thinkdoubleclick-connecting-digital.html" rel="nofollow external" class="bo">DoubleClick blog post,</a> Google ‘let slip’ that its new product “Google Web Designer” will be launching in the next few months:</p>
    <blockquote>
    <p>To help advertisers and publishers more seamlessly unlock the potential of cross-device programs, we are investing in a new HTML5 creative development tool – Google Web Designer. Available in the coming months, Google Web Designer will empower creative professionals to create cutting-edge advertising as well as engaging web content like sites and applications – for free. Google Web Designer will be seamlessly integrated with <a href="http://www.google.com/doubleclick/advertisers/solutions/rich-media-production.html" rel="nofollow external" class="bo">DoubleClick Studio</a> and AdMob, greatly simplifying the process of building HTML5 creative that can be served through Google platforms.</p>
    </blockquote>
    <p>Let’s be clear: it’s highly unlikely that you’ll be switching to a “Google Creative Suite” style product line anytime soon. “Google Web Designer” is expected to be an enhanced version of Google’s already available <a href="http://sites.google.com" rel="nofollow external" class="bo">Google Sites</a> — which isn’t going to threaten Adobe’s market position.</p>
    <p>What we’re expecting — and at this point it’s mere speculation — is some kind of hybrid of Chrome’s Developer Tools and Adobe’s Edge tools.</p>
    <p>Whilst details are very thin on the ground, what we do know is that the new application will be free. That should make the likes of <a href="http://www.squarespace.com/" rel="nofollow external" class="bo">Squarespace,</a> <a href="http://www.1and1.com/" rel="nofollow external" class="bo">1and1,</a> and <a href="http://create.net" rel="nofollow external" class="bo">create.net</a> sit up and take notice. Google’s revenue stream will be driven by integration with its advertising.</p>
    <p>It seems a stretch to think that Google Web Designer could replace Creative Cloud applications, but then it wasn’t that long ago that people thought of WordPress as “just a blogging tool”. So make room on your résumé, you may well find Google Web Designer becoming a marketable skill in the next 12 months.</p>
    <p> </p>
    <p><em><strong>Do you think Google Web Designer will be suitable for professionals? What features are you hoping to see? Let us know in the comments.</strong></em></p>
    <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-80892562/stock-photo-friendly-executive-sitting-in-front-of-laptop-in-his-office-big-window-at-the-background-looking.html" rel="nofollow external" class="bo">web designer image</a> via Shutterstock.</em></p>
    <p><br><br>
    </p>
    <table width="100%">
    <tbody>
    <tr>
    <td>
          <a href="http://www.mightydeals.com/deal/micropersonas.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Improve Designer Communication with MicroPersonas – 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="Google to take on Adobe?" style="max-width: 100%; height: auto;"><br>
          </a>
        </td>
    </tr>
    </tbody>
    </table>
    <p><br> </p>
    <a href="http://www.webdesignerdepot.com/2013/06/google-to-take-on-adobe/" rel="nofollow external" class="bo">Source</a>
    </div>
]]>
</Body>
<Summary>The growing dissatisfaction with Adobe’s exodus to the cloud and the accompanying subscription licensing model shows no sign of abating.   Thousands of designers have been searching for...</Summary>
<Website>http://www.webdesignerdepot.com/2013/06/google-to-take-on-adobe/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30864/guest@my.umbc.edu/e729b222865244ad9d6a9fcbe7051ce3/api/pixel</TrackingUrl>
<Tag>1and1</Tag>
<Tag>adobe-creative-cloud</Tag>
<Tag>art</Tag>
<Tag>create-net</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>google</Tag>
<Tag>google-applications</Tag>
<Tag>google-drive</Tag>
<Tag>google-web-designer</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>news</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>squarespace</Tag>
<Tag>web-design</Tag>
<Tag>web-design-software</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, 05 Jun 2013 13:15:06 -0400</PostedAt>
<EditAt>Wed, 05 Jun 2013 13:15:06 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="31119" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31119">
<Title>Google to take on Adobe?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/06/thumbnail10.jpg" width="200" height="160" style="max-width: 100%; height: auto;">The growing dissatisfaction with Adobe’s exodus to the cloud and the accompanying subscription licensing model <a href="http://www.webdesignerdepot.com/2013/05/a-more-social-adobe-creative-cloud/" rel="nofollow external" class="bo">shows no sign of abating.</a></p> <p>Thousands of designers have been searching for alternatives to Creative Cloud products, but with Adobe’s near-monopoly on professional grade web design software alternate applications are thin on the ground.</p> <p>The time is right it seems, for an internet giant to step into the breach…</p> <p>The biggest name on the web, perhaps the biggest name anywhere, is Google and they already provide business tools that many professionals can’t live without; most of us use Google Drive where once we may have used Microsoft’s Office, and most people access Google Mail numerous times per day.</p> <p>Google haven’t previously looked like making a play for the huge web design market however, a curious decision given that they hold exclusive rights to the browser with the largest market share (it’s Chrome for anyone who’s been on the ISS for a decade).</p> <p>That looks about to change. Buried at the bottom of a <a href="http://doubleclickadvertisers.blogspot.co.uk/2013/06/thinkdoubleclick-connecting-digital.html" rel="nofollow external" class="bo">DoubleClick blog post,</a> Google ‘let slip’ that its new product “Google Web Designer” will be launching in the next few months:</p> <blockquote> <p>To help advertisers and publishers more seamlessly unlock the potential of cross-device programs, we are investing in a new HTML5 creative development tool – Google Web Designer. Available in the coming months, Google Web Designer will empower creative professionals to create cutting-edge advertising as well as engaging web content like sites and applications – for free. Google Web Designer will be seamlessly integrated with <a href="http://www.google.com/doubleclick/advertisers/solutions/rich-media-production.html" rel="nofollow external" class="bo">DoubleClick Studio</a> and AdMob, greatly simplifying the process of building HTML5 creative that can be served through Google platforms.</p> </blockquote> <p>Let’s be clear: it’s highly unlikely that you’ll be switching to a “Google Creative Suite” style product line anytime soon. “Google Web Designer” is expected to be an enhanced version of Google’s already available <a href="http://sites.google.com" rel="nofollow external" class="bo">Google Sites</a> — which isn’t going to threaten Adobe’s market position.</p> <p>What we’re expecting — and at this point it’s mere speculation — is some kind of hybrid of Chrome’s Developer Tools and Adobe’s Edge tools.</p> <p>Whilst details are very thin on the ground, what we do know is that the new application will be free. That should make the likes of <a href="http://www.squarespace.com/" rel="nofollow external" class="bo">Squarespace,</a> <a href="http://www.1and1.com/" rel="nofollow external" class="bo">1and1,</a> and <a href="http://create.net" rel="nofollow external" class="bo">create.net</a> sit up and take notice. Google’s revenue stream will be driven by integration with its advertising.</p> <p>It seems a stretch to think that Google Web Designer could replace Creative Cloud applications, but then it wasn’t that long ago that people thought of WordPress as “just a blogging tool”. So make room on your résumé, you may well find Google Web Designer becoming a marketable skill in the next 12 months.</p> <p> </p> <p><em><strong>Do you think Google Web Designer will be suitable for professionals? What features are you hoping to see? Let us know in the comments.</strong></em></p> <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-80892562/stock-photo-friendly-executive-sitting-in-front-of-laptop-in-his-office-big-window-at-the-background-looking.html" rel="nofollow external" class="bo">web designer image</a> via Shutterstock.</em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/micropersonas.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Improve Designer Communication with MicroPersonas – 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="Google to take on Adobe?" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/06/google-to-take-on-adobe/" rel="nofollow external" class="bo">Source</a> <br><br><a href="http://da.feedsportal.com/r/165664695512/u/49/f/661066/c/35285/s/2ce337d0/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165664695512/u/49/f/661066/c/35285/s/2ce337d0/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The growing dissatisfaction with Adobe’s exodus to the cloud and the accompanying subscription licensing model shows no sign of abating.   Thousands of designers have been searching for...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/2ce337d0/l/0L0Swebdesignerdepot0N0C20A130C0A60Cgoogle0Eto0Etake0Eon0Eadobe0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31119/guest@my.umbc.edu/968de5be94c930b3a9b74a23bfc16124/api/pixel</TrackingUrl>
<Tag>1and1</Tag>
<Tag>adobe-creative-cloud</Tag>
<Tag>art</Tag>
<Tag>create-net</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>google</Tag>
<Tag>google-applications</Tag>
<Tag>google-drive</Tag>
<Tag>google-web-designer</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>news</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>squarespace</Tag>
<Tag>web-design</Tag>
<Tag>web-design-software</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, 05 Jun 2013 13:15:06 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="30893" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30893">
<Title>Bits: Samsung May Have Passed Apple in U.S. &#8212; for Now</Title>
<Body>
<![CDATA[
    <div class="html-content">Sales of Samsung’s new flagship phone, the Galaxy S4, combined with its bigger-screen Galaxy Note II and the older Galaxy S III, lifted Samsung’s sales above Apple’s last month, a report said.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F05%2Fsamsung-may-have-surpassed-apple-in-the-u-s-for-now%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Samsung+May+Have+Passed+Apple+in+U.S.+%E2%80%94+for+Now" 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%2F06%2F05%2Fsamsung-may-have-surpassed-apple-in-the-u-s-for-now%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Samsung+May+Have+Passed+Apple+in+U.S.+%E2%80%94+for+Now" 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%2F06%2F05%2Fsamsung-may-have-surpassed-apple-in-the-u-s-for-now%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Samsung+May+Have+Passed+Apple+in+U.S.+%E2%80%94+for+Now" 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%2F06%2F05%2Fsamsung-may-have-surpassed-apple-in-the-u-s-for-now%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Samsung+May+Have+Passed+Apple+in+U.S.+%E2%80%94+for+Now" 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%2F06%2F05%2Fsamsung-may-have-surpassed-apple-in-the-u-s-for-now%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+Samsung+May+Have+Passed+Apple+in+U.S.+%E2%80%94+for+Now" 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/165664916849/u/0/f/640387/c/34625/s/2ce6bbce/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165664916849/u/0/f/640387/c/34625/s/2ce6bbce/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Sales of Samsung’s new flagship phone, the Galaxy S4, combined with its bigger-screen Galaxy Note II and the older Galaxy S III, lifted Samsung’s sales above Apple’s last month, a report said.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/06/05/samsung-may-have-surpassed-apple-in-the-u-s-for-now/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30893/guest@my.umbc.edu/3a8b0526c9725c5a0cc73d6d731c3b36/api/pixel</TrackingUrl>
<Tag>apple-inc</Tag>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>mobile</Tag>
<Tag>new</Tag>
<Tag>samsung-group</Tag>
<Tag>smartphones</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, 05 Jun 2013 13:07:37 -0400</PostedAt>
<EditAt>Thu, 06 Jun 2013 15:39:02 -0400</EditAt>
</NewsItem>

</News>
