<?xml version="1.0"?>
<News hasArchived="true" page="8573" pageCount="10793" pageSize="10" timestamp="Sat, 05 Sep 2026 08:10:57 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8573&amp;range=2">
<NewsItem contentIssues="true" id="32912" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32912">
<Title>Pure: What, Why, &amp; How?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=33320&amp;c=1269740312" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=33320&amp;c=1269740312" alt="" style="max-width: 100%; height: auto;"></a><p>This tutorial will introduce you to <a href="http://purecss.io/" rel="nofollow external" class="bo">Pure</a>, a CSS library made of small modules, that can help you in writing completely responsive layouts, in a very fast and easy way. Along the way, I’ll guide you through the creation of a simple page in order to highlight how you can use some of the library’s components.</p>
    <p></p>
    <hr>
    <h2>Why Create Responsive Layouts?</h2>
    <p> Over the past few years in web development, <em>three</em> words that are bouncing around, over and over again are: Responsive Web Design (RWD). At this point you should already know what it is, but, just in case you missed it, here are some resources to fill in the gaps:</p>
    <ul>
    <li><a href="http://webdesign.tutsplus.com/tag/responsive-web-design/" rel="nofollow external" class="bo">Articles on WebDesign Tuts+</a></li>
    <li><a href="https://tutsplus.com/course/responsive-web-design-for-beginners/" rel="nofollow external" class="bo">Courses on Tuts+ Premium</a></li>
    <li><a href="http://www.abookapart.com/products/responsive-web-design" rel="nofollow external" class="bo">Responsive Web Design by Ethan Marcotte</a></li>
    </ul>
    <p> But the question is: Why go responsive? The answer is that we don’t have any control over which resolution the next device will be using when they visit our website. No longer can we just display sentences like, “Best viewed at 1024×768 resolution” (although you can still <a href="https://www.google.it/search?q=Best+viewed+at+1024x768+resolution" rel="nofollow external" class="bo">find them on the web</a>). One of the main reasons for this phenomenon was from the growth in the width of PC monitors and also from the spread of mobile devices which are connected to the Internet. Additionally, based on StatCounter, currently <a href="http://gs.statcounter.com/#mobile_vs_desktop-ww-monthly-200812-201306" rel="nofollow external" class="bo">~ 16% of users are connected through a mobile device</a>. Now I’m not saying that <abbr>RWD</abbr> is just a matter of optimizing a website for a given screen size, what I mean is that we’re creating a great experience for users visiting our website regardless of the devices they are using.</p>
    <p> With that said, it’s also clear that not all of us work for a company where every person has a single role (designer, developer, tester, and so on). So, let’s say that you’re a solo developer, working as a freelancer and you don’t know much about web design. There are a lot of libraries available that can speed up your work-flow. The most complete ones are surely <a href="http://twitter.github.io/bootstrap/" rel="nofollow external" class="bo">Boostrap</a> and <a href="http://foundation.zurb.com/" rel="nofollow external" class="bo">Foundation</a> but sometimes they can be overkill and you may need something smaller. In these instances, a new interesting project has been launched by Yahoo which we can use, called Pure.</p>
    <hr>
    <h2>What Is Pure?</h2>
    <p> Citing the Pure website, it is a set of small, responsive CSS modules that you can use in every web project. As said before, the complete library is really light, being only 4.2KB minified and gzipped, but to keep your website even lighter, you can include just some of the available modules. Basically, it’s composed of the following modules:</p>
    <ul>
    <li>Base</li>
    <li>Grid</li>
    <li>Forms</li>
    <li>Buttons</li>
    <li>Tables</li>
    <li>Menus</li>
    </ul>
    <p> One of the things I really appreciate about Pure is that it’s based on <strong>Normalize.css</strong>, a well known library that renders elements more consistently and in line with modern standards and also works in older browsers. Since it’s really small, it doesn’t offer a complete solution to all of your problems, but it has several prebuilt common UI elements that you can find in a lot of websites on the web. Another interesting feature of Pure is that it’s highly extensible and customizable. The authors used <a href="http://smacss.com/" rel="nofollow external" class="bo">SMACSS</a> to build it and all of its classes start with <code>pure-</code>, so you can easily recognize them.</p>
    <p> Although Pure is an interesting project to look at, keep in mind that it is really new and might not be a good fit for large projects. In fact, the current version (0.2.0 at the time of this writing) has several issues that you probably wouldn’t find in more mature frameworks and its documentation could also be improved upon. Nonetheless, I liked it and being a precursor, you have the advantage to study and learn Pure, from the very start, which could end up being the next well known project on the web.</p>
    <hr>
    <h2>Let’s See Pure in Action</h2>
    <p> They say that an image is worth a thousand words. For us, as developers and designers, a demo that we can play around with is even better. So, to see what Pure can do for us, let’s create a basic demo app. Our demo will consist of a simple Homepage containing some information about myself (sometimes my imagination scares me). The image below shows you what the final result should look like on a large screen:</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/07/IMAGE_1.jpg" alt="Final Result on Desktop" width="600" height="396" style="max-width: 100%; height: auto;"><br> <p>And the following image, instead, shows you how it will look on a smartphone:</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/07/IMAGE_2.jpg" alt="Final Result on Mobile" width="600" height="1619" style="max-width: 100%; height: auto;"><br> <hr>
    <h2>
    <span>Step 1:</span> Create the Horizontal Menu</h2>
    <p> As I said, Pure has several prebuilt common elements that you can find in a lot of websites on the web. A horizontal menu is surely one of them and will give us the chance to take a look at some of the classes of the menus module.</p>
    <p> To create this using HTML5, we usually have a <code>&lt;nav&gt;</code> element wrapping an unordered list that contains the main links of our website. Once the list is created, we have to display it horizontally. To achieve this, we have to apply three classes to the list wrapper (<code>&lt;nav&gt;</code>): <code>.pure-menu</code>, <code>.pure-menu-open</code>, and <code>.pure-menu-horizontal</code>. The first class applies rules that are common to all menus in Pure. The <code>.pure-menu-open</code> class is used to show (instead of hide) the list items, while the <code>.pure-menu-horizontal</code> class is the one responsible for showing the list items on the same line. Please note that by default, the menu isn’t centered.</p>
    <p> Now, to enhance the user interface, we should highlight the list item that links to the current page. This is done by applying the <code>.pure-menu-selected</code> class to the <code>&lt;li&gt;</code> element you want to highlight. By doing so, the color of the text will turn from grey to black.</p>
    <p>The complete code of our menu is displayed below:</p>
    <pre>&lt;nav id="main-menu" class="pure-menu pure-menu-open pure-menu-horizontal"&gt;&#x000A;       &lt;ul&gt;&#x000A;          &lt;li class="pure-menu-selected"&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;&#x000A;          &lt;li&gt;&lt;a href="#"&gt;Projects&lt;/a&gt;&lt;/li&gt;&#x000A;          &lt;li&gt;&lt;a href="#"&gt;Publications&lt;/a&gt;&lt;/li&gt;&#x000A;          &lt;li&gt;&lt;a href="#"&gt;Portfolio&lt;/a&gt;&lt;/li&gt;&#x000A;          &lt;li&gt;&lt;a href="#"&gt;Services&lt;/a&gt;&lt;/li&gt;&#x000A;       &lt;/ul&gt;&#x000A;    &lt;/nav&gt;&#x000A;    </pre>
    <hr>
    <h2>
    <span>Step 2:</span> The Author Description</h2>
    <p> After the menu, you can see we have an ideal “row” containing on the left side, a photo and on the right side, a small description of me. This “row”, is actually a <strong>responsive grid</strong> made of two grid units, where the first wraps the photo and occupies 25% of its space, while the second wraps the description and occupies the remaining 75%, as long as the width of the screen is larger than 767px. On the contrary, if the screen’s width is equal to or smaller, the grid units are stacked and occupy 100% of the width available. Please note that the units have a 100% width, so if the elements inside them are smaller in width, they will occupy only part of the unit. To see how this works, try resizing the window and notice how the photo does not consume 100% of the width, while at the same time, the grid units are stacked.</p>
    <p> As noted before, Pure has a <a href="http://purecss.io/grids/" rel="nofollow external" class="bo">specific module</a> for managing grids. To declare a responsive grid, you have to apply to the container a class called <code>.pure-g-r</code>. The grid units though, instead, share a similar name, <code>.pure-u-*-*</code>, where the final part of the class specifies how much space the given unit will take up. For example, if you apply to an element the <code>.pure-u-1-4</code> class, it’ll reserve 25% of the available width, as I did for the photo. Another example could be <code>.pure-u-2-3</code> which will allow the unit to take up 66.6% of the grid space.</p>
    <p> This grid system is really interesting because it can save you a lot of time if you don’t know how to manage <code>float</code>, <code>clear</code>, and other rules to create layouts. In addition, they will save you from all the pain of managing the responsive side of the layout.</p>
    <p> With that said, the code that implements the first grid should look like this:</p>
    <pre>&lt;article id="about-me" class="pure-g-r"&gt;&#x000A;       &lt;h1&gt;Aurelio De Rosa&lt;/h1&gt;&#x000A;       &lt;div class="pure-u-1-4"&gt;&#x000A;          &lt;img src="<a href="http://aurelio.audero.it/images/aurelio-de-rosa-2.jpg">http://aurelio.audero.it/images/aurelio-de-rosa-2.jpg</a>" alt="Aurelio De Rosa" /&gt;&#x000A;       &lt;/div&gt;&#x000A;       &lt;section class="pure-u-3-4"&gt;&#x000A;          &lt;p&gt;&#x000A;             I'm an Italian web and app developer who have a bachelor degree in Computer Science and more&#x000A;             than 5 years' experience programming for the web using HTML5, CSS3, JavaScript and PHP.&#x000A;             I mainly use the &lt;abbr title="Linux Apache MySql PHP"&gt;LAMP&lt;/abbr&gt; stack and frameworks like&#x000A;             &lt;a href="<a href="http://jquery.com/">http://jquery.com/</a>" target="_blank"&gt;jQuery&lt;/a&gt;, &lt;a href="<a href="http://jquerymobile.com/">http://jquerymobile.com/</a>" target="_blank"&gt;jQuery Mobile&lt;/a&gt; and&#x000A;             &lt;a href="<a href="http://phonegap.com/">http://phonegap.com/</a>" target="_blank"&gt;Cordova (PhoneGap)&lt;/a&gt;. My interests also include web security,&#x000A;             web accessibility, SEO and &lt;a href="<a href="http://wordpress.org/">http://wordpress.org/</a>" target="_blank"&gt;WordPress&lt;/a&gt;.&#x000A;          &lt;/p&gt;&#x000A;          &lt;p&gt;&#x000A;             Currently I'm self-employed working with the cited technologies. I'm also a regular blogger for&#x000A;             several networks (&lt;a href="<a href="http://www.sitepoint.com/author/aderosa/">http://www.sitepoint.com/author/aderosa/</a>" target="_blank"&gt;SitePoint&lt;/a&gt;,&#x000A;             &lt;a href="<a href="http://mobile.tutsplus.com/author/aurelio-de-rosa/%22&gt;Tuts+&lt;/a&amp;gt">http://mobile.tutsplus.com/author/aurelio-de-rosa/"&gt;Tuts+&lt;/a&amp;gt</a>; and&#x000A;             &lt;a href="<a href="http://flippinawesome.org/authors/aurelio-de-rosa/">http://flippinawesome.org/authors/aurelio-de-rosa/</a>" target="_blank"&gt;FlippinAwesome&lt;/a&gt;)&#x000A;             where I write articles about the topics I usually work with and more.&#x000A;          &lt;/p&gt;&#x000A;       &lt;/section&gt;&#x000A;    &lt;/article&gt;&#x000A;    </pre>
    <hr>
    <h2>
    <span>Step 3:</span> The Information Grid</h2>
    <p>The second and last grid is split into three equal parts. I created them to show you other components of the library, so you can have a good overview of them. In fact, the first unit has a table, the second has a form, and the third has a vertical menu.</p>
    <p>The code below shows you how to split the grid into three parts:</p>
    <pre>&lt;article class="pure-g-r"&gt;&#x000A;       &lt;div class="pure-u-1-3"&gt;&#x000A;       &lt;/div&gt;&#x000A;       &lt;div class="pure-u-1-3"&gt;&#x000A;       &lt;/div&gt;&#x000A;       &lt;div class="pure-u-1-3"&gt;&#x000A;       &lt;/div&gt;&#x000A;    &lt;/article&gt;&#x000A;    </pre>
    <p> Now, let’s explore each unit of this responsive grid.</p>
    <hr>
    <h2>
    <span>Step 4:</span> A Responsive Table</h2>
    <p> Another one of the available modules in Pure, is Tables. Like the name says, it contains rules to style a <code>&lt;table&gt;</code> element and its children. By default, tables will have a vertical border applied to visually separate columns. However, you can also add a horizontal border, applying the <code>.pure-table-bordered</code> class or show only the latter using the <code>.pure-table-horizontal</code> class to the <code>&lt;table&gt;</code> element. Additionally, you can also create striped tables to aid the user in reading the data. To achieve this, you have two possibilities. The first will work on browsers that support <code>nth-child</code> and consists of applying the <code>.pure-table-striped</code> class name to the <code>&lt;table&gt;</code> element. The second, instead, works in all the browsers, including Internet Explorer 8 and lower, but it’s more verbose. It consists of adding the <code>.pure-table-odd</code> class name to every other <code>&lt;tr&gt;</code> element. For compatibility reasons, I’ll go for the second approach.</p>
    <p> Currently, tables have <a href="https://github.com/yui/pure/issues/95" rel="nofollow external" class="bo">a problem when viewed on small screens</a>, but it’ll be fixed in the next release. Please note that you won’t see it in the demo because I fixed it. High five for me.</p>
    <p> The code that creates the striped table is shown below:</p>
    <pre>&lt;h3&gt;Funny Price Table&lt;/h3&gt;&#x000A;    &lt;table class="pure-table"&gt;&#x000A;       &lt;thead&gt;&#x000A;          &lt;tr&gt;&#x000A;             &lt;th&gt;Hours Number&lt;/th&gt;&#x000A;             &lt;th&gt;Price (&amp;euro;)&lt;/th&gt;&#x000A;             &lt;th&gt;Safe (%)&lt;/th&gt;&#x000A;          &lt;/tr&gt;&#x000A;       &lt;/thead&gt;&#x000A;       &lt;tbody&gt;&#x000A;          &lt;tr class="pure-table-odd"&gt;&#x000A;             &lt;td&gt;1&lt;/td&gt;&#x000A;             &lt;td&gt;30 &amp;euro;&lt;/td&gt;&#x000A;             &lt;td&gt;0%&lt;/td&gt;&#x000A;          &lt;/tr&gt;&#x000A;          &lt;tr&gt;&#x000A;             &lt;td&gt;5&lt;/td&gt;&#x000A;             &lt;td&gt;135 &amp;euro;&lt;/td&gt;&#x000A;             &lt;td&gt;10%&lt;/td&gt;&#x000A;          &lt;/tr&gt;&#x000A;          &lt;tr class="pure-table-odd"&gt;&#x000A;             &lt;td&gt;10&lt;/td&gt;&#x000A;             &lt;td&gt;255 &amp;euro;&lt;/td&gt;&#x000A;             &lt;td&gt;15%&lt;/td&gt;&#x000A;          &lt;/tr&gt;&#x000A;          &lt;tr&gt;&#x000A;             &lt;td&gt;20&lt;/td&gt;&#x000A;             &lt;td&gt;480 &amp;euro;&lt;/td&gt;&#x000A;             &lt;td&gt;20%&lt;/td&gt;&#x000A;          &lt;/tr&gt;&#x000A;          &lt;tr class="pure-table-odd"&gt;&#x000A;             &lt;td&gt;50&lt;/td&gt;&#x000A;             &lt;td&gt;1050 &amp;euro;&lt;/td&gt;&#x000A;             &lt;td&gt;30%&lt;/td&gt;&#x000A;          &lt;/tr&gt;&#x000A;       &lt;/tbody&gt;&#x000A;    &lt;/table&gt;&#x000A;    </pre>
    <hr>
    <h2>
    <span>Step 5:</span> A Stacked Contact Form</h2>
    <p> Forms are yet another module of the Pure library. It allows you to display your forms in several different types of styles. In this demo, we’ll create a stacked form, where the input elements are below the labels. To do this, we have to add the <code>.pure-form</code> and the <code>.pure-form-stacked</code> classes to the <code>&lt;form&gt;</code> element. Then we have to place both the <code>label</code> and the <code>input</code> tags within a wrapper, where we’ll apply the <code>.pure-control-group</code> class and then put all of these wrappers into a <code>&lt;fieldset&gt;</code> element. The submit and the reset button will have a wrapper as well, but their wrapper will have the class <code>.pure-controls</code>. Please note that for the submit button, we used the class <code>.pure-button-primary</code> to highlight it. The cited class belongs to the Buttons module and is used to change the style of the button, applying a blue color.</p>
    <p> Here’s what your form code should look like:</p>
    <pre>&lt;h3&gt;Contact me&lt;/h3&gt;&#x000A;    &lt;form id="contact" name="contact" action="#" method="post" class="pure-form pure-form-aligned"&gt;&#x000A;       &lt;fieldset&gt;&#x000A;          &lt;div class="pure-control-group"&gt;&#x000A;             &lt;label&gt;Name:&lt;/label&gt;&#x000A;             &lt;input type="text" name="name" placeholder="Name" /&gt;&#x000A;          &lt;/div&gt;&#x000A;          &lt;div class="pure-control-group"&gt;&#x000A;             &lt;label&gt;Email&lt;/label&gt;&#x000A;             &lt;input type="email" name="email" placeholder="Email" /&gt;&#x000A;          &lt;/div&gt;&#x000A;          &lt;div class="pure-control-group"&gt;&#x000A;             &lt;label&gt;Subject&lt;/label&gt;&#x000A;             &lt;input type="text" name="subject" placeholder="Subject" /&gt;&#x000A;          &lt;/div&gt;&#x000A;          &lt;div class="pure-control-group"&gt;&#x000A;             &lt;label&gt;Message:&lt;/label&gt;&#x000A;             &lt;textarea name="message" placeholder="Your message here..."&gt;&lt;/textarea&gt;&#x000A;          &lt;/div&gt;&#x000A;          &lt;div class="pure-controls"&gt;&#x000A;             &lt;input type="submit" class="pure-button pure-button-primary" value="Submit" /&gt;&#x000A;             &lt;input type="reset" class="pure-button" value="Reset" /&gt; &#x000A;          &lt;/div&gt;&#x000A;       &lt;/fieldset&gt;&#x000A;    &lt;/form&gt;&#x000A;    </pre>
    <hr>
    <h2>
    <span>Step 6:</span> A Vertical Menu With a Header</h2>
    <p> The final element that you’ll learn how to create, using Pure, will be a vertical menu with a header. A menu of this type is styled with a black border, all around. To use it, we’ll apply to the list wrapper, two of the three classes we’ve already used in the first step, that is <code>.pure-menu</code> and <code>.pure-menu-open</code>. In addition, to create the header, we must add another element and apply to it the <code>.pure-menu-heading</code> class.</p>
    <p> The code for this menu is listed below:</p>
    <pre>&lt;h2&gt;Where to find me&lt;/h2&gt;&#x000A;    &lt;div class="pure-menu pure-menu-open"&gt;&#x000A;       &lt;a href="#" class="pure-menu-heading"&gt;My profiles&lt;/a&gt;&#x000A;       &lt;ul&gt;&#x000A;          &lt;li&gt;&lt;a href="<a href="http://www.twitter.com/AurelioDeRosa%22&gt;Twitter&lt;/a&gt;&lt;/li&amp;gt">http://www.twitter.com/AurelioDeRosa"&gt;Twitter&lt;/a&gt;&lt;/li&amp;gt</a>;&#x000A;          &lt;li&gt;&lt;a href="<a href="http://www.linkedin.com/in/aurelioderosa%22&gt;LinkedIn&lt;/a&gt;&lt;/li&amp;gt">http://www.linkedin.com/in/aurelioderosa"&gt;LinkedIn&lt;/a&gt;&lt;/li&amp;gt</a>;&#x000A;          &lt;li&gt;&lt;a href="<a href="https://github.com/AurelioDeRosa%22&gt;GitHub&lt;/a&gt;&lt;/li&amp;gt">https://github.com/AurelioDeRosa"&gt;GitHub&lt;/a&gt;&lt;/li&amp;gt</a>;&#x000A;          &lt;li&gt;&lt;a href="<a href="https://plus.google.com/111199469497044249730%22&gt;Google+&lt;/a&gt;&lt;/li&amp;gt">https://plus.google.com/111199469497044249730"&gt;Google+&lt;/a&gt;&lt;/li&amp;gt</a>;&#x000A;       &lt;/ul&gt;&#x000A;    &lt;/div&gt;&#x000A;    </pre>
    <hr>
    <h2>Conclusion</h2>
    <p> So that completes this introduction to Pure. I hope you enjoyed it. If you’d like to follow the development of Pure, you can visit <a href="https://github.com/yui/pure" rel="nofollow external" class="bo">its repository on GitHub</a>. Feel free to submit issues, issue pull requests, and contribute.</p>
    </div>
]]>
</Body>
<Summary>This tutorial will introduce you to Pure, a CSS library made of small modules, that can help you in writing completely responsive layouts, in a very fast and easy way. Along the way, I’ll guide...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/zicss84rqDE/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32912/guest@my.umbc.edu/e74928bb4df746e0f7935b1125c5f544/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html-and-css</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>pure</Tag>
<Tag>sql</Tag>
<Tag>tutorials</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 18 Jul 2013 20:13:19 -0400</PostedAt>
<EditAt>Thu, 18 Jul 2013 20:13:19 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="32915" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32915">
<Title>Google Announces the Releases of their new iOS Google Maps Developer SDK</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>Google's new SDK for iOS comes chocked with new features including the ability to embed Google’s Street View pictures directly into the Maps and a host of other new features as well.</p></div>
]]>
</Body>
<Summary>Google's new SDK for iOS comes chocked with new features including the ability to embed Google’s Street View pictures directly into the Maps and a host of other new features as well.</Summary>
<Website>http://www.htmlgoodies.com/daily_news/google-announces-the-releases-of-their-new-ios-google-maps-developer-sdk.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32915/guest@my.umbc.edu/3db68c53b3c999738d864626e878b422/api/pixel</TrackingUrl>
<Tag>html</Tag>
<Tag>htmlgoodies</Tag>
<Tag>learning</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 18 Jul 2013 19:25:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32911" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32911">
<Title>PROMISE SSI Registrants (throughout the USM): &#8220;Entrepreneur Office hours&#8221; September 2013</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em><a href="http://www.mtech.umd.edu/educate/team.html#jamesg" rel="nofollow external" class="bo">Dr. James Green</a></em>, Director, Entrepreneurship Education and Hinman CEOs, Senior Lecturer and Associate Director, <a href="http://www.mtech.umd.edu/about/" rel="nofollow external" class="bo">Maryland Technology Enterprise Institute (Mtech)</a>, at the University of Maryland College Park, was invited to the <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">2013 PROMISE SSI</a>, but is unable to attend. Although he is not able to participate in the PROMISE SSI  ”Mentoring for Advancement” session, he is offering entrepreneurship office hour opportunities to  our graduate students and postdocs with a valid ID from a school within the University System of Maryland.</p>
    <p><strong>September 10, 2013 10:00 a.m.</strong></p>
    <p>Free, Open Entrepreneur Office Hours <a href="http://www.mtech.umd.edu/events/index.php?mode=4&amp;id=8493" rel="nofollow external" class="bo">More»</a></p>
    <p>Mtech offers the following opportunities during “Office Hours” to help aspiring and current entrepreneurs with tech-based start-ups or ideas get advice on how to:</p>
    <ul>
    <ul>
    <li>build and finance a start-up company</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>develop and protect intellectual property</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>navigate the technology transfer process</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>refine your business strategy for rapid growth</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>tap into other entrepreneurial resources</li>
    </ul>
    </ul>
    <p><em>- See more on MTech’s website: <a href="http://www.mtech.umd.edu/events/index.php?mode=4&amp;id=8471" rel="nofollow external" class="bo">http://www.mtech.umd.edu/events/index.php?mode=4&amp;id=8471</a></em></p>
    
    <p><img alt="" src="http://promiseagep.files.wordpress.com/2012/06/pathways_cgs.png?w=82&amp;h=63&amp;h=63" width="82" height="63" style="max-width: 100%; height: auto;"></p>
    <div><em>This opportunity is brought to you as an outgrowth of the PROMISE Summer Success Institute (part of the National Science Foundation’s Alliances for Graduate Education and the Professoriate (AGEP)), and in response to the Council of Graduate Schools’ “Pathways to Careers” initiative: <a href="http://www.cgsnet.org/strengthening-pathways-through-graduate-school-and-careers" rel="nofollow external" class="bo">Pathways Through Graduate School and Into Careers. </a></em></div>
    <h6>Related articles</h6>
    <ul>
    <li>
    <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">PROMISE Summer Success Institute (SSI) 10th Anniversary Celebration! August 16-17, 2013 in Baltimore</a> (promiseagep.wordpress.com)</li>
    </ul>
    <br>   </div>
]]>
</Body>
<Summary>Dr. James Green, Director, Entrepreneurship Education and Hinman CEOs, Senior Lecturer and Associate Director, Maryland Technology Enterprise Institute (Mtech), at the University of Maryland...</Summary>
<Website>http://promiseagep.wordpress.com/2013/07/18/promise-ssi-registrants-throughout-the-usm-are-invited-to-entrepreneur-office-hours-august-september-2013/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32911/guest@my.umbc.edu/3e93341b68fde227a62e878909738898/api/pixel</TrackingUrl>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>alliances-for-graduate-education-and-the-professoriate-agep</Tag>
<Tag>business</Tag>
<Tag>council-of-graduate-schools</Tag>
<Tag>development</Tag>
<Tag>entrepreneur</Tag>
<Tag>entrepreneurship</Tag>
<Tag>entrepreneurship-education</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>jobs-and-funding</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>mtech</Tag>
<Tag>nsf</Tag>
<Tag>postdoc</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>promise-agep</Tag>
<Tag>seminars-and-workshops</Tag>
<Tag>small-business</Tag>
<Tag>startup-company</Tag>
<Tag>success-seminars-and-workshops</Tag>
<Tag>summer-success-institute</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Graduate Student Development</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 18 Jul 2013 18:56:21 -0400</PostedAt>
<EditAt>Thu, 18 Jul 2013 18:56:21 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33285" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33285">
<Title>PROMISE SSI Registrants (throughout the USM): &#8220;Entrepreneur Office hours&#8221; September 2013</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em><a href="http://www.mtech.umd.edu/educate/team.html#jamesg" rel="nofollow external" class="bo">Dr. James Green</a></em>, Director, Entrepreneurship Education and Hinman CEOs, Senior Lecturer and Associate Director, <a href="http://www.mtech.umd.edu/about/" rel="nofollow external" class="bo">Maryland Technology Enterprise Institute (Mtech)</a>, at the University of Maryland College Park, was invited to the <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">2013 PROMISE SSI</a>, but is unable to attend. Although he is not able to participate in the PROMISE SSI  ”Mentoring for Advancement” session, he is offering entrepreneurship office hour opportunities to  our graduate students and postdocs with a valid ID from a school within the University System of Maryland.</p>
    <p><strong>September 10, 2013 10:00 a.m.</strong></p>
    <p>Free, Open Entrepreneur Office Hours <a href="http://www.mtech.umd.edu/events/index.php?mode=4&amp;id=8493" rel="nofollow external" class="bo">More»</a></p>
    <p>Mtech offers the following opportunities during “Office Hours” to help aspiring and current entrepreneurs with tech-based start-ups or ideas get advice on how to:</p>
    <ul>
    <ul>
    <li>build and finance a start-up company</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>develop and protect intellectual property</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>navigate the technology transfer process</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>refine your business strategy for rapid growth</li>
    </ul>
    </ul>
    <ul>
    <ul>
    <li>tap into other entrepreneurial resources</li>
    </ul>
    </ul>
    <p><em>- See more on MTech’s website: <a href="http://www.mtech.umd.edu/events/index.php?mode=4&amp;id=8471" rel="nofollow external" class="bo">http://www.mtech.umd.edu/events/index.php?mode=4&amp;id=8471</a></em></p>
    
    <p><img alt="" src="http://promiseagep.files.wordpress.com/2012/06/pathways_cgs.png?w=82&amp;h=63&amp;h=63" width="82" height="63" style="max-width: 100%; height: auto;"></p>
    <div><em>This opportunity is brought to you as an outgrowth of the PROMISE Summer Success Institute (part of the National Science Foundation’s Alliances for Graduate Education and the Professoriate (AGEP)), and in response to the Council of Graduate Schools’ “Pathways to Careers” initiative: <a href="http://www.cgsnet.org/strengthening-pathways-through-graduate-school-and-careers" rel="nofollow external" class="bo">Pathways Through Graduate School and Into Careers. </a></em></div>
    <h6>Related articles</h6>
    <ul>
    <li>
    <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">PROMISE Summer Success Institute (SSI) 10th Anniversary Celebration! August 16-17, 2013 in Baltimore</a> (promiseagep.wordpress.com)</li>
    </ul>
    <br>   </div>
]]>
</Body>
<Summary>Dr. James Green, Director, Entrepreneurship Education and Hinman CEOs, Senior Lecturer and Associate Director, Maryland Technology Enterprise Institute (Mtech), at the University of Maryland...</Summary>
<Website>https://promiseagep.wordpress.com/2013/07/18/promise-ssi-registrants-throughout-the-usm-are-invited-to-entrepreneur-office-hours-august-september-2013/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33285/guest@my.umbc.edu/f3e9c6c5eafb7053b2b70cd038c9f7fa/api/pixel</TrackingUrl>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>alliances-for-graduate-education-and-the-professoriate-agep</Tag>
<Tag>business</Tag>
<Tag>council-of-graduate-schools</Tag>
<Tag>development</Tag>
<Tag>entrepreneur</Tag>
<Tag>entrepreneurship</Tag>
<Tag>entrepreneurship-education</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>jobs-and-funding</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>mtech</Tag>
<Tag>nsf</Tag>
<Tag>postdoc</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>promise-agep</Tag>
<Tag>seminars-and-workshops</Tag>
<Tag>small-business</Tag>
<Tag>startup-company</Tag>
<Tag>success-seminars-and-workshops</Tag>
<Tag>summer-success-institute</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Graduate Student Development</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 18 Jul 2013 18:56:21 -0400</PostedAt>
<EditAt>Thu, 18 Jul 2013 18:56:21 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="123177" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123177">
<Title>Bill LaCourse, Dean of CNMS, in The Baltimore Sun</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>In a recent <a title="Launching minority students in the sciences" href="http://www.baltimoresun.com/news/maryland/education/bs-md-hopkins-science-students-20130712,0,524287.story" rel="nofollow external" class="bo">Baltimore Sun article</a> on engaging underprivileged and minority students in science, Bill LaCourse, dean of the college of natural and mathematical sciences, voiced the importance of creating a strong community to support student learning and success.</p>
    <p>Students who come to college unprepared often need remediation, said LaCourse. UMBC has decided to change the approach of throwing 800 students into an introductory science class to let everyone sink or swim, because too many were sinking. Today, the school works to ensure that students feel more supported and have a small community of fellow students to turn to for help.</p>
    </div>
]]>
</Body>
<Summary>In a recent Baltimore Sun article on engaging underprivileged and minority students in science, Bill LaCourse, dean of the college of natural and mathematical sciences, voiced the importance of...</Summary>
<Website>https://umbc.edu/stories/bill-lacourse-dean-of-cnms-in-the-baltimore-sun/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123177/guest@my.umbc.edu/28aeb04cbf74d4e1c4876f37b00848b4/api/pixel</TrackingUrl>
<Tag>admin</Tag>
<Tag>cnms</Tag>
<Tag>coeit</Tag>
<Tag>policy-and-society</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 18 Jul 2013 18:47:45 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="123178" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123178">
<Title>UMBC makes The Princeton Review&#8217;s 2013 list of green colleges</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="2013-green-guide" src="/wp-content/uploads/2013/07/2013-green-guide.png" width="200" height="198" style="max-width: 100%; height: auto;">From innovative student ideas to campus programs and campaigns, UMBC is going green—and getting noticed. The Princeton Review has recognized UMBC as a college raising the bar on sustainability in its <a title="Green Guide Full List of Schools" href="http://www.princetonreview.com/green-schools-full-list.aspx" rel="nofollow external" class="bo">2013 Guide to 322 Green Colleges</a>.</p>
    <p>The <a title="Guide to 322 Green Colleges" href="http://www.princetonreview.com/uploadedFiles/Sitemap/Home_Page/Campaign/2013/GreenGuide/_MEDIA/2013_green-guide.pdf" rel="nofollow external" class="bo">annual guide</a> profiles higher education institutions in the U.S. and Canada that demonstrate a strong commitment to sustainability in their academic offerings, campus infrastructure, activities and career preparation.</p>
    <p>To determine which schools qualify, colleges and universities are rated based on institutional data such as the school’s energy consumption, green transportation programs, and the level of dedication for sustainability in and out of the classroom.</p>
    <p>UMBC was noted for its successful student programs, including the Biodiesel Club’s sustainability project and a student-driven initiative to bring a farmer’s market and community garden to campus. The list also highlighted UMBC’s efforts to increase its renewable energy resources, the new LEED certified Performing Arts and Humanities Building, and its educational campaign for recycling.</p>
    </div>
]]>
</Body>
<Summary>From innovative student ideas to campus programs and campaigns, UMBC is going green—and getting noticed. The Princeton Review has recognized UMBC as a college raising the bar on sustainability in...</Summary>
<Website>https://umbc.edu/stories/umbc-makes-the-princeton-reviews-2013-list-of-green-colleges/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123178/guest@my.umbc.edu/8705a64acba3d427b9e4841717a4e526/api/pixel</TrackingUrl>
<Tag>admin</Tag>
<Tag>cahss</Tag>
<Tag>cnms</Tag>
<Tag>coeit</Tag>
<Tag>community</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>Thu, 18 Jul 2013 17:56:02 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32910" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32910">
<Title>Weak PC Market Catches Up to Microsoft</Title>
<Body>
<![CDATA[
    <div class="html-content">The company blamed the declining personal computer market and disappointing sales of its Surface RT tablet for missing Wall Street’s quarterly forecasts.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fweak-pc-market-catches-up-to-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Weak+PC+Market+Catches+Up+to+Microsoft" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fweak-pc-market-catches-up-to-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Weak+PC+Market+Catches+Up+to+Microsoft" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fweak-pc-market-catches-up-to-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Weak+PC+Market+Catches+Up+to+Microsoft" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fweak-pc-market-catches-up-to-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Weak+PC+Market+Catches+Up+to+Microsoft" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fweak-pc-market-catches-up-to-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Weak+PC+Market+Catches+Up+to+Microsoft" 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/165666248841/u/0/f/640387/c/34625/s/2edb7e83/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666248841/u/0/f/640387/c/34625/s/2edb7e83/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The company blamed the declining personal computer market and disappointing sales of its Surface RT tablet for missing Wall Street’s quarterly forecasts.     </Summary>
<Website>http://www.nytimes.com/2013/07/19/technology/weak-pc-market-catches-up-to-microsoft.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32910/guest@my.umbc.edu/12dd2732829ba0377a98bb4c47b5e0d6/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>bgc-partners-inc-bgcp-nasdaq</Tag>
<Tag>gartner-inc-it-nyse</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>thomson-reuters-corporation-tri-nyse</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 18 Jul 2013 17:48:31 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="123179" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123179">
<Title>For All the World to See&#8217; is An Artforum &#8216;Critics&#8217; Pick&#8217;</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The traveling exhibition <em><a href="http://cadvc.org/cadvc/foralltheworld/index.php" rel="nofollow external" class="bo">For All the World to See:</a> Visual Culture the Struggle for Civil Rights</em> curated by Maurice Berger, CADVC, and organized by the CADVC has been selected as a critic’s pick for <em>Artforum</em> Magazine by Chelsea Haines. Haines describes the exhibition as one that, “provides a historical mirror for our current moment of global unrest, in which demands and claims over cultural ownership have spurred almost as much social momentum as the toppling of states.”</p>
    <p>Read the review of the exhibition at <a href="http://artforum.com/picks/section=us#picks41964" rel="nofollow external" class="bo"><em>Artforum’s</em> website</a>.</p>
    <p> </p>
    </div>
]]>
</Body>
<Summary>The traveling exhibition For All the World to See: Visual Culture the Struggle for Civil Rights curated by Maurice Berger, CADVC, and organized by the CADVC has been selected as a critic’s pick...</Summary>
<Website>https://umbc.edu/stories/for-all-the-world-to-see-is-an-artforum-critics-pick/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123179/guest@my.umbc.edu/63e6cc1dd752f15b450dae9f8ba5b719/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cadvc</Tag>
<Tag>visualarts</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>Thu, 18 Jul 2013 17:36:21 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32907" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32907">
<Title>Google Results Show Struggle With Mobile</Title>
<Body>
<![CDATA[
    <div class="html-content">The second-quarter income announcement showed the desktop search business continued to slow, while ad prices fell.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fgoogle-misses-expectations-for-revenue-and-profit.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Results+Show+Struggle+With+Mobile" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fgoogle-misses-expectations-for-revenue-and-profit.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Results+Show+Struggle+With+Mobile" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fgoogle-misses-expectations-for-revenue-and-profit.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Results+Show+Struggle+With+Mobile" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fgoogle-misses-expectations-for-revenue-and-profit.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Results+Show+Struggle+With+Mobile" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F19%2Ftechnology%2Fgoogle-misses-expectations-for-revenue-and-profit.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Google+Results+Show+Struggle+With+Mobile" 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/165666190234/u/0/f/640387/c/34625/s/2edbad29/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666190234/u/0/f/640387/c/34625/s/2edbad29/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The second-quarter income announcement showed the desktop search business continued to slow, while ad prices fell.     </Summary>
<Website>http://www.nytimes.com/2013/07/19/technology/google-misses-expectations-for-revenue-and-profit.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32907/guest@my.umbc.edu/979453458888433419e58bd9231d8ec9/api/pixel</TrackingUrl>
<Tag>advertising-and-marketing</Tag>
<Tag>bgc-partners-inc-bgcp-nasdaq</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>new</Tag>
<Tag>stocks-and-bonds</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>Thu, 18 Jul 2013 17:33:40 -0400</PostedAt>
<EditAt>Thu, 18 Jul 2013 20:21:02 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32908" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32908">
<Title>Bits Blog: Amazon Rejected as Domain Name After South American Objections</Title>
<Body>
<![CDATA[
    <div class="html-content">A group of Latin American countries succeeded in blocking Amazon.com’s request to use the domain name .amazon, citing its importance to the identity of the Amazon basin.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F07%2F18%2Famazon-rejected-as-domain-name-after-south-american-objections%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Amazon+Rejected+as+Domain+Name+After+South+American+Objections" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F07%2F18%2Famazon-rejected-as-domain-name-after-south-american-objections%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Amazon+Rejected+as+Domain+Name+After+South+American+Objections" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F07%2F18%2Famazon-rejected-as-domain-name-after-south-american-objections%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Amazon+Rejected+as+Domain+Name+After+South+American+Objections" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F07%2F18%2Famazon-rejected-as-domain-name-after-south-american-objections%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Amazon+Rejected+as+Domain+Name+After+South+American+Objections" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F07%2F18%2Famazon-rejected-as-domain-name-after-south-american-objections%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Amazon+Rejected+as+Domain+Name+After+South+American+Objections" 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/165666190802/u/0/f/640387/c/34625/s/2edb7b1c/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666190802/u/0/f/640387/c/34625/s/2edb7b1c/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A group of Latin American countries succeeded in blocking Amazon.com’s request to use the domain name .amazon, citing its importance to the identity of the Amazon basin.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/07/18/amazon-rejected-as-domain-name-after-south-american-objections/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32908/guest@my.umbc.edu/ac8912c7a6cb779c35d9a1eb80334c66/api/pixel</TrackingUrl>
<Tag>amazon-com-inc</Tag>
<Tag>domain-names-internet</Tag>
<Tag>internet-corp-for-assigned-names-and-numbers</Tag>
<Tag>latin-america</Tag>
<Tag>names-geographical</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 18 Jul 2013 17:21:50 -0400</PostedAt>
<EditAt>Thu, 18 Jul 2013 23:06:00 -0400</EditAt>
</NewsItem>

</News>
