<?xml version="1.0"?>
<News hasArchived="true" page="7940" pageCount="10750" pageSize="10" timestamp="Thu, 13 Aug 2026 17:02:24 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7940">
<NewsItem contentIssues="true" id="39772" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39772">
<Title>Sass Tip: The Double Ampersand Selector</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>In Sass, the ampersand (&amp;) symbol is used to reference the parent selector in a nested rule. For example, the following targets <code>.btn</code> on :hover:</p>
    <pre>.btn {&#x000A;      ...&#x000A;      &amp;:hover {&#x000A;        background: dodgerblue;&#x000A;      }&#x000A;    }</pre>
    <p>The <code>&amp;</code> can also be placed after a selector to reverse the nesting order:</p>
    <pre>.btn {&#x000A;      ...&#x000A;      .navbar &amp; {&#x000A;        background: lightsteelblue;&#x000A;      }&#x000A;    }</pre>
    <p>This outputs a descendant selector that targets a <code>.btn</code> element inside <code>.navbar</code>:</p>
    <pre>.btn {&#x000A;      ...&#x000A;    }&#x000A;    .navbar .btn {&#x000A;      background: lightsteelblue;&#x000A;    }</pre>
    <p>We can take this concept a step further with an adjacent sibling combinator.</p>
    <h2>Adjacent Sibling Selector</h2>
    <p>The adjacent sibling combinator (+) is used to target an element’s immediate sibling. For instance:</p>
    <pre>.heading + .intro {&#x000A;      ...&#x000A;    }</pre>
    <p>This targets any <code>intro</code> class immediately following an element with the class <code>heading</code>. Let’s take a look at two useful ways we can use this combinator with the <code>&amp;</code> selector.</p>
    <h3>Adjacent Buttons</h3>
    <p>Let’s say we have a button group consisting of a primary and a secondary action button, both have the class <code>btn</code>.</p>
    <pre>&lt;div class="btn-group"&gt;&#x000A;      &lt;a class="btn" href="#"&gt;Primary Action&lt;/a&gt;&#x000A;      &lt;a class="btn" href="#"&gt;Secondary Action&lt;/a&gt;&#x000A;    &lt;/div&gt;</pre>
    <p>The secondary action button needs to be a different color and have a left margin to separate it from its sibling. We can use the following rule to reference <code>btn</code>, then target its immediate sibling with the same class:</p>
    <pre>.btn {&#x000A;      ...&#x000A;      &amp; + &amp; {&#x000A;        margin-left: 15px;&#x000A;        background: firebrick;&#x000A;      }&#x000A;    }</pre>
    <p>If two <code>btn</code> classes are adjacent siblings, the second one will get the firebrick background and left margin. Here’s the CSS output:</p>
    <pre>.btn {&#x000A;      ...&#x000A;    }&#x000A;    .btn + .btn {&#x000A;      margin-left: 15px;&#x000A;      background: firebrick;&#x000A;    }</pre>
    <p><a href="http://codepen.io/Guilh/pen/hkyGI" rel="nofollow external" class="bo">See CodePen Demo</a></p>
    <h3>Columns</h3>
    <p>The adjacent <code>&amp;</code> selector also helps with column layout. To create a row where all but the first column have a left margin (or gutter), we can write the following:</p>
    <pre>.col {&#x000A;      ...&#x000A;      &amp; + &amp; {&#x000A;        margin-left: 30px;&#x000A;      }&#x000A;    }</pre>
    <p>The first column will remain flush with the left side of the page, while the others get a roomy left margin.</p>
    <p><a href="http://codepen.io/Guilh/pen/zAvgr" rel="nofollow external" class="bo">See CodePen Demo</a></p>
    <p>As we just learned, the “double ampersand” sibling selector is a handy solution that keeps us from writing extra CSS and classes in our markup. Methods like these are some of the many ways Sass helps us write cleaner, more efficient front-end code.</p>
    <p>To learn more about Sass, check out our new Treehouse course on <a href="http://teamtreehouse.com/library/sass-basics" rel="nofollow external" class="bo">Sass basics</a>.</p>
    <p>The post <a href="http://blog.teamtreehouse.com/sass-tip-double-ampersand-selector" rel="nofollow external" class="bo">Sass Tip: The Double Ampersand Selector</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>In Sass, the ampersand (&amp;) symbol is used to reference the parent selector in a nested rule. For example, the following targets .btn on :hover:   .btn {   ...   &amp;:hover {     background:...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/oEaXPA4Xmgw/sass-tip-double-ampersand-selector</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39772/guest@my.umbc.edu/2e8d2839a96ae839f9d7d7d29fa70199/api/pixel</TrackingUrl>
<Tag>ampersand</Tag>
<Tag>ampersand-selector</Tag>
<Tag>and-selector</Tag>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>double-ampersand</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>learn-to-code</Tag>
<Tag>make-a-website</Tag>
<Tag>parent-selectors</Tag>
<Tag>responsive</Tag>
<Tag>sass</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 15:00:51 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="39768" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39768">
<Title>Alexandria Volkening: Class of 2011 valedictorian</Title>
<Body>
<![CDATA[
    <div class="html-content">Alexandria Volkening was named the <em>valedictorian</em> of the UMBC class of 2011.<br><br>Her grades kept her on the President’s List throughout her time at UMBC; she was named Outstanding Senior in Mathematics, admitted to Phi Beta Kappa and awarded both a UMBC Premier Scholarship and an ITT Scholarship. She was a member of the Honors College and a Meyerhoff Scholars Affiliate, and she became active helping other students succeed, working as a teaching assistant in honors calculus. She volunteered extensively in the community as a member of the Shriver Living Learning Center, helping out in an inner city elementary school as a math volunteer one year and, more recently, teaching aerobics at a senior center. She has been awarded a National Science Foundation Graduate Research Fellowship to study applied mathematics at Brown University.<br><br>You will find more information on the <a href="http://www.umbc.edu/classof2011/bios.html" rel="nofollow external" class="bo">announcement page</a>.<br><br>
    </div>
]]>
</Body>
<Summary>Alexandria Volkening was named the valedictorian of the UMBC class of 2011.  Her grades kept her on the President’s List throughout her time at UMBC; she was named Outstanding Senior in...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39768/guest@my.umbc.edu/a5bf1c1016e06535ad41612d9f649ffc/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/768/70217dd96da535e0b862ae12245c8906/xxlarge.jpg?1388001408</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/768/70217dd96da535e0b862ae12245c8906/xlarge.jpg?1388001408</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/768/70217dd96da535e0b862ae12245c8906/large.jpg?1388001408</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/768/70217dd96da535e0b862ae12245c8906/medium.jpg?1388001408</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/768/70217dd96da535e0b862ae12245c8906/small.jpg?1388001408</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/768/70217dd96da535e0b862ae12245c8906/xsmall.jpg?1388001408</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/768/70217dd96da535e0b862ae12245c8906/xxsmall.jpg?1388001408</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 14:57:22 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="39767" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39767">
<Title>Nagaraj Neerchal Elected Fellow of the ASA</Title>
<Body>
<![CDATA[
    <div class="html-content">Dr. Nagaraj K. Neerchal, was elected <em>Fellow of the American Statistical Association</em> (ASA). This honor recognizes the professional contributions of members of the ASA and is limited to one-third of one percent of the ASA membership. The photo shows him receiving the honor in a ceremony held during the Joint Statistical Meetings in Vancouver in August 2010.<br><br>
    </div>
]]>
</Body>
<Summary>Dr. Nagaraj K. Neerchal, was elected Fellow of the American Statistical Association (ASA). This honor recognizes the professional contributions of members of the ASA and is limited to one-third of...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39767/guest@my.umbc.edu/60a5b179353b52288b3b27678a63ea7f/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/767/d7686a221f4e121ba0465eb70104efb7/xxlarge.jpg?1388000900</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/767/d7686a221f4e121ba0465eb70104efb7/xlarge.jpg?1388000900</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/767/d7686a221f4e121ba0465eb70104efb7/large.jpg?1388000900</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/767/d7686a221f4e121ba0465eb70104efb7/medium.jpg?1388000900</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/767/d7686a221f4e121ba0465eb70104efb7/small.jpg?1388000900</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/767/d7686a221f4e121ba0465eb70104efb7/xsmall.jpg?1388000900</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/039/767/d7686a221f4e121ba0465eb70104efb7/xxsmall.jpg?1388000900</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 14:48:49 -0500</PostedAt>
<EditAt>Sun, 16 Mar 2014 14:24:29 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="39766" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39766">
<Title>Matthias Gobbert recognized for mentoring</Title>
<Tagline>Receives the 2010 USM Board of Regents Faculty Award</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Dr. Matthias Gobbert is the recipient of the 2010 University System of Maryland Board of Regents Faculty Award for Excellence in Mentoring, in recognition of his success in using the Center for Interdisciplinary Research and Consulting, the UMBC High Performance Computing Facility, and other initiatives in leading many graduate students to their first publications. Dr. Gobbert was honored at the UMBC Faculty and Staff Awards Ceremony on April 7, 2010, and the award was formally given as part of the Board of Regents meeting on April 16. The photo shows (from left to right) Board of Regents Chair Clifford M. Kendall, UMBC Provost Elliot Hirshman, Dr. Gobbert, and University System Chancellor William Brit Kirwan at the Regents meeting.<br><br>
    </div>
]]>
</Body>
<Summary>Dr. Matthias Gobbert is the recipient of the 2010 University System of Maryland Board of Regents Faculty Award for Excellence in Mentoring, in recognition of his success in using the Center for...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39766/guest@my.umbc.edu/43135c78d5939d7038155fb6365cdad2/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/766/f14155e842ad13c13a8025b93e6803e3/xxlarge.jpg?1388000652</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/766/f14155e842ad13c13a8025b93e6803e3/xlarge.jpg?1388000652</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/039/766/f14155e842ad13c13a8025b93e6803e3/large.jpg?1388000652</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/766/f14155e842ad13c13a8025b93e6803e3/medium.jpg?1388000652</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/039/766/f14155e842ad13c13a8025b93e6803e3/small.jpg?1388000652</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/039/766/f14155e842ad13c13a8025b93e6803e3/xsmall.jpg?1388000652</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/766/f14155e842ad13c13a8025b93e6803e3/xxsmall.jpg?1388000652</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 14:44:47 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="39765" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39765">
<Title>Bonny Tighe recognized for excellence in teaching</Title>
<Tagline>Receives the 2009 Carl Webber Excellence in Teaching award</Tagline>
<Body>
<![CDATA[
    <div class="html-content">The inaugural award was presented at the CNMS Student Recognition Day ceremony on May 8, 2009 to Bonny Tighe, a Senior Lecturer in the Department of Mathematics and Statistics who started at UMBC as a full time instructor in 1988.  She is an outstanding educator who teaches four courses every semester.  In addition to coordinating and teaching an array of courses from Mathematics for elementary School Teachers to Calculus II, Ms. Tighe is a dedicated faculty member who serves on student-focused committees, trains teaching assistants, serves as a faculty mentor and advises a variety of student organizations.  Ms. Tighe also teaches mathematics for the annual Meyerhoff Scholars’ Summer Bridge Program.  She is an amazing person who, as the first recipient of the Weber Award, is a tribute to Carl Weber’s legacy of teaching excellence at UMBC.<br><br>The Weber award was established in 2006 in memory of Dr. Carl S. Weber, Assistant Professor Emeritus in the UMBC Department of Biological Sciences, as a tribute to his passion for classroom teaching.  The annual award honors a faculty member at UMBC with exceptional dedication to teaching as demonstrated by his or her enthusiasm, up-to-date teaching materials, effective mentoring, community service in the teaching area, approachability, rigorous learning requirements, coherent teaching philosophy and inspirational teaching style.<br><br>You will find more information on the award's <a href="http://umbc.edu/cnms/WeberAwardPage2.html" rel="nofollow external" class="bo">announcement page</a>.<br><br>
    </div>
]]>
</Body>
<Summary>The inaugural award was presented at the CNMS Student Recognition Day ceremony on May 8, 2009 to Bonny Tighe, a Senior Lecturer in the Department of Mathematics and Statistics who started at UMBC...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39765/guest@my.umbc.edu/988e8a8f1ceeaec9ce3cb407b4c26a52/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/765/efbd774fdce204077f64ad083665abb0/xxlarge.jpg?1388000225</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/039/765/efbd774fdce204077f64ad083665abb0/xlarge.jpg?1388000225</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/765/efbd774fdce204077f64ad083665abb0/large.jpg?1388000225</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/765/efbd774fdce204077f64ad083665abb0/medium.jpg?1388000225</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/765/efbd774fdce204077f64ad083665abb0/small.jpg?1388000225</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/765/efbd774fdce204077f64ad083665abb0/xsmall.jpg?1388000225</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/765/efbd774fdce204077f64ad083665abb0/xxsmall.jpg?1388000225</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 14:37:52 -0500</PostedAt>
<EditAt>Wed, 25 Dec 2013 14:38:16 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="39764" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39764">
<Title>Thomas Mathew named Presidential Research Professor</Title>
<Body>
<![CDATA[
    <div class="html-content">Professor Thomas Mathew has been designated <em>Presidential Research Professor</em> at UMBC for the three-year term July 1, 2007-June 30, 2011. The award was presented by President Freeman A.  Hrabowski and Provost Arthur T. Johnson at a special ceremony in the UC Ballroom on April 9, 2008.<br><em><br></em>You will find more information on the award's <a href="http://www.umbc.edu/newsevents/Awards2008/" rel="nofollow external" class="bo"><span>announcement page</span></a>.<br>
    </div>
]]>
</Body>
<Summary>Professor Thomas Mathew has been designated Presidential Research Professor at UMBC for the three-year term July 1, 2007-June 30, 2011. The award was presented by President Freeman A.  Hrabowski...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39764/guest@my.umbc.edu/ead79871e1b9c6cc6d5f959a9cf659d2/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/764/acbb442d0145ef4921b6dc5cdde84e5b/xxlarge.jpg?1387999771</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/764/acbb442d0145ef4921b6dc5cdde84e5b/xlarge.jpg?1387999771</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/764/acbb442d0145ef4921b6dc5cdde84e5b/large.jpg?1387999771</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/039/764/acbb442d0145ef4921b6dc5cdde84e5b/medium.jpg?1387999771</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/764/acbb442d0145ef4921b6dc5cdde84e5b/small.jpg?1387999771</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/764/acbb442d0145ef4921b6dc5cdde84e5b/xsmall.jpg?1387999771</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/764/acbb442d0145ef4921b6dc5cdde84e5b/xxsmall.jpg?1387999771</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 14:29:55 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="39763" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39763">
<Title>Manil Suri: AY 2007-08 Wilson H. Elkins Professorship award</Title>
<Body>
<![CDATA[
    <div class="html-content">Professor Manil Suri has been selected to receive a Wilson H. Elkins Professorship for AY 2007-2008.  The award will support Professor Suri's plans to foster interest and learning in mathematics among K-12 students and the general public.<br><br>Established in 1978, the Elkins Professorships support professors who demonstrate exemplary ability to inspire students and whose professional work and scholarly endeavors make a positive impact beyond the University System of Maryland.<br><br>You will find more information on the award's <a href="http://www.usmd.edu/newsroom/news/291" rel="nofollow external" class="bo">announcement page</a>.<br><br>
    </div>
]]>
</Body>
<Summary>Professor Manil Suri has been selected to receive a Wilson H. Elkins Professorship for AY 2007-2008.  The award will support Professor Suri's plans to foster interest and learning in mathematics...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39763/guest@my.umbc.edu/bd2b54182d28015aec7689ac16bda7a0/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 14:19:18 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="39762" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39762">
<Title>Joseph McCloskey, 2007 Outstanding Alumni Award</Title>
<Tagline>Outstanding Alumnus, Natural &amp; Mathematical Sciences</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Joseph McCloskey, M.S. ’81, Ph.D. ’83, Applied Mathematics, has received a 2007 <em>Outstanding Alumni Award</em>.<br><br>Each year the UMBC Alumni Association presents annual awards to honor alumni for their professional and personal achievements and service to the University. Dr. McCloskey is a senior cryptologic mathematician for the National Security Agency, where he has worked since 1968.<br><br>Throughout his career, he has received numerous citations, including the <em>President’s Award</em> from the Crypto-Mathematics Institute, the agency’s oldest learned society, in 2001. For more information, visit the <a href="http://umbcalumni.wordpress.com/2010/02/08/2007-umbc-alumni-of-the-year-distinguished-service-award-winners/" rel="nofollow external" class="bo">award announcement page</a>.<br><br>
    </div>
]]>
</Body>
<Summary>Joseph McCloskey, M.S. ’81, Ph.D. ’83, Applied Mathematics, has received a 2007 Outstanding Alumni Award.  Each year the UMBC Alumni Association presents annual awards to honor alumni for their...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39762/guest@my.umbc.edu/f5fbb2558ab48eb18c02208b21cab463/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 14:08:05 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="39761" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39761">
<Title>Advances in Control of Partial Differential Equations</Title>
<Tagline>A Conference in Honor of Thomas I. Seidman</Tagline>
<Body>
<![CDATA[
    <div class="html-content">The conference, <strong>Advances in Control of Partial Differential Equations</strong>, is being held on October 28-29, 2006, in honor of the 70th birthday of UMBC Professor Thomas I. Seidman.<br><br>Dr. Seidman received his Ph.D. from New York University with K. O. Friedrichs in 1959. In his early career, he spent time both at national laboratories and in industry, before joining the faculty at Wayne State University and Carnegie Mellon University. In 1972, he moved to UMBC and is now serving UMBC in the 35th year.<br><br>With this conference, we will honor Dr. Seidman's outstanding research productivity, which includes over 150 papers with more than 60 collaborators, and his continuing research productivity publishing over 4 papers per year. His long and distinguished career over 50 years has particularly impacted the area of control of partial differential equations.<br><br>Go to the <a href="http://www.umbc.edu/seidman/" rel="nofollow external" class="bo">dedicated web page</a> for the details regarding the conference's program.<br>
    </div>
]]>
</Body>
<Summary>The conference, Advances in Control of Partial Differential Equations, is being held on October 28-29, 2006, in honor of the 70th birthday of UMBC Professor Thomas I. Seidman.  Dr. Seidman...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39761/guest@my.umbc.edu/895fe9807ee85d5ae1eb2cbe224abf02/api/pixel</TrackingUrl>
<Group token="mathweb">mathweb</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/mathweb</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/1/original.png?1786448318</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786448318</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/1/large.png?1786448318</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/1/medium.png?1786448318</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1786448318</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1786448318</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786448318</AvatarUrl>
<Sponsor>mathweb</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/039/761/a8641042a65f0cb99c82df186d88b182/xxlarge.jpg?1387996499</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/761/a8641042a65f0cb99c82df186d88b182/xlarge.jpg?1387996499</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/761/a8641042a65f0cb99c82df186d88b182/large.jpg?1387996499</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/039/761/a8641042a65f0cb99c82df186d88b182/medium.jpg?1387996499</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/761/a8641042a65f0cb99c82df186d88b182/small.jpg?1387996499</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/039/761/a8641042a65f0cb99c82df186d88b182/xsmall.jpg?1387996499</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/039/761/a8641042a65f0cb99c82df186d88b182/xxsmall.jpg?1387996499</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 13:40:10 -0500</PostedAt>
<EditAt>Wed, 25 Dec 2013 13:51:03 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="39759" important="false" status="posted" url="https://my3.my.umbc.edu/posts/39759">
<Title>HTML5 Canvas : Adding Shadows</Title>
<Body>
<![CDATA[
    <div class="html-content">In HTML5 canvas, you can add shadows on a shape, a line, text, or an image which can create a sense of third dimension.</div>
]]>
</Body>
<Summary>In HTML5 canvas, you can add shadows on a shape, a line, text, or an image which can create a sense of third dimension.</Summary>
<Website>http://feedproxy.google.com/~r/w3resource/~3/VYVLmgo5QME/html5-canvas-shadow.php</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/39759/guest@my.umbc.edu/12d3e44fa8a93dbcd8840a1ef168410e/api/pixel</TrackingUrl>
<Tag>backend</Tag>
<Tag>css</Tag>
<Tag>frontend</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>javascript</Tag>
<Tag>nosql</Tag>
<Tag>sql</Tag>
<Tag>xhtml</Tag>
<Tag>xml</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 25 Dec 2013 12:01:29 -0500</PostedAt>
<EditAt>Thu, 15 May 2014 09:16:23 -0400</EditAt>
</NewsItem>

</News>
