<?xml version="1.0"?>
<News hasArchived="true" page="7752" pageCount="10781" pageSize="10" timestamp="Tue, 01 Sep 2026 10:55:40 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7752&amp;range=2">
<NewsItem contentIssues="true" id="42059" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42059">
<Title>Rethinking Responsive SVG</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>If you haven’t seen <a href="http://www.joeharrison.co.uk" rel="nofollow external" class="bo">Joe Harrison</a>’s <a href="http://responsiveicons.co.uk" rel="nofollow external" class="bo">responsive icons</a> technique yet, you’ll most probably be impressed as much as I was when I first discovered it. In this article, I’d like to explore what we can do with SVG beyond “traditional” scalable vector graphics that are used to replace bitmap PNGs. In fact, we can see <strong>SVG as an independent module</strong> that encapsulates CSS for the customization of views as well as the responsive behavior that also encapsulates JavaScript for the interaction logic.</p>
    <p>Now, let’s dig a bit deeper into this technique.</p>
    <h3>Responsive SVG: The Hobo’s Method</h3>
    <p>Harrison’s Responsive Icons website is implemented pretty simply. It follows a well-known technique, image sprites. If you’re not familiar with sprites, let me explain. Image spriting is a technique that was previously used only for raster images to combat poor network performance. The idea is to <strong>combine a lot of small images into a single file</strong>, so that the client has to download only a single image from the server.</p>
    <p>You would also use CSS to shift the image around and display only the part that you need for a particular element, saving the user the overhead of having to download every image individually. (Read more about <a href="http://css-tricks.com/css-sprites/" rel="nofollow external" class="bo">sprites on CSS-Tricks</a>.)</p>
    <p>Harrison’s technique does the same thing, except with SVG instead of PNGs. This is what all of his icons combined into a single file would look like:</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/1-giant.png" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2014/03/1-giant-500.png" alt="All Icons combined in a single SVG file." width="500" height="651" style="max-width: 100%; height: auto;"></a><br><em>All Icons combined in a single SVG file. <a href="http://media.smashingmagazine.com/wp-content/uploads/2014/03/1-giant.png" rel="nofollow external" class="bo">Large View</a>.</em></p>
    <p>This file, then, would be set as the background of a container in which one of these icon would need to be displayed:</p>
    <pre><code>.icon {&#x000A;    	width: 300px;&#x000A;    	height: 300px;&#x000A;    	background: url(../images/home_sprite.svg);&#x000A;    	background-position: center top;&#x000A;    }</code></pre>
    <p>The example above is simple enough but has some problems. The solution is not portable enough. In fact, two parts are needed to make the method work: external CSS and an SVG sprite.</p>
    <h3>Responsive SVG: The Poor Man’s Method</h3>
    <p>Because CSS can be defined within SVG itself, let’s revise the example above to encapsulate the icon and to make it portable.</p>
    <p>First, let’s remove all of the spatial shifts of the icons in the sprite. Of course, that leaves us with a layered mess of icons:</p>
    <p>See the Pen <a href="http://codepen.io/pukhalski/pen/inxym" rel="nofollow external" class="bo">inxym</a> by Ilya Pukhalski (<a href="http://codepen.io/pukhalski" rel="nofollow external" class="bo">@pukhalski</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>Then, let’s rearrange all of the shapes and group them by icon, adding an <code>.icon</code> class to each group, as well as numbers to be able to identify each one we want (so, <code>#home_icon_0</code>, <code>#home_icon_1</code> and up to <code>#home_icon_8</code>):</p>
    <pre><code>&lt;svg&gt;&#x000A;    	&lt;g id="home_icon_0" class="icon"&gt;&#x000A;    		&lt;!-- paths and shapes --&gt;&#x000A;    	&lt;/g&gt;&#x000A;     &#x000A;    	&lt;!-- ... --&gt;&#x000A;     &#x000A;    	&lt;g id="home_icon_8" class="icon"&gt;&#x000A;    		&lt;!-- paths and shapes --&gt;&#x000A;    	&lt;/g&gt;&#x000A;    &lt;/svg&gt;</code></pre>
    <p>Now, we’re ready to add media queries, so that we can select the icon in the SVG file that we want to display. For this purpose, writing the CSS directly in the <code>&lt;svg&gt;</code> tag is possible using <code>&lt;defs&gt;</code> tags.</p>
    <pre><code>&lt;svg&gt;&#x000A;    	&lt;defs&gt;&#x000A;    		&lt;style&gt;&#x000A;    		/* Hide all of the icons first. */&#x000A;    		.icon {&#x000A;    			display: none;&#x000A;    		}&#x000A;    &#x000A;    		/* Display the first one. */&#x000A;    		#home_icon_0 {&#x000A;    			display: block;&#x000A;    		}&#x000A;    &#x000A;    		/* Display the desired icon and hide the others according to the viewport's size. */&#x000A;    		@media screen and (min-width: 25em) {&#x000A;    &#x000A;    			#home_icon_0 {&#x000A;    				display: none;&#x000A;    			}&#x000A;    &#x000A;    			#home_icon_1 {&#x000A;    				display: block;&#x000A;    			}&#x000A;    		}&#x000A;    &#x000A;    		@media screen and (min-width: 30em) {&#x000A;    			#home_icon_1 {&#x000A;    				display: none;&#x000A;    			}&#x000A;    &#x000A;    			#home_icon_2 {&#x000A;    				display: block;&#x000A;    			}&#x000A;    		}&#x000A;    &#x000A;    		/* And so on */&#x000A;    &#x000A;    		&lt;/style&gt;&#x000A;    	&lt;/defs&gt;&#x000A;    &#x000A;    &lt;!-- Icon groups go here --&gt;&#x000A;    &#x000A;    &lt;/svg&gt;</code></pre>
    <p>As a result, the same icon now adapts to the viewport’s size — except now, the CSS rules, media queries and SVG shapes are all encapsulated in the SVG file itself. Resize your browser to see how the example below works:</p>
    <p>See the Pen <a href="http://codepen.io/pukhalski/pen/uxIKB" rel="nofollow external" class="bo">uxIKB</a> by Ilya Pukhalski (<a href="http://codepen.io/pukhalski" rel="nofollow external" class="bo">@pukhalski</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <h3>Responsive SVG: The Man With A Gun’s Method</h3>
    <p>The example above looks better than the first one, but questions remain:</p>
    <ul>
    <li>Could the responsive SVG be delivered in a better way?</li>
    <li>Is following a responsive approach for laying out the icons and customizing elements possible, rather than just hiding and showing parts of the file?</li>
    </ul>
    <p>Looking to the <a href="http://www.smashingmagazine.com/2013/04/25/maintain-hierarchy-content-choreography/" rel="nofollow external" class="bo">content choreography</a> and layout restructuring tricks that we rely on for responsive Web design on a daily basis, we can improve our prototype even still. We’ll use responsive design, shape restructuring and transformations to adapt the icons to different viewport sizes.</p>
    <p>First, let’s redraw the biggest and most detailed house icon in our SVG sprite file, splitting all of the paths and joined shapes into elemental shapes. The result is much more readable, and applying any transformations to any part of the icon is now possible:</p>
    <p>See the Pen <a href="http://codepen.io/pukhalski/pen/Azqyn" rel="nofollow external" class="bo">Azqyn</a> by Ilya Pukhalski (<a href="http://codepen.io/pukhalski" rel="nofollow external" class="bo">@pukhalski</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>Our redrawn icon looks the same as the biggest one from the sprite but contains many more shapes and takes up a bit more space. The magic is that we’ll add media queries and transformations to the new variant, transforming the shapes of the icon itself to get the same result as the SVG sprite:</p>
    <pre><code>&lt;svg&gt;&#x000A;    	&lt;defs&gt;&#x000A;    		&lt;style&gt;&#x000A;    		@media screen and (max-width: 65em) {&#x000A;    &#x000A;    			#door-shadow, #tube-shadow, .backyard {&#x000A;    				display: none;&#x000A;    			}&#x000A;    &#x000A;    			#door-body {&#x000A;    				fill: white;&#x000A;    			}&#x000A;    &#x000A;    			#door-handle {&#x000A;    				fill: #E55C3C;&#x000A;    			}&#x000A;    &#x000A;    			#door-body, #door-handle {&#x000A;    				-ms-transform: translate(0,0);&#x000A;    				-webkit-transform: translate(0,0);&#x000A;    				transform: translate(0,0);&#x000A;    			}&#x000A;    &#x000A;    			#window {&#x000A;    				-ms-transform: translate(0,0) scale(1);&#x000A;    				-webkit-transform: translate(0,0) scale(1);&#x000A;    				transform: translate(0,0) scale(1);&#x000A;    			}&#x000A;    &#x000A;    			#house-body {&#x000A;    				-ms-transform: scaleX(1) translate(0, 0);    &#x000A;    				-webkit-transform: scaleX(1) translate(0, 0);    &#x000A;    				transform: scaleX(1) translate(0, 0);    &#x000A;    			}&#x000A;    &#x000A;    			#tube-body {&#x000A;    				-ms-transform: translate(0, 0);&#x000A;    				-webkit-transform: translate(0, 0);&#x000A;    				transform: translate(0, 0);&#x000A;    			}&#x000A;    &#x000A;    			#tube-upper {&#x000A;    				-ms-transform: translate(0, 0);&#x000A;    				-webkit-transform: translate(0, 0);&#x000A;    				transform: translate(0, 0);&#x000A;    			}&#x000A;    		}&#x000A;    &#x000A;    		/* And so on */&#x000A;    &#x000A;    		&lt;/style&gt;&#x000A;    	&lt;/defs&gt;&#x000A;    &#x000A;    &lt;!-- Icon groups go here --&gt;&#x000A;    &#x000A;    &lt;/svg&gt;</code></pre>
    <p>Once we’ve added a bit of transformation magic, the icon will behave just like Joe Harrison’s SVG sprite but will contain all of the logic within itself. Open the example below in a new window and resize it to see all of the icon variants.</p>
    <p>See the Pen <a href="http://codepen.io/pukhalski/pen/hFLDG" rel="nofollow external" class="bo">hFLDG</a> by Ilya Pukhalski (<a href="http://codepen.io/pukhalski" rel="nofollow external" class="bo">@pukhalski</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <h4>Adapting the Icon to the Parent Container’s Size</h4>
    <p>One more thing. Making the icon respond to changes in its parent container (at least the width and height) is possible, too.</p>
    <p>To do this, first, I tried to load the SVG file in an <code>img</code> element, wrapped in a <code>div</code>. But not even one media query in the SVG file seemed to work.</p>
    <p>My second attempt was to load the icon in the flexible <code>object</code> element, wrapped in a <code>div</code>. Doing that made all of the media queries work. And making an object fill the space of its parent is now possible, too. (Don’t forget to set the width and height attributes of the <code>svg</code> element to 100% or to remove them completely.)</p>
    <pre><code>&lt;div style="width: 100%; margin: 0 auto;"&gt;&#x000A;    	&lt;object&gt;&#x000A;    		&lt;embed src="responsive3.svg" style="width: 100%; height: auto;" /&gt;&#x000A;    	&lt;/object&gt;&#x000A;    &lt;/div&gt;&#x000A;    </code></pre>
    <p>As for other ways to embed SVG with media queries and transforms, you could use SVG as a background image for any block element. Inline SVG is allowed as well, but the media queries would respond to the viewport.</p>
    <p>The example below demonstrates how the icon responds to different container sizes. The media queries in the SVG handle how the icon is drawn, according to the dimensions that the SVG is to be rendered in. Here are eight blocks with different sizes, embedded with <strong>one and the same</strong> SVG file.</p>
    <p>See the Pen <a href="http://codepen.io/pukhalski/pen/hszLl" rel="nofollow external" class="bo">hszLl</a> by Ilya Pukhalski (<a href="http://codepen.io/pukhalski" rel="nofollow external" class="bo">@pukhalski</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p></p>
    <h4>Adding JavaScript to SVG</h4>
    <p>More good news! The SVG file may encapsulate not only CSS, but JavaScript, too. In essence, we can regard an included SVG file as an independent module to which any old markup language may be applied.</p>
    <p>JavaScript in SVG will work perfectly when embedded inline in the <code>&lt;object&gt;</code> element. Such a wonderful world, huh?</p>
    <h4>Browser Support</h4>
    <p>This last and most complex method of using SVG with media queries and transformations behaves perfectly in the following browser versions:</p>
    <ul>
    <li>Internet Explorer 9+</li>
    <li>Firefox 17+</li>
    <li>Chrome 17+</li>
    <li>Opera 15+</li>
    <li>Safari 6.0+</li>
    <li>Safari on iOS 6.0+</li>
    <li>Android browser on Android 3.0+</li>
    </ul>
    <p>The technique might work in the old versions of browsers, but some transformations, such as scaling, wouldn’t be applied.</p>
    <h3>Conclusion</h3>
    <p>Responsive SVG icons can be used in a lot of ways, including the following:</p>
    <ul>
    <li>responsive advertisements (the ad content would occupy the space given to it by the document, and considering that CSS and JavaScript are allowed, most of the action would be contained to a single SVG file per ad);</li>
    <li>logos;</li>
    <li>application icons.</li>
    </ul>
    <p>I should state that nothing is wrong with the sprites technique proposed by Joe Harrison. It works, and it’s necessary for some purposes!</p>
    <p>Thoughts? Feedback? I look forward to your input in the comments section below.</p>
    
    <p>Cheers, and have fun!</p>
    <p><em>(al, ml, il)</em></p>
    <hr>
    <p><small>© Ilya Pukhalski for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2014.</small></p>
    </div>
]]>
</Body>
<Summary>        If you haven’t seen Joe Harrison’s responsive icons technique yet, you’ll most probably be impressed as much as I was when I first discovered it. In this article, I’d like to explore what...</Summary>
<Website>http://www.smashingmagazine.com/2014/03/05/rethinking-responsive-svg/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42059/guest@my.umbc.edu/8bd04131d21b866e2973fc730e49ef22/api/pixel</TrackingUrl>
<Tag>coding</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</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>Wed, 05 Mar 2014 05:02:27 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42058" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42058">
<Title>19 hipster logos redesigned for corporate America</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="corp_thum" src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_thum.jpg" width="200" height="160" style="max-width: 100%; height: auto;">There’s a trend right now, that wavers between irritating and inspired, for redesigning corporate logos in a <a href="http://hipsterbranding.tumblr.com/" rel="nofollow external" class="bo">hipster style.</a></p> <p>Certain that hipsters could take it as well as dish it out, and inspired by the nearly infamous hipster logo generator, recently Whit Hiler and the team at <a href="http://cornett-ims.com/" rel="nofollow external" class="bo">Cornett Integrated Marketing Solutions</a> decided to turn the trend on its head and redesign a collection of hipster (or rather, hipster<em>ish</em>) logos in the spirit of <a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo">all that is corporate.</a></p> <p>I found the hipsterish-to-corporate exercise deeply disturbing, as if this is what hell looks like from inside a descending handbasket, but I couldn’t stop looking. It’s illuminating to see the warmth and character slowly strangled from a company’s logo to be replaced with soulless corporate gradients and sharp edges. It says as much about the popularity of hipster design, as it does big-business branding.</p> <p>My personal favorite is the Urban Outfitters logo (no change). What’s yours?</p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_001.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_002.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_003.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_004.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_005.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_006.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_007.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_008.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_009.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_010.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_011.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_012.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_013.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_014.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_015.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_016.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_017.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_018.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://whithiler.com/new-blog/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/corp_019.jpg" width="650" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"></a></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/photoeffectstudio.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Create Special Effects Like a Pro with Photo Effect Studio – only $14!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="19 hipster logos redesigned for corporate America" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2014/03/hipster-logos-redesigned-for-corporate-america/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F03%2Fhipster-logos-redesigned-for-corporate-america%2F&amp;t=19+hipster+logos+redesigned+for+corporate+America" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F03%2Fhipster-logos-redesigned-for-corporate-america%2F&amp;t=19+hipster+logos+redesigned+for+corporate+America" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F03%2Fhipster-logos-redesigned-for-corporate-america%2F&amp;t=19+hipster+logos+redesigned+for+corporate+America" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F03%2Fhipster-logos-redesigned-for-corporate-america%2F&amp;t=19+hipster+logos+redesigned+for+corporate+America" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F03%2Fhipster-logos-redesigned-for-corporate-america%2F&amp;t=19+hipster+logos+redesigned+for+corporate+America" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531255023/u/49/f/661066/c/35285/s/37cdc3c5/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>There’s a trend right now, that wavers between irritating and inspired, for redesigning corporate logos in a hipster style.   Certain that hipsters could take it as well as dish it out, and...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/37cdc3c5/sc/4/l/0L0Swebdesignerdepot0N0C20A140C0A30Chipster0Elogos0Eredesigned0Efor0Ecorporate0Eamerica0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42058/guest@my.umbc.edu/5293d74095b3891d962a44ceaf6cc128/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>corporate-design</Tag>
<Tag>corporate-logos</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>funny</Tag>
<Tag>hipster-design</Tag>
<Tag>hipster-logos</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>logo-design</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</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>Wed, 05 Mar 2014 03:15:51 -0500</PostedAt>
<EditAt>Wed, 05 Mar 2014 03:15:51 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42057" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42057">
<Title>Allied Media Conference</Title>
<Tagline>June 19-June 22, 2014</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <strong>ALLIED MEDIA CONFERENCE</strong><br><br>The Allied Media Conference cultivates strategies for a more just and creative world. We come together to share tools and tactics for transforming our communities through media-based organizing. The conference will be held from Thursday, June 19 to Sunday, June 22, 2014.The conference schedule overview can be seen here. Thursday, June 19 is reserved for pre-conference Network Gatherings and special strategy sessions. The conference will begin at 8:00 a.m. on Friday, June 20 and continues through Sunday evening, June 22.<br><br><strong>AMC Mission</strong><br>The Allied Media Conference is a collaborative laboratory of media-based organizing strategies for transforming our world, held every Summer in Detroit.<br><br>CREATE: At the AMC, we understand media as any way in which we communicate with the world, from zines to breakdancing, to designing neighborhood-based communications infrastructure. We share and create media that exposes, investigates, heals, builds confidence and radical hope, incites dialogue and debate. We demystify technology, not only learning how to use it, but how to design and build our own.  In doing so, we redefine technology’s role and impact in our lives. The AMC creates learning environments for all ages and skill levels, including hands-on workshops, strategy sessions, presentations and performances.<br><br>CONNECT: The AMC is a network of networks – social justice organizers, community technologists, transformative artists, educators, entrepreneurs, and many others -- all using media in innovative ways. Some of these networks sprout from the conference, grow over the course of the year then reconvene in Detroit larger and healthier. Others use the AMC as an annual point of convergence and a space to forge new relationships. Through cycles of participatory investigation and experimentation, our networks continue to grow, generating new theories and practices of media-based organizing.<br><br>TRANSFORM: As our networks grow, so does our capacity to take collective actions to transform our world. At the AMC, we develop new leaders and new forms of leadership, design new methods of problem-solving, cultivate the visions of our communities and build our power to make those visions real. <br><br>For more information about this conference as well as how to register, click <a href="http://amc.alliedmedia.org/" rel="nofollow external" class="bo">here</a>. <br><br>
    </div>
]]>
</Body>
<Summary>ALLIED MEDIA CONFERENCE  The Allied Media Conference cultivates strategies for a more just and creative world. We come together to share tools and tactics for transforming our communities through...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42057/guest@my.umbc.edu/ad8872b3756995f697e71a7a8ca2a2ad/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 02:04:16 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42055" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42055">
<Title>Campus War Machine: Sex and Debt</Title>
<Tagline>Call for applications- Fisher Center Predoctoral Fellowship</Tagline>
<Body>
<![CDATA[
    <div class="html-content">In keeping with the Fisher Center’s mission of supporting research and dialogue about gender through curricular, programmatic, and scholarly projects, the Fisher Center Steering Committee announces a call for applications for our 2014-2015 Fisher Center Predoctoral Fellowship. We seek dissertation scholars and advanced candidates for the MFA whose work critically engages the terms of our theme, Campus War Machine: Sex and Debt. We are especially interested in candidates who would contribute to the diversity of the campus.<br><br><strong>Theme</strong><br>In 2014-15, the Fisher Center considers the ways gender figures into the wars being waged on, by, or in the name of higher education. There is a growing discourse in the U.S. and globally on the systems of inequality that underpin the educational system. Debt bondage, the casualization of academic labor, the proliferation of rape culture, DOD funded research, the privatization of public education, the subsumption of educational practices to the dictates of market-driven technological innovations, the inability for many youth to attend school in war-torn societies, and the repression of student protests are all features of the low and high-intensity wars being waged on college campuses. At the same time, title IX sexual assault suits, organized resistance to corporate and government surveillance, progressive research in the sciences and humanities, and academic boycotts suggest that campuses are fighting back. What are the invisible ways that college campuses produce and transmit material, financial, environmental, gendered, and psychological violences? Conversely, how does the campus, as a site for radical thought, activism, and change, disrupt these violences?<br><br>Historical research on the role of the slave trade in funding major universities, as well as the role of universities in reproducing a specific ruling class, attends to the legacy of education as an apparatus of power. The collaboration between universities and large corporate firms, financial institutions, military–research projects, pharmaceutical, bio-tech, and energy companies fuels the war machines and profit–making industries of today’s global powers. How does this impact funding and research across disciplines and how does that shape curriculum? The educational system is also a “home” for students, educators and community members. The struggles they face are structured by systems of sexism, ableism, classism, ageism, racism, colonial settler systems and ideologies, militarization, capitalist scripts, gendered violence, geopolitics, and the globalization of neoliberalism. How might we learn from past struggles that took the university as a primary site, from groups such as the Students for a Democratic Society or campaigns such as those targeting apartheid and sweatshop labor? What gains have been made in more recent decades as queer theorists and politics have challenged suppositions of sex, gender, and embodiment? And in what ways has new work on prisons, policing, and surveillance drawn out not just the structural parallels between prisons and universities but their fundamentally antagonistic positioning as two sides of the capitalist state’s coin?<br><br>In light of these shifting gendered campus battlegrounds, how are radical feminists, activists, artists, scientists, and academic scholars taking on these competing inequalities? What are historical and contemporary examples of pedagogical techniques that provide a framework for creating educational spaces that are free of political inequalities? We seek to create a highly interdisciplinary research group of scholars and artists who will engage these questions in creative ways as we explore these gendered campus battlegrounds and global precarities of educational opportunity.<br><br><strong>Fellowship </strong><br>The fellowship offers an opportunity to gain experience teaching in private liberal arts institutions while completing thesis work, and carries a stipend of $35,000.00. Fellows will teach one course per semester related to their research area, attend Fisher Center lectures and meetings, present one colloquium, and conduct some administrative duties associated with the Visiting Scholars program. Additionally, the Pre-Doctoral Fellow will receive a $4,000 research stipend through her/his participation as a member of the Fisher Center Research Fellows Group. This group is comprised of interdisciplinary scholars who meet regularly to discuss the Fisher Center Research Theme: Campus War Machine: Sex and Debt. Pre-Doctoral candidates nearing completion of the dissertation and MFA candidates who have completed their coursework and beginning work on their thesis must submit a one-page description of scholarship, a short statement on teaching interests, up-to-date curriculum vitae, three letters of reference, and a writing sample (e.g., chapter of dissertation), and, for MFA candidates, a supplemental video or portfolio if relevant. Screening of applications will begin on March 28, 2014 and will continue until the position is filled. Completed applications should be sent to: Cadence Whittier, Director, The Fisher Center for the Study of Women and Men, Hobart and William Smith Colleges, Geneva, NY 14456. Email inquiries may be sent to <a href="mailto:whittier@hws.edu">whittier@hws.edu</a>. Information about the Fisher Center can be found on our <a href="http://www.hws.edu/academics/fisher_center" rel="nofollow external" class="bo">website</a>. <br><br>Hobart and William Smith Colleges are committed to attracting and supporting faculty and staff that fully represent the racial, ethnic, and cultural diversity of the nation and actively seek applications from under-represented groups. The Colleges do not discriminate on the basis of race, color, religion, sex, marital status, national origin, age, disability, veteran's status, sexual orientation, gender identity and expression or any other protected status. HWS Colleges are a highly selective residential liberal arts institution located in a small, diverse city in the Finger Lakes region of New York State. With an enrollment of approximately 2,200, the Colleges offer 62 majors and minors from which students choose two areas of concentration, one of which must be an interdisciplinary program. Creative and extensive programs of international study and public service are also at the core of the Colleges’ mission.<br><br>See more information <a href="http://jdeanicite.typepad.com/i_cite/2014/02/campus-war-machine-sex-and-debt-call-for-applications-for-a-predoctoral-fellowship-at-hobart-and-wil.html#sthash.LJBtVzGH.dpuf" rel="nofollow external" class="bo">here</a>. <br>
    </div>
]]>
</Body>
<Summary>In keeping with the Fisher Center’s mission of supporting research and dialogue about gender through curricular, programmatic, and scholarly projects, the Fisher Center Steering Committee...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42055/guest@my.umbc.edu/876d126b7d5b0d69688467c10c504ace/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 01:43:09 -0500</PostedAt>
<EditAt>Wed, 05 Mar 2014 01:43:50 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42054" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42054">
<Title>Rethinking Intellectual Activism conference</Title>
<Tagline>April 12, 2014</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Registration for the Rethinking Intellectual Activism conference on April 12, 2014, is now open! This is the first annual LLC Graduate Student Conference and will be held at UMBC. <br><br>Join us as we explore the potential meanings and practical implications of “intellectual activism,” which, as a political praxis of knowledge production, validation, and distribution, can take many different forms. By focusing on the notion of “intellectual activism,” the conference aims to open a critical discursive space to question and re-imagine the role of the university in maintaining and/or disrupting the systems and operations of power within and through which the institution functions.<br><br>Please use this <a href="https://www.eventbrite.com/e/rethinking-intellectual-activism-tickets-10697052171" rel="nofollow external" class="bo">link </a>to register by March 15th. The finalized conference program can be seen <a href="http://rethinkingactivismgraduateconference.yolasite.com" rel="nofollow external" class="bo">here</a>. <br><br><br><br> </div>
]]>
</Body>
<Summary>Registration for the Rethinking Intellectual Activism conference on April 12, 2014, is now open! This is the first annual LLC Graduate Student Conference and will be held at UMBC.   Join us as we...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42054/guest@my.umbc.edu/d91987b9f47bc294c8e6c2be83fc4624/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 01:27:15 -0500</PostedAt>
<EditAt>Wed, 05 Mar 2014 01:29:08 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42053" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42053">
<Title>Advocacy Training Day in Washington, D.C.</Title>
<Tagline>August 6, 2014</Tagline>
<Body>
<![CDATA[
    <div class="html-content">SCRA and the Society for the Psychological Study of Social Issues (SPSSI) are considering holding a joint Advocacy Training Day in Washington, DC.  This training would take place on August 6, the day before the start of the <a href="http://www.apa.org/convention/index.aspx" rel="nofollow external" class="bo">APA convention</a>.  Following a half-day expert training, participants will meet with the staff of their Senators and Representatives (with peers from their state) to advocate for a specific legislative issue.  Given that 2014 marks the 50th anniversary of Lyndon Johnson’s War on Poverty, the legislative issue on which we advocate is likely to be poverty-related (see below).  <br> <br>You do not need any prior expertise on the legislative issue we will be advocating for—the training materials will provide all the information needed. The meetings with Capitol Hill staff will provide an opportunity to learn how to engage in federal advocacy, regardless of your area of expertise.  The training will include coverage of the most effective advocacy techniques as well as interactive role-playing exercises in preparation for the Hill visits.<br> <br>There is no cost for this event.  Travel support is available for a small number of students. You can attend without registering for the APA convention; the two are not related. The advocacy training event is being paid for ($100 per person) by two divisions of the American Psychological Association and so to quality the students would need to be members of either the community psychology or the social psychology divisions.<br><br>If you would be interested in attending, please contact Ken Maton (<a href="mailto:maton@umbc.edu">maton@umbc.edu</a>) from the SCRA Policy Committee and answer the following questions answer the following questions: <br><br>1.Would you be interested in attending the training (choose one):   <br>Definitely <br>Likely <br>Possibly <br>Depends on the advocacy issue of focus<br> <br>2.What poverty-related policy issues are you interested in?  This information will help us focus our efforts for what policy issues will be covered during Advocacy Day.<br><br><br><br><br>
    </div>
]]>
</Body>
<Summary>SCRA and the Society for the Psychological Study of Social Issues (SPSSI) are considering holding a joint Advocacy Training Day in Washington, DC.  This training would take place on August 6, the...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42053/guest@my.umbc.edu/5ef15b5fcec5e29f53291a14116780dc/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 01:22:36 -0500</PostedAt>
<EditAt>Wed, 05 Mar 2014 01:23:49 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42052" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42052">
<Title>Hands-on Raspberry Pi workshop, 2-4 Friday March 7, ITE240</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="" src="http://www.csee.umbc.edu/wp-content/uploads/2014/03/modela.png" width="700" height="308" style="max-width: 100%; height: auto;"></p>
    <p>The UMBC Council of Computing Majors will hold its first hands-on Raspberry Pi workshop from 2:00-4:00 this Friday, March 7, in ITE240.</p>
    <p>The <a href="http://raspberrypi.org/)" rel="nofollow external" class="bo">Raspberry Pi</a> is a $35 credit-card-sized, single-board computer that runs a version of Unix. Originally developed for teaching computer programming to children, it is now being used in many useful and exciting applications, from near-space weather balloons to baby monitors to media servers. The possibilities are only limited by your imagination.</p>
    <p>The initial workshop will cover the Raspberry Pi, its Raspbian Unix OS, and how to program it using Python for real-world applications. There will be 20 Pi computers for participants to use. The workshop is designed so freshman and non-computer science majors can attend and participate. If you know anyone who would be interested in attending, please send them the link and information!</p>
    <p>Space is limited, so <a href="http://bit.ly/UMBCpi" rel="nofollow external" class="bo">sign up</a> to reserve a seat.  Intermediate and advanced workshops will follow later in the semester. See the <a href="http://raspberrypi.org/faqs" rel="nofollow external" class="bo">Pi FAQ</a> for general information on the Pi and <a href="http://raspbian.org/" rel="nofollow external" class="bo">Raspbian</a> for information on its operating system.</p>
    <p>For more information, contact CCM president Austin Murdock (Sorry, you need javascript to view this email address. ).</p>
    </div>
]]>
</Body>
<Summary>The UMBC Council of Computing Majors will hold its first hands-on Raspberry Pi workshop from 2:00-4:00 this Friday, March 7, in ITE240.   The Raspberry Pi is a $35 credit-card-sized, single-board...</Summary>
<Website>http://www.csee.umbc.edu/2014/03/hands-on-raspberry-pi-workshop/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42052/guest@my.umbc.edu/6c227f516ec8ac04203dc38d042ecbcd/api/pixel</TrackingUrl>
<Tag>ccm</Tag>
<Tag>computer-engineering</Tag>
<Tag>computer-science</Tag>
<Tag>events</Tag>
<Tag>news</Tag>
<Tag>students</Tag>
<Tag>undergraduate</Tag>
<Group token="csee">Computer Science and Electrical Engineering</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/csee</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/original.png?1314043393</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/large.png?1314043393</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/medium.png?1314043393</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/small.png?1314043393</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxsmall.png?1314043393</AvatarUrl>
<Sponsor>Computer Science and Electrical Engineering</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 00:55:54 -0500</PostedAt>
<EditAt>Wed, 05 Mar 2014 00:55:54 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42616" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42616">
<Title>Hands-on Raspberry Pi workshop, 2-4 Friday March 7, ITE240</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="" src="http://www.csee.umbc.edu/wp-content/uploads/2014/03/modela.png" width="700" height="308" style="max-width: 100%; height: auto;"></p>
    <p>The UMBC Council of Computing Majors will hold its first hands-on Raspberry Pi workshop from 2:00-4:00 this Friday, March 7, in ITE240.</p>
    <p>The <a href="http://raspberrypi.org/)" rel="nofollow external" class="bo">Raspberry Pi</a> is a $35 credit-card-sized, single-board computer that runs a version of Unix. Originally developed for teaching computer programming to children, it is now being used in many useful and exciting applications, from near-space weather balloons to baby monitors to media servers. The possibilities are only limited by your imagination.</p>
    <p>The initial workshop will cover the Raspberry Pi, its Raspbian Unix OS, and how to program it using Python for real-world applications. There will be 20 Pi computers for participants to use. The workshop is designed so freshman and non-computer science majors can attend and participate. If you know anyone who would be interested in attending, please send them the link and information!</p>
    <p>Space is limited, so <a href="http://bit.ly/UMBCpi" rel="nofollow external" class="bo">sign up</a> to reserve a seat.  Intermediate and advanced workshops will follow later in the semester. See the <a href="http://raspberrypi.org/faqs" rel="nofollow external" class="bo">Pi FAQ</a> for general information on the Pi and <a href="http://raspbian.org/" rel="nofollow external" class="bo">Raspbian</a> for information on its operating system.</p>
    <p>For more information, contact CCM president Austin Murdock (Sorry, you need javascript to view this email address. ).</p>
    </div>
]]>
</Body>
<Summary>The UMBC Council of Computing Majors will hold its first hands-on Raspberry Pi workshop from 2:00-4:00 this Friday, March 7, in ITE240.   The Raspberry Pi is a $35 credit-card-sized, single-board...</Summary>
<Website>http://www.csee.umbc.edu/2014/03/hands-on-raspberry-pi-workshop/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=hands-on-raspberry-pi-workshop</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42616/guest@my.umbc.edu/58d8ca1a8f5fdc16753afee3716f380a/api/pixel</TrackingUrl>
<Tag>ccm</Tag>
<Tag>computer-engineering</Tag>
<Tag>computer-science</Tag>
<Tag>events</Tag>
<Tag>news</Tag>
<Tag>students</Tag>
<Tag>undergraduate</Tag>
<Group token="csee">Computer Science and Electrical Engineering</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/csee</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/original.png?1314043393</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/large.png?1314043393</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/medium.png?1314043393</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/small.png?1314043393</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxsmall.png?1314043393</AvatarUrl>
<Sponsor>Computer Science and Electrical Engineering</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 00:55:54 -0500</PostedAt>
<EditAt>Wed, 05 Mar 2014 00:55:54 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42061" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42061">
<Title>DealBook: Silk Road, Shut Down in Fall, Had Digital Outpost in Pennsylvania</Title>
<Body>
<![CDATA[
    <div class="html-content">A staff member of Lafayette College played a small role in the investigation that resulted in the shutdown of Silk Road, the online marketplace where drugs and weapons could be bought.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F04%2Fsilk-road-had-digital-outpost-in-pennsylvania%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Silk+Road%2C+Shut+Down+in+Fall%2C+Had+Digital+Outpost+in+Pennsylvania" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F04%2Fsilk-road-had-digital-outpost-in-pennsylvania%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Silk+Road%2C+Shut+Down+in+Fall%2C+Had+Digital+Outpost+in+Pennsylvania" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F04%2Fsilk-road-had-digital-outpost-in-pennsylvania%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Silk+Road%2C+Shut+Down+in+Fall%2C+Had+Digital+Outpost+in+Pennsylvania" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F04%2Fsilk-road-had-digital-outpost-in-pennsylvania%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Silk+Road%2C+Shut+Down+in+Fall%2C+Had+Digital+Outpost+in+Pennsylvania" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F04%2Fsilk-road-had-digital-outpost-in-pennsylvania%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Silk+Road%2C+Shut+Down+in+Fall%2C+Had+Digital+Outpost+in+Pennsylvania" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/sc/38/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/sc/38/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/sc/38/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/sc/38/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/sc/38/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/sc/38/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186531420076/u/0/f/640387/c/34625/s/37cff802/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A staff member of Lafayette College played a small role in the investigation that resulted in the shutdown of Silk Road, the online marketplace where drugs and weapons could be bought.      </Summary>
<Website>http://dealbook.nytimes.com/2014/03/04/silk-road-had-digital-outpost-in-pennsylvania/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42061/guest@my.umbc.edu/2f9169c031dac6504a66d483a29f104a/api/pixel</TrackingUrl>
<Tag>bitcoin-currency</Tag>
<Tag>drug-abuse-and-traffic</Tag>
<Tag>federal-bureau-of-investigation</Tag>
<Tag>legal-regulatory</Tag>
<Tag>new</Tag>
<Tag>regulation-and-deregulation-of-industry</Tag>
<Tag>technology</Tag>
<Tag>top-headline-1</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 00:27:24 -0500</PostedAt>
<EditAt>Wed, 05 Mar 2014 13:05:27 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42056" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42056">
<Title>Google Glass Still Needs a Killer App</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Glass is still a pain to use, but a few apps reveal what it could become.</p>
    <p>Aside from the fact that it’s not yet publicly available, there are plenty of reasons to not wear Google Glass even if you get the chance. To name just a few: it’s expensive, it looks and feels weird, it doesn’t work that well, and, whether you’re at home or walking down the street, people will stare at you and the small, prismatic display on your face.</p>
    </div>
]]>
</Body>
<Summary>Glass is still a pain to use, but a few apps reveal what it could become.  Aside from the fact that it’s not yet publicly available, there are plenty of reasons to not wear Google Glass even if...</Summary>
<Website>http://www.technologyreview.com/news/525156/google-glass-still-needs-a-killer-app/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42056/guest@my.umbc.edu/daead5fb3269ba16a72cc793bc25583d/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 05 Mar 2014 00:00:00 -0500</PostedAt>
</NewsItem>

</News>
