<?xml version="1.0"?>
<News hasArchived="true" page="8621" pageCount="10722" pageSize="10" timestamp="Sat, 11 Jul 2026 02:50:26 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8621">
<NewsItem contentIssues="true" id="31303" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31303">
<Title>The JavaScript Behind Touch-Friendly Sliders</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="https://twitter.com/foleyatwork" rel="nofollow external" class="bo">Kevin Foley</a>. Kevin is a developer at <a href="http://www.squarespace.com/" rel="nofollow external" class="bo">Squarespace</a> doing cool stuff with their <a href="http://developers.squarespace.com/" rel="nofollow external" class="bo">developer platform</a>, among other things. He was recently working on a swipeable image gallery and he agreed to share some of that work here!</em></p>
    <p>A few weeks ago Chris posted a tutorial for creating a <a href="http://css-tricks.com/slider-with-sliding-backgrounds/" rel="nofollow external" class="bo">Slider with Sliding Background Images</a>. Around the same time I was working on some new swipeable galleries, so Chris suggested I write up a tutorial for how to add swipe support to his slider. Here it is!</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/06/slider-with-finger.jpg" alt="" style="max-width: 100%; height: auto;">
    <p>When creating a swipeable gallery there are two techniques — that I know of — you can choose from. You can animate the scroll position, or move the element using <code>translate</code>. There are pros and cons to each.</p>
    <h3>Using Translate</h3>
    <p>Moving the slider with <code>translate</code> gives you the advantage of hardware acceleration and subpixel animation. However, on the initial touch event you might notice a small delay — only a few tens of milliseconds — before the slider starts moving. This isn’t very well documented, I’ve just noticed it in my experience.</p>
    <h3>Using Overflow Scroll</h3>
    <p>Overflow scroll is extremely responsive to the initial touch because it’s native to the browser. You don’t have to wait for the event listener in JavaScript. But you lose out on all the smoothness of moving elements with translate.</p>
    <p>For this tutorial we’re going to use <code>translate</code> because I think it looks better.</p>
    <h3>The HTML</h3>
    <p>The HTML in this example is going to differ from Chris’s original example. Instead of setting the image as a background image, we’re going to set it as an element. That will allow us to move the image to gain that cool panning effect using translate instead of animating the background position.</p>
    <pre><code>&lt;div class="slider-wrap"&gt;&#x000A;      &lt;div class="slider" id="slider"&gt;&#x000A;        &lt;div class="holder"&gt;&#x000A;          &lt;div class="slide-wrapper"&gt;&#x000A;            &lt;div class="slide"&gt;&lt;img class="slide-image" src="<a href="http://farm8.staticflickr.com/7347/8731666710_34d07e709e_z.jpg">http://farm8.staticflickr.com/7347/8731666710_34d07e709e_z.jpg</a>" /&gt;&lt;/div&gt;&#x000A;            <span>74</span>&#x000A;          &lt;/div&gt;&#x000A;          &lt;div class="slide-wrapper"&gt;&#x000A;            &lt;div class="slide"&gt;&lt;img class="slide-image" src="<a href="http://farm8.staticflickr.com/7384/8730654121_05bca33388_z.jpg">http://farm8.staticflickr.com/7384/8730654121_05bca33388_z.jpg</a>" /&gt;&lt;/div&gt;&#x000A;            <span>64</span>&#x000A;          &lt;/div&gt;&#x000A;          &lt;div class="slide-wrapper"&gt;&#x000A;            &lt;div class="slide"&gt;&lt;img class="slide-image" src="<a href="http://farm8.staticflickr.com/7382/8732044638_9337082fc6_z.jpg">http://farm8.staticflickr.com/7382/8732044638_9337082fc6_z.jpg</a>" /&gt;&lt;/div&gt;&#x000A;            <span>82</span>&#x000A;          &lt;/div&gt;&#x000A;        &lt;/div&gt;&#x000A;      &lt;/div&gt;&#x000A;    &lt;/div&gt;</code></pre>
    <h3>The CSS</h3>
    <p>For the most part the CSS is the same as Chris’ so I won’t rehash how to set up the layout. But there are a few key differences.</p>
    <p>Instead of simply adding overflow scroll, we need to animate the slides. So for that we’re going to use a class to set up the transition and add it with JavaScript when we need it.</p>
    <pre><code>.animate { transition: transform 0.3s ease-out; }</code></pre>
    <p>IE 10 handles touch events differently than mobile Webkit browsers, like Chrome and Safari. We’ll address the Webkit touch events in JavaScript, but in IE10 we can create this entire slider (almost) with nothing but CSS.</p>
    <pre><code>.ms-touch.slider {&#x000A;      overflow-x: scroll;&#x000A;      overflow-y: hidden;&#x000A;      &#x000A;      -ms-overflow-style: none;&#x000A;      /* Hides the scrollbar. */&#x000A;      &#x000A;      -ms-scroll-chaining: none;&#x000A;      /* Prevents Metro from swiping to the next tab or app. */&#x000A;      &#x000A;      -ms-scroll-snap-type: mandatory;&#x000A;      /* Forces a snap scroll behavior on your images. */&#x000A;      &#x000A;      -ms-scroll-snap-points-x: snapInterval(0%, 100%);&#x000A;      /* Defines the y and x intervals to snap to when scrolling. */&#x000A;    }</code></pre>
    <p>Since these properties are probably new to most people (they were to me, too) I’ll walk through each one and what it does.</p>
    <h4>-ms-scroll-chaining</h4>
    <p>The Surface tablet switches browser tabs when you swipe across the page, rendering all swipe events useless for developers. Luckily it’s really easy to override that behavior by setting scroll chaining to none on any given element.</p>
    <h4>-ms-scroll-snap-type</h4>
    <p>When set to mandatory, this property overrides the browser’s default scrolling behavior and forces a scrollable element to snap to a certain interval.</p>
    <h4>-ms-scroll-snap-points-x</h4>
    <p>This property sets the intervals the scrollable element will snap to. It accepts two numbers: the first number is the starting point; the second is the snap interval. In this example, each slide is the full width of the parent element, which means the interval should be 100% — i.e. the element will snap to 100%, 200%, 300%, and so on.</p>
    <h4>-ms-overflow-style</h4>
    <p>This property lets you hide the scrollbar when you set it to none.</p>
    <h3>The JavaScript</h3>
    <p>The first thing we have to do in JavaScript is detect what kind of touch device we’re using. IE 10 uses pointer events while Webkit has “touchstart,” “touchmove,” and “touchend.” Since the IE 10 slider is (almost) all in CSS we need to detect that and add a class to the wrapper.</p>
    <pre><code>if (navigator.msMaxTouchPoints) {&#x000A;      $('#slider').addClass('ms-touch');&#x000A;    }</code></pre>
    <p>Pretty simple. If you tested the slider at this point it would be a functioning swipeable slideshow. But we still need to add the panning effect on the images.</p>
    <pre><code>if (navigator.msMaxTouchPoints) {&#x000A;      $('#slider').addClass('ms-touch');&#x000A;    &#x000A;      // Listed for the scroll event and move the image with translate.&#x000A;      $('#slider').on('scroll', function() {&#x000A;        $('.slide-image').css('transform','translate3d(-' + (100-$(this).scrollLeft()/6) + 'px,0,0)');&#x000A;      });&#x000A;    }</code></pre>
    <p>And that’s it for IE 10.</p>
    <p>Now for the webkit way. This will all be wrapped in the <code>else</code> statement. First we’ve just got to define a few variables.</p>
    <pre><code>else {&#x000A;      var slider = {&#x000A;    &#x000A;        // The elements.&#x000A;        el: {&#x000A;          slider: $("#slider"),&#x000A;          holder: $(".holder"),&#x000A;          imgSlide: $(".slide-image")&#x000A;        },&#x000A;    &#x000A;        // The stuff that makes the slider work.&#x000A;        slideWidth: $('#slider').width(), // Calculate the slider width.&#x000A;    &#x000A;        // Define these as global variables so we can use them across the entire script.&#x000A;        touchstartx: undefined,&#x000A;        touchmovex: undefined, &#x000A;        movex: undefined,&#x000A;        index: 0,&#x000A;        longTouch: undefined,&#x000A;        // etc</code></pre>
    <p>Then we need to initialize the function and define the events.</p>
    <pre><code>    // continued&#x000A;    &#x000A;        init: function() {&#x000A;          this.bindUIEvents();&#x000A;        },&#x000A;    &#x000A;        bindUIEvents: function() {&#x000A;    &#x000A;          this.el.holder.on("touchstart", function(event) {&#x000A;            slider.start(event);&#x000A;          });&#x000A;    &#x000A;          this.el.holder.on("touchmove", function(event) {&#x000A;            slider.move(event);&#x000A;          });&#x000A;    &#x000A;          this.el.holder.on("touchend", function(event) {&#x000A;            slider.end(event);&#x000A;          });&#x000A;    &#x000A;        },</code></pre>
    <p>Now for the fun stuff that actually makes stuff happen when you swipe the slider.</p>
    <h4>Touchstart</h4>
    <p>On the iPhone (and most other touch sliders) if you move the slider slowly, just a little bit, it will snap back into its original position. But if you do it quickly it will increment to the next slide. That fast movement is called a flick. And there isn’t any native way to test for a flick so we’ve got to use a little hack. On touchstart we intitialize a setTimeout function and set a variable after a certain amount of time.</p>
    <pre><code>this.longTouch = false;&#x000A;    setTimeout(function() {&#x000A;      // Since the root of setTimout is window we can’t reference this. That’s why this variable says window.slider in front of it.&#x000A;      window.slider.longTouch = true;&#x000A;    }, 250);</code></pre>
    <p>We’ve also got to get the original position of the touch to make out animation work. If you’ve never done this before, it’s a little strange. JavaScript lets you define multitouch events, so you can pass the touches event a number that represents the amount of fingers you’re listening for. For this example I’m really only interested in one finger/thumb so in the code sample below that’s what the [0] is for.</p>
    <pre><code>// Get the original touch position.&#x000A;    this.touchstartx =  event.originalEvent.touches[0].pageX;</code></pre>
    <p>Before we start moving the slider I’m going to remove the animate class. I know there is no animate class on the elements right now, but we need this for the subsequent slides. We’ll add it back to an element on touchend.</p>
    <pre><code>$('.animate').removeClass('animate');</code></pre>
    <h4>Touchmove</h4>
    <p>The touchmove event behaves similarly to scroll events in JavaScript. That is, if you do something on scroll it’s going to execute a bunch of times while the scroll is occuring. So we’re going to get the touchmove position continuously while the finger/thumb is moving.</p>
    <pre><code>// Continuously return touch position.&#x000A;    this.touchmovex =  event.originalEvent.touches[0].pageX;</code></pre>
    <p>Then we’ll do a quick calculation using the touchstart position we got in the last event and the touchmove position to figure out how to translate the slide.</p>
    <pre><code>// Calculate distance to translate holder.&#x000A;    this.movex = this.index*this.slideWidth + (this.touchstartx - this.touchmovex);</code></pre>
    <p>Then we need to pan the image, like Chris did in the original example. We’re going to use the same magic numbers he did.</p>
    <pre><code>// Defines the speed the images should move at.&#x000A;    var panx = 100-this.movex/6;</code></pre>
    <p>Now we need to add in some logic to handle edge cases. If you’re on the first slide or the last slide this logic will stop the image panning if you’re scrolling in the wrong direction (i.e. toward no content). This might not be the best way to handle this, but it works for me right now.</p>
    <pre><code>if (this.movex &lt; 600) { // Makes the holder stop moving when there is no more content.&#x000A;      this.el.holder.css('transform','translate3d(-' + this.movex + 'px,0,0)');&#x000A;    }&#x000A;    if (panx &lt; 100) { // Corrects an edge-case problem where the background image moves without the container moving.&#x000A;      this.el.imgSlide.css('transform','translate3d(-' + panx + 'px,0,0)');&#x000A;     }</code></pre>
    <h4>Touchend</h4>
    <p>In the touchend event we’ve got to figure out how far the user moved the slide, at what speed, and whether or not that action should increment to the next slide.</p>
    <p>First we need to see exactly how far the distance of the swipe was. We’re going to calculate the absolute value of the distance moved to see if the user swiped.</p>
    <pre><code>// Calculate the distance swiped.&#x000A;    var absMove = Math.abs(this.index*this.slideWidth - this.movex);</code></pre>
    <p>Now we’re going to figure out if the slider should increment. All the other calculations in this example are based on the index variable, so this is the real logic behind the script. It checks if the user swiped the minimum distance to increment the slider, or if the movement was a flick. And if it meets either of those two criteria, which direction did the swipe go in.</p>
    <pre><code>// Calculate the index. All other calculations are based on the index.&#x000A;    if (absMove &gt; this.slideWidth/2 || this.longTouch === false) {&#x000A;      if (this.movex &gt; this.index*this.slideWidth &amp;&amp; this.index &lt; 2) {&#x000A;        this.index++;&#x000A;      } else if (this.movex &lt; this.index*this.slideWidth &amp;&amp; this.index &gt; 0) {&#x000A;        this.index--;&#x000A;      }&#x000A;    }</code></pre>
    <p>Now we add the animate class and set the new translate position.</p>
    <pre><code>// Move and animate the elements.&#x000A;    this.el.holder.addClass('animate').css('transform', 'translate3d(-' + this.index*this.slideWidth + 'px,0,0)');&#x000A;    this.el.imgSlide.addClass('animate').css('transform', 'translate3d(-' + 100-this.index*50 + 'px,0,0)');</code></pre>
    <h3>The Conclusion</h3>
    <p>So, yea, hooray for IE 10.</p>
    <p>But seriously, creating swipeable galleries is kind of a pain, considering it’s such a common idiom on mobile OS’s. And the end result won’t be as good as native swiping. But it will be close.</p>
    <p>Here's the complete demo:</p>
    <pre><a href="http://codepen.io/foleyatwork/pen/ylwoz" rel="nofollow external" class="bo">Check out this Pen!</a></pre>
    <p>But you're best bet is checking it out on your touch device <a href="http://codepen.io/foleyatwork/full/ylwoz" rel="nofollow external" class="bo">here</a>.</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/the-javascript-behind-touch-friendly-sliders/" rel="nofollow external" class="bo">The JavaScript Behind Touch-Friendly Sliders</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Kevin Foley. Kevin is a developer at Squarespace doing cool stuff with their developer platform, among other things. He was recently working on a swipeable image...</Summary>
<Website>http://css-tricks.com/the-javascript-behind-touch-friendly-sliders/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31303/guest@my.umbc.edu/f96e8627ad9b1cdc494c766f2cbf07ba/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, 13 Jun 2013 17:42:16 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110126" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110126">
<Title>Appointment of Professor Tim Nohe as Director of the Center for Innovation, Research, and Creativity in the Arts</Title>
<Body>
<![CDATA[
    <div class="html-content">To: The UMBC Community From: John Jeffries, Dean of Arts, Humanities, and Social Sciences Date: June 13, 2013 Re: Appointment of Professor Tim Nohe as Director of the Center for Innovation, Research, and Creativity in the Arts I am pleased to announce the appointment of Professor Tim Nohe of the Department of Visual Arts as the founding Director of the new UMBC arts research center—the Center for Innovation, Research, and Creativity in the Arts [CIRCA]. Professor Nohe has achieved a remarkable record at UMBC as a multi-talented and interdisciplinary artist who has exhibited and performed widely, as a fine teacher …</div>
]]>
</Body>
<Summary>To: The UMBC Community From: John Jeffries, Dean of Arts, Humanities, and Social Sciences Date: June 13, 2013 Re: Appointment of Professor Tim Nohe as Director of the Center for Innovation,...</Summary>
<Website>https://news.umbc.edu/appointment-of-professor-tim-nohe-as-director-of-the-center-for-innovation-research-and-creativity-in-the-arts/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110126/guest@my.umbc.edu/8a0b2959d737523e9660c824149793af/api/pixel</TrackingUrl>
<Tag>arts-and-culture</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, 13 Jun 2013 17:05:36 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="123254" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123254">
<Title>Solo Exhibition by Christine Ferrera, New Media Studio, Opens At Gibbs Street Gallery (6/21)</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <img alt="Christine Ferrera, Google Art Video, Video Still, Dimensions variable" src="/wp-content/uploads/2013/06/ferrera_image.jpg?w=300" width="300" height="169" style="max-width: 100%; height: auto;">Christine Ferrera, Google Art Video, Video Still, Dimensions variable
    <p>Friday, June 21 at 8:00 p.m., <em>Between You and Me</em>, an exhibition by Coordinator/Producer of the New Media Studio, Christine Ferrera ’10 M.F.A., Imaging and Digital Arts, opens at the <a href="http://www.visartsatrockville.org/gallery/gibbs-street-gallery" rel="nofollow external" class="bo">Gibbs Street Gallery in Rockville, Maryland</a>.</p>
    <p>According to <a href="http://www.visartsatrockville.org/gallery/between-you-and-me" rel="nofollow external" class="bo">Rockville’s VisArts website</a><em>, Between You and Me</em> is a collection of performance pieces “that circuitously contemplate art, humor and feminism. Each piece uses personal monologue as a vehicle to explore longing, insecurity, narcissism and enlightenment. By counter-posing live and recorded performance, satire and sincerity, the artist either transcends her angst or winds up in a self-reflexive tangle.”</p>
    <p>The works include <em>Starbux Diary; </em><em>Awkward Pauzez the Digital Comic, </em>a stand-up comedy act with computer generated punchlines; <em>Google Art Video, </em>a performance featuring the strange encounters of two women drifting through cyberspace receiving mystical clues and the inspiration to create, and <em>Stellar Cellar,</em> a journey through a woman’s subconsciousness under the guise of a radio show discussion about wine. Read the complete descriptions of the works on the <a href="/wp-content/uploads/2013/06/show-poster.jpg" rel="nofollow external" class="bo">event poster</a>.</p>
    <p>This event is free and open to the public, and continues through July 7. Performances of the works are scheduled through June on the 22nd, 23rd, 28th and 29th. A free opening reception will be held on the 28th from 7:00 to 9:00 p.m.</p>
    </div>
]]>
</Body>
<Summary>Christine Ferrera, Google Art Video, Video Still, Dimensions variable  Friday, June 21 at 8:00 p.m., Between You and Me, an exhibition by Coordinator/Producer of the New Media Studio, Christine...</Summary>
<Website>https://umbc.edu/stories/solo-exhibition-by-christine-ferrera-new-media-studio-opens-at-gibbs-street-gallery-621/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123254/guest@my.umbc.edu/f6a32dd6a768b5cd0e9c36c886ad9ee5/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 13 Jun 2013 16:52:43 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="31299" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31299">
<Title>New from Envato: The Easiest Way for Web Devs to Get Design Work Done</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=32642&amp;c=97192716" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=32642&amp;c=97192716" alt="" style="max-width: 100%; height: auto;"></a><p>As we’ve <a href="http://net.tutsplus.com/articles/editorials/this-damn-industry/" rel="nofollow external" class="bo">talked about before on Nettuts+</a>, sometimes it feels impossible to keep up with all the skills, languages and tools you need to learn to be a great web developer.</p>
    <p>In an ideal world we’d be masters of back-end, front-end and graphic design, but being truly great at any one of those three things is, on its own, a full-time challenge.</p>
    <p>Many of us eventually realize that we should focus only on the skills we love to use, and let others help us with the rest.</p>
    <p>For web developers, the skill we often decide we’ll never be able to master is <strong>design</strong>.</p>
    <p>And yet, we struggle on with websites and apps we know look less than great because we don’t have the time to get truly good at design, or we lack the time, energy and money to collaborate with a talented designer.</p>
    <p>Envato (the people behind <em>Nettuts+</em>) have recently launched a new service, currently in beta, that aims to solve this problem: <a href="http://microlancer.com/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Microlancer</a>.</p> <a href="http://microlancer.com/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo"><img alt="microlancer_home" src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/microlancer_home.png" width="600" height="474" style="max-width: 100%; height: auto;"></a><hr>
    <h2>What is it?</h2>
    <p>Microlancer makes it easy for web developers to access design services that are:</p>
    <ul>
    <li><p><strong>Affordable</strong> – prices are fixed and stated upfront for different types of jobs.</p></li>
    <li><p><strong>Discoverable</strong> – browse service providers and find someone with a style and approach you like.</p></li>
    <li><p><strong>Predictable</strong> – service providers state upfront how fast their turnaround time will be and how many revisions are included in the price.</p></li>
    <li><p><strong>Good!</strong> – service providers are reviewed for quality and must provide several work examples.</p></li>
    </ul>
    <p>Rather than committing to a big project upfront, services are broken down into smaller pieces and priced individually. For example, rebranding your web development business might involve the following services:</p>
    <ol>
    <li><p><a href="http://www.microlancer.com/explore/logo-design/1338-detailed-illustrated-logo-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Detailed, Illustrated Logo Design</a> by DesignSyndicate ($475)</p></li>
    <li><p><a href="http://www.microlancer.com/explore/one-page-web-design/1367-single-page-responsive-web-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Single Page Responsive Web Design</a> by kamleshyadav ($200)</p></li>
    <li><p><a href="http://www.microlancer.com/explore/business-card-design/588-creative-profession-business-card-designs/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Creative Professional Business Card Design</a> by ShermanJackson ($60)</p></li>
    <li><p><a href="http://www.microlancer.com/explore/twitter-graphics/1353-twitter-background-header-design-customization/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Twitter Background, Header Design &amp; Customization</a> by Alex_Yves ($70)</p></li>
    </ol>
    <p>These are actual services and prices currently on Microlancer, and with these, a complete rebranding with logo design, website, business cards and Twitter graphics would cost $805.</p>  <a href="http://www.microlancer.com/explore/business-card-design/588-creative-profession-business-card-designs/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo"><img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/creative_pro_biz_cards.png" alt="creative_pro_biz_cards" width="600" height="395" style="max-width: 100%; height: auto;"></a><br> <p>Though Microlancer is a great place to get work done for your own business, it’s also an excellent place to outsource any design work that clients need done. Prices are fixed, so it’s easy to calculate your profit margin on any given job.</p>
    <p>On Microlancer, services are sold in a shop-like format, where they can be browsed and purchased individually. Though the vast majority of jobs proceed without a hitch, any issues that occasionally do arise can be resolved with Microlancer’s robust and fair dispute resolution process. Trained members of the team are on-hand to ensure that all users who play by the rules have a great Microlancer experience.</p>
    <p>Here’s a quick preview of the kinds of things you can get done on Microlancer:</p>
    <ul>
    <li><p><a href="http://www.microlancer.com/explore/logo-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Logo Design</a></p></li>
    <li><p><a href="http://www.microlancer.com/explore/customize-a-psd-file/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">PSD Customization</a></p></li>
    <li><p><a href="http://www.microlancer.com/explore/image-editing/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Image Editing</a></p></li>
    <li><p><a href="http://www.microlancer.com/explore/marketing-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Marketing Design</a> (including <a href="http://www.microlancer.com/explore/infographics/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Infographics</a>)</p></li>
    <li><p><a href="http://www.microlancer.com/explore/web-banner-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Web Banner Design</a></p></li>
    <li><p><a href="http://www.microlancer.com/explore/print-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Print Design</a> (including <a href="http://www.microlancer.com/explore/business-card-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Business Card Design</a>)</p></li>
    <li><p><a href="http://www.microlancer.com/explore/presentation-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Presentation Design</a></p></li>
    <li><p><a href="http://www.microlancer.com/explore/social-media/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Social Media Graphics</a></p></li>
    <li><p><a href="http://www.microlancer.com/explore/one-page-web-design/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">Web Design</a></p></li>
    <li><p><a href="http://www.microlancer.com/explore/web-design-ui/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">UI Element Design</a></p></li>
    </ul>
    <p></p>
    <p><strong>If you haven’t yet, why not take 2 minutes to <a href="http://www.microlancer.com/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">explore Microlancer</a>?</strong></p>
    <hr>
    <h2>Become a Service Provider</h2>
    <p>On Microlancer, users who provide services for buyers are called — you guessed it — service providers. Microlancer in its beta form currently offers graphic design services exclusively. If you have some design chops as well as code clout, you may be eligible to sell design services on Microlancer and unlock a new source of income.</p>
    <p>Learn more about <a href="http://www.microlancer.com/sell-services/?utm_source=nettuts&amp;utm_medium=blogpost&amp;utm_campaign=tutslaunch" rel="nofollow external" class="bo">becoming a service provider on Microlancer</a>.</p>
    </div>
]]>
</Body>
<Summary>As we’ve talked about before on Nettuts+, sometimes it feels impossible to keep up with all the skills, languages and tools you need to learn to be a great web developer.  In an ideal world we’d...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/-Xa3QoaAX-4/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31299/guest@my.umbc.edu/58071cef985198a885924f7b7dd7c56c/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>news</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wed</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, 13 Jun 2013 16:33:03 -0400</PostedAt>
<EditAt>Thu, 13 Jun 2013 16:33:03 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="31297" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31297">
<Title>NEW Summer Cyber Internships Downtown</Title>
<Tagline>2 Great Internships at Cyberpoint International</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div>CyberPoint International is seeking highly motivated students who are interested in a technical summer internships. We will consider candidates who are majoring in Computer Science, Computer Engineering, Applied Math, Physics or any other related major.  Software skills desired are proficiency in</div>
    <div>C, C++, Java, Python, Ruby, Perl or similar other languages. </div>
    <div><br></div>
    <div>This position will involve basic research on a commercial malware analysis product that we have.  It's documenting the different capabilities and functionalities of this product and entering the information into a database.  We are looking for students that have completed their sophomore year but would consider someone with less than 60 credits if they have some basic programming skills in C, C++, Python and/or Assembly.  We are hoping to find 2 students who are majoring in technical majors who can work 32 hours per week for 8 weeks.  We can pay $15 per hour.  </div>
    <div><br></div>
    <div>If you are excited about working in an innovative environment with liked minded individuals, please apply through UMBCworks ASAP: <span>9258748</span>
    </div>
    </div>
]]>
</Body>
<Summary>CyberPoint International is seeking highly motivated students who are interested in a technical summer internships. We will consider candidates who are majoring in Computer Science, Computer...</Summary>
<Website>http://cyberpointllc.com/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31297/guest@my.umbc.edu/0aeb84d7b19e23f8c4d9c25faa28e1f9/api/pixel</TrackingUrl>
<Group token="shriver">The Shriver Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/shriver</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/original.jpg?1441293069</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/large.png?1441293069</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/medium.png?1441293069</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/small.png?1441293069</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxsmall.png?1441293069</AvatarUrl>
<Sponsor>Shriver Center: Intern, Co-op, Research &amp; Service-Learning</Sponsor>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Jun 2013 16:10:55 -0400</PostedAt>
<EditAt>Thu, 13 Jun 2013 16:11:32 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="110127" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110127">
<Title>Robert Deluty, Graduate School, in The Faculty Voice</Title>
<Body>
<![CDATA[
    <div class="html-content">Robert Deluty, associate dean of the Graduate School, has published two poems—”Rejoinder” and “Higher Education”—in the “Poetry of the Academy” section of the Spring 2013 issue of The Faculty Voice.</div>
]]>
</Body>
<Summary>Robert Deluty, associate dean of the Graduate School, has published two poems—”Rejoinder” and “Higher Education”—in the “Poetry of the Academy” section of the Spring 2013 issue of The Faculty Voice.</Summary>
<Website>https://news.umbc.edu/robert-deluty-graduate-school-in-the-faculty-voice-4/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110127/guest@my.umbc.edu/0d4ca757b4b23508d83643d2251b8158/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</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, 13 Jun 2013 15:59:43 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110128" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110128">
<Title>Dr. Kate Drabinski, Gender and Women&#8217;s Studies, headlines Baltimore City Paper Queer Issue</Title>
<Body>
<![CDATA[
    <div class="html-content">You May Now Kiss the Brides Even as other battles loom, the LGBT community stops to celebrate marriage equality at Pride 2013 On a warm spring evening, Carrie Hiers and Tonya Cook sit on overstuffed couches in their cozy Northeast Baltimore living room and plan their wedding. There will a rainbow balloon arch, bubbles, and a giant spread of rainbow cupcakes. Technically, it’ll be the second wedding for Hiers and Cook but their first legal one. And they won’t be alone. On Sunday, June 16, they will join couples from all over the state and beyond—some coming from as far …</div>
]]>
</Body>
<Summary>You May Now Kiss the Brides Even as other battles loom, the LGBT community stops to celebrate marriage equality at Pride 2013 On a warm spring evening, Carrie Hiers and Tonya Cook sit on...</Summary>
<Website>https://news.umbc.edu/dr-kate-drabinski-gender-and-womens-studies-headlines-baltimore-city-paper-queer-issue/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110128/guest@my.umbc.edu/f9e0176f95ea144a5f6fb8448f76e899/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</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, 13 Jun 2013 15:56:59 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="31293" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31293">
<Title>Bits Blog: Microsoft to Open Mini-Stores Inside Best Buy</Title>
<Body>
<![CDATA[
    <div class="html-content">The stores, at 1,500 to 2,200 square feet, will be the biggest stores-within-a-store at Best Buy, which has similar dedicated areas for Samsung and Apple products.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F13%2Fmicrosoft-to-open-mini-stores-inside-best-buy%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Microsoft+to+Open+Mini-Stores+Inside+Best+Buy" 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%2Fbits.blogs.nytimes.com%2F2013%2F06%2F13%2Fmicrosoft-to-open-mini-stores-inside-best-buy%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Microsoft+to+Open+Mini-Stores+Inside+Best+Buy" 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%2Fbits.blogs.nytimes.com%2F2013%2F06%2F13%2Fmicrosoft-to-open-mini-stores-inside-best-buy%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Microsoft+to+Open+Mini-Stores+Inside+Best+Buy" 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%2Fbits.blogs.nytimes.com%2F2013%2F06%2F13%2Fmicrosoft-to-open-mini-stores-inside-best-buy%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Microsoft+to+Open+Mini-Stores+Inside+Best+Buy" 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%2Fbits.blogs.nytimes.com%2F2013%2F06%2F13%2Fmicrosoft-to-open-mini-stores-inside-best-buy%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Microsoft+to+Open+Mini-Stores+Inside+Best+Buy" 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/165666055975/u/0/f/640387/c/34625/s/2d414361/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666055975/u/0/f/640387/c/34625/s/2d414361/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The stores, at 1,500 to 2,200 square feet, will be the biggest stores-within-a-store at Best Buy, which has similar dedicated areas for Samsung and Apple products.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/06/13/microsoft-to-open-mini-stores-inside-best-buy/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31293/guest@my.umbc.edu/805344bf484600c37f0cf70b2eddf0a0/api/pixel</TrackingUrl>
<Tag>best-buy-company-inc</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>microsoft-corporation</Tag>
<Tag>new</Tag>
<Tag>technology</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>Thu, 13 Jun 2013 15:27:13 -0400</PostedAt>
<EditAt>Fri, 14 Jun 2013 14:10:30 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="106978" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106978">
<Title>Finding a Way Home</Title>
<Body>
<![CDATA[
    <div class="html-content">UMBC alumna Mary Slicher founded one of Baltimore’s leading advocacy groups for the homeless forty years ago. Now her organization …</div>
]]>
</Body>
<Summary>UMBC alumna Mary Slicher founded one of Baltimore’s leading advocacy groups for the homeless forty years ago. Now her organization …</Summary>
<Website>https://magazine.umbc.edu/finding-a-way-home/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106978/guest@my.umbc.edu/f78cc36f96bac55701b78f4294ec7bc4/api/pixel</TrackingUrl>
<Tag>stories</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/8/xsmall.png?1783534523</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/8/original.png?1783534523</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/8/xxlarge.png?1783534523</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/images/avatars/group/8/xlarge.png?1783534523</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1783534523</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/images/avatars/group/8/medium.png?1783534523</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/8/small.png?1783534523</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/8/xsmall.png?1783534523</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/images/avatars/group/8/xxsmall.png?1783534523</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 13 Jun 2013 15:18:17 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="106979" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106979">
<Title>Curious About Us</Title>
<Body>
<![CDATA[
    <div class="html-content">UMBC professor of psychology Robert Provine’s “small science” makes big strides in explaining human behavior. By Chelsea Haddaway Twenty five …</div>
]]>
</Body>
<Summary>UMBC professor of psychology Robert Provine’s “small science” makes big strides in explaining human behavior. By Chelsea Haddaway Twenty five …</Summary>
<Website>https://magazine.umbc.edu/curious-about-us/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106979/guest@my.umbc.edu/67d352a63e642ca6632d0323d4c8adce/api/pixel</TrackingUrl>
<Tag>stories</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/8/xsmall.png?1783534523</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/8/original.png?1783534523</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/8/xxlarge.png?1783534523</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/images/avatars/group/8/xlarge.png?1783534523</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1783534523</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/images/avatars/group/8/medium.png?1783534523</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/8/small.png?1783534523</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/8/xsmall.png?1783534523</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/images/avatars/group/8/xxsmall.png?1783534523</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 13 Jun 2013 15:17:22 -0400</PostedAt>
</NewsItem>

</News>
