<?xml version="1.0"?>
<News hasArchived="true" page="8073" pageCount="10742" pageSize="10" timestamp="Thu, 06 Aug 2026 01:58:24 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8073">
<NewsItem contentIssues="false" id="38275" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38275">
<Title>CSSOff 2013</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>It's live!</p>
    <p>If this is the first you've heard of it, it's a contest where you get a Photoshop document and have two weeks to convert it into HTML and CSS. You're judged on an established <a href="http://www.unmatchedstyle.com/cssoff/rules.php" rel="nofollow external" class="bo">set of criteria</a>. </p>
    <p>The design this year is by <a href="http://danielmall.com/" rel="nofollow external" class="bo">Daniel Mall</a>.</p>
    <p>You have to submit your design through <a href="http://codepen.io/" rel="nofollow external" class="bo">CodePen</a>. As you'll need to host files (like images) to make it happen, and you'll want to be working privately, you'll need a CodePen PRO account, which you can have for free for the duration of the contest. Just log in and then <a href="http://codepen.io/promo/css-off-2013" rel="nofollow external" class="bo">go here and get the free upgrade</a>.</p>
    <p><a href="http://www.unmatchedstyle.com/cssoff/" title="Direct link to featured article" rel="nofollow external" class="bo">Direct Link to Article</a> — <a href="http://css-tricks.com/cssoff-2013/" rel="nofollow external" class="bo">Permalink</a></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/cssoff-2013/" rel="nofollow external" class="bo">CSSOff 2013</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>It's live!   If this is the first you've heard of it, it's a contest where you get a Photoshop document and have two weeks to convert it into HTML and CSS. You're judged on an established set of...</Summary>
<Website>http://www.unmatchedstyle.com/cssoff/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38275/guest@my.umbc.edu/15da0088c346415add49c1af159da9b7/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>link</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, 12 Nov 2013 13:43:47 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="38276" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38276">
<Title>HTML Imports</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Essentially a way to import a block of dependancies (scripts and styles) into an HTML document. </p>
    <pre><code>&lt;link rel="import" href="imports.html"&gt;</code></pre>
    <p>It doesn't actually just plop the content from the referenced file where you call it though, like an <code>@import</code> does in CSS or and include does in a server side language. HTML could <em>very much</em> use that.</p>
    <p><a href="http://www.html5rocks.com/en/tutorials/webcomponents/imports/" title="Direct link to featured article" rel="nofollow external" class="bo">Direct Link to Article</a> — <a href="http://css-tricks.com/html-imports/" rel="nofollow external" class="bo">Permalink</a></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/html-imports/" rel="nofollow external" class="bo">HTML Imports</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Essentially a way to import a block of dependancies (scripts and styles) into an HTML document.    &lt;link rel="import" href="imports.html"&gt;   It doesn't actually just plop the content from...</Summary>
<Website>http://www.html5rocks.com/en/tutorials/webcomponents/imports/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38276/guest@my.umbc.edu/fb9cf47bf028ab006688b4b989ed1ce5/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>link</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, 12 Nov 2013 13:38:09 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="38273" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38273">
<Title>-moz-gone</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Mozilla says they "will no longer ship new 'moz'-prefixed APIs" as part of an overall philosophy of: "Is this good for the Web?"</p>
    <p>Blink has also <a href="http://www.chromium.org/blink#vendor-prefixes" rel="nofollow external" class="bo">said this</a>. <a href="https://twitter.com/dstorey/status/400063465424814080" rel="nofollow external" class="bo">Word has it</a> WebKit still plans to use them as they deem necessary.</p>
    <p><a href="https://wiki.mozilla.org/WebAPI/ExposureGuidelines" title="Direct link to featured article" rel="nofollow external" class="bo">Direct Link to Article</a> — <a href="http://css-tricks.com/moz-gone/" rel="nofollow external" class="bo">Permalink</a></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/moz-gone/" rel="nofollow external" class="bo">-moz-gone</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Mozilla says they "will no longer ship new 'moz'-prefixed APIs" as part of an overall philosophy of: "Is this good for the Web?"   Blink has also said this. Word has it WebKit still plans to use...</Summary>
<Website>https://wiki.mozilla.org/WebAPI/ExposureGuidelines</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38273/guest@my.umbc.edu/626e959e240bbac4f096348df44cdf86/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>link</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>1</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 12 Nov 2013 13:29:22 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109935" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109935">
<Title>Production by Alan Kreizenbeck, Theatre, at David Mikow Art Gallery</Title>
<Body>
<![CDATA[
    <div class="html-content">comfort/drones, an original production by Alan Kreizenbeck, theatre, will open in the David Mikow Art Gallery, Friday, November 17 at 7 p.m. The play, based on the writings of Wallace Shawn, is embedded with questions about morality. It is the first play to take place in the David Mikow Art Gallery, operated by Carolyn Forestiere, political science, and Asher Mikow. A group discussion will follow the performance. Performances will take place Friday and Sunday, November 17 and 19, and Saturday and Sunday, November 23 and 24, at 7pm each evening. The David Mikow Art Gallery is located at 1002 Vineyard Hill Road, Catonsville, MD 21228. …</div>
]]>
</Body>
<Summary>comfort/drones, an original production by Alan Kreizenbeck, theatre, will open in the David Mikow Art Gallery, Friday, November 17 at 7 p.m. The play, based on the writings of Wallace Shawn, is...</Summary>
<Website>https://news.umbc.edu/production-by-alan-kreizenbeck-theatre-at-david-mikow-art-gallery/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109935/guest@my.umbc.edu/471bd47197be492e926338d2099e87e2/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>engage</Tag>
<Tag>theatre</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 12 Nov 2013 13:04:30 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="38272" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38272">
<Title>Database Storage Management: Automatic Data Optimization</Title>
<Body>
<![CDATA[
    <div class="html-content">Oracle technologist Arup Nanda explains how to enable information lifecycle management in Oracle Database 12c to automatically move data to lower-cost storage tiers and compress it.</div>
]]>
</Body>
<Summary>Oracle technologist Arup Nanda explains how to enable information lifecycle management in Oracle Database 12c to automatically move data to lower-cost storage tiers and compress it.</Summary>
<Website>http://www.oracle.com/technetwork/issue-archive/2013/13-nov/o63ado-2014920.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38272/guest@my.umbc.edu/a19964637c439b8e079c13c4ae732002/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>pl-sql</Tag>
<Tag>sql</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, 12 Nov 2013 12:51:13 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="38271" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38271">
<Title>Interview: C is for Cloud, Consolidation, and Customers</Title>
<Body>
<![CDATA[
    <div class="html-content">Andy Mendelsohn, senior vice president of database server technologies at Oracle, explains how Oracle customers inspired the genesis and marquee features of Oracle Database 12c.</div>
]]>
</Body>
<Summary>Andy Mendelsohn, senior vice president of database server technologies at Oracle, explains how Oracle customers inspired the genesis and marquee features of Oracle Database 12c.</Summary>
<Website>http://www.oracle.com/technetwork/issue-archive/2013/13-nov/o63interview-2034261.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38271/guest@my.umbc.edu/d8a0d7411c972f4483b5de19f39250ad/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>pl-sql</Tag>
<Tag>sql</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, 12 Nov 2013 12:51:13 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="38269" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38269">
<Title>Intern of the Week: Kyle Baker for Graphic Design</Title>
<Tagline>Learn about Kyle&#8217;s experience at the FHFA!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong>Name:  Kyle Baker</strong></p>
    <p><strong>Internship, Co-op or Research Site: Federdal Housing Finance Agency</strong></p>
    <p><strong>Major(s)/Minor(s):  Graphic Design/Media Communication Studies</strong></p>
    <p><strong>Expected Graduation Year: 2016</strong></p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>Briefly describe your internship, co-op, research, or service- learning opportunity, including your day-to-day tasks, responsibilities, and assignments.</em></strong></p>
    <p>As an intern for the Federal Housing Finance Agency (FHFA) I specifically worked for the Office of Congressional Affairs and Communications (OCAC). For my duration there I worked under the guidance of my supervisor assisting and in some cases even speerheading a series of informational FHFA video projects that were used both internally and externally. The title of one of the videos was called “FHFA: Strengthening Today and Securing Tomorrow.” This video was to be used for external general audiences looking to better understand what FHFA does and how it impacts them.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>What have you enjoyed the most about your position or organization/company?</em></strong></p>
    <p>I enjoyed the professional nature of the position. It was my first time ever working a federal government job before but it was definitely an experience that was quite unique.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>What have you gained from your experience that you could not have gained from another opportunity?</em></strong></p>
    <p>Federal Government experience. Trust me when I say, that it is without question a different breed of animal when it comes to things such as professionalism.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>What advice would you give to another student who is seeking an internship or similar experience?</em></strong></p>
    <p>Never feel intimidated by whatever nature of position you are taking on nor feel that you don't have enough experience to perform well.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>How do you see your experience as meaningful? This might involve skills you’ve gained, information you’ve learned, mentors you’ve connected with, or projects you’ve completed.</em></strong></p>
    <p>Honestly, if I had to describe this position in two words I would say "Rewardingly Challenging." When I was hired my supervisor explained that although I was an intern I shouldn't didn't expect the bulk of my duties to be making copies, taking phone calls or doing anything menial like that can typically come with the territory of being an intern but you don't really get any true experience from. I would be receiving the same caliber of workload and assignments was told from day one that I would be receiving the same caliber of workload and assignments that anyone on their actual staff would be required to complete as well be held to their same standard of performance. So although it was at times challenging, it was definitely the type of challenging that you wanted because you knew you were truly getting something out of it.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>Please provide a short quote about what you liked most about your position / earning internship credit / the internship placement process / the Shriver Center:</em></strong></p>
    <p>To requote what I said in a previous question mine would simply be the following:</p>
    <p>Honestly, if I had to describe this position in two words I would say "Rewardingly Challenging. Because although at times it was challenging, it was definitely the type of challenging that you wanted because you knew you were truly getting something out of it."</p>
    </div>
]]>
</Body>
<Summary>Name:  Kyle Baker  Internship, Co-op or Research Site: Federdal Housing Finance Agency  Major(s)/Minor(s):  Graphic Design/Media Communication Studies  Expected Graduation Year: 2016     Briefly...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38269/guest@my.umbc.edu/19f0218c538416b656d6c4469f4462f2/api/pixel</TrackingUrl>
<Tag>design</Tag>
<Tag>fhfa</Tag>
<Tag>graphic</Tag>
<Tag>intern-of-the-week</Tag>
<Tag>internship</Tag>
<Group token="shriver">The Shriver Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/shriver</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/original.jpg?1441293069</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/large.png?1441293069</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/medium.png?1441293069</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/small.png?1441293069</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxsmall.png?1441293069</AvatarUrl>
<Sponsor>Intern, Co-op, Research &amp; Service-Learning</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/269/60ff2f34a3371413aea763296e66b04a/xxlarge.jpg?1384278458</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/038/269/60ff2f34a3371413aea763296e66b04a/xlarge.jpg?1384278458</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/038/269/60ff2f34a3371413aea763296e66b04a/large.jpg?1384278458</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/269/60ff2f34a3371413aea763296e66b04a/medium.jpg?1384278458</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/038/269/60ff2f34a3371413aea763296e66b04a/small.jpg?1384278458</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/269/60ff2f34a3371413aea763296e66b04a/xsmall.jpg?1384278458</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/269/60ff2f34a3371413aea763296e66b04a/xxsmall.jpg?1384278458</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 12 Nov 2013 12:49:47 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="38262" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38262">
<Title>Intern of the Week: Kyle Baker for Graphic Design</Title>
<Tagline>Learn about Kyle&#8217;s experience at the FHFA!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong>Name:  Kyle Baker</strong></p>
    <p><strong>Internship, Co-op or Research
    Site: Federdal Housing Finance Agency</strong></p>
    <p><strong>Major(s)/Minor(s):  Graphic
    Design/Media Communication Studies</strong></p>
    <p><strong>Expected Graduation Year: 2016</strong></p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>Briefly describe your internship, co-op, research, or service- learning
    opportunity, including your day-to-day tasks, responsibilities, and
    assignments.</em></strong></p>
    <p>As an intern for the Federal Housing Finance Agency (FHFA) I
    specifically worked for the Office of Congressional Affairs and Communications
    (OCAC). For my duration there I worked under the guidance of my supervisor
    assisting and in some cases even speerheading a series of informational FHFA
    video projects that were used both internally and externally. The title of one
    of the videos was called “FHFA: Strengthening Today and Securing Tomorrow.”
    This video was to be used for external general audiences looking to better
    understand what FHFA does and how it impacts them.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>What have you enjoyed the most about your position or
    organization/company?</em></strong></p>
    <p>I enjoyed the professional nature of the position. It was my first time
    ever working a federal government job before but it was definitely an
    experience that was quite unique.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>What have you gained from your experience that you could not have
    gained from another opportunity?</em></strong></p>
    <p>Federal Government experience. Trust me when I say, that it is without
    question a different breed of animal when it comes to things such as professionalism.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>What advice would you give to another student who is seeking an
    internship or similar experience?</em></strong></p>
    <p>Never feel intimidated by whatever nature of position you are taking on
    nor feel that you don't have enough experience to perform well.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>How do you see your experience as meaningful? This might involve skills
    you’ve gained, information you’ve learned, mentors you’ve connected with, or
    projects you’ve completed.</em></strong></p>
    <p>Honestly, if I had to describe this position in two words I would say
    "Rewardingly Challenging." When I was hired my supervisor explained
    that although I was an intern I shouldn't didn't expect the bulk of my duties
    to be making copies, taking phone calls or doing anything menial like that can
    typically come with the territory of being an intern but you don't really get
    any true experience from. I would be receiving the same caliber of workload and
    assignments was told from day one that I would be receiving the same caliber of
    workload and assignments that anyone on their actual staff would be required to
    complete as well be held to their same standard of performance. So although it
    was at times challenging, it was definitely the type of challenging that you
    wanted because you knew you were truly getting something out of it.</p>
    <p><strong><em><br></em></strong></p>
    <p><strong><em>Please provide a short quote about what you liked most about your
    position / earning internship credit / the internship placement process / the
    Shriver Center:</em></strong></p>
    <p>To requote what I said in a previous question mine would simply be the
    following:</p>
    <p>Honestly, if I had to describe this position in two words I would say
    "Rewardingly Challenging. Because although at times it was challenging, it
    was definitely the type of challenging that you wanted because you knew you
    were truly getting something out of it."</p>
    <p></p>
    </div>
]]>
</Body>
<Summary>Name:  Kyle Baker  Internship, Co-op or Research Site: Federdal Housing Finance Agency  Major(s)/Minor(s):  Graphic Design/Media Communication Studies  Expected Graduation Year: 2016     Briefly...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38262/guest@my.umbc.edu/676b5ec9d1198f027f8ff3e908bc3893/api/pixel</TrackingUrl>
<Tag>design</Tag>
<Tag>fhfa</Tag>
<Tag>graphic</Tag>
<Tag>intern-of-the-week</Tag>
<Tag>internship</Tag>
<Group token="careers">Career Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/careers</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/original.jpg?1411655278</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/large.png?1411655278</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/medium.png?1411655278</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/small.png?1411655278</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxsmall.png?1411655278</AvatarUrl>
<Sponsor>Career Services Center</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/038/262/cf72e369ba89123691bcfaf253572530/xxlarge.jpg?1384278176</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/038/262/cf72e369ba89123691bcfaf253572530/xlarge.jpg?1384278176</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/038/262/cf72e369ba89123691bcfaf253572530/large.jpg?1384278176</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/038/262/cf72e369ba89123691bcfaf253572530/medium.jpg?1384278176</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/038/262/cf72e369ba89123691bcfaf253572530/small.jpg?1384278176</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/038/262/cf72e369ba89123691bcfaf253572530/xsmall.jpg?1384278176</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/262/cf72e369ba89123691bcfaf253572530/xxsmall.jpg?1384278176</ThumbnailUrl>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 12 Nov 2013 12:44:26 -0500</PostedAt>
<EditAt>Tue, 12 Nov 2013 12:46:25 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="38261" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38261">
<Title>The Arabian Nights came to life in the Great Books Seminar!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <span>Last week, UMBC Honors College Professor Dr. Ellen Handler Spitz, under</span><br><span>the auspices of the Honors College Director Dr. Simon Stacey, invited the</span><br><span>remarkable Enchantment Theater of Philadelphia to present two 2 1/2</span><br><span>hour-long workshops in her classes.</span><br><br><span>Enchantment Theater co-directors Jennifer and Landis Smith screened scenes</span><br><span>from their latest production, spoke on their use of classical music</span><br><span>(Rimksy-Korsakov's "Scherezade"), masks, gigantic puppets, fabrics,</span><br><span>projections, and sleight-of-hand magic to create evocative, nearly</span><br><span>wordless imaginings of tales from "The Arabian Nights."</span><br><br><span>Dr. Spitz's Great Books students, having read and studied several tales</span><br><span>from the Nights, donned masks and experienced first-hand the processes of</span><br><span>transformation from text to theater, from words to gesture and mime.</span><br>
    </div>
]]>
</Body>
<Summary>Last week, UMBC Honors College Professor Dr. Ellen Handler Spitz, under the auspices of the Honors College Director Dr. Simon Stacey, invited the remarkable Enchantment Theater of Philadelphia to...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38261/guest@my.umbc.edu/40b68c21bb7ece71a32979aa24472109/api/pixel</TrackingUrl>
<Group token="honorscollege">Honors College</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/honorscollege</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/xsmall.png?1339897259</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/original.jpg?1339897259</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/xxlarge.png?1339897259</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/xlarge.png?1339897259</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/large.png?1339897259</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/medium.png?1339897259</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/small.png?1339897259</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/xsmall.png?1339897259</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/413/cd2018beeece5fb0a71a96308e567bde/xxsmall.png?1339897259</AvatarUrl>
<Sponsor>Honors College</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/038/261/2c9f13441c3f36d9422d5de661e57742/xxlarge.jpg?1384277776</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/038/261/2c9f13441c3f36d9422d5de661e57742/xlarge.jpg?1384277776</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/261/2c9f13441c3f36d9422d5de661e57742/large.jpg?1384277776</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/261/2c9f13441c3f36d9422d5de661e57742/medium.jpg?1384277776</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/038/261/2c9f13441c3f36d9422d5de661e57742/small.jpg?1384277776</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/038/261/2c9f13441c3f36d9422d5de661e57742/xsmall.jpg?1384277776</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/038/261/2c9f13441c3f36d9422d5de661e57742/xxsmall.jpg?1384277776</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 12 Nov 2013 12:38:25 -0500</PostedAt>
<EditAt>Tue, 06 Jun 2023 12:52:49 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="38265" important="false" status="posted" url="https://my3.my.umbc.edu/posts/38265">
<Title>Contrast Ratio, Favicons, and offline JavaScript Apps &#8211; Treehouse Show Episode 65</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>It’s Tuesday and that means the Treehouse Show here! In Episode 65 of The Treehouse Show, Nick and Jason (<a href="http://twitter.com/jseifer" rel="nofollow external" class="bo">@jseifer</a>) talk about generating favicons and best practices with them, a new icon font called Ionicons, and much more. There’s even a link to a snazzy chart that lists the equality of zeroes in JavaScript which is a pretty welcome cheat sheet if you’ve ever run in to weird bugs in your front-end apps. </p>
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/n8-iWJIF99c" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <h3>This Week’s Links</h3>
    <ul>
    <li>
    <p><a href="http://leaverou.github.io/contrast-ratio/" rel="nofollow external" class="bo">Contrast Ratio: Easily calculate color contrast ratios. Passing WCAG was never this easy!</a></p>
    </li>
    <li>
    <p><a href="http://realfavicongenerator.net/" rel="nofollow external" class="bo">Favicon Generator – Generate favicon pictures and HTML</a></p>
    </li>
    <li>
    <p><a href="http://ionicons.com/" rel="nofollow external" class="bo">Ionicons: The premium icon font for Ionic Framework</a></p>
    </li>
    <li>
    <p><a href="http://zero.milosz.ca/" rel="nofollow external" class="bo">Zeros in JavaScript</a></p>
    </li>
    <li>
    <p><a href="http://unstoppablerobotninja.com/entry/responsive-web-design-screens-and-shearing-layers/" rel="nofollow external" class="bo">Responsive design, screens, and shearing layers — Unstoppable Robot Ninja</a></p>
    </li>
    <li>
    <p><a href="http://github.hubspot.com/offline/" rel="nofollow external" class="bo">offline</a></p>
    </li>
    <li>
    <p><a href="http://snazzymaps.com" rel="nofollow external" class="bo">Snazzy Maps – Color Schemes for Google Maps</a></p>
    </li>
    </ul>
    <p>The post <a href="http://blog.teamtreehouse.com/treehouse-show-ep-65" rel="nofollow external" class="bo">Contrast Ratio, Favicons, and offline JavaScript Apps – Treehouse Show Episode 65</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>It’s Tuesday and that means the Treehouse Show here! In Episode 65 of The Treehouse Show, Nick and Jason (@jseifer) talk about generating favicons and best practices with them, a new icon font...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/TU3pNaCpLbY/treehouse-show-ep-65</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/38265/guest@my.umbc.edu/986418858dd6b884cce8b114aa8432a5/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>treehouse-show</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, 12 Nov 2013 12:30:14 -0500</PostedAt>
</NewsItem>

</News>
