<?xml version="1.0"?>
<News hasArchived="true" page="8020" pageCount="10744" pageSize="10" timestamp="Sun, 09 Aug 2026 21:46:44 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8020">
<NewsItem contentIssues="false" id="38874" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38874">
<Title>RSA Rose of Recognition</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div>Hey RSA!!</div>
    <div><br></div>
    <div>Is there someone you think is doing a fantastic job in your residential community? Do you feel like letting everyone else know who that wonderful person is?</div>
    <div>Nominate someone for RSA's Rose of Recognition. Every week, a winner will be announced! </div>
    <div><br></div>
    <div>We have already have our first winners, Verna Van from Harbor Hall and Cindy Malone from Central Office, so if you see them congratulate them!!</div>
    <div><br></div>
    <div>Here's the link to the nomination form and they are due every Wednesday, so keep the nominations coming!!!</div>
    <a href="https://docs.google.com/a/umbc.edu/forms/d/1le3lS1f-CDgMohUeuaGyAZ_KoD5OU6j3_88yYr39a08/viewform" rel="nofollow external" class="bo">https://docs.google.com/a/umbc.edu/forms/d/1le3lS1f-CDgMohUeuaGyAZ_KoD5OU6j3_88yYr39a08/viewform</a>
    </div>
]]>
</Body>
<Summary>Hey RSA!!     Is there someone you think is doing a fantastic job in your residential community? Do you feel like letting everyone else know who that wonderful person is?  Nominate someone for...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38874/guest@my.umbc.edu/c0e7cee3d1736be572d00b986892c498/api/pixel</TrackingUrl>
<Group token="rsa">Resident Student Association</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/rsa</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/xsmall.png?1581922174</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/original.png?1581922174</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/xxlarge.png?1581922174</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/xlarge.png?1581922174</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/large.png?1581922174</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/medium.png?1581922174</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/small.png?1581922174</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/xsmall.png?1581922174</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/046/7e005ca999324839685fc304fa5ac33c/xxsmall.png?1581922174</AvatarUrl>
<Sponsor>UMBC Resident Student Association</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 26 Nov 2013 17:10:22 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="38871" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38871">
<Title>Getting Started with Stylus</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Within the web development community, we hear a lot about two popular CSS preprocessor:  Sass and LESS.  You don’t often, however, hear about the third big preprocessor:  <a href="http://learnboost.github.io/stylus/" rel="nofollow external" class="bo">Stylus</a>.  When it came to redesigning the Mozilla Developer Network, I chose Stylus for a few important reasons:</p>
    <ul>
    <li>Since Stylus is NodeJS-based, we didn’t need to add another technology to our stack (Sass would have required Ruby)</li>
    <li>Stylus provides a <a href="https://github.com/LearnBoost/stylus/blob/master/docs/js.md" rel="nofollow external" class="bo">JavaScript API</a> so that preprocessing can be further customized</li>
    <li>Stylus doesn’t require brackets, colons, or semicolons:  the syntax is completely space-based.  You can, however, add any of those punctuations and Stylus will still compile correctly.</li>
    <li>An additional component and mixin library called <a href="https://github.com/visionmedia/nib" rel="nofollow external" class="bo">Nib</a> is also available.</li>
    </ul>
    <p>Of course Stylus provides the standard CSS preprocessor abilities, like extending classes, creating mixins (functions), importing stylesheets, and setting variables, but it also provides a load of more advanced features.  Before making more promises, let’s check out the basics of Stylus and get into some CSS programming!</p>
    <h2>Getting Stylus, Options, and Processing CSS</h2>
    <p>Stylus is an open source project hosted on <a href="https://github.com/learnboost/stylus" rel="nofollow external" class="bo">GitHub</a>.  You can install from source or you can simply use NPM:</p>
    <pre><code>$ npm install stylus&#x000A;    </code></pre>
    <p>Stylus CSS files should be given the .styl extension and can be placed anywhere within your project.  No configuration file is needed to process, the code within stylus files — simply run the <code>stylus</code> utility to generate the CSS output:</p>
    <pre><code>$ stylus stylus/main.styl --out /css --compress&#x000A;    </code></pre>
    <p>You’ll notice that the the command above compiles <code>main.styl</code> into a CSS file of the same name within the <code>/css</code> output directly.  If you prefer not to manually process your styles, you can also use the <code>--watch</code> option:</p>
    <pre><code>$ stylus --watch stylus/main.styl&#x000A;    </code></pre>
    <p>There are a <a href="https://github.com/LearnBoost/stylus/blob/master/docs/executable.md" rel="nofollow external" class="bo">number of other options</a> available with Stylus, including options to convert existing CSS to Stylus, compare input and output, and more.</p>
    <h2>Stylus Syntax Basics</h2>
    <p>The basics of Stylus are very much like that of other CSS preprocessors but let’s review how to code some of these items:</p>
    <pre><code>/* Set a basic variable */&#x000A;    base-font-size = 12px&#x000A;    &#x000A;    /* Set a variable based on result of mixin call */&#x000A;    body-background = invert(#ccc)&#x000A;    &#x000A;    /* Set some basic rules */&#x000A;    body&#x000A;        color #333&#x000A;        background #fff&#x000A;    &#x000A;    /* Nest rules */&#x000A;    nav&#x000A;        margin 10px&#x000A;    &#x000A;        ul&#x000A;            list-style-type none&#x000A;    &#x000A;            &gt; li&#x000A;                display inline-block&#x000A;    &#x000A;                &amp;.current&#x000A;                    background-color lightblue&#x000A;    &#x000A;    /* Use calculated values */&#x000A;    div.column&#x000A;        margin-right (grid-spacing / 2)&#x000A;        margin-top (grid-spacing * 2)&#x000A;    &#x000A;    /* Use an already-set value for this element */&#x000A;    div.center-column&#x000A;        width 200px&#x000A;        margin-left -(@width / 2)&#x000A;    &#x000A;    /* Get styles for this element from the result of a mixin */&#x000A;    .promo&#x000A;        apply-promo-styles()&#x000A;        apply-width-center(400px)&#x000A;    &#x000A;    /* Iterate over a loop! */&#x000A;    table&#x000A;        for row in 1 2 3 4 5&#x000A;            tr:nth-child({row})&#x000A;                height: 10px * row&#x000A;    &#x000A;        /* or.... */&#x000A;        for row in (1..5)&#x000A;            tr:nth-child({row})&#x000A;                height: 10px * row&#x000A;    &#x000A;    &#x000A;    /* Import another Stylus stylesheet */&#x000A;    @import 'links.styl'&#x000A;    &#x000A;    /* Extend an existing class */&#x000A;    .warning&#x000A;        @extend .noticeBlock&#x000A;    </code></pre>
    <p>These features are fairly consistent throughout all CSS preprocessors.  Don’t let the lack of braces, colons, and semicolons throw you off — if you’d prefer to have that structure, you can do so and Stylus will accommodate!</p>
    <h2>Creating and Using Mixins</h2>
    <p>Mixins are incredibly useful within CSS preprocessors for a number of reasons.  They allow us to use logic to generate CSS but they also allow us to organize our CSS.  Mixins are easy to create with Stylus and their syntax is exactly as you’d expect:</p>
    <pre><code>/* &#x000A;        Basic mixin which vendorizes a propery.  Usage:&#x000A;    &#x000A;        vendorize(box-sizing, border-box)&#x000A;    */&#x000A;    vendorize(property, value)&#x000A;        -webkit-{property} value&#x000A;        -moz-{property} value&#x000A;        -ms-{property} value&#x000A;        {property} value&#x000A;    </code></pre>
    <p>You can also assign default values to arguments:</p>
    <pre><code>/* Generates a CSS triangle */&#x000A;    generate-arrow(arrow-width = 10px)&#x000A;        &amp;:before, &amp;:after&#x000A;            content ' '&#x000A;            height: 0&#x000A;            position absolute&#x000A;            width: 0&#x000A;            border arrow-width solid transparent&#x000A;    </code></pre>
    <p>Mixins can return a value with the <code>return</code> keyword or the styles defined within the mixin can simply be applied to the the elements that call it:</p>
    <pre><code>/* Adds styles for the current and child elements */&#x000A;    special-homepage-styles(background = '#ccc')&#x000A;        background-color background&#x000A;    &#x000A;        a&#x000A;            color lightblue&#x000A;    &#x000A;            &amp;:visited&#x000A;                color navy&#x000A;    </code></pre>
    <p>And of course you can use conditionals within your mixins (or anywhere within Stylus, really):</p>
    <pre><code>/* Generates a grid based on min/max and increment */&#x000A;    generate-grid(increment, start, end, return-dimension=false)&#x000A;        total = start&#x000A;        for n, x in 0..((end - start) / increment)&#x000A;            if return-dimension&#x000A;                if x+1 is return-dimension&#x000A;                    return total&#x000A;            else&#x000A;                .column-{x+1}&#x000A;                    width total&#x000A;            total = total + increment&#x000A;    </code></pre>
    <p>The mixin above generates a grid based on min (the smallest column width), max, and column increment amount.  The last argument represents if the dimension should simply be returned, and not set as a CSS class.  The example above serves as an example flexible mixin with iteration, conditionals, and return values.</p>
    <h2>Useful Stylus Mixins</h2>
    <p>MDN needed a number of <a href="https://github.com/mozilla/kuma/blob/master/media/redesign/stylus/mixins.styl" rel="nofollow external" class="bo">Stylus mixins</a> to support the wide requirements of the project, like RTL support, localization support, and wide browser support.  Here are a few of the mixins that are tried and test on MDN — maybe some of them would be good for your project!</p>
    <h3>RTL Property Reversals</h3>
    <p>Some properties and values need to be manually reversed for RTL (right-to-left) support.  Instead of duplicating the nested CSS structure in another block, you can simply use a mixin to set both the LTR and RTL properties and values:</p>
    <pre><code>/*&#x000A;        Usage: bidi-style(left, 20px, right, auto)&#x000A;    &#x000A;        Element will be left: 20px but in RTL will be right: 20px and left: auto to offset the LTR property value&#x000A;    */&#x000A;    bidi-style(ltr-prop, value, inverse-prop, inverse-value, make-important = false)&#x000A;        make-important = unquote(make-important ? '!important' : '')&#x000A;    &#x000A;        {ltr-prop} value make-important&#x000A;    &#x000A;        html[dir='rtl'] &amp;&#x000A;            {inverse-prop} value make-important&#x000A;            {ltr-prop} inverse-value make-important&#x000A;    &#x000A;    /* &#x000A;        Same as bidi-style but changes the value of the same property &#x000A;    &#x000A;        Usage: bidi-value(float, left, right);&#x000A;    */&#x000A;    bidi-value(prop, ltr, rtl, make-important = false) {&#x000A;        bidi-style(prop, ltr, prop, rtl, make-important);&#x000A;    }&#x000A;    </code></pre>
    <p>These mixins are used often within the MDN redesign codebase as RTL is important to our readers.</p>
    <h3>Last Child Spacing</h3>
    <p>This mixin is created to nullify a value for the last child element of a parent, usually <code>padding-bottom</code> or <code>margin-bottom</code>:</p>
    <pre><code>/* prevents spacing of a given element if it's the last child */&#x000A;    prevent-last-child-spacing(element = '*', property = 'padding-bottom')&#x000A;    if element is '*'&#x000A;        element = unquote(element)&#x000A;    &#x000A;    &amp; &gt; {element}:last-child&#x000A;        {property} 0&#x000A;    </code></pre>
    <p>With this mixin, we can set a global padding or margin on a parent, and simply remove a conflicing margin or padding on the last child element of said parent.</p>
    <h3>Placeholder Styling</h3>
    <p>Placeholders tend to have a funky selector so styling them via a mixin just makes life easier:</p>
    <pre><code>/* Sets an input tag's placeholder styles; called within the INPUT itself */&#x000A;    set-placeholder-style(prop, value)&#x000A;        &amp;::-webkit-input-placeholder&#x000A;                {prop} value&#x000A;        &amp;::-moz-input-placeholder&#x000A;                {prop} value&#x000A;    </code></pre>
    <p>You can see the other important MDN mixins within the <a href="https://github.com/mozilla/kuma/blob/master/media/redesign/stylus/mixins.styl" rel="nofollow external" class="bo">MDN source</a>.  Give them a look over and see if they could be useful in your projects!</p>
    <h2>Where Next?</h2>
    <p>Now that you have enough information about Stylus to get you started, have a look at the advanced features that Stylus has to offer:</p>
    <ul>
    <li>The <a href="https://github.com/LearnBoost/stylus/blob/master/docs/js.md" rel="nofollow external" class="bo">Stylus JavaScript API</a>
    </li>
    <li><a href="https://github.com/LearnBoost/stylus/blob/master/docs/keyframes.md" rel="nofollow external" class="bo">@keyframes Support</a></li>
    <li><a href="https://github.com/LearnBoost/stylus/blob/master/docs/middleware.md" rel="nofollow external" class="bo">Connect Middleware</a></li>
    <li><a href="https://github.com/LearnBoost/stylus/blob/master/docs/functions.url.md" rel="nofollow external" class="bo">Data URI Image Inlining</a></li>
    <li><a href="https://github.com/LearnBoost/stylus/blob/master/docs/media.md" rel="nofollow external" class="bo">Media Query Nesting</a></li>
    <li>
    <a href="https://github.com/visionmedia/nib" rel="nofollow external" class="bo">Nib Components and Mixins</a>.</li>
    </ul>
    <p>Stylus is an outstanding CSS preprocessor and offers a wide array of basic and advanced features.  Installation is super quick and it’s incredibly fun to write your CSS so quickly and effortlessly.  Give Stylus a try — it may be perfect for you!</p>
    <p>The post <a href="http://blog.teamtreehouse.com/getting-started-stylus" rel="nofollow external" class="bo">Getting Started with Stylus</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>Within the web development community, we hear a lot about two popular CSS preprocessor:  Sass and LESS.  You don’t often, however, hear about the third big preprocessor:  Stylus.  When it came to...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/qER1lpDtvAo/getting-started-stylus</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38871/guest@my.umbc.edu/0493868cb174d3a7ecd5548a76d83eb0/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 26 Nov 2013 17:00:35 -0500</PostedAt>
<EditAt>Tue, 26 Nov 2013 17:00:35 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="38875" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38875">
<Title>Online Help to Pick a Car and Make the Down Payment</Title>
<Body>
<![CDATA[
    <div class="html-content">Automakers and dealers are turning to social networks to develop better ways to attract younger, first-time car buyers.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F11%2F27%2Fbusiness%2Fauto-industry-turns-to-crowdfunding-to-draw-the-young.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Online+Help+to+Pick+a+Car+and+Make+the+Down+Payment" 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%2F11%2F27%2Fbusiness%2Fauto-industry-turns-to-crowdfunding-to-draw-the-young.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Online+Help+to+Pick+a+Car+and+Make+the+Down+Payment" 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%2F11%2F27%2Fbusiness%2Fauto-industry-turns-to-crowdfunding-to-draw-the-young.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Online+Help+to+Pick+a+Car+and+Make+the+Down+Payment" 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%2F11%2F27%2Fbusiness%2Fauto-industry-turns-to-crowdfunding-to-draw-the-young.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Online+Help+to+Pick+a+Car+and+Make+the+Down+Payment" 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%2F11%2F27%2Fbusiness%2Fauto-industry-turns-to-crowdfunding-to-draw-the-young.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Online+Help+to+Pick+a+Car+and+Make+the+Down+Payment" 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/180265120907/u/0/f/640387/c/34625/s/3422511f/sc/22/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180265120907/u/0/f/640387/c/34625/s/3422511f/sc/22/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/180265120907/u/0/f/640387/c/34625/s/3422511f/sc/22/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180265120907/u/0/f/640387/c/34625/s/3422511f/sc/22/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/180265120907/u/0/f/640387/c/34625/s/3422511f/sc/22/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180265120907/u/0/f/640387/c/34625/s/3422511f/sc/22/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/180265120907/u/0/f/640387/c/34625/s/3422511f/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/180265120907/u/0/f/640387/c/34625/s/3422511f/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Automakers and dealers are turning to social networks to develop better ways to attract younger, first-time car buyers.      </Summary>
<Website>http://www.nytimes.com/2013/11/27/business/auto-industry-turns-to-crowdfunding-to-draw-the-young.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38875/guest@my.umbc.edu/736e145485b026608051084589bf2107/api/pixel</TrackingUrl>
<Tag>automobiles</Tag>
<Tag>chrysler-group-llc</Tag>
<Tag>crowdfunding-internet</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>hyundai-motor-co</Tag>
<Tag>new</Tag>
<Tag>social-media</Tag>
<Tag>technology</Tag>
<Tag>toyota-motor-corporation-tm-nyse</Tag>
<Tag>twitter-twtr-nyse</Tag>
<Tag>york</Tag>
<Tag>zipcar-inc-zip-nasdaq</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>Tue, 26 Nov 2013 16:58:46 -0500</PostedAt>
<EditAt>Tue, 26 Nov 2013 16:58:46 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="38876" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38876">
<Title>Hewlett-Packard Earnings Top Expectations, but Revenue Falls</Title>
<Body>
<![CDATA[
    <div class="html-content">The company reported $1.41 billion in net income for the fourth quarter, in contrast to a $6.85 billion loss a year ago.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F11%2F27%2Ftechnology%2Fhewlett-packard-posts-a-profit-above-expectations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Hewlett-Packard+Earnings+Top+Expectations%2C+but+Revenue+Falls" 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%2F11%2F27%2Ftechnology%2Fhewlett-packard-posts-a-profit-above-expectations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Hewlett-Packard+Earnings+Top+Expectations%2C+but+Revenue+Falls" 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%2F11%2F27%2Ftechnology%2Fhewlett-packard-posts-a-profit-above-expectations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Hewlett-Packard+Earnings+Top+Expectations%2C+but+Revenue+Falls" 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%2F11%2F27%2Ftechnology%2Fhewlett-packard-posts-a-profit-above-expectations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Hewlett-Packard+Earnings+Top+Expectations%2C+but+Revenue+Falls" 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%2F11%2F27%2Ftechnology%2Fhewlett-packard-posts-a-profit-above-expectations.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Hewlett-Packard+Earnings+Top+Expectations%2C+but+Revenue+Falls" 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/183025021743/u/0/f/640387/c/34625/s/34227362/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/183025021743/u/0/f/640387/c/34625/s/34227362/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/183025021743/u/0/f/640387/c/34625/s/34227362/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/183025021743/u/0/f/640387/c/34625/s/34227362/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/183025021743/u/0/f/640387/c/34625/s/34227362/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/183025021743/u/0/f/640387/c/34625/s/34227362/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/183025021743/u/0/f/640387/c/34625/s/34227362/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/183025021743/u/0/f/640387/c/34625/s/34227362/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The company reported $1.41 billion in net income for the fourth quarter, in contrast to a $6.85 billion loss a year ago.      </Summary>
<Website>http://www.nytimes.com/2013/11/27/technology/hewlett-packard-posts-a-profit-above-expectations.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38876/guest@my.umbc.edu/a7a0f5daffa427ab3d425fdb62737ddb/api/pixel</TrackingUrl>
<Tag>company-reports</Tag>
<Tag>hewlett-packard-company-hpq-nyse</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>thomson-reuters-corporation-tri-nyse</Tag>
<Tag>whitman-margaret-c</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>Tue, 26 Nov 2013 16:52:29 -0500</PostedAt>
<EditAt>Tue, 26 Nov 2013 20:34:28 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="38873" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38873">
<Title>Ted Lawler &#8217;99, bio sci &amp; psych, named to Big South All-Decade Team</Title>
<Body>
<![CDATA[
    <div class="html-content">Ted Lawler ’99, biological sciences and psychology, was recently named to the Big South Network’s All-Decade Team for men’s soccer in the 1990s. From Big South’s website:  As part of the Big South’s 30th Anniversary celebration in 2013-14, the Conference … <a href="http://umbcalumni.wordpress.com/2013/11/26/ted-lawler-99-bio-sci-psych-named-to-big-south-all-decade-team/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Ted Lawler ’99, biological sciences and psychology, was recently named to the Big South Network’s All-Decade Team for men’s soccer in the 1990s. From Big South’s website:  As part of the Big...</Summary>
<Website>http://umbcalumni.wordpress.com/2013/11/26/ted-lawler-99-bio-sci-psych-named-to-big-south-all-decade-team/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38873/guest@my.umbc.edu/0bf05c9f8df52223a52ac53eb1b7df3e/api/pixel</TrackingUrl>
<Tag>90s-alums</Tag>
<Tag>athletes</Tag>
<Tag>big-south-conference</Tag>
<Tag>college-and-university</Tag>
<Tag>concacaf</Tag>
<Tag>ncaa-division-i</Tag>
<Tag>retrievers</Tag>
<Tag>soccer</Tag>
<Tag>sports</Tag>
<Tag>ted-lawler</Tag>
<Tag>true-grit</Tag>
<Tag>umbc</Tag>
<Tag>umbcgrit</Tag>
<Tag>united-states</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Group token="retired-20">UMBC Alumni</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-20</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/original.png?1280681147</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/large.png?1280681147</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/medium.png?1280681147</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/small.png?1280681147</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxsmall.png?1280681147</AvatarUrl>
<Sponsor>UMBC Alumni</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 26 Nov 2013 16:52:13 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="106895" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106895">
<Title>Ted Lawler &#8217;99, bio sci &amp; psych, named to Big South All-Decade Team</Title>
<Body>
<![CDATA[
    <div class="html-content">Ted Lawler ’99, biological sciences and psychology, was recently named to the Big South Network’s All-Decade Team for men’s soccer …</div>
]]>
</Body>
<Summary>Ted Lawler ’99, biological sciences and psychology, was recently named to the Big South Network’s All-Decade Team for men’s soccer …</Summary>
<Website>https://magazine.umbc.edu/ted-lawler-99-bio-sci-psych-named-to-big-south-all-decade-team/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106895/guest@my.umbc.edu/95390956a672a0dded7d76973d333a42/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>big-south-conference</Tag>
<Tag>college-and-university</Tag>
<Tag>concacaf</Tag>
<Tag>ncaa-division-i</Tag>
<Tag>retrievers</Tag>
<Tag>soccer</Tag>
<Tag>sports</Tag>
<Tag>ted-lawler</Tag>
<Tag>true-grit</Tag>
<Tag>umbc</Tag>
<Tag>umbcgrit</Tag>
<Tag>united-states</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/8/xsmall.png?1785165141</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/8/original.png?1785165141</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/images/avatars/group/8/xxlarge.png?1785165141</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/8/xlarge.png?1785165141</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1785165141</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/8/medium.png?1785165141</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/8/small.png?1785165141</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/8/xsmall.png?1785165141</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/8/xxsmall.png?1785165141</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 26 Nov 2013 16:52:13 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="38872" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38872">
<Title>The HTML5 meter Element</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://pankajparashar.com/" rel="nofollow external" class="bo">Pankaj Parashar</a>. Pankaj has written here before, last time about <a href="http://css-tricks.com/html5-progress-element/" rel="nofollow external" class="bo">the <code>progress</code> element</a>. Fitting indeed then to write again about the very related <code>meter</code> element. They are different both functionally and semantically, so read on!</em></p>
    <p></p>
    <p>As <a href="http://dev.w3.org/html5/spec-preview/the-meter-element.html" rel="nofollow external" class="bo">defined by W3C</a>,</p>
    <blockquote><p>The meter element represents a scalar measurement within a known range, or a fractional value; for example disk usage, the relevance of a query result, or the fraction of a voting population to have selected a particular candidate. This is also known as a gauge.</p></blockquote>
    <p>If you are like me, the above spec wouldn't make much sense until we dive deep into the implementation. So let's just start with a basic markup for the meter element:</p>
    <pre><code>&lt;meter&gt;&lt;/meter&gt;</code></pre>
    <p>Similar to its sibling - the <code>progress</code> element - a meter element must also have both a start tag (<code>&lt;meter&gt;</code>) and an end tag (<code>&lt;/meter&gt;</code>). This becomes very useful when we devise a robust fallback technique for older browsers that do not support the meter element, later in this article.</p>
    <h3>Content model</h3>
    <p>The meter element uses the <a href="http://dev.w3.org/html5/spec-preview/content-models.html#phrasing-content-1" rel="nofollow external" class="bo">phrasing content model</a> which means it can contain the text of the document, along with the elements that mark up that text, but there must be no (additional) meter element among its descendants.</p>
    <h3>Attributes</h3>
    <p>Apart from the global attributes, the meter element can have 6 more attributes.</p>
    <p><code>value</code> - A floating point number that represents the current value of the measured range. This must be between the <code>min</code> and the <code>max</code> value (if specified).</p>
    <p><code>min</code> - Indicates the lower bound of the measured range. This must be less than the <code>max</code> value (if specified). If unspecified, the minimum value is 0.</p>
    <p><code>max</code> - Indicates the upper bound of the measured range. This must be greater than the <code>min</code> value (if specified). If unspecified, the maximum value is 1.0.</p>
    <p><code>low</code> - It represents the upper bound of the low end of the measured range. This must be greater than the <code>min</code> attribute, but less than the <code>high</code> and <code>max</code> value (if specified). If unspecified, or if less than the minimum value, the <code>low</code> value is equal to the <code>min</code> value.</p>
    <p><code>high</code> - It represents the lower bound of the high end of the measured range. This must be less than the <code>max</code> attribute, but greater than the <code>low</code> and <code>min</code> value (if specified). If unspecified, or if greater than the <code>max</code> value, the <code>high</code> value is equal to the <code>max</code> value.</p>
    <p><code>optimum</code> - This attribute indicates the optimum value and must be within the range of <code>min</code> and <code>max</code> values. When used with the <code>low</code> and <code>high</code> attribute, it indicates the preferred zone for a given range. For example:</p>
    <ul>
    <li>
          <code>min ≤ optimum ≤ low</code> - If the optimum value is between the <code>min</code> and the <code>low</code> values, then the lower range is considered to be the preferred zone.
        </li>
    <li>
          <code>high ≤ optimum ≤ max</code> - If the optimum value is between the <code>high</code> and the <code>max</code> values, then the upper range is considered to be the preferred zone.
        </li>
    </ul>
    <p>A meter with everything would look like:</p>
    <pre><code>&lt;meter min="0" low="10" optimum="50" high="90" max="100"&gt;&lt;/meter&gt;</code></pre>
    <h3>Rules of thumb</h3>
    <ol>
    <li>All the above mentioned attributes may be floating point numbers e.g. 12, -8, 3.625</li>
    <li>Based on the definition of each attribute the following inequalities become true,
    <ul>
    <li><code>min ≤ value ≤ max</code></li>
    <li>
    <code>min ≤ low ≤ high ≤ max</code> (if low/high specified)</li>
    <li>
    <code>min ≤ optimum ≤ max</code> (if optimum specified)</li>
    </ul>
    </li>
    <li>There is no explicit way to specify units in the meter element, but the <a href="http://dev.w3.org/html5/spec-preview/the-meter-element.html" rel="nofollow external" class="bo">authors are encouraged</a> to specify the units using the title attribute. For example, <code>&lt;meter max="256" value="120" title="GB"&gt;120GB out of 256GB are used&lt;/meter&gt;</code>
    </li>
    </ol>
    <h3>Do not use meter element to...</h3>
    <ol>
    <li>indicate the progress completion of a task (use <code>progress</code> element instead).</li>
    <li>represent a scalar value of an arbitrary range — for example, to report a weight, or height of a person.</li>
    </ol>
    <h3>Experiment #1 - Different states of meter element</h3>
    <p>This experiment shows the various states of the meter element under different combination of input values for each attribute. Feel free to edit the attribute values of the main code to tweak the meter gauge ouput.</p>
    <p>See the Pen <a href="http://codepen.io/pankajparashar/pen/GnFpA" rel="nofollow external" class="bo">HTML5 Meter Element</a> by Pankaj Parashar (<a href="http://codepen.io/pankajparashar" rel="nofollow external" class="bo">@pankajparashar</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <h3>Experiment #2 - OSX style disk usage</h3>
    <p>In this experiment, we'll try and simulate the appearance of the disk usage panel in OS X using the <code>meter</code> element and then style it as cross-browser as possible.</p>
    <p>Populating internal attributes of our meter tag with the known set of input values.</p>
    <ul>
    <li>Total size of the disk - 120.47GB (our <code>max</code> attribute)</li>
    <li>Current disk usage - 55.93GB (our <code>value</code> attribute)</li>
    <li>Minimum disk size - 0 (our <code>min</code> attribute, not required as the default value is 0)</li>
    <li>Unit - GB (our <code>title</code> attribute that specifies the unit)</li>
    </ul>
    <pre><code>&lt;meter max="120" value="55.93" title="GB"&gt;&lt;/meter&gt;</code></pre>
    <p>Before we apply any CSS, the meter gauge looks like this in Chrome 30 on OX X 10.9.</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter.png" style="max-width: 100%; height: auto;">
    Default appearance of the meter element in Chrome 30 on OS X 10.9
    
    <div>Although the <a href="http://dev.w3.org/html5/spec-preview/the-meter-element.html" rel="nofollow external" class="bo">spec recommends</a> including a textual representation of the gauge's state inside the <code>meter</code> tag for older browsers, we'll keep it blank for now to add the fallback content later in this article to support them.</div>
    <p>This is pretty much all that we can do in HTML as rest of the work is done by CSS. At this stage let's not worry about the fallback techniques for supporting older browsers that don't understand the <code>meter</code> element.</p>
    <h3>Styling the meter element</h3>
    <p>Just like any other element, we can define dimensions by specifying <code>width</code> and <code>height</code> for meter.</p>
    <pre><code>meter {&#x000A;      width: 500px;&#x000A;      height: 25px;&#x000A;    }</code></pre>
    <p>This is where things become interesting because generally most of the <a href="http://yuilibrary.com/yui/docs/tutorials/gbs/" rel="nofollow external" class="bo">A-grade browsers</a> provide separate pseudo classes to style the meter element. Although Opera moving to Blink leaves us with less browsers to care for. At this stage, we don't really have to know about which versions of each browser support the <code>meter</code> element, because our fallback technique will take care of the rest. We classify them as follows:</p>
    <ul>
    <li>Webkit/Blink</li>
    <li>Firefox</li>
    <li>Internet Explorer</li>
    </ul>
    <h4>1. Webkit/Blink (Chrome/Safari/Opera/iOS)</h4>
    <p>On inspecting the meter element via <a href="https://developers.google.com/chrome-developer-tools/" rel="nofollow external" class="bo">Chrome Developer Tools</a>, we can reverse-engineer the implementation of the spec in webkit browsers.</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter.png" style="max-width: 100%; height: auto;">
    Inspect element on Chrome DevTools
    
    <p>In addition, the <a href="http://trac.webkit.org/browser/trunk/Source/WebCore/css/html.css#L946" rel="nofollow external" class="bo">User-Agent stylesheet of WebKit</a> provides a wealth of information on how you can use various pseudo classes to access different states of the meter element.</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/user-agent-meter.png" style="max-width: 100%; height: auto;">
    User-Agent stylesheet of WebKit browsers
    
    <table>
    <thead>
    <tr>
    <th>Pseudo class</th>
    <th>Description</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td><code>-webkit-meter-inner-element</code></td>
    <td>Additional markup to render the meter element as read-only.</td>
    </tr>
    <tr>
    <td><code>-webkit-meter-bar</code></td>
    <td>Container of the meter gauge that holds the value.</td>
    </tr>
    <tr>
    <td><code>-webkit-meter-optimum-value</code></td>
    <td>The current value of the meter element and is by default green when the value attribute falls inside the low-high range.</td>
    </tr>
    <tr>
    <td><code>-webkit-meter-suboptimum-value</code></td>
    <td>Gives a yellow color to the meter element when the value attribute falls outside the low-high range.</td>
    </tr>
    <tr>
    <td><code>-webkit-meter-even-less-good-value</code></td>
    <td>Gives a red color to the meter element when the value and the optimum attributes fall outside the low-high range but in opposite zones. For example, <code>value &lt; low &lt; high &lt; optimum</code> or <code>value &gt; high &gt; low &gt; optimum</code>
    </td>
    </tr>
    </tbody>
    </table>
    <p>First, let's start by resetting the default appearance of the meter gauge by using <code>-webkit-appearence: none;</code></p>
    <pre><code>meter {&#x000A;      width: 500px;&#x000A;      height: 25px;&#x000A;      -webkit-appearance: none; /* Reset appearance */&#x000A;      border: 1px solid #ccc;&#x000A;      border-radius: 3px;&#x000A;    }</code></pre>
    <p>For this experiment, we will only be using <code>-webkit-meter-bar</code> (to style the container) and <code>-webkit-meter-optimum-value</code> (to style the value) pseudo classes. Each color in background linear gradient represents the space consumed by the sub-categories like - Apps, Movies, Photos etc.</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-dissection.png" style="max-width: 100%; height: auto;">
    WebKit pseudo classes on the meter element
    
    <pre><code>meter::-webkit-meter-bar {&#x000A;      background: none; /* Required to get rid of the default background property */&#x000A;      background-color: whiteSmoke;&#x000A;      box-shadow: 0 5px 5px -5px #333 inset;&#x000A;    }</code></pre>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-background.png" style="max-width: 100%; height: auto;">
    Output after styling the background container
    
    <pre><code>meter::-webkit-meter-optimum-value {&#x000A;      box-shadow: 0 5px 5px -5px #999 inset;&#x000A;      background-image: linear-gradient(&#x000A;        90deg, &#x000A;        #8bcf69 5%, &#x000A;        #e6d450 5%,&#x000A;        #e6d450 15%,&#x000A;        #f28f68 15%,&#x000A;        #f28f68 55%,&#x000A;        #cf82bf 55%,&#x000A;        #cf82bf 95%,&#x000A;        #719fd1 95%,&#x000A;        #719fd1 100%&#x000A;      );&#x000A;      background-size: 100% 100%;&#x000A;    }</code></pre>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-value.png" style="max-width: 100%; height: auto;">
    Output after styling the meter gauge value
    
    <h4>CSS3 Transition/Animation</h4>
    <p>WebKit browsers support both transition and animation on the <code>meter</code> element. Just for the sake of testing, I experimented by changing the width of the value(on <code>:hover</code>) using transitions and animating the background position of the container using <code>keyframes</code>. Although not applicable for practical usage, both the experiments turned out pretty well on all three browsers.</p>
    <pre><code>meter::-webkit-meter-optimum-value {&#x000A;      -webkit-transition: width .5s;&#x000A;    }&#x000A;    &#x000A;    meter::-webkit-meter-optimum-value:hover {&#x000A;      /* Reset each sub-category to 20% */&#x000A;      background-image: linear-gradient(&#x000A;        90deg, &#x000A;        #8bcf69 20%, &#x000A;        #e6d450 20%,&#x000A;        #e6d450 40%,&#x000A;        #f28f68 40%,&#x000A;        #f28f68 60%,&#x000A;        #cf82bf 60%,&#x000A;        #cf82bf 80%,&#x000A;        #719fd1 80%,&#x000A;        #719fd1 100%&#x000A;      );&#x000A;      transition: width .5s;&#x000A;      width: 100% !important; /* !important required. to override the inline styles in WebKit. */&#x000A;    }</code></pre>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-transition.png" style="max-width: 100%; height: auto;">
    CSS3 Transitions in action (:hover)
    
    <pre><code>meter::-webkit-meter-bar {&#x000A;      /* Let's animate this */&#x000A;      animation: animate-stripes 5s linear infinite;&#x000A;      background-image:&#x000A;        linear-gradient(&#x000A;          135deg,&#x000A;          transparent,&#x000A;          transparent 33%,&#x000A;          rgba(0, 0, 0, 0.1) 33%,&#x000A;          rgba(0, 0, 0, 0.1) 66%,&#x000A;          transparent 66%&#x000A;        );&#x000A;      background-size: 50px 25px;&#x000A;    }&#x000A;    &#x000A;    @keyframes animate-stripes {&#x000A;      to { background-position: -50px 0; }&#x000A;    }</code></pre>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-animation.png" style="max-width: 100%; height: auto;">
    CSS3 Animated background stripes in action
    
    <h4>Pseudo Elements</h4>
    <p>At the time of writing, only webkit browsers support pseudo elements on meter gauge. For this experiment, we could use the pseudo elements to display the meta information like HD Name, Free space right above the meter gauge.</p>
    <pre><code>meter {&#x000A;      margin: 5em;&#x000A;      position: relative;&#x000A;    }&#x000A;    &#x000A;    meter::before {&#x000A;      content: 'Macintosh HD';&#x000A;      position: absolute;&#x000A;      top: -100%;&#x000A;    }&#x000A;    &#x000A;    meter::after {&#x000A;      content: '64.54 GB free out of 120.47 GB';&#x000A;      position: absolute;&#x000A;      top: -100%;&#x000A;      right: 0;&#x000A;    }</code></pre>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-pseudo.png" style="max-width: 100%; height: auto;">
    Pseudo elements in action
    
    <p>Apart from WebKit, the support for pseudo elements in other browsers is non-existent. Hence, there is no good reason to embed content inside pseudo elements, at least for now.</p>
    <h4>2. Firefox</h4>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-firefox.png" style="max-width: 100%; height: auto;">
    Firebug screenshot (on inspecting the meter element in Firefox 25)
    
    <p>Similar to WebKit, Firefox uses <code>-moz-appearence: meterbar</code> to paint the meter gauge. We can get rid of the default bevel and emboss by resetting it to <code>none</code>.</p>
    <pre><code>meter {&#x000A;      /* Reset the default appearence */&#x000A;      -moz-appearance: none;&#x000A;      width: 550px;&#x000A;      height: 25px;&#x000A;    }</code></pre>
    <p>Firefox is shipped with a wholesome list of pseudo classes to style different states of the meter gauge. The snapshot below has been grabbed from the <code>forms.css</code> file that can be accessed from inside Firebug.</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/11/meter-moz.png" style="max-width: 100%; height: auto;">
    [forms.css] snapshot for <code>meter</code> element in Firefox 25
    
    <table>
    <thead>
    <tr>
    <th>Pseudo class</th>
    <th>Description</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td><code>-moz-meter-bar</code></td>
    <td>Represents the current value of the meter gauge that can be used to style the properties of the meter gauge value.</td>
    </tr>
    <tr>
    <td><code>-moz-meter-optimum</code></td>
    <td>It gives a green color to the meter element when the value attribute falls inside the low-high range.</td>
    </tr>
    <tr>
    <td><code>-moz-meter-sub-optimum</code></td>
    <td>It gives a yellow color to the meter element when the value attribute falls outside the low-high range.</td>
    </tr>
    <tr>
    <td><code>-moz-meter-sub-sub-optimum</code></td>
    <td>It gives a red color to the meter element when the value and the optimum attributes fall outside the low-high range but in opposite zones. For example, <code>value &lt; low &lt; high &lt; optimum</code> or <code>value &gt; high &gt; low &gt; optimum</code>
    </td>
    </tr>
    </tbody>
    </table>
    <p>For this experiment, we will only use <code>::-moz-meter-bar</code> to style the background of the meter gauge value.</p>
    <pre><code>meter::-moz-meter-bar {&#x000A;      box-shadow: 0 5px 5px -5px #999 inset;&#x000A;      background-image: linear-gradient(&#x000A;        90deg, &#x000A;        #8bcf69 5%, &#x000A;        #e6d450 5%,&#x000A;        #e6d450 15%,&#x000A;        #f28f68 15%,&#x000A;        #f28f68 55%,&#x000A;        #cf82bf 55%,&#x000A;        #cf82bf 95%,&#x000A;        #719fd1 95%,&#x000A;        #719fd1 100%&#x000A;      );&#x000A;      background-size: 100% 100%;&#x000A;    }</code></pre>
    <p>Interestingly, in Firefox you can style the background of the container using the <code>meter</code> selector itself.</p>
    <pre><code>meter {&#x000A;      /* Firefox */&#x000A;      background: none; /* Required to get rid of the default background property */&#x000A;      background-color: whiteSmoke;  &#x000A;      box-shadow: 0 5px 5px -5px #333 inset;&#x000A;    }</code></pre>
    <p>Firefox doesn't support <code>::before</code> and <code>::after</code> pseudo elements on the meter gauge. The support for CSS3 transitions and animation is a bit shaky as well. Hence, there is no good reason to use them until the behavior becomes consistent across browsers.</p>
    <h4>3. Internet Explorer</h4>
    <p>To my knowledge, no stable version of Internet Explorer supports the meter element. Even the Modernizr test suite failed to detect <a href="http://connect.microsoft.com/IE/feedback/details/793736/ie11-feature-request-support-for-meter" rel="nofollow external" class="bo">meter in IE11 preview on Windows 8.1</a>. This perhaps leaves us only with the fallback approaches that will be discussed in the next section.</p>
    <pre><code>if ('value' in document.createElement('meter')) {&#x000A;      alert("Meter element is supported");&#x000A;    } else {&#x000A;      alert("Meter element Not supported");&#x000A;    }</code></pre>
    <h3>What about browsers that don't support meter?</h3>
    <p><a href="http://caniuse.com/#feat=progressmeter" rel="nofollow external" class="bo">Can I Use</a> (and simple testing) reports the meter gauge is natively supported in: <strong>Firefox 16+, Opera 11+, Chrome, Safari 6+</strong>. <strong>Internet Explorer</strong>, however offers no support what-so-ever for any version. If you want to make <code>meter</code> element work in older browsers, then you've got two options:</p>
    <h4>1. Polyfill</h4>
    <p>Randy Peterman has <a href="https://gist.github.com/strings28/667320" rel="nofollow external" class="bo">written a polyfill</a> that makes meter element work in older browsers (especially IE). During my cross-browser testing, I found that the polyfill works for all IE browsers down to IE6! which makes it a good candidate for usage in production.</p>
    <h4>2. HTML fallback</h4>
    <p>This is my preferred (no-JS) approach. It makes use of a common technique that was also discussed in my previous article for CSS-Tricks on the <a href="http://css-tricks.com/html5-progress-element/" rel="nofollow external" class="bo">HTML5 progress element</a>.</p>
    <pre><code>&lt;meter value="55.93" min="0" max="120.47" title="GB"&gt;&#x000A;      &lt;div class="meter-gauge"&gt;&#x000A;        &lt;span style="width: 46.42%;"&gt;Disk Usage - 55.93GB out of 120GB&lt;/span&gt;&#x000A;      &lt;/div&gt;&#x000A;    &lt;/meter&gt;</code></pre>
    <p>The idea is to simulate the appearance of a meter gauge using <code>div</code> and <code>span</code> inside the meter tag. Modern browsers that support meter will ignore the content within the tag. Older browsers that cannot render the meter element will ignore the tag and render the markup inside it.</p>
    <pre><code>.meter-gauge {&#x000A;        border: 1px solid #ccc;&#x000A;        border-radius: 3px;&#x000A;        background-color: whiteSmoke;&#x000A;        box-shadow: 0 5px 5px -5px #333 inset;&#x000A;        width: 550px;&#x000A;        height: 25px;&#x000A;        display: block;&#x000A;    }&#x000A;    &#x000A;    .meter-gauge &gt; span {&#x000A;      height: inherit;  &#x000A;      box-shadow: 0 5px 5px -5px #999 inset;&#x000A;      background-color: blue;&#x000A;      background-image: linear-gradient(&#x000A;        90deg, &#x000A;        #8bcf69 5%, &#x000A;        #e6d450 5%,&#x000A;        #e6d450 15%,&#x000A;        #f28f68 15%,&#x000A;        #f28f68 55%,&#x000A;        #cf82bf 55%,&#x000A;        #cf82bf 95%,&#x000A;        #719fd1 95%,&#x000A;        #719fd1 100%&#x000A;      );&#x000A;      background-size: 100% 100%;&#x000A;      display: block;&#x000A;      text-indent: -9999px;&#x000A;    }</code></pre>
    <p>It is fairly common to use both the techniques in conjunction and it is perfectly safe for usage in production sites. The demo should run fine for all the browsers including Internet Explorer (down to IE6!). The meter gauge color is blue in all the versions of Internet Explorer. Opera 11 and 12 doesn't permit changing the color of the meter gauge. Hence, it shows the default green color. The demo also uses some additional markup to display the disk usage of each sub-category like Apps, Movies, Photos etc.</p>
    <p>See the Pen <a href="http://codepen.io/pankajparashar/pen/LceIj" rel="nofollow external" class="bo">OSX-style Disk Usage </a> by Pankaj Parashar (<a href="http://codepen.io/pankajparashar" rel="nofollow external" class="bo">@pankajparashar</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a></p>
    <h3>More Resources</h3>
    <ul>
    <li>Official W3C Spec for <a href="http://dev.w3.org/html5/spec-preview/the-meter-element.html" rel="nofollow external" class="bo">meter</a>
    </li>
    <li>MDN docs for <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter" rel="nofollow external" class="bo">meter</a>
    </li>
    <li>HTMl5Doctor: <a href="http://html5doctor.com/measure-up-with-the-meter-tag/" rel="nofollow external" class="bo">Measure up with the meter tag</a>
    </li>
    </ul>
    <hr>
    
    <p><small><a href="http://css-tricks.com/html5-meter-element/" rel="nofollow external" class="bo">The HTML5 meter Element</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Pankaj Parashar. Pankaj has written here before, last time about the progress element. Fitting indeed then to write again about the very related meter element....</Summary>
<Website>http://css-tricks.com/html5-meter-element/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38872/guest@my.umbc.edu/2239f8035e0adc9a2f62e543f79b5c1e/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>Tue, 26 Nov 2013 16:45:27 -0500</PostedAt>
<EditAt>Tue, 26 Nov 2013 16:45:27 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="38869" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38869">
<Title>Reminder: Register for Spring Involvement Fest!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div>
    <strong>Spring Involvement Fest Registration is officially open.</strong> Involvement Fest will be Wed Jan 29th in the Commons.</div>
    <div><br></div>
    <div>Please communicate with the other officers in your student org to make sure the form is only completed one time.</div>
    <div><br></div>
    <div><a href="https://studentlifeumbc.wufoo.com/forms/spring-2014-involvement-fest-registration/" rel="nofollow external" class="bo">https://studentlifeumbc.wufoo.com/forms/spring-2014-involvement-fest-registration/</a></div>
    <div><br></div>
    <div>Registration is on a first come first serve basis, as space is limited. <strong>Registration closes on December 15th!</strong>
    </div>
    </div>
]]>
</Body>
<Summary>Spring Involvement Fest Registration is officially open. Involvement Fest will be Wed Jan 29th in the Commons.     Please communicate with the other officers in your student org to make sure the...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38869/guest@my.umbc.edu/b9af8a950a21ae40645db96fbcd5db39/api/pixel</TrackingUrl>
<Group token="retired-769">UMBC Student Organizations </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-769</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/original.jpg?1383677072</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/large.png?1383677072</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/medium.png?1383677072</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/small.png?1383677072</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxsmall.png?1383677072</AvatarUrl>
<Sponsor>UMBC Student Organizations</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 26 Nov 2013 16:16:24 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="38867" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38867">
<Title>Student Organization Funding Update from SGA Finance Board</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div>
    <div>Hi Student Org Leaders,</div>
    <div><br></div>
    </div>
    <div>We hope that you are all doing well as the semester gears towards finals. This email briefly outlines the state of student organization funding, just so everyone is on the same page.</div>
    <div>
    <div><br></div>
    <div>For the Fiscal Year of 2013-2014, the SGA Finance Board began with a budget of $230,000.00 to allocate to student organizations. </div>
    <div><br></div>
    </div>
    <div>As of right now, the Finance Board has allocated $124,177.76 to over 50 student organizations. Thus, the current amount left in our budget is <strong><u>$105,822.24</u></strong> for the remainder of the Fiscal Year (July 1-June 30). We receive a far larger volume of requests than we can accommodate each year, and must manage the funds carefully to make sure students get the greatest possible benefit from their investment of fees. We appreciate all that organizations are doing to create an engaged, vibrant sense of community on campus.</div>
    <div>
    <div><br></div>
    <div><strong>AS WE MOVE TOWARD WINTER BREAK, PLEASE NOTE THE FOLLOWING:</strong></div>
    </div>
    <div><ul>
    <div>
    <li>The last Finance Board meeting of the fall semester is <span><span>Tuesday, December 10th, 2013 at 5:30 p.m.</span></span> in Commons 318.<br><br>
    </li>
    <li>The first Finance Board meeting of the spring semester is <span><span>Tuesday, January 28th, 2014 at 5:30 p.m.</span></span> in Commons 318.<br><br>
    </li>
    </div>
    <li>Keep in mind that if your organization is planning on having an event soon after the semester begins, you may wish to submit your Allocation Request prior to leaving for Winter Break (the usual deadlines--submitting the allocation request form 60, 30, and 15 days in advance depending on the amount requested--will be in place). More specifically, if you plan on requesting funds for an event or initiative in the first two weeks of the spring semester, you'll need to submit your request by <span><span>Wednesday, December 4</span></span> (the submission deadline to be on the agenda for the <span><span>Tuesday, December 10</span></span> meeting). <br><br>
    </li>
    <div><li>If your organization is planning on having a large-scale event next semester, we encourage you to plan ahead in order to be considered for funding. Remember that as the spring semester goes on, the Finance Board has fewer funds to allocate.<br> </li></div>
    <li>Although it is not technically possible to reserve locations for the Spring Semester (academic spaces) until two weeks after classes start, the Finance Board only requires that your organization have a stamp from Events Planning (3rd floor of the Commons, Rm. 336) on your Allocation Request Form confirming that you are in the process of reserving a space. Please note that <em>anyone</em> in the Events Planning office can stamp your form, not just Jackie Aliotta.</li>
    </ul></div>
    <div><br></div>
    <div><span>If you ever have any concerns about Finance Board meetings, SGA's allocation process, or anything else, please know that you can contact Sara Kim (Chair, Finance Board) or Haneen Daham (SGA Treasurer). </span></div>
    </div>
]]>
</Body>
<Summary>Hi Student Org Leaders,      We hope that you are all doing well as the semester gears towards finals. This email briefly outlines the state of student organization funding, just so everyone is on...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38867/guest@my.umbc.edu/e3113fdd8d9b38d24380a4d1c7c200d0/api/pixel</TrackingUrl>
<Group token="retired-769">UMBC Student Organizations </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-769</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/original.jpg?1383677072</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/large.png?1383677072</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/medium.png?1383677072</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/small.png?1383677072</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxsmall.png?1383677072</AvatarUrl>
<Sponsor>UMBC Student Organizations</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 26 Nov 2013 16:04:46 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109921" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109921">
<Title>Donald Norris, Public Policy, in The Washington Post</Title>
<Body>
<![CDATA[
    <div class="html-content">Attorney General Douglas Gansler and Lt. Gov. Anthony Brown both put forth campaign pledge proposals last week in what has become a hotly contested Democratic primary in the Maryland race for governor. Gansler asked fellow Democrats to sign a pledge discouraging outside spending on the race. Brown then proposed abandoning all negative ads in the campaign.  The candidates campaign’s have gone back and forth in recent days attacking the proposals. Del. Heather Mizeur, a third candidate in the race, has largely stayed out of the disputes. Public policy professor and chair Donald Norris was interviewed by The Washington Post for an article …</div>
]]>
</Body>
<Summary>Attorney General Douglas Gansler and Lt. Gov. Anthony Brown both put forth campaign pledge proposals last week in what has become a hotly contested Democratic primary in the Maryland race for...</Summary>
<Website>https://news.umbc.edu/donald-norris-public-policy-in-the-washington-post-4/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109921/guest@my.umbc.edu/327f8ccf01e99d0da8a7407861fa384e/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>publicpolicy</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 26 Nov 2013 16:02:48 -0500</PostedAt>
</NewsItem>

</News>
