<?xml version="1.0"?>
<News hasArchived="true" page="8883" pageCount="10776" pageSize="10" timestamp="Sat, 29 Aug 2026 11:25:53 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8883">
<NewsItem contentIssues="true" id="28081" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28081">
<Title>Magic Numbers in CSS</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Despite the super fun sounding name, magic numbers are a bad thing. It is an <a href="http://en.wikipedia.org/wiki/Magic_number_(programming)#Unnamed_numerical_constants" rel="nofollow external" class="bo">old school programming term</a> for "unnamed numerical constant". As in, just some number plunked into the code that is probably vital to things working correctly but are very difficult for anyone not intimately familiar with the code to understand what it is for. CSS is loaded with unnamed numerical constants, but they are usually paired with properties and in the context of a selector so there is little mystery. There are magic numbers in CSS though, and they are still bad.</p>
    <p></p>
    <p>Magic numbers in CSS refer to values which "work" under some circumstances but are frail and prone to break when those circumstances change. <strong>They are usually always related to fonts</strong> in some way or another. They are created by an author who likely only tested in their own browser under ideal conditions. Let's take a look at some examples so we all know what they are and hopefully can avoid them in the future.</p>
    <hr>
    <p>Look at this simple set of tabs:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/tabs-1.png" alt="" style="max-width: 100%; height: auto;">
    <p>Each of the tabs is set to <code>width: 100px;</code>. In this example 100px is our "magic number." There are any number of things that can go wrong with this. Simply adding another tab with longer text demonstrates that:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/tabs-2.png" alt="" style="max-width: 100%; height: auto;">
    <p>A bit awkward and likely undesirable. We could prevent the wrapping with <code>white-space: nowrap;</code> but that's possibly worse:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/tabs-3.png" alt="" style="max-width: 100%; height: auto;">
    <p>Our tabs would be less prone to breakage if we use min-width instead:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/tabs-4.png" alt="" style="max-width: 100%; height: auto;">
    <p>Or perhaps no width at all:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/tabs-5.png" alt="" style="max-width: 100%; height: auto;">
    <p>If you were dead-set on having all the tabs the same size, you could do <code>overflow: hidden;</code> and <code>text-overflow: ellipsis;</code> perhaps:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/tabs-6.png" alt="" style="max-width: 100%; height: auto;">
    <p>In that case, you'd probably want a <code>title</code> attribute so there is some way to reveal the entire tab name. You might think this could be solved from the Content Management System side by only allowing tab names to be a certain number of characters long. But what about users who increase font-size from their end for accessibility reasons? This fixed sizing might be hurting them. </p>
    <hr>
    <p>In a recent post <a href="http://css-tricks.com/line-on-sides-headers/" rel="nofollow external" class="bo">Line-On-Sides Headers</a>, I used a line-height value that was a magic number. Let's say you used the technique around text with a fancy @font-face font. Let's say that font doesn't load or the user overrides it or the page is being viewed in a browser that don't support @font-face. The fallback font will load, and that fallback font might have drastically different sizing than the custom font. The lines on the outside of the fallback font are now awkwardly placed, not centered like we wanted. Magic number fail.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/custom-font-magic-number.png" alt="" style="max-width: 100%; height: auto;">
    <p><a href="http://codepen.io/chriscoyier/pen/KdIxo" rel="nofollow external" class="bo">This particular example</a> is a bit contrived, but I'm sure you've all seen custom fonts that have super crazy x-heights and stuff.</p>
    <hr>
    <p>Let's say you have a bunch of boxes with different amounts of content in them. You want to arrange them into a grid, so you float them left. Kind of a mess:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/grid-mess.png" alt="" style="max-width: 100%; height: auto;">
    <p>Well hey if they were all the same height this wouldn't be a problem!</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-8.19.55-AM.png" alt="" style="max-width: 100%; height: auto;">
    <p>That is, if the user viewing the site has the exact same font-size setting as you. But users can change that. </p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/chrome-font-size.png" alt="" style="max-width: 100%; height: auto;">
    <p>And now a big sad trombone:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/Screen-Shot-2013-04-22-at-8.22.34-AM.png" alt="" style="max-width: 100%; height: auto;">
    <p><a href="http://css-tricks.com/almanac/properties/m/min-height/" rel="nofollow external" class="bo">min-height</a> instead would prevent the overlapping weirdness, but then the boxes are of different size and the float problem happens again. I'm not going to go too far into solutions because this is so abstract already, but perhaps you could use scrolling on the boxes, or use some JavaScript to adjust sizes, or user some other kind of layout.</p>
    <hr>
    <p>Harry Roberts points out a classic example of a magic number in his article <a href="http://csswizardry.com/2012/11/code-smells-in-css/" rel="nofollow external" class="bo">Code smells in CSS</a>. </p>
    <pre><code>.site-nav &gt; li:hover .dropdown{&#x000A;      position: absolute;&#x000A;      top: 37px;&#x000A;      left: 0;&#x000A;    }</code></pre>
    <p>This would be for a CSS powered dropdown menu. The menu is hidden off-screen until the parent list item is hovered, then the dropdown moves into view. It should be placed at the bottom of the parent menu item. For the developer that wrote this code, in their current browser, that menu item was 37px tall. I'm sure you can imagine that isn't always true. 37px is a magic number. Harry suggests top: 100% instead meaning "all the way from the top," which is far less prone to breakage.</p>
    <hr>
    <p>In the article <a href="http://css-tricks.com/fighting-the-space-between-inline-block-elements/" rel="nofollow external" class="bo">Fighting the Space Between Inline-Block Elements</a>, -4px is a number quoted for margin that can close those gaps. That is definitely a magic number. 4px just happens to the width of a space in a good number of fonts at the default 16px <code>font-size</code>. </p>
    <p>Change that <code>font-family</code> to something like Monaco? Broken. Change the font-size to anything larger or smaller? Broken.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/04/inline-block.png" alt="" style="max-width: 100%; height: auto;">
    <p>See <a href="http://css-tricks.com/fighting-the-space-between-inline-block-elements/" rel="nofollow external" class="bo">that article</a> for other fixes.</p>
    <h3>Definition Confusion</h3>
    <p>Because we're trying to say "don't use these," it is important we we define the term properly as it relates to CSS. I've seen a number of threads in the past where not everyone is on the same page. <a href="http://stackoverflow.com/questions/12015888/refactor-css-to-eliminate-magic-numbers" rel="nofollow external" class="bo">(1)</a> <a href="http://css-tricks.com/forums/discussion/22450/what-does-a-magic-number-in-css-really-mean" rel="nofollow external" class="bo">(2)</a> <a href="https://twitter.com/chriscoyier/status/299983970899197952" rel="nofollow external" class="bo">(3)</a>.</p>
    <p>Here's some examples:</p>
    <pre><code>-webkit-transform: translateZ(0);</code></pre>
    <p>Magic number? Nah. Just a little hack we used to use for performance.</p>
    <hr>
    <pre><code>.parent {&#x000A;      padding: 22px;&#x000A;    }&#x000A;    .child {&#x000A;      bottom: 22px;&#x000A;      left: 22px;&#x000A;    }</code></pre>
    <p>Magic number? Nah. It's a weird number but it's not magic. The child element is being positioned to the bottom left corner of an element, sans-padding. Because those numbers match up, it makes sense what is going on. If the were all different, that would mean there is likely little tweaky bits going on related to <code>font-size</code> and it would be a magic number.</p>
    <hr>
    <pre><code>top: 37px;</code></pre>
    <p>Let's say this is a magic number, like from the dropdown menu example above. Can was solve it with Sass?</p>
    <pre><code>$topDistance: 37px;&#x000A;    &#x000A;    .dropdown {&#x000A;      top: $topDistance;&#x000A;    }</code></pre>
    <p>It's no longer an "unnamed" numerical constant right, because we named it? It's still a magic number in CSS. It's just as fragile as it was before.</p>
    <hr>
    <pre><code>letter-spacing: -.05em;</code></pre>
    <p>Magic number? Nah. If it was in pixels it probably would be, because the pixel value remains constant so the effect of it changes depending on the current font-size. Huge font-size, barely any change, small font-size, big change. The fact that this is in a relative unit makes it less fragile.</p>
    <h3>AND IN CONCLUSION</h3>
    <p>Man I hate this section of blog posts but it's nice to have a little dumping ground for little things that didn't work themselves in elsewhere.</p>
    <ul>
    <li>The WordPress CSS Coding Standards <a href="http://make.wordpress.org/core/handbook/coding-standards/css/#best-practices" rel="nofollow external" class="bo">says</a> you shouldn't use them. Do any others?</li>
    <li>If you're using icon fonts, remember they are fonts, so they change size. You can't "reserve space" for them somewhere in pixel values, as the font size can change but the pixel value won't.</li>
    <li>I'd like to keep this blog post updated with good examples of magic number fails, so if you have any classics, comment below.</li>
    <li>What if you are trying to center an image and text. <a href="http://css-tricks.com/what-is-vertical-align/" rel="nofollow external" class="bo">vertical-align</a> does pretty good, but I find it's often 1px off or so so I <code>postion: relative; top: 1px;</code> it. Is that a magic number? Not sure.</li>
    </ul>
    <p><small><a href="http://css-tricks.com/magic-numbers-in-css/" rel="nofollow external" class="bo">Magic Numbers in CSS</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Despite the super fun sounding name, magic numbers are a bad thing. It is an old school programming term for "unnamed numerical constant". As in, just some number plunked into the code that is...</Summary>
<Website>http://css-tricks.com/magic-numbers-in-css/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28081/guest@my.umbc.edu/fb499cddca292ce2106725c9d1b75901/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</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, 22 Apr 2013 14:57:07 -0400</PostedAt>
<EditAt>Mon, 22 Apr 2013 14:57:07 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="123357" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123357">
<Title>UMBC Graduate Student to Compete In U.S. Chess Championship</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The 2013 U.S. Chess Championship has been scheduled for May 2 to 13 at the Chess Club &amp; Scholastic Center of St. Louis (CCSCSL), and UMBC graduate student, Sabina Foisor, has been invited to compete.</p>
    <p>Sabina, an international student from Romania and a Women’s Grandmaster, will be competing in her fifth consecutive U.S. Women’s Championship. She recently competed with the U.S. Women’s Team in the World Team Championships held in Astana, Kazakhstan and helped the UMBC Chess Team finish 3rd in the nation at the Final Four of Collegiate Chess the first weekend in April.</p>
    <p>Good luck, Sabina!</p>
    </div>
]]>
</Body>
<Summary>The 2013 U.S. Chess Championship has been scheduled for May 2 to 13 at the Chess Club &amp; Scholastic Center of St. Louis (CCSCSL), and UMBC graduate student, Sabina Foisor, has been invited to...</Summary>
<Website>https://umbc.edu/stories/umbc-graduate-student-to-compete-in-u-s-chess-championship/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123357/guest@my.umbc.edu/53b63f0287754f8bf5553c746df61dc2/api/pixel</TrackingUrl>
<Tag>admin</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>Mon, 22 Apr 2013 14:38:36 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28077" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28077">
<Title>How can I tell if my clicker is on the right channel?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>added</strong> by
                        <a href="https://wiki.umbc.edu/display/~anna" rel="nofollow external" class="bo">Anna Sniadach</a>
                </p>
            <div>
            <h2>Tell Me</h2>
    <p>If you have the ResponseCard RF LCD, you can view the current channel at the top of the display. If there is no receiver in range, the "reception" icon on the left will display a line through it.</p>
    <p><img src="https://wiki.umbc.edu/download/attachments/35424854/clickerchanneldisplay.png?version=1&amp;modificationDate=1366653704000&amp;api=v2" style="max-width: 100%; height: auto;"></p>
    <p> </p>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D35424854&amp;q=0&amp;v=1&amp;s=faq&amp;l=clicker" 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%3D35424854" 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%3D35424854" 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%3D35424854&amp;q=0&amp;v=0&amp;s=faq&amp;l=clicker" rel="nofollow external" class="bo">Request Help</a></p>
    <p><a href="http://my.umbc.edu/help/request" rel="nofollow external" class="bo"><img src="https://wiki.umbc.edu/download/attachments/29853066/RequestHelpicon.png?version=1&amp;modificationDate=1335472984000&amp;api=v2" style="max-width: 100%; height: auto;"></a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=35424854" rel="nofollow external" class="bo">View Online</a>
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             added by                     Anna Sniadach                                  Tell Me  If you have the ResponseCard RF LCD, you can view the current channel at the top of the...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=35424854</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28077/guest@my.umbc.edu/6599e38fa61801bfb79bbf1d44ab1ca7/api/pixel</TrackingUrl>
<Tag>clicker</Tag>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1787842653</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/1/original.png?1787842653</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1787842653</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1787842653</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/images/avatars/group/1/large.png?1787842653</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/images/avatars/group/1/medium.png?1787842653</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/1/small.png?1787842653</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1787842653</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1787842653</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Apr 2013 14:01:44 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="28073" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28073">
<Title>Graduate Interns Needed at NASPAA</Title>
<Tagline>Apply today for these Summer Intern Opportunities</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p>NASPAA offers paid internships for graduate students in its Washington, DC 
    office.  The number of positions and area of responsibility varies by semester, 
    but each offers an exciting opportunity to work on projects and programs that 
    will make an important and lasting contribution to public affairs education.  
    NASPAA internships are especially well suited for students with an interest in 
    higher education policy, nonprofit management, and public service.</p>
    <p>Previous NASPAA interns have secured full-time positions in the federal 
    government and nonprofit sector after graduation, including being selected as 
    Presidential Management Fellows.</p>
    <p>We currently have <strong>three</strong> graduate internship openings for <strong>Summer 
    2013 </strong></p>
    <ul>
    <li>
    <strong><a href="http://www.naspaa.org/students/InternshipSum13_PAA.pdf" rel="nofollow external" class="bo">Pi Alpha Alpha student 
    ambassador</a></strong><br>  
    </li>
    <li>
    <strong><a href="http://www.naspaa.org/students/InternshipSum13_Diversity.pdf" rel="nofollow external" class="bo">Diversity in 
    academia</a></strong><br>  
    </li>
    <li>
    <strong><a href="http://www.naspaa.org/students/InternshipSum13_Quality.pdf" rel="nofollow external" class="bo">Quality assurance in public 
    affairs education</a></strong> </li>
    </ul>There is no hard deadline; the review of 
    applications will begin immediately and will continue until the positions are 
    filled. <br><br>SEE FLYER BELOW FOR internship details.</div>
]]>
</Body>
<Summary>NASPAA offers paid internships for graduate students in its Washington, DC  office.  The number of positions and area of responsibility varies by semester,  but each offers an exciting opportunity...</Summary>
<AttachmentKind>Flyer</AttachmentKind>
<AttachmentUrl>https://assets2-my.umbc.edu/system/shared/attachments/06b34008ae1f76bb69e85031ecc22449/6a92fa01/news/000/028/073/9d12d071c18b535cda26f47f20e5c7ae/InternshipSum13_PAA.pdf?1366652357</AttachmentUrl>
<Attachments>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/28073/attachments/9940"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28073/guest@my.umbc.edu/e538f09d2d9325cbdc3aa92851a2237f/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>Shriver Center:Intern, Co-op, Research &amp; Service-Learning</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Apr 2013 13:39:17 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28072" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28072">
<Title>SGA Election Live! (Photos &amp; Link to Vote)</Title>
<Body>
<![CDATA[
    <div class="html-content">by David Hoffman and Craig Berger<br>
    <br>
    The 2013 SGA election is underway! Undergraduates can cast their votes <a href="http://www.umbc.edu/studentvote" rel="nofollow external" class="bo">here</a> until Wednesday night at midnight.<br>
    <br>
    Three of the last four UMBC SGA elections have been record-setters (the <a href="http://my.umbc.edu/groups/everydaypoliticsatumbc/news/14690" rel="nofollow external" class="bo">record</a> now stands at 3,216 votes cast; see last year's announcement of the results <a href="http://cocreateumbc.blogspot.com/2012/04/sga-election-results-announced-video.html" rel="nofollow external" class="bo">here</a>). Turnout in UMBC's SGA election has exceeded the turnout at College Park and Towson as a percentage of the student body five years in a row. The candidates have made their plans and are asking for your vote. <a href="http://www.umbc.edu/studentvote" rel="nofollow external" class="bo">Read about them</a> and make your choice.<br>
    <br>
    Here are some photos of the election action. We'll keep updating this post with new photos throughout the process. Got some photos you'd like us to share here? Tweet them to #umbcelections and we'll feature some of the best.<br>
    <br>
    <table><tbody>
    <tr><td><a href="http://2.bp.blogspot.com/-Nf2grAeB8Fc/UXVnkIXNboI/AAAAAAAAC9g/VLRCJ1fdIqA/s1600/Election+Board+at+Quadmania.JPG" rel="nofollow external" class="bo"><img height="400" src="http://2.bp.blogspot.com/-Nf2grAeB8Fc/UXVnkIXNboI/AAAAAAAAC9g/VLRCJ1fdIqA/s400/Election+Board+at+Quadmania.JPG" width="330" style="max-width: 100%; height: auto;"></a></td></tr>
    <tr><td>SGA Election Board at Quadmania  </td></tr>
    </tbody></table>
    <table><tbody>
    <tr><td><a href="http://1.bp.blogspot.com/-0ILss2HDG3c/UXVnj8uNJkI/AAAAAAAAC9Y/K2WQy7Spb3s/s1600/Nathan+and+Collin.JPG" rel="nofollow external" class="bo"><img height="300" src="http://1.bp.blogspot.com/-0ILss2HDG3c/UXVnj8uNJkI/AAAAAAAAC9Y/K2WQy7Spb3s/s400/Nathan+and+Collin.JPG" width="400" style="max-width: 100%; height: auto;"></a></td></tr>
    <tr><td>SGA Election Board Chair Collin Wojciechowski (right) proves he'll wear any hat<br>
    to encourage students to vote. Left: Board member Nathan Rehr.</td></tr>
    </tbody></table>
    <table><tbody>
    <tr><td><a href="http://1.bp.blogspot.com/-eegq0taQhVs/UXVnkC91NWI/AAAAAAAAC9c/15_gS5mJyus/s1600/Polling+Station+Monday+am+2.JPG" rel="nofollow external" class="bo"><img height="300" src="http://1.bp.blogspot.com/-eegq0taQhVs/UXVnkC91NWI/AAAAAAAAC9c/15_gS5mJyus/s400/Polling+Station+Monday+am+2.JPG" width="400" style="max-width: 100%; height: auto;"></a></td></tr>
    <tr><td>Commons Main Street voting station, 11:00 a.m. Monday.</td></tr>
    </tbody></table>
    <table><tbody>
    <tr><td><a href="http://1.bp.blogspot.com/-7F3V4Zu5muA/UXVnl_JIV2I/AAAAAAAAC9s/ZDzlUuq1hH8/s1600/Polling+Station+Monday+am.JPG" rel="nofollow external" class="bo"><img height="300" src="http://1.bp.blogspot.com/-7F3V4Zu5muA/UXVnl_JIV2I/AAAAAAAAC9s/ZDzlUuq1hH8/s400/Polling+Station+Monday+am.JPG" width="400" style="max-width: 100%; height: auto;"></a></td></tr>
    <tr><td>Voting by Ipad</td></tr>
    </tbody></table>
    <table><tbody>
    <tr><td><a href="http://3.bp.blogspot.com/-7tkqJib1jJU/UXaMqJYUJJI/AAAAAAAAC-c/wi7CfcvKs7w/s1600/Cupcakes.jpg" rel="nofollow external" class="bo"><img height="300" src="http://3.bp.blogspot.com/-7tkqJib1jJU/UXaMqJYUJJI/AAAAAAAAC-c/wi7CfcvKs7w/s400/Cupcakes.jpg" width="400" style="max-width: 100%; height: auto;"></a></td></tr>
    <tr><td>Black and yellow cupcakes for voters on Main Street</td></tr>
    </tbody></table>
    <table><tbody>
    <tr><td><a href="http://2.bp.blogspot.com/-vh0s5OOnt_Q/UXbSzmDjG3I/AAAAAAAAC-s/6_dYcFQpVqo/s1600/Macklemore+Towels.jpg" rel="nofollow external" class="bo"><img height="300" src="http://2.bp.blogspot.com/-vh0s5OOnt_Q/UXbSzmDjG3I/AAAAAAAAC-s/6_dYcFQpVqo/s400/Macklemore+Towels.jpg" width="400" style="max-width: 100%; height: auto;"></a></td></tr>
    <tr><td>Macklemore wants you to vote.</td></tr>
    </tbody></table>
     <em><a href="http://cocreateumbc.blogspot.com/" rel="nofollow external" class="bo">Co-Create UMBC</a> is a blog for and about UMBC, written by David Hoffman and Craig Berger from the Office of Student Life. Join the <a href="http://my.umbc.edu/groups/co-create" rel="nofollow external" class="bo">Co-Create UMBC group</a> on MyUMBC. Like <a href="https://www.facebook.com/cocreateumbc" rel="nofollow external" class="bo">Co-Create UMBC on Facebook</a>. And follow <a href="https://twitter.com/CoCreateUMBC" rel="nofollow external" class="bo">David</a> and <a href="https://twitter.com/CraigBerger" rel="nofollow external" class="bo">Craig</a> on Twitter.</em><br>
    
    </div>
]]>
</Body>
<Summary>by David Hoffman and Craig Berger    The 2013 SGA election is underway! Undergraduates can cast their votes here until Wednesday night at midnight.    Three of the last four UMBC SGA elections...</Summary>
<Website>http://cocreateumbc.blogspot.com/2013/04/sga-election-live-photos-link-to-vote.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28072/guest@my.umbc.edu/aef2e65d842f0fc62b313eba38ecb4dc/api/pixel</TrackingUrl>
<Tag>sga-election</Tag>
<Group token="co-create">Co-Create UMBC</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/co-create</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/original.jpg?1499890363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/large.png?1499890363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/medium.png?1499890363</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/small.png?1499890363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxsmall.png?1499890363</AvatarUrl>
<Sponsor>Co-Create UMBC</Sponsor>
<PawCount>14</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Apr 2013 12:49:00 -0400</PostedAt>
<EditAt>Mon, 22 Apr 2013 12:49:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="28070" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28070">
<Title>How to use the download attribute</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/thumbnail16.jpg" alt="Thumbnail" width="200" height="160" style="max-width: 100%; height: auto;">HTML5 came with all new APIs, new input types and attributes for forms. As is often the case, those major additions often obscure the minor upgrades and I think that this is particularly true of the download attribute.</p>
    <p>As you know, there are some files that the browser doesn’t automatically download; images, other web pages and depending on the settings in your browser, sometimes even PDFs. The download attribute gives the browser a native way to download these files automatically, without having to fall back on JavaScript. This is really useful for any app that deals with the downloading of images, such as image upload sites.</p>
    <h1>Using the download attribute</h1>
    <p>Since the download attribute doesn’t use scripts of any kind, it’s as simple as adding the attribute to your link:</p>
    <pre>&lt;a href="myFolder/myImage.png" download&gt;Download image&lt;/a&gt;</pre>
    <p>What’s great about this attribute is that you can even set a name for the downloadable file, even when it’s not the name on your server. This is great for sites with complex file names, or even dynamically created images, that want to provide a simple and user-friendly file name. To provide a name, you just add an equals sign, followed by the name you want to use surrounded in quotes, like so:</p>
    <pre>&lt;a href="myFolder/reallyUnnecessarilyLongAndComplicatedFileName.png" download="myImage"&gt;Download image&lt;/a&gt;</pre>
    <p>Note that the browser will automatically add the correct file extension to the downloaded file, so you don’t need to include that inside your attribute value.</p>
    <p> </p>
    <h1>Browser support</h1>
    <p>Currently, only Chrome 14+ and Firefox 20+ support the download attribute, so you may need to fall back on some simple JavaScript to detect if the attribute is supported. You can do so like this:</p>
    <pre>var a = document.createElement('a');<br><br>if(typeof a.download != "undefined")<br>{<br>   // download attribute is supported<br>}<br>else<br>{<br>  // download attribute is not supported<br>}</pre>
    <p> </p>
    <h1>Conclusion</h1>
    <p>Taking into consideration everything that has been added to HTML5, the download attribute is a very small part, but in my opinion it’s an attribute that was long overdue, and definitely has its uses in today’s apps for both usability and simplification.</p>
    <p> </p>
    <p><em><strong>Have you implemented the download attribute? What are your unsung heroes of HTML5? Let us know in the comments.</strong></em></p>
    <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-61979128/stock-photo-the-hand-presses-download-button.html" rel="nofollow external" class="bo">download image</a> via Shutterstock.</em></p>
    <p><br><br>
    </p>
    <table width="100%">
    <tbody>
    <tr>
    <td>
          <a href="http://www.mightydeals.com/deal/solomon-font-family.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Beautiful Solomon Font Family (12 fonts) – only $9!</strong></a>
        </td>
    <td>
          <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br>
            <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" style="max-width: 100%; height: auto;"><br>
          </a>
        </td>
    </tr>
    </tbody>
    </table>
    <p><br> </p>
    <a href="http://www.webdesignerdepot.com/2013/04/how-to-use-the-download-attribute/" rel="nofollow external" class="bo">Source</a>
    </div>
]]>
</Body>
<Summary>HTML5 came with all new APIs, new input types and attributes for forms. As is often the case, those major additions often obscure the minor upgrades and I think that this is particularly true of...</Summary>
<Website>http://www.webdesignerdepot.com/2013/04/how-to-use-the-download-attribute/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28070/guest@my.umbc.edu/a777a573c3035f2eb29e5441791b16a2/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>uncategorized</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, 22 Apr 2013 12:42:36 -0400</PostedAt>
<EditAt>Mon, 22 Apr 2013 10:15:36 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="28069" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28069">
<Title>Time is running out to apply for our Certificate in Cyber Operations program. Fi...</Title>
<Body>
<![CDATA[
    <div class="html-content">Time is running out to apply for our Certificate in Cyber Operations program. Fill out the pre-application now!<br><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fit%2Fcyber-operations.html&amp;h=8AQGBGVbU&amp;s=1" title="" rel="nofollow external" class="bo"><img src="https://fbexternal-a.akamaihd.net/safe_image.php?d=AQA1sZEk6gzdeUqU&amp;w=154&amp;h=154&amp;url=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fimages%2FUMBC-TC-new-logo.jpg" alt="" style="max-width: 100%; height: auto;"></a><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fit%2Fcyber-operations.html&amp;h=rAQH5h6I6&amp;s=1" rel="nofollow external" class="bo">Certificate in Cyber Operations | UMBC Training Centers</a><br><a href="http://www.umbc.edu">www.umbc.edu</a><br>Comprehensive full time training program to prepare candidates for careers in cybersecurity</div>
]]>
</Body>
<Summary>Time is running out to apply for our Certificate in Cyber Operations program. Fill out the pre-application now!   Certificate in Cyber Operations | UMBC Training Centers www.umbc.edu Comprehensive...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10151344196541076</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28069/guest@my.umbc.edu/2202f2fe8a4ad74e8bd843f6e2850493/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, 22 Apr 2013 12:41:14 -0400</PostedAt>
<EditAt>Mon, 22 Apr 2013 12:41:14 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="30052" important="false" status="posted" url="https://my3.my.umbc.edu/posts/30052">
<Title>How to Carbon-Date a Web Page</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>If a Web page lacks a time stamp, how do you know when it was created? A new Web application could help.</p>
    <p>Ever needed to know the age of a Web page only to discover that it lacks a time stamp saying when it was published?</p>
    </div>
]]>
</Body>
<Summary>If a Web page lacks a time stamp, how do you know when it was created? A new Web application could help.  Ever needed to know the age of a Web page only to discover that it lacks a time stamp...</Summary>
<Website>http://www.technologyreview.com/view/513996/how-to-carbon-date-a-web-page/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/30052/guest@my.umbc.edu/d4bf40b88afb411167308f8cb1046ac6/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Apr 2013 12:34:28 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28065" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28065">
<Title>Richard Branson on Building a Strong Reputation</Title>
<Body>
<![CDATA[
    <div class="html-content">Virgin Group's founder on why earning the trust of investors, future partners and suppliers rests on building a strong personal reputation.</div>
]]>
</Body>
<Summary>Virgin Group's founder on why earning the trust of investors, future partners and suppliers rests on building a strong personal reputation.</Summary>
<Website>http://feedproxy.google.com/~r/YoungentrepreneurcomBlog/~3/z_cohvRVXO0/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28065/guest@my.umbc.edu/eea8c8366758eab3808dafae03fe768f/api/pixel</TrackingUrl>
<Tag>ask-entrepreneur</Tag>
<Tag>business-growth-strategies</Tag>
<Tag>leadership</Tag>
<Tag>public-relations</Tag>
<Tag>richard-branson</Tag>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Apr 2013 12:00:05 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="28068" important="false" status="posted" url="https://my3.my.umbc.edu/posts/28068">
<Title>How to Quit Your Day Job Gracefully</Title>
<Body>
<![CDATA[
    <div class="html-content">Here's what you need to know to navigate the transition from working for someone else to being your own boss.<br><br><a href="http://da.feedsportal.com/r/164016272078/u/49/f/625555/c/34343/s/2b06c4e4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/164016272078/u/49/f/625555/c/34343/s/2b06c4e4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Here's what you need to know to navigate the transition from working for someone else to being your own boss.</Summary>
<Website>http://feedproxy.google.com/~r/entrepreneur/startingabusiness/~3/5UPLERcgmV0/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/28068/guest@my.umbc.edu/b0195d56e6b2ef9cc52f0f292d527ca2/api/pixel</TrackingUrl>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Apr 2013 12:00:00 -0400</PostedAt>
</NewsItem>

</News>
