<?xml version="1.0"?>
<News hasArchived="true" page="8258" pageCount="10734" pageSize="10" timestamp="Mon, 27 Jul 2026 13:20:58 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8258">
<NewsItem contentIssues="true" id="36226" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36226">
<Title>Hiding Native HTML5 Video Controls in Full-Screen Mode</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://sarasoueidan.com" rel="nofollow external" class="bo">Sara Soueidan</a>. I know Sara through all her excellent work <a href="http://codepen.io/SaraSoueidan/" rel="nofollow external" class="bo">on CodePen</a>. She was working on some custom HTML5 video controls and noticed that the customizations were lost when the video went into full screen mode (<a href="http://codepen.io/frytyler/pen/juGfk" rel="nofollow external" class="bo">example</a> of that happening). Digging into the shadow DOM, Sara finds a solution...</em></p>
    <p></p>
    <p>If you’ve ever worked with HTML5 video then you have probably wondered how you get a bunch of control buttons, sliders, and slider thumbs on your page, when you’ve only added a single <code>&lt;video&gt;</code> tag to the DOM.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/09/example-video.png" alt="" style="max-width: 100%; height: auto;">
    Where did all these control elements come from?
    
    <p>Browsers add these controls as a “sub-tree” of the video tag into the rendering of the document. These elements (buttons, sliders, etc.) <em>are</em> part of the DOM, but you can’t actually see them in the main DOM tree, you only see them rendered onto the page. More on this shortly.</p>
    <h3>The problem of HTML5 video controls in full-screen mode</h3>
    <p>While working on a custom HTML5 video framework lately, I stumbled upon an issue which a lot of designers and developers stumble upon in this area. Instead of displaying the custom controls I was working on, native browser controls appeared on the video when it entered the full-screen mode. Like so many others, I searched around for answers to this problem but had no luck finding any. After some inspection in the dev tools, I found that:</p>
    <ol>
    <li>
    <strong>The native controls were still there</strong>. By setting the <code>controls</code> attribute of the video element to <code>false</code>, we are able to <em>hide</em> the controls but for some reason, when entering full-screen mode they reappear, despite being hidden in normal screen mode. (Why?) </li>
    <li>
    <strong>The custom controls were hidden <em>below</em> the video in the full-screen mode</strong>. Inspecting the controls with the dev tools showed that the reason the controls were hidden below is because the user agent’s style sheet (in this case Chrome’s style sheet) was overriding the styles applied to the controls, with a very weird <code>z-index</code> value, I must say! </li>
    </ol>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/09/chrome-fullscreen-style-z-index.png" style="max-width: 100%; height: auto;">
    The high z-index applied by Chrome's user agent stylesheet
    
    <p>How do we make this work? How do we prevent the native controls from appearing in full-screen mode and show our own custom-styled controls instead?</p>
    <p>The second point is easy: just override the user agent stylesheet. We do that all the time in our stylesheets. We’ll get to this shortly. But what about the first point? How can we hide elements that the browser adds but we can't see in the DOM tree we're working with?</p>
    <p><em>Note that the technique explained in this article to hide the native controls works only in <a href="http://caniuse.com/#search=shadow%20DOM" rel="nofollow external" class="bo">browsers that support the Shadow DOM</a>.</em></p>
    <h3>Quick Introduction to Shadow DOM</h3>
    <p>The subtree of DOM elements generated by the browser is what we call the "Shadow DOM". Plainly speaking, it’s a bunch of DOM elements, the same as the ones you’re already familiar with, like <code>&lt;div&gt;</code>s and <code>&lt;span&gt;</code>s, which are added by the browser as a <em>document fragment</em>, and are rendered on the page just like the main DOM tree.</p>
    <p>James Edwards summarizes the function of the shadow DOM perfectly in <a href="http://www.sitepoint.com/dark-shadow-dom/" rel="nofollow external" class="bo">his article for SitePoint</a>:</p>
    <blockquote>
    <p>The Shadow DOM encapsulates content by creating document fragments. Effectively, the content of a Shadow DOM is a <em>different document</em>, which is merged with the main document to create the overall rendered output.</p>
    <p>In fact some browsers already use this to render some of their native widgets.</p>
    </blockquote>
    <p>The reason why browsers do this is because browser developers decided to encapsulate some DOM elements to hide them from us developers so we’re not concerned with the implementation details of these elements, in an attempt to make things easier for us to work with. Also, as James Edwards also said in his article:</p>
    <blockquote><p>Because it’s isolated, users can’t accidentally break it, there’s no possibility of naming conflicts with any classes or IDs you use, and the CSS on the main page won’t affect it at all.</p></blockquote>
    <p>So we know now that the controls added to the video tag are just part of the shadow DOM sub-tree generated for this tag by the browser.</p>
    <h3>Hiding the native video controls</h3>
    <p>We need to be able to style the controls which are part of the shadow DOM, but how do we do that if the regular CSS selectors we know can’t access Shadow DOM elements?</p>
    <p>After reading <a href="http://glazkov.com/2011/01/14/what-the-heck-is-shadow-dom/" rel="nofollow external" class="bo">this superb intro article</a> by Dimitri Glazkov I learned that "there’s a handy <a href="http://dev.w3.org/2006/xbl2/#the-pseudo-attribute" rel="nofollow external" class="bo">pseudo attribute</a> capability, which allows shadow DOM subtrees to associate an arbitrary pseudo-element identifier with an element in the subtree."</p>
    <p>Which means that some elements inside the shadow DOM subtree can be styled by targeting them via their associated pseudo-element. This sounds great!</p>
    <p>But how do we determine what pseudo-element is associated with the shadow DOM element we need to style? Some elements are more or less known, like the range input, which has a pseudo-element available to style its thumb in webkit browsers</p>
    <pre><code>::-webkit-slider-thumb</code></pre>
    <p>Firefox also provides two pseudo-elements to style range inputs now that it supports them starting from version 23.0:</p>
    <pre><code>::-moz-range-track</code></pre>
    <p>and</p>
    <pre><code>::-moz-range-thumb</code></pre>
    <p>But what about other less-known pseudo-elements associated with other shadow DOM elements? What pseudo-elements are associated with them? To find out, the Chrome dev tools come to the rescue!</p>
    <h4>Determining pseudo-elements associated with Shadow DOM elements</h4>
    <p>One of the great features of the Chrome dev tools is that you can inspect the shadow DOM subtrees in the Elements panel just like you would inspect the “regular” DOM tree. All you have to do is enable this feature:</p>
    <ol>
    <li>Go to dev tools settings (by clicking the little gear icon at the bottom right of the dev tools)</li>
    <li>In the General tab, check the “Show Shadow DOM” option</li>
    <li>Restart the dev tools (close and reopen)</li>
    </ol>
    <p>Now, when u inspect the <code>&lt;video&gt;</code> element, you get something similar to the screenshot below:</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/09/shadow-dom-dev-tools-focus.png" style="max-width: 100%; height: auto;">
    The shadow DOM sub-tree added to the <code>&lt;video&gt;</code> element as inspected with the Chrome dev tools reveals a new #document-fragment
    
    <p>Then, just like you can get the style rules for any HTML element if you click on it in the Elements panel, you can see the pseudo-elements associated with the subtree of the shadow DOM too. Pretty neat, huh? :)</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/09/shadow-dom-dev-tools-styles.png" style="max-width: 100%; height: auto;">
    The CSS panel in the Chrome dev tools shows the pseudo-element name associated with the <code>&lt;div&gt;</code> inside the shadow DOM sub-tree
    
    <p>So for the video controls we can see from the screenshot that there’s a pseudo-element called <code>::-webkit-media-controls</code>, which as the name clearly indicates, is associated with tags containing media controls.</p>
    <p>Setting a <code>display:none !important;</code> on this pseudo-element hides the element completely in normal and full-screen mode.</p>
    <pre><code>::-webkit-media-controls {&#x000A;      display:none !important;&#x000A;    }</code></pre>
    <p>But bear in mind that this pseudo-element is associated with the outermost <code>&lt;div&gt;</code> in the subtree, which will contain media controls, <em>all</em> kinds of media controls, which means that if you have an <code>&lt;audio&gt;</code> tag somewhere on the page, you’ll be hiding the controls for that media element as well. </p>
    <p>So, unless you want to hide <em>all</em> browser native media controls, you’ll need to specify which type of media controls to hide, which are those associated with the video element, and you’d target them by specifying the “scope” for this pseudo-element:</p>
    <pre><code>video::-webkit-media-controls {&#x000A;      display:none !important;&#x000A;    }</code></pre>
    <p>This will hide the native controls completely. </p>
    <p>Another options is that you could go deeper in the sub-tree to find the pseudo-element associated with the inner and more specific <code>div</code> containing the actual controls: buttons, sliders, etc., and hide that.</p>
    <p>So going one level deeper we get the pseudo-element associated with the inner <code>div</code>:</p>
    <pre><code>video::-webkit-media-controls-enclosure {&#x000A;      display:none !important;&#x000A;    }</code></pre>
    <p>Setting the <code>display</code> property of this pseudo-element to <code>none</code> will hide the native controls completely, in both normal and full-screen mode. You can also see that this pseudo-element is more specific in terms of scope (the video element) and the <code>div</code> it’s associated with: the <code>div</code> “enclosing” the actual control elements.</p>
    <p>And that’s pretty much all you need to do to hide the native controls in full-screen mode. Simple, right?</p>
    <h3>Showing the custom video controls</h3>
    <p>As for the custom controls, they still didn’t appear in my demo after hiding the native ones, because, as you’ve seen in the screenshot above, the user agent style sheet had a value for z-index set to the full-screen mode:</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/09/chrome-fullscreen-style-z-index1.png" style="max-width: 100%; height: auto;">
    The high z-index applied by Chrome's user agent style sheet
    
    <p>I have no idea why the developers chose this value in particular, but it could be because, as Nate Volker pointed out in <a href="http://css-tricks.com/custom-controls-in-html5-video-full-screen/#comment-561349" rel="nofollow external" class="bo">his comment below</a> that this number is the maximum value for a 32-bit signed integer, which could be the datatype the browser developers use to represent values for z-index. So in order to make sure the custom controls are visible you need to <strong>set the z-index for the custom controls to be equal to or higher than this value</strong>.</p>
    <p>Setting it to 2147483646 made the controls disappear in full-screen mode on Firefox and, sometimes (a bug?), in Chrome, so the z-index for the controls container should be &gt;= 2147483647.</p>
    <pre><code>.custom-video-controls {&#x000A;      z-index: 2147483647;&#x000A;    }</code></pre>
    <h3>Summary</h3>
    <p>In order to hide the native controls in full-screen mode in browsers supporting the Shadow DOM you need to:</p>
    <ol>
    <li>target the pseudo-element associated with them: <code>video::-webkit-media-controls-enclosure</code>, which you can find by using Chrome’s dev tools and inspecting the shadow DOM, and set it's display to none, and then to show your custom-styled controls</li>
    <li>set the z-index of your custom controls to a value higher than the z-index supplied by the user agent style sheet.</li>
    </ol>
    <p>And that's pretty much it!</p>
    <h3>Demo</h3>
    <p><a href="http://css-tricks.com/examples/CustomVideoControlsFullscreen/" rel="nofollow external" class="bo">View Demo</a></p>
    <h3>What about other browsers that don't support the shadow DOM?</h3>
    <p>While working I also tested the results in Firefox. Setting the <code>z-index</code> to the value mentioned above makes the custom controls also appear in Firefox’s full-screen mode, so showing the controls is easy, but the shadow DOM solution doesn’t work because Firefox does not yet support it, so the native controls also still appear in full-screen mode.</p>
    <p>Surely enough, you can expect similar behavior in other browsers that don't support the shadow DOM.</p>
    <p>The only way that I found to hide the native controls in these browsers is to cover the native controls with the custom ones, by simply positioning the custom controls on top of them using simple and basic CSS styles targeting the full-screen mode.<br>
    This hides the native controls, but also has a limitation: the custom controls can’t have a transparent background, otherwise the native controls will show through.</p>
    <p>There is another possible solution here. Mr. James Edwards noted in <a href="http://css-tricks.com/custom-controls-in-html5-video-full-screen/#comment-561384" rel="nofollow external" class="bo">his comment below</a> that the native controls can be hidden in full-screen mode in another way too, without having to use the shadow DOM, by applying the full-screen mode to an element, for example, a
    </p>
    <div>, containing the video element. I tested his technique and it worked in Chrome, and it also worked in latest version of Firefox on Windows 7, and according to Mr. Edwards it should also work in other browsers supporting the full-screen mode
    <h3>Further Reading</h3>
    <ul>
    <li>W3C's <a href="http://www.w3.org/TR/shadow-dom/" rel="nofollow external" class="bo">Shadow DOM Working Draft</a>
    </li>
    <li>
    <a href="http://www.html5rocks.com/en/tutorials/webcomponents/shadowdom/" rel="nofollow external" class="bo">Shadow DOM 101</a> on HTML5Rocks</li>
    <li>
    <a href="http://www.sitepoint.com/dark-shadow-dom/" rel="nofollow external" class="bo">The Dark Shadow Of The DOM</a> on SitePoint</li>
    <li>
    <a href="http://glazkov.com/2011/01/14/what-the-heck-is-shadow-dom/" rel="nofollow external" class="bo">What The Heck Is Shadow DOM</a> by Dimitri Glazkov</li>
    </ul>
    <p>And if you're interested you can also see how you can use the shadow DOM API and HTML <code>&lt;template&gt;</code>s to create your own “encapsulated” code and HTML templates by watching <a href="http://www.youtube.com/watch?v=U45e-zq4bTs&amp;feature=youtu.be" rel="nofollow external" class="bo">this presentation by Peter Gasston</a> about Web Components that he gave at this year's <a href="http://2013.cssconf.eu/" rel="nofollow external" class="bo">CSSConfEU</a>.</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/custom-controls-in-html5-video-full-screen/" rel="nofollow external" class="bo">Hiding Native HTML5 Video Controls in Full-Screen Mode</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Sara Soueidan. I know Sara through all her excellent work on CodePen. She was working on some custom HTML5 video controls and noticed that the customizations were...</Summary>
<Website>http://css-tricks.com/custom-controls-in-html5-video-full-screen/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36226/guest@my.umbc.edu/131bcebd5b61290f9bedd6f41888beb4/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>Thu, 26 Sep 2013 11:12:43 -0400</PostedAt>
<EditAt>Thu, 26 Sep 2013 11:12:43 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36222" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36222">
<Title>ISCOM Speaker Series Meeting Notes 9/23/13</Title>
<Tagline>Featuring guest speaker, Dr. Shaun Kane!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>ISCOM Meeting Notes</span></p>
    <p><span>Monday, September 23th, 2013</span></p>
    <br><p><span>ISCOM Speaker Series: Dr. Shaun Kane</span></p>
    <br><p><strong><span>Contact Information:</span></strong></p>
    <p><span>Dr. Shaun Kane (<a href="http://userpages.umbc.edu/~skane/">http://userpages.umbc.edu/~skane/</a>)</span></p>
    <strong><br></strong><p><strong><span>What is HCI? (Human Computer Interaction):</span></strong></p>
    <p><span>- Computer science, used “for good”</span></p>
    <p><span>- Applying skills to developing technology to help solve real problems</span></p>
    <p><span>- Understanding how to make things for how people work</span></p>
    <p><span>- Adapting complex ideas from computer science for a specific user population</span></p>
    <br><img src="https://docs.google.com/a/umbc.edu/drawings/d/sDinLZ6PCzQjDleZFfxVrBQ/image?w=255&amp;h=176&amp;rev=61&amp;ac=1" height="176px;" width="255px;" style="max-width: 100%; height: auto;"><br><br><p><span>Sample HCI research and project:</span></p>
    <p><span>- “Access Lens”, a gesture-based screenreader for real-world documents using a desk mounted camera that identifies and recognizes text area </span></p>
    <p><span>- Uses computer vision finger techniques to guide user where text is located on the page</span></p>
    <p><span>- Video: <a href="http://youtu.be/gyBT4e_PoK8">http://youtu.be/gyBT4e_PoK8</a></span></p>
    <br><p><span>Lab for HCI Research at UMBC: The PAD (</span><a href="http://umbcpad.com/" rel="nofollow external" class="bo"><span>http://umbcpad.com/</span></a><span>)</span></p>
    <p><span>- Space where students can work on interesting research ideas with students and faculty</span></p>
    <p><span>- Research and projects create change with populations in need and make a difference in the lives of underserved populations</span></p>
    <br><p><span>How can students can get involved in HCI and HCI research?</span></p>
    <p><span>- Apply for the Master’s program in Human Centered Computing (HCC) at UMBC</span></p>
    <p><span>- Take related undergraduate courses such as IS 303, IS 403, and IS 448</span></p>
    <p><span>- Contact a faculty or staff member! Be sure to do background research, read their UMBC userpages site, and start with a serious direction of your research interest.</span></p>
    </div>
]]>
</Body>
<Summary>ISCOM Meeting Notes  Monday, September 23th, 2013   ISCOM Speaker Series: Dr. Shaun Kane   Contact Information:  Dr. Shaun Kane (http://userpages.umbc.edu/~skane/)   What is HCI? (Human Computer...</Summary>
<AttachmentKind>Document</AttachmentKind>
<AttachmentUrl>https://assets2-my.umbc.edu/system/shared/attachments/23be85b1af0f3a93c0bf320e123ce880/6a67937a/news/000/036/222/480eb54452f63abfa7f2eb0ffb1c62fe/ISCOMMeetingNotes9232013.pdf?1380207674</AttachmentUrl>
<Attachments>
<Attachment kind="Document" url="https://my3.my.umbc.edu/posts/36222/attachments/11222"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36222/guest@my.umbc.edu/8c2fab864b9d78431c35a8c04be24217/api/pixel</TrackingUrl>
<Group token="retired-182">Information Systems Council of Majors</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-182</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/xsmall.png?1538002028</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/original.png?1538002028</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/xxlarge.png?1538002028</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/xlarge.png?1538002028</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/large.png?1538002028</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/medium.png?1538002028</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/small.png?1538002028</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/xsmall.png?1538002028</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/182/fef6255b484a1dc0dac35fd87bb905ae/xxsmall.png?1538002028</AvatarUrl>
<Sponsor>Information Systems Council of Majors (ISCOM)</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 26 Sep 2013 11:01:14 -0400</PostedAt>
<EditAt>Thu, 26 Sep 2013 11:09:27 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="110002" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110002">
<Title>Tyson King-Meadows, Political Science and Africana Studies, on Facing South</Title>
<Body>
<![CDATA[
    <div class="html-content">In “Why the 2014 Election Matters for Voting Rights,” the online magazine Facing South delves into analysis by UMBC’s Tyson King-Meadows on last week’s CBC Annual Legislative Conference panel “Protecting the Right to Vote.” King-Meadows is associate professor of political science and chair of Africana studies. The panel discussed voting rights issues in the wake of the U.S. Supreme Court’s recent invalidation of Section Five of the Voting Rights Act of 1965 (VRA). In his remarks, King-Meadows described two ways the VRA’s influence could shrink further, including underfunding for the attorneys who address claims relating to voter rights and appointing …</div>
]]>
</Body>
<Summary>In “Why the 2014 Election Matters for Voting Rights,” the online magazine Facing South delves into analysis by UMBC’s Tyson King-Meadows on last week’s CBC Annual Legislative Conference panel...</Summary>
<Website>https://news.umbc.edu/tyson-king-meadows-political-science-and-africana-studies-on-facing-south/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110002/guest@my.umbc.edu/20f6f9a1b20fc83a08025550ae61aa5d/api/pixel</TrackingUrl>
<Tag>africanastudies</Tag>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>politicalscience</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>Thu, 26 Sep 2013 10:58:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="36223" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36223">
<Title>First Public Working Draft: WAI-ARIA 1.1</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/WAI/PF" rel="nofollow external" class="bo">Protocols and Formats Working Group</a> today published a First Public Working Draft of Accessible Rich Internet Applications <a href="http://www.w3.org/TR/2013/WD-wai-aria-1.1-20130926/" rel="nofollow external" class="bo">WAI-ARIA 1.1</a>. WAI-ARIA provides an ontology of roles, states, and properties that define accessible user interface elements and it can be used to improve the accessibility and interoperability of web content, particularly web applications. It is introduced in the <a href="http://www.w3.org/WAI/intro/aria" rel="nofollow external" class="bo">WAI-ARIA Overview</a>. WAI-ARIA 1.1 is expected to include only a few changes from 1.0. The primary change in this Draft is the addition of <code>aria-describedat</code>. Learn about the <a href="http://www.w3.org/WAI/aria/faq#update" rel="nofollow external" class="bo">current status of WAI-ARIA 1.0 and 1.1</a>, and the <a href="http://www.w3.org/WAI/" rel="nofollow external" class="bo">Web Accessibility Initiative (WAI)</a>.</p></div>
]]>
</Body>
<Summary>The Protocols and Formats Working Group today published a First Public Working Draft of Accessible Rich Internet Applications WAI-ARIA 1.1. WAI-ARIA provides an ontology of roles, states, and...</Summary>
<Website>http://www.w3.org/blog/news/archives/3233</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36223/guest@my.umbc.edu/a95ab8464e3ee3640889426c26f7a305/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>web-design-and-applications</Tag>
<Tag>web-of-services</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 26 Sep 2013 10:49:55 -0400</PostedAt>
<EditAt>Thu, 26 Sep 2013 10:49:55 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36220" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36220">
<Title>Photoshop Extension: BlendMe.in: Accessing Vector Icons Without Leaving Photoshop</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p><em><strong>Update</strong> (27.09.2013): If you’re using CC, make sure that you’ve installed the latest version of PS and Extension Manager first, before installing BlendMe.in. If you should still happen to run into any issues, please kindly send an email to <a href="mailto:contact@blendme.in" rel="nofollow external" class="bo">contact@blendme.in</a>. Thank you for your understanding and support. – Ed.</em></p>
    <p><em>Here at Smashing Magazine, we’re very fond of the creativity and mutual support of the Web design community. Today, we’re proud to feature a free Photoshop extension that will help everyone access those font icons they need without even leaving Photoshop. – Ed.</em></p>
    <p>There is no doubt that the Web is full of websites that are packed with free icon packs, and that doesn’t necessarily make it easier for designers to find their way around when they’re looking for a particular icon for a particular project. When you’re in your creative zone and have an idea about something that would perfectly fit in your design, you don’t have time to waste and struggle with finding the right asset.</p>
    <p><a href="http://blendme.in/" rel="nofollow external" class="bo">BlendMe.in</a> is a Photoshop extension that allows you to quickly find a high-quality icon that you can simply drag and drop and then easily continue your ideation. All of the icons are vectorial and have been inserted as smart Photoshop objects, meaning that you get all the icon components as layers (vector objects, adjustment layers, etc.) so that you can easily tweak them to match your creation.</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/screenshot_search_dog_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/screenshot_search_dog_500_mini.png" alt="screenshot_search_dog_500_mini" width="500" height="412" style="max-width: 100%; height: auto;"></a><br><em>A preview of a “dog” icon in Photoshop with the help of the BlendMe.in extension.</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/screenshot_search_smash_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/screenshot_search_smash_500_mini.png" alt="screenshot_search_smash_500_mini" width="500" height="412" style="max-width: 100%; height: auto;"></a><br><em>BlendMe.in automatically suggests a number of icons that are related to the keyword you’ve typed in.</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/search_twitter_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/search_twitter_mini.png" width="318" height="410" alt="" style="max-width: 100%; height: auto;"></a><br><em>Search results when you type in “twitt” in the extension.</em></p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/search_settings_mini.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/09/search_settings_mini.png" width="318" height="410" alt="A preview of the BlendMe.in Photoshop extension." style="max-width: 100%; height: auto;"></a><br><em>The Photoshop extension provides you with suggestions of icons that contain the same keywords.</em></p>
    <h3>Download BlendMe.in For Free!</h3>
    <p>BlendMe.in is freely available for private and commercial projects. All the assets are provided under a <a href="http://creativecommons.org/licenses/by/3.0/" rel="nofollow external" class="bo">Creative Commons Attribution 3.0 Unported License</a>.</p>
    <ul>
    <li><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/09/frontimg.png" rel="nofollow external" class="bo">Preview of the BlendMe.in Photoshop extension</a></li>
    <li>
    <a href="http://provide.smashingmagazine.com/BlendMeIn-Photoshop-Extension.zip" rel="nofollow external" class="bo">Download the free extension</a> (ZIP, 1.80 MB)</li>
    </ul>
    <h4>Instructions:</h4>
    <ul>
    <li>Close Photoshop before installing the extension.</li>
    <li>If you don’t have it, download and install Adobe Extension Manager.</li>
    <li>Unpack the ZIP file, and double click one of the <code>.zxp</code> files. This will launch Adobe Extension Manager.</li>
    <li>Please make sure the Extension Manager version matches your Photoshop version.</li>
    <li>Go through the installation steps.</li>
    <li>Open Photoshop and choose <code>Window</code> → <code>Extensions</code> → <code>Blendmein</code>.</li>
    <li>Browse or search icons, then drag and drop into your PSD.</li>
    </ul>
    <h3>Behind The Design</h3>
    <p>As always, here are some insights from the designers:</p>
    <blockquote>“This extension started out as a solution to a problem that we as UX designers often have: we tend to use small parts of older UIs (especially in the mock-up phase) and the process can be quite frustrating. We kept asking ourselves, ‘How difficult can it be to build an extension in which one can search layers from existing PSDs?’ After several tries, we came up with something that we kept using repeatedly, not only because it was our own tool, but because it made our lives easier.
    <p>This extension only contains icons at the moment. We do, however, plan to grow the collection and include more asset types, including filters, effects and adjustment layers.</p>
    <p>The content inside BlendMe.in is provided under a <a href="http://creativecommons.org/licenses/by/3.0/" rel="nofollow external" class="bo">Creative Commons Attribution 3.0 Unported License</a> — with attribution. We’re thinking of ways to make the attribution even more prominent by default, e.g. by automatically generating a text layer with thanks to all the asset authors that have/are being used. Designers pour hours of work into these high-quality collections which they release for free, and attribution is really the least we could do to give them the credit they deserve.</p>
    <p>Speaking about thanks, we’d like to thank <a href="http://www.danielbruce.se/" rel="nofollow external" class="bo">Daniel Bruce</a> (Entypo) and <a href="http://visualidiot.com/" rel="nofollow external" class="bo">Visual Idiot</a> for their early support, and to all the creatives who’re making part of their work available to others for re-use. Thank you!”</p>
    </blockquote>
    <p>A big <strong>Thank You</strong> to the team at BlendMe.in for the fantastic Photoshop extension — we all sincerely appreciate your hard work!</p>
    <p><em>(il, ea)</em></p>
    <hr>
    <p><small>© The Smashing Editorial for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        Update (27.09.2013): If you’re using CC, make sure that you’ve installed the latest version of PS and Extension Manager first, before installing BlendMe.in. If you should still happen to...</Summary>
<Website>http://www.smashingmagazine.com/2013/09/26/free-photoshop-extension-blendme-in/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36220/guest@my.umbc.edu/480e0536159ea2ffa0c606cc0de0c1a1/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>freebies</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</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>Thu, 26 Sep 2013 10:39:31 -0400</PostedAt>
<EditAt>Thu, 26 Sep 2013 10:39:31 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="110003" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110003">
<Title>Roy T. Meyers, Political Science, on NPR&#8217;s Morning Edition</Title>
<Body>
<![CDATA[
    <div class="html-content">Throughout the week, with a possible government shutdown looming, UMBC political science professor Roy T. Meyers has provided analysis for media from the Washington Post to USA Today on the costs of previous shutdowns and what is at stake this time around. On NPR’s Morning Edition today, Meyers noted that it’s hard to estimate the true cost of a shutdown: For example, what does it cost the American people when you tell somebody who leads the Centers for Disease Control and Prevention to plan for a shutdown rather than try to reduce or eliminate public health threats. To me, the …</div>
]]>
</Body>
<Summary>Throughout the week, with a possible government shutdown looming, UMBC political science professor Roy T. Meyers has provided analysis for media from the Washington Post to USA Today on the costs...</Summary>
<Website>https://news.umbc.edu/roy-t-meyers-political-science-on-nprs-morning-edition/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110003/guest@my.umbc.edu/e300b5e18704aa5d7041ea34929422e6/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>politicalscience</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>Thu, 26 Sep 2013 10:14:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36217" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36217">
<Title>Paid, On-campus Sustainability Outreach Internship</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong><span>Sustainability Outreach and Communications Intern:</span></strong></p>
    <p><span></span></p>
    <p><span>Intern will report to Sustainability Coordinator. </span><span>The position will be 8 hours per week.  </span><span>Hours may vary to accommodate meetings, events, and interviews. </span><span>Additional tasks may be assigned.</span></p>
    <p><span>Intern must demonstrate evidence of interest and background in sustainability and must feel comfortable reaching out to professionals, peers, and faculty. </span><span>Intern must be a current UMBC student. </span></p>
    <p><span>Email <a href="mailto:tanvig1@umbc.edu" rel="nofollow external" class="bo">tanvig1@umbc.edu</a> with a resume and cover letter detailing: </span></p>
    <ol>
    <li><div><span>Why this position interests you </span></div></li>
    <li><div><span>Related skills and experiences you possess </span></div></li>
    <li><div><span>Any groups, activities, jobs or time commitments you are currently engaged in </span></div></li>
    </ol>
    <p><span></span></p>
    <p><span>The sustainability outreach and communications intern will assist in developing communication and outreach efforts on  the following topics in coordination with staff, groups, and committees on campus under the direction of the Sustainability Coordinator:</span></p>
    <ol>
    <li><div><span>Sustainability Related Accomplishments and Champions</span></div></li>
    <li><div><span>Energy Conservation Efforts</span></div></li>
    <li><div><span>Transportation</span></div></li>
    <li><div><span>Research and Education</span></div></li>
    <li><div><span>Recycling, Waste, and Compost</span></div></li>
    </ol>
    <p><span></span></p>
    <p><strong><span>Desired skills and qualifications:</span></strong><span></span></p>
    <ul>
    <li><div>
    <span><span> </span></span><span>Strong writing and communication skills</span>
    </div></li>
    <li><div><span>Strong organizational and time management skills</span></div></li>
    <li><div><span>Familiarity with or willingness to learn HMTL, wordpress, and understanding of basic web design</span></div></li>
    <li><div><span>Ability to work independently</span></div></li>
    <li><div><span>Creativity and design skills</span></div></li>
    <li><div><span>Related coursework in related area such as Environmental Studies, Communications and Design</span></div></li>
    <li><div><span>Awareness of environmental issues</span></div></li>
    <li><div><span>Involvement in campus sustainability </span></div></li>
    </ul>
    <p><strong><span>Examples of Tasks and Responsibilities: </span></strong></p>
    <p><span>Website: </span></p>
    <p><span>- Increase number of hits to UMBC Website and track analytics </span></p>
    <p><span>- Develop, format, update and edit web content </span></p>
    <p><span>Events:</span></p>
    <p><span>- Event planning and logistics</span></p>
    <p><span>- Assisting with activities including tabling, coordinating sign-up sheets, pledges, and photo booths</span></p>
    <p><span>Writing:</span></p>
    <p><span>- Assist with writing press releases, articles and event summaries </span></p>
    <p><span>- Assist with conduct interviews and drafting articles </span></p>
    <p><span>Design:</span></p>
    <p><span>- Assist with posters, designs and fliers</span></p>
    <p><span>Social Media: </span></p>
    <p><span>- Assist with drafting updates to myUMBC and Facebook Events Calendar</span></p>
    <p><span>- Assist with creating and posting spotlights</span></p>
    <p><span>- Assist with posting photos and updates following events</span></p>
    <p><span>- Expanding followers on myUMBC and social media</span></p>
    <p><span>Photography:</span></p>
    <p><span>- Assist with taking photographs and editing, organizing and uploading content </span></p>
    <p></p>
    </div>
]]>
</Body>
<Summary>Sustainability Outreach and Communications Intern:    Intern will report to Sustainability Coordinator. The position will be 8 hours per week.  Hours may vary to accommodate meetings, events, and...</Summary>
<Website>http://sustainability.umbc.edu</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36217/guest@my.umbc.edu/5e87af6c696fda5a52cecd76c1393cf7/api/pixel</TrackingUrl>
<Group token="sustainability">Sustainability Matters at UMBC</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/sustainability</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xsmall.png?1586269437</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/original.png?1586269437</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xxlarge.png?1586269437</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xlarge.png?1586269437</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/large.png?1586269437</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/medium.png?1586269437</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/small.png?1586269437</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xsmall.png?1586269437</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xxsmall.png?1586269437</AvatarUrl>
<Sponsor>UMBC Sustainability</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/217/571c1d710d8043bd13f130fbfe335ba2/xxlarge.jpg?1380204622</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/217/571c1d710d8043bd13f130fbfe335ba2/xlarge.jpg?1380204622</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/217/571c1d710d8043bd13f130fbfe335ba2/large.jpg?1380204622</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/217/571c1d710d8043bd13f130fbfe335ba2/medium.jpg?1380204622</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/217/571c1d710d8043bd13f130fbfe335ba2/small.jpg?1380204622</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/217/571c1d710d8043bd13f130fbfe335ba2/xsmall.jpg?1380204622</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/217/571c1d710d8043bd13f130fbfe335ba2/xxsmall.jpg?1380204622</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 26 Sep 2013 10:10:53 -0400</PostedAt>
<EditAt>Thu, 26 Sep 2013 10:30:17 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36221" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36221">
<Title>Best Free jQuery Form Plugins to Improve User Experience</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Webpage forms are quite commonplace for a number of different purposes. Some examples include user registration, e-commerce checkouts, profile settings, or even contact forms. Input fields are much easier to style with modern CSS3 techniques – but what about improving the overall user experience?</p>
    <p>In this post I want to showcase a number of free open source jQuery plugins to help developers create easier web forms. Visitors want to fill out forms quickly and without much hesitation. You don’t want too many flashy page elements distracting from the task at hand. Think of these additional features more like guidelines to help users fill out forms concerning unique or unfamiliar content.</p>
    <p></p>
    <h2>jQuery Autotab</h2>
    <p><a href="http://www.mathachew.com/sandbox/jquery-autotab/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/autotab-jquery-plugin-preview.jpg" alt="jquery autotab plugin open source free preview" style="max-width: 100%; height: auto;"></a></p>
    <p>Auto-tabbing is a nifty feature which could be developed from scratch. If you would rather save time then check out <a href="http://www.mathachew.com/sandbox/jquery-autotab/" rel="nofollow external" class="bo">this great plugin</a> to streamline that functionality. jQuery Autotab will detect when a field has hit its maximum length and automatically move onto the next defined element in the form list.</p>
    <p>All of the inputs are built using a long selector string in jQuery where you separate each field by commas. I would love to see this plugin work dynamically based on each field’s <strong>tabindex</strong> attribute, instead of manually defining each element. There are also cool filters you can utilize for different inputs such as numeric telephone numbers or alphanumeric street addresses. Grab a copy from the <a href="https://github.com/map7/jquery.autotab" rel="nofollow external" class="bo">official Github repo</a> to see how this plugin works in action.</p>
    <h2>Pickadate.js</h2>
    <p><a href="http://amsul.ca/pickadate.js/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/pickadate-js-jquery-date-picker.jpg" alt="pickadatejs jquery plugin open source preview picker" style="max-width: 100%; height: auto;"></a></p>
    <p>A little while ago I wrote an article detailing various <a href="http://blog.teamtreehouse.com/best-jquery-date-picker-plugins-for-input-fields" rel="nofollow external" class="bo">date picker plugins</a> for jQuery. The list includes a number of great choices but I miss one great solution named <a href="http://amsul.ca/pickadate.js/" rel="nofollow external" class="bo">pickadate.js</a>. This is a free open source plugin to use in any website project which just so happens to support mobile responsive web browsers. Pickadate allows users to pick not just a date, but also a specific time or range of times which need to be passed into the form.</p>
    <p>Try skimming my other article if you have the time just to see what else is out there. I really love toying with pickadate.js because of the support for almost every mobile device. This doesn’t completely sell the plugin on its own, but also consider the beautiful interface which is very intuitive for first-time users. If you need a quick jQuery plugin for date selection I would suggest starting from here and branching out as you have the opportunity.</p>
    <h2>Progression.js</h2>
    <p><a href="http://git.aaronlumsden.com/progression/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/progression-jquery-progress-form-plugin.jpg" alt="progression js jquery open source plugin preview" style="max-width: 100%; height: auto;"></a></p>
    <p>Have you ever seen guided forms which follow the user along to each input field? These can be created manually through hidden text elements or tooltips. But you may also choose to include a plugin such as <a href="http://git.aaronlumsden.com/progression/" rel="nofollow external" class="bo">Progression</a> which can work in a similar manner.</p>
    <p>This open source project allows developers to easily incorporate guided form fields without much setup. There are a number of parameter options which you can pass to adjust the width, animation style, and interface colors. Check out the <a href="http://git.aaronlumsden.com/progression/#documentation" rel="nofollow external" class="bo">online documentation</a> to understand a bit more about how this works. I feel Progression.js is a simple way to get users engrossed with the process of filling out each field, and hopefully completing your form in its entirety.</p>
    <h2>Selectize.js</h2>
    <p><a href="http://brianreavis.github.io/selectize.js/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/selectize-js-jquery-select-menu-preview.jpg" alt="selectizejs jquery select menus custom plugin screenshot" style="max-width: 100%; height: auto;"></a></p>
    <p>Anyone who has built web forms will recognize the ever-familiar select menu. This is a dropdown box which contains a number of options with different values, where some values are put together into option groups. Selectize.js is a free plugin which customizes your select menus to work with a more native user interface.</p>
    <p>You have the choice of using a standard select menu with more customized design features – even where users can enter their own values into the select menu. Additionally Selectize.js allows you to turn select fields into tag-based input boxes. You’ll find these in many social networking sites like Tumblr where the already-existing tags appear in the list, and users are allowed to enter in new tags as well.</p>
    <p>Selectize isn’t perfect for every form but it does provide a lot of circumstantial value. Tag-based inputs are tough to come around. This open source jQuery plugin offers all that functionality and even more for customizing the design of your select menus.</p>
    <h2>iCheck</h2>
    <p><a href="http://damirfoy.com/iCheck/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/icheck-square-skin-preview-jquery-plugin.jpg" alt="icheck jquery plugin checkboxes radio buttons preview" style="max-width: 100%; height: auto;"></a></p>
    <p>This is one of my favorite plugins because of the many different templates you can choose from right out of the box. iCheck allows developers to style radio buttons and checkboxes within forms. There are different skins like Flat, Square, or Polaris which you can initiate along with the plugin. It is also possible to change the color scheme on each of these skins.</p>
    <p>iCheck offers a tremendous amount of control to developers who want easily customized checkboxes &amp; radios. There are different color-based stylesheets which you also need to include depending on which skin you are using. In regards to simplicity and ease-of-use, iCheck wins my approval every time.</p>
    <h2>Colpick</h2>
    <p><a href="http://colpick.com/plugin" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/colpick-color-picker-jquery-plugin.jpg" alt="colpick open source color picker plugin preview" style="max-width: 100%; height: auto;"></a></p>
    <p>Color pickers are another fairly obscure user interface feature which are vitally important to certain web applications. There are a number of great solutions built with jQuery and I certainly couldn’t include all of them. <a href="https://github.com/josedvq/colpick-jQuery-Color-Picker/" rel="nofollow external" class="bo">Colpick</a> is open source which you can download right from Github. The color picker UI is designed almost identical to Photoshop which is great for a majority of your technical users.</p>
    <p>But even for people who have never used Adobe software before, this color picker plugin is fairly straightforward. I don’t think anyone would struggle for too long before figuring out how it works. The design is created entirely in JS/CSS and it is even supported in legacy browsers such as IE7/IE8. The latest edits are about a month old as of writing this article, so I’m sure we can expect future updates and bug fixes as time goes on.</p>
    <h2>jQuery Switchbutton</h2>
    <p><a href="http://naeka.github.io/jquery-switchbutton/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/switchbutton-jquery-plugin-ios-sliders.jpg" alt="jquery switchbutton plugin ios style switch sliders" style="max-width: 100%; height: auto;"></a></p>
    <p>Apple iOS users must be familiar with the ON/OFF switch inputs you find on application settings pages. Many jQuery plugins(among other libraries) have been written to duplicate this effect on the web. For a natural jQuery effect <a href="https://github.com/naeka/jquery-switchbutton" rel="nofollow external" class="bo">Switchbutton</a> is a really great choice. It offers plenty of custom options for changing the label text, trigger button, and how the input checkbox should pass values into the form.</p>
    <p>You can also change up the design to look more like classic iOS, the newer iOS 5/6/7 rounded switch, or a minified version with no text. Check out the <a href="http://naeka.github.io/jquery-switchbutton/" rel="nofollow external" class="bo">live plugin demo page</a> to get an idea of how these switches work in a browser. This plugin is most beneficial when trying to improve user experience without re-designing large segments of the page.</p>
    <h2>Passy</h2>
    <p><a href="http://timseverien.nl/passy/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/passy-jquery-plugin-password-rating.jpg" alt="passy password generate strength jquery plugin screenshot" style="max-width: 100%; height: auto;"></a></p>
    <p>Rating user password strength has been a popular choice for almost any website registration form. Sometimes you may feel that users are turned off by this functionality and find it annoying. But it can really help people determine if their password choice is complex enough to fend off brute-force hackers.</p>
    <p>I really like <a href="https://github.com/timseverien/passy" rel="nofollow external" class="bo">Passy for jQuery</a> because it has this dynamic strength rating system built-in alongside the functionality to generate random password strings. When initializing the plugin you can choose how many characters should be used for any new password, which characters are allowed(or disallowed) and where the new dynamic password should appear on the page. It’s an easygoing plugin without much hassle to help users rate their chosen password or generate a new one if they prefer more security.</p>
    <h2>Nod</h2>
    <p><a href="http://casperin.github.io/nod/" rel="nofollow external" class="bo"><img src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/nod-jquery-form-validation-plugin.jpg" alt="jquery nod plugin open source form validation preview" style="max-width: 100%; height: auto;"></a></p>
    <p>This final example is a plugin built for validating input fields. Each form typically has a number of fields with minimum requirements such as the length of a username or e-mail address. Nod is a jQuery plugin for validating any type of input you can possibly think about. Check out the <a href="http://casperin.github.io/nod/" rel="nofollow external" class="bo">live demo example</a> to get an idea of how this validation can work in the real world.</p>
    <p>The large metrics table on the plugin’s website will outline some of the choices you have when validating input content. There is also another table filled with options which let you choose between how the errors are handled and when the plugin should check for validation. Nod is simply one of the most conclusive jQuery plugins for basic frontend validation and it works perfectly in any type of common web form. Also check out the <a href="https://github.com/casperin/nod" rel="nofollow external" class="bo">official Github repo</a> if you want to learn more about the plugin’s development.</p>
    <h2>Closing</h2>
    <p>My goal here is to offer a wide variety of plugins for web designers &amp; developers to play with and see what can work best. Each web project will be different so you may try using an assortment of these plugins over time. I do hope this collection will provide a nice starting point to increase the usability of your website forms. If you know about any similar plugins I may have forgotten feel free to share in the post discussion area below.</p>
    <p>The post <a href="http://blog.teamtreehouse.com/best-free-jquery-form-plugins-to-improve-user-experience" rel="nofollow external" class="bo">Best Free jQuery Form Plugins to Improve User Experience</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>Webpage forms are quite commonplace for a number of different purposes. Some examples include user registration, e-commerce checkouts, profile settings, or even contact forms. Input fields are...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/Dqm5epl-6iY/best-free-jquery-form-plugins-to-improve-user-experience</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36221/guest@my.umbc.edu/1fb41d02302cb3ef329d18db43786cec/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>forms</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>jquery-plugins</Tag>
<Tag>make-a-website</Tag>
<Tag>open-source</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Tag>web-performance</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 26 Sep 2013 10:07:23 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="36218" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36218">
<Title>Solved by Flexbox</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Philip Walton looks at common CSS layout issues that were a pain in the butt before Flexbox.</p>
    <p><a href="http://philipwalton.github.io/solved-by-flexbox/" title="Direct link to featured article" rel="nofollow external" class="bo">Direct Link to Article</a> — <a href="http://css-tricks.com/solved-flexbox/" rel="nofollow external" class="bo">Permalink</a></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/solved-flexbox/" rel="nofollow external" class="bo">Solved by Flexbox</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Philip Walton looks at common CSS layout issues that were a pain in the butt before Flexbox. 
 Direct Link to Article — Permalink  

 Solved by Flexbox is a post from CSS-Tricks</Summary>
<Website>http://philipwalton.github.io/solved-by-flexbox/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36218/guest@my.umbc.edu/0224159e9c14fa16da1c4ec60d202de2/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>Thu, 26 Sep 2013 09:47:38 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="36219" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36219">
<Title>Line Mode Browser</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <blockquote><p>Revisiting the first universally accessible web browser</p></blockquote>
    <p><a href="http://line-mode.cern.ch/" title="Direct link to featured article" rel="nofollow external" class="bo">Direct Link to Article</a> — <a href="http://css-tricks.com/line-mode-browser/" rel="nofollow external" class="bo">Permalink</a></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/line-mode-browser/" rel="nofollow external" class="bo">Line Mode Browser</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Revisiting the first universally accessible web browser  
 Direct Link to Article — Permalink  

 Line Mode Browser is a post from CSS-Tricks</Summary>
<Website>http://line-mode.cern.ch/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36219/guest@my.umbc.edu/00153751ffc8a8622c6f5af339488327/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>Thu, 26 Sep 2013 09:45:30 -0400</PostedAt>
</NewsItem>

</News>
