<?xml version="1.0"?>
<News hasArchived="true" page="8371" pageCount="10771" pageSize="10" timestamp="Thu, 27 Aug 2026 01:36:29 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8371">
<NewsItem contentIssues="true" id="35372" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35372">
<Title>Coding a Dynamic IMDb Webapp using My Movie API</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The online IMDb website is a crucial resource for any type of digital video media. Online web series, TV shows, and movies are all cataloged with credits to the cast and studio help. IMDb is probably the oldest resource for learning about your favorite shows or movies.</p>
    <p>In the spirit of building on top of web applications I went to the site looking for an API section. Unfortunately it doesn’t appear that IMDb has an official API – but we do have <a href="http://mymovieapi.com/" rel="nofollow external" class="bo">My Movie API</a>. This is a RESTful web service which pulls data from IMDb based on a unique ID or title. You have access to a number of popular datasets along with various return formats including JSON and XML.</p>
    <p>For this tutorial I want to demonstrate how we can build on top of this API to create a small IMDb webapp. You can do so many different things with this program, but I put together a simple example which can provide a template for other web developers. Check out my live demo to get an idea of what we are creating.</p>
    <p></p>
    <p><a href="http://byjakewithlove.com/treehouse/imdb-api/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/featured-imdb-api-tutorial-screenshot.png" alt="imdb my movie api tutorial demo screenshot" style="max-width: 100%; height: auto;"></a></p>
    <p><strong><a href="http://byjakewithlove.com/treehouse/imdb-api/" rel="nofollow external" class="bo">Live Demo</a></strong> – <strong><a href="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/imdb-mymovie-api-codes.zip" rel="nofollow external" class="bo">Download Source Code</a></strong></p>
    <h2>Getting Started</h2>
    <p>First I have put together a small HTML5 document which contains a link to the most recent copy of jQuery. You can include a copy directly from <a href="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" rel="nofollow external" class="bo">the Google CDN</a> or download a local script instead. Also I’ve created a stylesheet named <strong>styles.css</strong> to hold the page formatting.</p>
    <pre>&lt;!doctype html&gt;&#x000A;    &lt;html lang="en-US"&gt;&#x000A;    &lt;head&gt;&#x000A;      &lt;meta charset="utf-8"&gt;&#x000A;      &lt;meta http-equiv="Content-Type" content="text/html"&gt;&#x000A;      &lt;title&gt;IMDB API Webapp - Treehouse Demo&lt;/title&gt;&#x000A;      &lt;meta name="author" content="Jake Rocheleau"&gt;&#x000A;      &lt;link rel="shortcut icon" href="<a href="http://d15dxvojnvxp1x.cloudfront.net/assets/favicon.ico%22&amp;gt">http://d15dxvojnvxp1x.cloudfront.net/assets/favicon.ico"&amp;gt</a>;&#x000A;      &lt;link rel="icon" href="<a href="http://d15dxvojnvxp1x.cloudfront.net/assets/favicon.ico%22&amp;gt">http://d15dxvojnvxp1x.cloudfront.net/assets/favicon.ico"&amp;gt</a>;&#x000A;      &lt;link rel="stylesheet" type="text/css" media="all" href="styles.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;/head&gt;&#x000A;    </pre>
    <p>Now the webapp itself just contains a few links which also hold IDs from the IMDb website. Once a user clicks on a link we need to query the My Movie API to find out which TV show they clicked. Then we can display more information into the body of the page by parsing over the JSON response.</p>
    <pre>  &lt;div id="w"&gt;&#x000A;        &lt;h1&gt;IMDB Mini-Webapp&lt;/h1&gt;&#x000A;        &lt;!-- logo icon <a href="http://arrioch.deviantart.com/art/Blawb-PSD-245341011">http://arrioch.deviantart.com/art/Blawb-PSD-245341011</a> --&gt;&#x000A;        &#x000A;        &lt;p class="desc"&gt;Select a TV show to display some related information.&lt;/p&gt;&#x000A;        &#x000A;        &lt;nav id="tvnav"&gt;&#x000A;          &lt;ul class="clearfix"&gt;&#x000A;            &lt;li&gt;&lt;a href="#" id="tt0367279"&gt;Arrested Development&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="#" id="tt0386676"&gt;The Office&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="#" id="tt0121955"&gt;South Park&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="#" id="tt0098904"&gt;Seinfeld&lt;/a&gt;&lt;/li&gt;&#x000A;            &lt;li&gt;&lt;a href="#" id="tt1826940"&gt;New Girl&lt;/a&gt;&lt;/li&gt;&#x000A;          &lt;/ul&gt;&#x000A;        &lt;/nav&gt;&#x000A;        &#x000A;        &lt;div id="imdbcontents" class="clearfix"&gt;&lt;/div&gt;&#x000A;      &lt;/div&gt;&#x000A;    </pre>
    <p>The inner div at the bottom using the ID <strong>#imdbcontents</strong> will contain the dynamic content. All of the new HTML will be contained inside jQuery variables which then gets appended into the document using <a href="http://api.jquery.com/html/" rel="nofollow external" class="bo">.html()</a>.</p>
    <h2>Defining Page Styles</h2>
    <p>Overall there isn’t a whole lot of detailed stuff to understand from the CSS. I am using a tiled repeating background from <a href="http://subtlepatterns.com/tree-bark/" rel="nofollow external" class="bo">Subtle Patterns</a> which adds a nice touch onto the page. Notably the TV navigation section and the dynamic content will require the most styling. But a majority of the stylesheet pertains to custom resets along with the inclusion of a custom web font titled <a href="http://www.google.com/fonts/specimen/The+Girl+Next+Door" rel="nofollow external" class="bo">The Girl Next Door</a>.</p>
    <pre>#tvnav {&#x000A;      display: block;&#x000A;      margin-bottom: 25px;&#x000A;    }&#x000A;    &#x000A;    #tvnav ul { list-style: none; }&#x000A;    #tvnav ul li { margin-right: 4px; display: block; float: left; }&#x000A;    &#x000A;    #tvnav ul li a { &#x000A;      padding: 3px 6px;&#x000A;      color: #5e83c6;&#x000A;      -webkit-border-radius: 3px;&#x000A;      -moz-border-radius: 3px;&#x000A;      border-radius: 3px;&#x000A;      font-size: 1.2em;&#x000A;      font-weight: bold;&#x000A;      text-decoration: none;&#x000A;      background: #dbe4f3;&#x000A;    }&#x000A;    #tvnav ul li a:hover {&#x000A;      background: #cbd8f0;&#x000A;      color: #526890;&#x000A;    }&#x000A;    &#x000A;    #imdbcontents { display: block; width: 100%; }&#x000A;    &#x000A;    .floatright {&#x000A;      display: block;&#x000A;      float: right;&#x000A;      margin-left: 10px;&#x000A;      margin-bottom: 5px;&#x000A;    }&#x000A;    </pre>
    <p>All of the navigation links are given rounded borders and background colors to appear more like buttons than regular links. Also the internal content is formatted into a div which starts out completely empty. This means it has an auto-adjusted width that we have to fix using <strong>width: 100%;</strong></p>
    <pre>/* clearfix */&#x000A;    .clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }&#x000A;    .clearfix { display: inline-block; }&#x000A;     &#x000A;    html[xmlns] .clearfix { display: block; }&#x000A;    * html .clearfix { height: 1%; }&#x000A;    </pre>
    <p>I’ve also applied a small clearfix onto the container of <strong>imdbcontents</strong>. Using the <strong>.floatright</strong> class makes positioning the poster artwork so much easier. Clearfix helps to make sure the div will fill out a complete 100% height even if the content itself is shorter than the image. The idea is somewhat dated but still works perfectly. If you want to learn more about clearfix CSS try <a href="http://www.webtoolkit.info/css-clearfix.html" rel="nofollow external" class="bo">reading this article</a> to get a better understanding.</p>
    <h2>jQuery API Access</h2>
    <p>Now we can dig into the more detailed code for pulling out data from the API and then appending it into HTML. At the bottom of my index file I have opened a new script tag just before the closing <strong>&lt;/body&gt;</strong> tag. We are listening for a click event handler on any of the tv show links which will trigger our API codes.</p>
    <pre>$(function(){&#x000A;      &#x000A;      $('#tvnav ul li a').on('click', function(e){&#x000A;        e.preventDefault();&#x000A;        var imdbid  = $(this).attr('id');&#x000A;        var resturl = "<a href="http://mymovieapi.com/?type=json&amp;id=%22+imdbid+%22&amp;release=full&amp;plot=full">http://mymovieapi.com/?type=json&amp;id="+imdbid+"&amp;release=full&amp;plot=full</a>";&#x000A;        &#x000A;        $('#imdbcontents').html('&lt;center&gt;&lt;img src="images/loading.gif" alt="loading..."&gt;&lt;/center&gt;');&#x000A;    </pre>
    <p>All of this code is executed before the Ajax API call. Whenever a user clicks one of these links we first need to call <strong>e.preventDefault()</strong> against the click event. This way we do not get the hash symbol(#) appended onto the document URL which can also cause the page to jump. You’ll notice from the variable <strong>resturl</strong> that defining our endpoint is fairly straightforward.</p>
    <p>There is a full list on the <a href="http://mymovieapi.com/" rel="nofollow external" class="bo">My Movie API site</a> of alternative parameters you may pass into the request URL. These options are somewhat different depending if you are requesting an IMDb title or ID. Also the final line of code here will append a small loading gif image into the contents container while we await the JSON response.</p>
    <pre>    $.ajax({&#x000A;          url: resturl,&#x000A;          dataType: 'json',&#x000A;          success: function(data){&#x000A;            var title  = data.title;&#x000A;            var genre  = data.genres[0];&#x000A;            var poster = data.poster.imdb;&#x000A;            var url    = data.imdb_url;&#x000A;            var plot   = data.plot;&#x000A;            var rlseyr = data.year;&#x000A;            &#x000A;            var cdiv = $('#imdbcontents');&#x000A;            &#x000A;            var thehtml = "&lt;img src=\""+poster+"\" class=\"floatright\"&gt;";&#x000A;            thehtml = thehtml + "&lt;h2&gt;"+title+"&lt;/h2&gt;";&#x000A;            thehtml = thehtml + "&lt;p class=\"genre\"&gt;"+genre+" - first aired in "+rlseyr+"&lt;/p&gt;";&#x000A;            thehtml = thehtml + "&lt;p&gt;"+plot+"&lt;/p&gt;";&#x000A;            thehtml = thehtml + "&lt;p&gt;&lt;a href=\""+url+"\" target=\"_blank\"&gt;View on IMDB →&lt;/p&gt;";&#x000A;            &#x000A;            cdiv.html(thehtml);&#x000A;          }&#x000A;        });&#x000A;    </pre>
    <p>This Ajax request is the most important section and it closes off the whole click event handler. We make an open request to the URL defined with a JSON data type. The new <strong>function(data)</strong> call actually pulls out the request data upon success, so that we can work with the new JSON contents. Data elements may be accessed using dot notation like <strong>data.title</strong>. If you want to see a full output of the JSON content simply run <strong>console.log(data);</strong> and then check your JS console.</p>
    <p>After the variables have been defined I start creating a string named <strong>thehtml</strong>. This is concatenated from one string to the next so we ultimately end up with a single string containing all the HTML data. You will notice this gets passed into the <strong>#imdbcontents</strong> div which then finally closes the callback function. All of this code is very malleable, and so it’s easy to manipulate the position of content or even include other bits of data from the JSON response.</p>
    <p><a href="http://byjakewithlove.com/treehouse/imdb-api/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/featured-imdb-api-tutorial-screenshot.png" alt="imdb my movie api tutorial demo screenshot" style="max-width: 100%; height: auto;"></a></p>
    <p><strong><a href="http://byjakewithlove.com/treehouse/imdb-api/" rel="nofollow external" class="bo">Live Demo</a></strong> – <strong><a href="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/imdb-mymovie-api-codes.zip" rel="nofollow external" class="bo">Download Source Code</a></strong></p>
    <h2>Closing</h2>
    <p>It is fantastic to see these online APIs which tie into alternative popular websites. This advancing age of web technology allows more developers access into data systems than ever before. IMDb is just one example out of many popular websites benefitting from an external web service. Feel free to download a copy of my source code and toy around with this API for your own projects.</p>
    <p>The post <a href="http://blog.teamtreehouse.com/coding-a-dynamic-imdb-webapp-using-my-movie-api" rel="nofollow external" class="bo">Coding a Dynamic IMDb Webapp using My Movie API</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>The online IMDb website is a crucial resource for any type of digital video media. Online web series, TV shows, and movies are all cataloged with credits to the cast and studio help. IMDb is...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/U9LcO7-Lf1g/coding-a-dynamic-imdb-webapp-using-my-movie-api</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35372/guest@my.umbc.edu/4359b5d368ec54e118f6a9e92be58c5c/api/pixel</TrackingUrl>
<Tag>ajax</Tag>
<Tag>android</Tag>
<Tag>api</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>imdb</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>jquery</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>Mon, 09 Sep 2013 14:30:30 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35370" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35370">
<Title>Summer 2014 Internships with Zappos</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <strong><span>Why join us? </span></strong><br><br>Our unique culture has made 
    Zappos-com.careerliaison.com, Inc. and its subsidiaries one of FORTUNE’s
     100 Best Companies to Work For five years straight.<br> 
    			Find out why: <a href="http://money.cnn.com/magazines/fortune/best-companies/" rel="nofollow external" class="bo">www.money.cnn.com/magazines/fortune/best-companies</a><br><br> 
    			<strong><span>Why else? </span></strong><br><br>Pursue growth and learning 
    is one of our core values, and there will be no shortage of growth or 
    learning in this summer internship! You’ll get hands-on experience in a 
    team-oriented environment and have some fun along the way.<br><strong><br>
    			
    			<span>Want more? </span><br></strong><br>Summer interns may qualify 
    for corporate housing assistance, free food and drinks on our campus, 
    social events throughout the internship, and a 40 percent off discount 
    on zappos-com.careerliaison.com!
    		<br><br>To apply, visit <a href="https://culture-zappos-com.careerliaison.com/internships/app/apply">https://culture-zappos-com.careerliaison.com/internships/app/apply</a><br><br><br>
    </div>
]]>
</Body>
<Summary>Why join us?   Our unique culture has made  Zappos-com.careerliaison.com, Inc. and its subsidiaries one of FORTUNE’s  100 Best Companies to Work For five years straight.      Find out why:...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35370/guest@my.umbc.edu/0a1640f243779f3f4b455ec876dc1ac4/api/pixel</TrackingUrl>
<Group token="shriver">The Shriver Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/shriver</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/original.jpg?1441293069</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/large.png?1441293069</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/medium.png?1441293069</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/small.png?1441293069</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxsmall.png?1441293069</AvatarUrl>
<Sponsor>Intern, Co-op, Research &amp; Service-Learning</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/035/370/8525d6d5e6d0b3c70790c9d45ec0f7d9/xxlarge.jpg?1378750700</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/035/370/8525d6d5e6d0b3c70790c9d45ec0f7d9/xlarge.jpg?1378750700</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/035/370/8525d6d5e6d0b3c70790c9d45ec0f7d9/large.jpg?1378750700</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/035/370/8525d6d5e6d0b3c70790c9d45ec0f7d9/medium.jpg?1378750700</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/035/370/8525d6d5e6d0b3c70790c9d45ec0f7d9/small.jpg?1378750700</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/035/370/8525d6d5e6d0b3c70790c9d45ec0f7d9/xsmall.jpg?1378750700</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/035/370/8525d6d5e6d0b3c70790c9d45ec0f7d9/xxsmall.jpg?1378750700</ThumbnailUrl>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 09 Sep 2013 14:21:34 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110033" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110033">
<Title>Exhibition Curated by Lisa Moren, Visual Arts, Previewed in the Washington Post</Title>
<Body>
<![CDATA[
    <div class="html-content">Cyber In Securities curated by Lisa Moren, visual arts, and presented by the Washington Project for the Arts, received a positive review from the Washington Post, labeling it as a display that “should be one of the fall’s most discussed local exhibitions.” Read the article at the Washington Post’s website: “Fall gallery shows: ‘Cyber In Securities,’ ‘Silver Clouds,’ ‘This is Labor’” The exhibition features work by 13 artists or teams, “who contemplate the role of information-gathering, including surveillance by intelligence and law enforcement agencies. . . All use technology to comment on technology and its implications.”  Cyber In Securities is on view through …</div>
]]>
</Body>
<Summary>Cyber In Securities curated by Lisa Moren, visual arts, and presented by the Washington Project for the Arts, received a positive review from the Washington Post, labeling it as a display that...</Summary>
<Website>https://news.umbc.edu/exhibition-curated-by-lisa-moren-visual-arts-previewed-in-the-washington-post/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110033/guest@my.umbc.edu/0d0c75d0915221f47dabcc801afb415f/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 09 Sep 2013 14:19:35 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="35367" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35367">
<Title>I'm teaching a cross-listed course or multiple sections of the same class. In Blackboard, can I combine multiple sections into a single course site so I only have to work in one course site?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~anna%0A" rel="nofollow external" class="bo">Anna Sniadach</a>
                </p>
            <div>
            <h2>Tell Me</h2>
    <p>Multiple sections of a single course, or cross-listed courses, may be combined or merged into a single course section. If you would like to merge/combine course sites, please <a href="http://my.umbc.edu/go/blackboardrequest" rel="nofollow external" class="bo">submit a ticket</a> with the Course Name and Peoplesoft-assigned section number of all course sites to be merged. We will take care of your request as quickly as possible.</p>
    <p>Please keep in mind the following items about merged sites:</p>
    <p>- course IDs follow a specific naming convention to make them easier to track and update enrollments.  Course IDs are permanent, but you can always change your course name via <strong>Course Management &gt; Customization &gt; Properties</strong></p>
    <p>- multiple Blackboard sites for the same class can be confusing for students, so be clear with them how you are using both sites (e.g., lecture materials and final grade in the merged site, lab materials and grades in the individual section sites). If you don't intend to use the individual sections at all, make them <strong>Unavailable</strong> by following these steps in each of the individual sites:</p>
    <ol>
    <li>From <strong>Course Management</strong> in the lower left of your course site, click on <strong>Customization</strong> and select <strong>Properties</strong>
    </li>
    <li>In the <strong>Set Availability </strong>section,  click the radio button next to <strong>No</strong>
    </li>
    <li>Click <strong>Submit</strong>
    </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%3D41189993&amp;q=0&amp;v=1&amp;s=faq&amp;l=blackboard+faculty+merge" 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%3D41189993" 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%3D41189993" 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%3D41189993&amp;q=0&amp;v=0&amp;s=faq&amp;l=blackboard+faculty+merge" rel="nofollow external" class="bo">Request Help</a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=41189993" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=41189993&amp;revisedVersion=2&amp;originalVersion=1" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Anna Sniadach                                  Tell Me  Multiple sections of a single course, or cross-listed courses, may be combined or merged into...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=41189993</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35367/guest@my.umbc.edu/ebd3a5ea570d86101e0d75e41d41b3f9/api/pixel</TrackingUrl>
<Tag>blackboard</Tag>
<Tag>faculty</Tag>
<Tag>faq</Tag>
<Tag>merge</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/images/avatars/group/1/xsmall.png?1787677490</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/images/avatars/group/1/original.png?1787677490</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/images/avatars/group/1/xxlarge.png?1787677490</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xlarge.png?1787677490</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/images/avatars/group/1/large.png?1787677490</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/images/avatars/group/1/medium.png?1787677490</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1787677490</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xsmall.png?1787677490</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1787677490</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 09 Sep 2013 13:38:23 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35378" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35378">
<Title>Bits Blog: A Data Weapon to Avoid the Next Financial Crisis</Title>
<Body>
<![CDATA[
    <div class="html-content">The financial crisis was, among other things, a data failure. Now the Treasury’s Office of Financial Research is trying to use data to create an early warning system for risk.<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%2F09%2F09%2Fa-data-weapon-to-avoid-the-next-financial-crisis%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Data+Weapon+to+Avoid+the+Next+Financial+Crisis" 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%2F09%2F09%2Fa-data-weapon-to-avoid-the-next-financial-crisis%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Data+Weapon+to+Avoid+the+Next+Financial+Crisis" 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%2F09%2F09%2Fa-data-weapon-to-avoid-the-next-financial-crisis%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Data+Weapon+to+Avoid+the+Next+Financial+Crisis" 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%2F09%2F09%2Fa-data-weapon-to-avoid-the-next-financial-crisis%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Data+Weapon+to+Avoid+the+Next+Financial+Crisis" 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%2F09%2F09%2Fa-data-weapon-to-avoid-the-next-financial-crisis%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+Data+Weapon+to+Avoid+the+Next+Financial+Crisis" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>The financial crisis was, among other things, a data failure. Now the Treasury’s Office of Financial Research is trying to use data to create an early warning system for risk.      </Summary>
<Website>http://bits.blogs.nytimes.com/2013/09/09/a-data-weapon-to-avoid-the-next-financial-crisis/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35378/guest@my.umbc.edu/cd27705d460373471a1abed22bc821ca/api/pixel</TrackingUrl>
<Tag>berner-richard</Tag>
<Tag>data</Tag>
<Tag>data-mining-and-database-marketing</Tag>
<Tag>new</Tag>
<Tag>office-of-financial-research-united-states-treasury</Tag>
<Tag>policy</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>Mon, 09 Sep 2013 13:07:39 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35365" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35365">
<Title>Nick Offerman Tickets on Sale!</Title>
<Tagline>Ron Swanson from "Parks &amp; Rec"</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Tickets are available at the CIC and are only $12! T<span>he first 200 tickets sold at the CIC grant the holder access to EARLY ENTRY TO THE SHOW and any ticket purchased the first day of sales is entered into a raffle for a MEET &amp; GREET!</span>
    </div>
]]>
</Body>
<Summary>Tickets are available at the CIC and are only $12! The first 200 tickets sold at the CIC grant the holder access to EARLY ENTRY TO THE SHOW and any ticket purchased the first day of sales is...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35365/guest@my.umbc.edu/9f6c2665dee4bcb90854e136cc160028/api/pixel</TrackingUrl>
<Group token="cic">Campus Information Center (CIC)</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/cic</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/original.png?1318518699</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/large.png?1318518699</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/medium.png?1318518699</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/small.png?1318518699</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxsmall.png?1318518699</AvatarUrl>
<Sponsor>Campus Information Center (CIC)</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/035/365/079b4e0f2428e412142657fe4d3cbc14/xxlarge.jpg?1378746020</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/035/365/079b4e0f2428e412142657fe4d3cbc14/xlarge.jpg?1378746020</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/035/365/079b4e0f2428e412142657fe4d3cbc14/large.jpg?1378746020</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/035/365/079b4e0f2428e412142657fe4d3cbc14/medium.jpg?1378746020</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/035/365/079b4e0f2428e412142657fe4d3cbc14/small.jpg?1378746020</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/035/365/079b4e0f2428e412142657fe4d3cbc14/xsmall.jpg?1378746020</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/035/365/079b4e0f2428e412142657fe4d3cbc14/xxsmall.jpg?1378746020</ThumbnailUrl>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 09 Sep 2013 13:01:49 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35366" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35366">
<Title>The new iPhone is rumored to have fingerprint authentication - but will that mak...</Title>
<Body>
<![CDATA[
    <div class="html-content">The new iPhone is rumored to have fingerprint authentication - but will that make it easier to hack? (via <a href="/profile.php?id=19440638720" title="To tag someone, type @ and then the friend's name" rel="nofollow external" class="bo">WIRED</a>)<br><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.wired.com%2Fopinion%2F2013%2F09%2Fwhat-if-apples-new-phone-has-fingerprint-authentication%2F&amp;h=CAQH2B8Ad&amp;s=1" title="" rel="nofollow external" class="bo"><img src="https://fbexternal-a.akamaihd.net/safe_image.php?d=AQBUDhRkSvRnW98d&amp;w=154&amp;h=154&amp;url=http%3A%2F%2Fwww.wired.com%2Fopinion%2Fwp-content%2Fuploads%2F2013%2F09%2Ffinger_print_f.jpg" alt="" style="max-width: 100%; height: auto;"></a><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.wired.com%2Fopinion%2F2013%2F09%2Fwhat-if-apples-new-phone-has-fingerprint-authentication%2F&amp;h=BAQHYCIkJ&amp;s=1" rel="nofollow external" class="bo">If the New iPhone Has Fingerprint Authentication, Can It Be Hacked? | Wired Opinion | Wired.com</a><br><a href="http://www.wired.com">www.wired.com</a><br>Apple would be smart to add biometric technology to the iPhone. Fingerprint authentication is a good balance between convenience and security for a mobile device. But the reality isn’t that simple.</div>
]]>
</Body>
<Summary>The new iPhone is rumored to have fingerprint authentication - but will that make it easier to hack? (via WIRED)   If the New iPhone Has Fingerprint Authentication, Can It Be Hacked? | Wired...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10151567683336076</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35366/guest@my.umbc.edu/d2568c235a8dc01c0c3685a590b10ffc/api/pixel</TrackingUrl>
<Tag>ccna</Tag>
<Tag>ceh</Tag>
<Tag>centers</Tag>
<Tag>cisco</Tag>
<Tag>cyber</Tag>
<Tag>cybersecurity</Tag>
<Tag>information</Tag>
<Tag>it</Tag>
<Tag>leadership</Tag>
<Tag>management</Tag>
<Tag>microsoft</Tag>
<Tag>project</Tag>
<Tag>security</Tag>
<Tag>technology</Tag>
<Tag>training</Tag>
<Tag>umbc</Tag>
<Group token="retired-575">UMBC Training Centers</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-575</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/original.jpg?1361981335</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/large.png?1361981335</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/medium.png?1361981335</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/small.png?1361981335</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxsmall.png?1361981335</AvatarUrl>
<Sponsor>UMBC Training Centers</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 09 Sep 2013 13:00:00 -0400</PostedAt>
<EditAt>Mon, 09 Sep 2013 13:00:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35364" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35364">
<Title>Fall Semester&#8212;Revisiting Discussions About College Drinking</Title>
<Tagline>How Parents Can Help</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <span>As the fall semester begins, parents can use this important time to help prepare their college-age sons and daughters by talking with them about the consequences of excessive drinking. </span><div><span><br></span></div>
    <div>
    <span>For parents who want to talk to their college-age sons and daughters about the consequences of college drinking, a variety of helpful resources are available from </span><span> </span><span>National Institute on Alcohol Abuse and Alcoholism (NIAAA). </span>
    </div>
    <div><span><br></span></div>
    <div><span>Check out the full story here! </span></div>
    </div>
]]>
</Body>
<Summary>As the fall semester begins, parents can use this important time to help prepare their college-age sons and daughters by talking with them about the consequences of excessive drinking.     For...</Summary>
<Website>http://pubs.niaaa.nih.gov/publications/CollegeFactSheet/back_to_collegeFact.htm?utm_source=Copy+of+NCSSLE+Vol+1%2C+Issue+2&amp;utm_campaign=e-Digest+Vol+1+Issue+2&amp;utm_medium=email</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35364/guest@my.umbc.edu/7a5cef7087932ab051071404cba4becc/api/pixel</TrackingUrl>
<Group token="retired-420">UMBC Family Connection </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-420</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xsmall.png?1340914772</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/original.png?1340914772</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xxlarge.png?1340914772</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xlarge.png?1340914772</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/large.png?1340914772</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/medium.png?1340914772</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/small.png?1340914772</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xsmall.png?1340914772</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xxsmall.png?1340914772</AvatarUrl>
<Sponsor>UMBC Family Connection</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/035/364/9b03bd15cd9675565205c882ded07ef6/xxlarge.jpg?1378745877</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/035/364/9b03bd15cd9675565205c882ded07ef6/xlarge.jpg?1378745877</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/035/364/9b03bd15cd9675565205c882ded07ef6/large.jpg?1378745877</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/035/364/9b03bd15cd9675565205c882ded07ef6/medium.jpg?1378745877</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/035/364/9b03bd15cd9675565205c882ded07ef6/small.jpg?1378745877</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/035/364/9b03bd15cd9675565205c882ded07ef6/xsmall.jpg?1378745877</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/035/364/9b03bd15cd9675565205c882ded07ef6/xxsmall.jpg?1378745877</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 09 Sep 2013 12:58:43 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35374" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35374">
<Title>DealBook: Icahn Calls Off Fight Over Dell&#8217;s Sale</Title>
<Body>
<![CDATA[
    <div class="html-content">After months of fighting and a seemingly inexhaustible stream of sharp-tongued letters, Carl C. Icahn is ending his battle against Dell’s proposed sale to its founder.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F09%2Ficahn-calls-off-fight-over-dells-sale%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Icahn+Calls+Off+Fight+Over+Dell%E2%80%99s+Sale" 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%2Fdealbook.nytimes.com%2F2013%2F09%2F09%2Ficahn-calls-off-fight-over-dells-sale%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Icahn+Calls+Off+Fight+Over+Dell%E2%80%99s+Sale" 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%2Fdealbook.nytimes.com%2F2013%2F09%2F09%2Ficahn-calls-off-fight-over-dells-sale%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Icahn+Calls+Off+Fight+Over+Dell%E2%80%99s+Sale" 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%2Fdealbook.nytimes.com%2F2013%2F09%2F09%2Ficahn-calls-off-fight-over-dells-sale%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Icahn+Calls+Off+Fight+Over+Dell%E2%80%99s+Sale" 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%2Fdealbook.nytimes.com%2F2013%2F09%2F09%2Ficahn-calls-off-fight-over-dells-sale%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Icahn+Calls+Off+Fight+Over+Dell%E2%80%99s+Sale" 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/173608738190/u/0/f/640387/c/34625/s/310261aa/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608738190/u/0/f/640387/c/34625/s/310261aa/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608738190/u/0/f/640387/c/34625/s/310261aa/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608738190/u/0/f/640387/c/34625/s/310261aa/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608738190/u/0/f/640387/c/34625/s/310261aa/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608738190/u/0/f/640387/c/34625/s/310261aa/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173608738190/u/0/f/640387/c/34625/s/310261aa/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608738190/u/0/f/640387/c/34625/s/310261aa/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>After months of fighting and a seemingly inexhaustible stream of sharp-tongued letters, Carl C. Icahn is ending his battle against Dell’s proposed sale to its founder.      </Summary>
<Website>http://dealbook.nytimes.com/2013/09/09/icahn-calls-off-fight-over-dells-sale/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35374/guest@my.umbc.edu/f75c61824d1e0535bb8d76e8fee53844/api/pixel</TrackingUrl>
<Tag>dell-inc</Tag>
<Tag>dell-inc-dell-nasdaq</Tag>
<Tag>dell-michael-s</Tag>
<Tag>hedge-funds</Tag>
<Tag>icahn-carl-c</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>new</Tag>
<Tag>silver-lake-partners</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>Mon, 09 Sep 2013 12:42:27 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35384" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35384">
<Title>Google Makes New Offer to Settle Its European Union Antitrust Case</Title>
<Body>
<![CDATA[
    <div class="html-content">The Internet giant said it made a second attempt to settle an antitrust inquiry it faces in Europe over accusations that it abuses its dominance in Internet search and advertising.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F09%2F10%2Ftechnology%2Fgoogle-makes-new-offer-in-european-antitrust-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Makes+New+Offer+to+Settle+Its+European+Union+Antitrust+Case" 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%2F09%2F10%2Ftechnology%2Fgoogle-makes-new-offer-in-european-antitrust-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Makes+New+Offer+to+Settle+Its+European+Union+Antitrust+Case" 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%2F09%2F10%2Ftechnology%2Fgoogle-makes-new-offer-in-european-antitrust-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Makes+New+Offer+to+Settle+Its+European+Union+Antitrust+Case" 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%2F09%2F10%2Ftechnology%2Fgoogle-makes-new-offer-in-european-antitrust-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Makes+New+Offer+to+Settle+Its+European+Union+Antitrust+Case" 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%2F09%2F10%2Ftechnology%2Fgoogle-makes-new-offer-in-european-antitrust-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Makes+New+Offer+to+Settle+Its+European+Union+Antitrust+Case" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>The Internet giant said it made a second attempt to settle an antitrust inquiry it faces in Europe over accusations that it abuses its dominance in Internet search and advertising.      </Summary>
<Website>http://www.nytimes.com/2013/09/10/technology/google-makes-new-offer-in-european-antitrust-case.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35384/guest@my.umbc.edu/b2d78d77df915ab31c8d45e235d7ecda/api/pixel</TrackingUrl>
<Tag>antitrust-laws-and-competition-issues</Tag>
<Tag>european-commission</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>new</Tag>
<Tag>online-advertising</Tag>
<Tag>search-engines</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>Mon, 09 Sep 2013 12:36:40 -0400</PostedAt>
<EditAt>Mon, 09 Sep 2013 12:36:40 -0400</EditAt>
</NewsItem>

</News>
