<?xml version="1.0"?>
<News hasArchived="true" page="8413" pageCount="10727" pageSize="10" timestamp="Sat, 18 Jul 2026 07:33:19 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8413">
<NewsItem contentIssues="true" id="34286" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34286">
<Title>Using GitHub Pages To Host Your Website</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>So you want to launch a simple website but don’t want to have to go through the dull process of setting up yet another hosting package. There is an easier solution. If you just want to launch a simple static website you can use GitHub Pages to host your site for free.</p>
    <p>Lets get started.</p>
    <hr>
    <p><strong>Note</strong>: This post assumes that you have a <a title="https://github.com" href="https://github.com" rel="nofollow external" class="bo">GitHub</a> account and some basic knowledge of the version control system <a title="http://git-scm.com/" href="http://git-scm.com/" rel="nofollow external" class="bo">Git</a>.</p>
    <hr>
    <h2>Create Your GitHub Repository</h2>
    <p>The files that make up your website will need to be stored within a GitHub repository. If you’re creating a website to promote one of your existing GitHub projects you can add the website files to a new branch, otherwise you can just setup a new repo for your site.</p>
    <hr>
    <p>Note: If you are not adding your website files to an existing repo make sure that you <a title="https://help.github.com/articles/create-a-repo" href="https://help.github.com/articles/create-a-repo" rel="nofollow external" class="bo">setup a new repo</a> before continuing.</p>
    <hr>
    <p>Now open up terminal (command prompt on Windows) and make sure that you have a copy of your GitHub repo on your computer. Once you got your local copy, move into the project folder using the <code>cd</code> command.</p>
    <pre>// Retrieve a copy of your GitHub repo.  &#x000A;    git clone <a href="https://github.com/">https://github.com/</a><strong>user</strong>/<strong>repository</strong>.git&#x000A;    // Move into that directory.&#x000A;    cd repository</pre>
    <hr>
    <p><strong>Note</strong>: Make sure that you change the clone URL to the URL of your GitHub repo. This can be found on the main project page.</p>
    <hr>
    <h2>Creating an Orphan Branch</h2>
    <p>Now you need to create a new <a title="http://www.git-tower.com/files/applicationHelp/pgs/Refs_Branches_DetachedOrphaned.html" href="http://www.git-tower.com/files/applicationHelp/pgs/Refs_Branches_DetachedOrphaned.html" rel="nofollow external" class="bo">orphan branch</a> within your repo that will hold all of your website files.</p>
    <p>This new branch should be called <code>gh-pages</code>.</p>
    <pre>git checkout --orphan gh-pages</pre>
    <p>If you already had files in the master branch of your GitHub repo you now need to delete these from the new <code>gh-pages</code> branch. To do this you can use the following command:</p>
    <pre>git rm -rf .</pre>
    <h2>Adding Your Website Files</h2>
    <p>Now that your repo has been properly setup it’s time to add all of the HTML, CSS and JavaScript files that make up your website. Once you have added these to your repo you need to commit the changes. To do this you can use the following command.</p>
    <pre>git commit -a -m "Adding pages"</pre>
    <hr>
    <p><strong>Note</strong>: The <code>-a</code> flag is shorthand for <code>git add .</code></p>
    <hr>
    <h2>Pushing Your Changes to GitHub</h2>
    <p>Okay so you’ve got all your files where they need to be. The only thing left to do now is to push the new <code>gh-pages</code> branch up to GitHub. You do this using the <code>git push</code> command.</p>
    <pre>git push origin gh-pages</pre>
    <p>That’s it! Your website should now be available at http://<strong>username</strong>.github.io/<strong>repository</strong>/.</p>
    <h2>Using a Custom Domain</h2>
    <p>The last thing I want to cover in this post is how you can use your own domain name with your new GitHub-hosted website.</p>
    <p>First you will need to create a new file in your GitHub repo called <code>CNAME</code> that contains the domain name (or subdomain) that you wish to use. This file should be placed in the <code>gh-pages</code> branch if you are using <em>project-pages</em> (as we have been in this post). If you are using <em>user-pages</em> the file should be placed in the <code>master</code> branch.</p>
    <p>Your <code>CNAME</code> file might look like the following:</p>
    <pre>teamtreehouse.com</pre>
    <p>Next you will need to update the DNS records for your domain name. This is usually done through a control panel provided by your domain registrar.</p>
    <p>If you want to use a root domain (such as <code>teamtreehouse.com</code>) for your website you will need to setup a new <strong>A record</strong> that points to the IP address <code>204.232.175.78</code>.</p>
    <p>If you are using a subdomain (such as <code>blog.teamtreehouse.com</code>) it’s best to create a new <strong>CNAME record</strong> that points to your GitHub user subdomain (<code>**username**.github.io</code>). This is so that the DNS will be automatically adjusted if the servers IP address changes on GitHub.</p>
    <hr>
    <p><strong>Note</strong>: For information about the difference between CNAME and A records check out <a title="http://www.youtube.com/watch?v=WqhgGpv4cKY" href="http://www.youtube.com/watch?v=WqhgGpv4cKY" rel="nofollow external" class="bo">this video</a>.</p>
    <hr>
    <p>It may take a little while for your DNS changes to take effect. This is usually no more than a few hours. Once the changes have gone through, you should be able to access your new website from your custom domain name.</p>
    <h2>Final Thoughts</h2>
    <p>In this post I’ve showed you how to host pages that you’ve created yourself but it’s worth noting that GitHub also has a tool for <a title="http://pages.github.com/" href="http://pages.github.com/" rel="nofollow external" class="bo">automatically generating pages</a> for your projects. You can launch this tool from the project settings page.</p>
    <p>GitHub pages does limit you to using static assets (HTML, CSS and JS) for your websites, but you could use something like <a title="http://jekyllrb.com/" href="http://jekyllrb.com/" rel="nofollow external" class="bo">Jekyll</a> to make it easier to generate these files.</p>
    <p>It’s not going to meet everyone’s needs but if you just want to launch a simple website, GitHub pages is a quick and easy way to get started.</p>
    <p>The post <a href="http://blog.teamtreehouse.com/using-github-pages-to-host-your-website" rel="nofollow external" class="bo">Using GitHub Pages To Host Your Website</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>So you want to launch a simple website but don’t want to have to go through the dull process of setting up yet another hosting package. There is an easier solution. If you just want to launch a...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/NlbDpQnkSMg/using-github-pages-to-host-your-website</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34286/guest@my.umbc.edu/92ea33e873c52b2d7f15d8218b701e71/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>github</Tag>
<Tag>github-pages</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>make-a-website</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Tag>web-hosting</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>Fri, 16 Aug 2013 09:30:20 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34325" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34325">
<Title>Struggling Division at Disney Pins High Hopes on a New Video Game</Title>
<Body>
<![CDATA[
    <div class="html-content">Disney’s Infinity video game, presented at a recent fan gathering, is viewed as a make-or-break effort to turn around the company’s gaming and Web division.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F17%2Fbusiness%2Fmedia%2Fdisneys-hopes-riding-on-new-video-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Struggling+Division+at+Disney+Pins+High+Hopes+on+a+New+Video+Game" 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.nytimes.com%2F2013%2F08%2F17%2Fbusiness%2Fmedia%2Fdisneys-hopes-riding-on-new-video-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Struggling+Division+at+Disney+Pins+High+Hopes+on+a+New+Video+Game" 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.nytimes.com%2F2013%2F08%2F17%2Fbusiness%2Fmedia%2Fdisneys-hopes-riding-on-new-video-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Struggling+Division+at+Disney+Pins+High+Hopes+on+a+New+Video+Game" 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.nytimes.com%2F2013%2F08%2F17%2Fbusiness%2Fmedia%2Fdisneys-hopes-riding-on-new-video-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Struggling+Division+at+Disney+Pins+High+Hopes+on+a+New+Video+Game" 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.nytimes.com%2F2013%2F08%2F17%2Fbusiness%2Fmedia%2Fdisneys-hopes-riding-on-new-video-game.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Struggling+Division+at+Disney+Pins+High+Hopes+on+a+New+Video+Game" 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>
    </div>
]]>
</Body>
<Summary>Disney’s Infinity video game, presented at a recent fan gathering, is viewed as a make-or-break effort to turn around the company’s gaming and Web division.      </Summary>
<Website>http://www.nytimes.com/2013/08/17/business/media/disneys-hopes-riding-on-new-video-game.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34325/guest@my.umbc.edu/dea7b00049408919cd86249b66b28edb/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>computer-and-video-games</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>infinity-video-game</Tag>
<Tag>new</Tag>
<Tag>pleasants-john</Tag>
<Tag>technology</Tag>
<Tag>walt-disney-company-dis-nyse</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>Fri, 16 Aug 2013 08:15:03 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34284" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34284">
<Title>Rick Forno discusses cybersecurity on WEAA&#8217;s &#8216;The Marc Steiner Show&#8217;</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img height="119" src="//www.csee.umbc.edu/wp-content/uploads/2013/08/marc-steiner.png" width="700" style="max-width: 100%; height: auto;"></p>
    <p>Dr. Richard Forno, Director of UMBC's <a href="http://www.umbc.edu/cyber/" rel="nofollow external" class="bo">Graduate Cybersecurity Program</a> and Assistant Director of the UMBC <a href="http://www.umbc.edu/cyber/" rel="nofollow external" class="bo">Center for Cybersecurity</a>, appeared on WEAA (88.9FM) Baltimore's 'The Marc Steiner Show' as part of a long-form panel <a href="http://www.steinershow.org/podcasts/science/hacking-implications-for-our-privacy-security/" rel="nofollow external" class="bo">discussion</a> on assorted cybersecurity issues.   He was joined by Edward Erickson of the Baltimore City Paper and Stephen Bono, CEO of Baltimore-based Independent Security Evaluators.</p>
    <p>The show, Hacking: Implications For Our Privacy and Security, was aired on August 15, 2013.</p>
    <blockquote><p>“We turn to the topic of hacking. At recent hacking conventions in Las Vegas, cybersecurity experts revealed how easy it is to hack everything from cars to pacemakers. General Keith B. Alexander, Director of the National Security Agency, spoke at one of the conferences about his organization’s use of technology to spy on people.”</p></blockquote>
    
    <p></p>
    </div>
]]>
</Body>
<Summary>Dr. Richard Forno, Director of UMBC's Graduate Cybersecurity Program and Assistant Director of the UMBC Center for Cybersecurity, appeared on WEAA (88.9FM) Baltimore's 'The Marc Steiner Show' as...</Summary>
<Website>http://www.csee.umbc.edu/2013/08/rick-forno-guest-on-weaas-mark-steiner-show/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34284/guest@my.umbc.edu/329b151928c3be2845e256df17d735e7/api/pixel</TrackingUrl>
<Tag>cybersecurity</Tag>
<Tag>news</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>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 16 Aug 2013 08:04:25 -0400</PostedAt>
<EditAt>Fri, 16 Aug 2013 08:04:25 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34292" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34292">
<Title>The top 25 responsive design tools</Title>
<Body>
<![CDATA[
    <div class="html-content">As responsive web design evolves, Brad Frost looks at some of the best tools, resources and thinking for crafting exceptional responsive experiences<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Ftop-25-responsive-design-tools&amp;t=The+top+25+responsive+design+tools" 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.netmagazine.com%2Ffeatures%2Ftop-25-responsive-design-tools&amp;t=The+top+25+responsive+design+tools" 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.netmagazine.com%2Ffeatures%2Ftop-25-responsive-design-tools&amp;t=The+top+25+responsive+design+tools" 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.netmagazine.com%2Ffeatures%2Ftop-25-responsive-design-tools&amp;t=The+top+25+responsive+design+tools" 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.netmagazine.com%2Ffeatures%2Ftop-25-responsive-design-tools&amp;t=The+top+25+responsive+design+tools" 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/173607895578/u/49/f/502346/c/32632/s/3008ded4/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607895578/u/49/f/502346/c/32632/s/3008ded4/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173607895578/u/49/f/502346/c/32632/s/3008ded4/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607895578/u/49/f/502346/c/32632/s/3008ded4/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173607895578/u/49/f/502346/c/32632/s/3008ded4/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607895578/u/49/f/502346/c/32632/s/3008ded4/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173607895578/u/49/f/502346/c/32632/s/3008ded4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607895578/u/49/f/502346/c/32632/s/3008ded4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>As responsive web design evolves, Brad Frost looks at some of the best tools, resources and thinking for crafting exceptional responsive experiences      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/6Hcba6Tmq3E/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34292/guest@my.umbc.edu/74d8e0079dfd4627a52214c7c40e4cbc/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</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>Fri, 16 Aug 2013 07:55:22 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34281" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34281">
<Title>Dissertation House + Postdoctoral &amp; Alumni Writing Suite at UMB, today!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://dissertationhouse.files.wordpress.com/2013/08/smc-center.jpg" rel="nofollow external" class="bo"><img alt="SMC Center" src="http://dissertationhouse.files.wordpress.com/2013/08/smc-center.jpg?w=150&amp;h=91" width="150" height="91" style="max-width: 100%; height: auto;"></a>Today, we celebrate part 1 of the <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">2013 PROMISE Summer Success Institute</a> with a Dissertation House, and a Postdoctoral &amp; Alumni Writing Suite at the SMC Center at UMB! Postdocs and alumni may join us virtually by posting your goals here. Dissertation House (DH) participants will be meeting with Dr. Wendy Carter-Veale. Those participating in the “in-person” DH and those who are participating virtually can post their goals here: <a href="http://dissertationhouse.wordpress.com/blog-online-challenge/summer-2013-challenge/" rel="nofollow external" class="bo">http://dissertationhouse.wordpress.com/blog-online-challenge/summer-2013-challenge/</a>.  Let’s make it a productive day!</p>
    <br>Filed under: <a href="http://dissertationhouse.wordpress.com/category/dissertation-house/" rel="nofollow external" class="bo">Dissertation House</a>   </div>
]]>
</Body>
<Summary>Today, we celebrate part 1 of the 2013 PROMISE Summer Success Institute with a Dissertation House, and a Postdoctoral &amp; Alumni Writing Suite at the SMC Center at UMB! Postdocs and alumni may...</Summary>
<Website>http://dissertationhouse.wordpress.com/2013/08/16/dissertation-house-postdoctoral-alumni-writing-suite-at-umb-today/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34281/guest@my.umbc.edu/7c23a309a172e0f786343edcbe82798f/api/pixel</TrackingUrl>
<Tag>dissertation-house</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Support for Graduate Students</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 16 Aug 2013 07:23:36 -0400</PostedAt>
<EditAt>Fri, 16 Aug 2013 07:23:36 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40483" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40483">
<Title>Dissertation House + Postdoctoral &amp; Alumni Writing Suite at UMB, today!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="https://dissertationhouse.files.wordpress.com/2013/08/smc-center.jpg" rel="nofollow external" class="bo"><img alt="SMC Center" src="https://dissertationhouse.files.wordpress.com/2013/08/smc-center.jpg?w=150&amp;h=91" width="150" height="91" style="max-width: 100%; height: auto;"></a>Today, we celebrate part 1 of the <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">2013 PROMISE Summer Success Institute</a> with a Dissertation House, and a Postdoctoral &amp; Alumni Writing Suite at the SMC Center at UMB! Postdocs and alumni may join us virtually by posting your goals here. Dissertation House (DH) participants will be meeting with Dr. Wendy Carter-Veale. Those participating in the “in-person” DH and those who are participating virtually can post their goals here: <a href="https://dissertationhouse.wordpress.com/blog-online-challenge/summer-2013-challenge/" rel="nofollow external" class="bo">https://dissertationhouse.wordpress.com/blog-online-challenge/summer-2013-challenge/</a>.  Let’s make it a productive day!</p>
    <br>Filed under: <a href="https://dissertationhouse.wordpress.com/category/dissertation-house/" rel="nofollow external" class="bo">Dissertation House</a>   </div>
]]>
</Body>
<Summary>Today, we celebrate part 1 of the 2013 PROMISE Summer Success Institute with a Dissertation House, and a Postdoctoral &amp; Alumni Writing Suite at the SMC Center at UMB! Postdocs and alumni may...</Summary>
<Website>https://dissertationhouse.wordpress.com/2013/08/16/dissertation-house-postdoctoral-alumni-writing-suite-at-umb-today/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40483/guest@my.umbc.edu/db0acf33e05f8003d591117a869281da/api/pixel</TrackingUrl>
<Tag>dissertation-house</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Support for Graduate Students</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 16 Aug 2013 07:23:36 -0400</PostedAt>
<EditAt>Fri, 16 Aug 2013 07:23:36 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34275" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34275">
<Title>Free Online Payment Icon Set (PSD and PNG)</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://sixrevisions.com/freebies/icons/free-online-payment-icon-set-psd-png/" rel="nofollow external" class="bo"><img src="http://cdn.sixrevisions.com/0369-01_free_online_payment_icons_thumbnail.jpg" width="550" height="200" alt="" style="max-width: 100%; height: auto;"></a></p>
    <p></p>
    <p>This free set of icons contains the logos of top online payment solutions and credit cards like PayPal, Google Wallet, Visa, and MasterCard. This icon set contains 12 icons and is perfect for use in e-commerce websites. We have also included the PSD file in case you want to make changes to the icons.</p>
    <p>This free icon set is brought to you by <a href="http://www.responsive-it.com/" rel="nofollow external" class="bo">Responsive</a>, a design and development studio in Bucharest,  Romania.</p>
    <h3>Preview</h3>
    <p><img src="http://cdn.sixrevisions.com/0369-02_free_online_payment_icons_preview.jpg" width="448" height="481" alt="Preview" style="max-width: 100%; height: auto;"></p>
    <p>Here is a list of the icons in this set:</p>
    <ul>
    <li>PayPal icon</li>
    <li>Visa icon</li>
    <li>MasterCard icon</li>
    <li>Skrill icon</li>
    <li>eBay icon</li>
    <li>Discover icon</li>
    <li>Maestro icon</li>
    <li>Solo icon</li>
    <li>Cirrus icon</li>
    <li>2Checkout icon</li>
    <li>Western Union icon</li>
    <li>Google Wallet icon</li>
    </ul>
    <h3>Download</h3>
    <ul>
    <li>
    <a href="http://cdn.sixrevisions.com/0369-03_free_online_payment_icons_Six_Revisions.zip" rel="nofollow external" class="bo">Free Online Payment Icons</a> (ZIP, 5.98 MB)</li>
    </ul>
    <h3>Related Content</h3>
    <ul>
    <li><a href="http://sixrevisions.com/tools/online-payment-systems/" rel="nofollow external" class="bo">10 Excellent Online Payment Systems</a></li>
    <li><a href="http://sixrevisions.com/project-management/tips-for-creating-an-excellent-e-commerce-website/" rel="nofollow external" class="bo">Tips for Creating an Excellent E-Commerce Website</a></li>
    <li><a href="http://sixrevisions.com/resources/free-icon-fonts/" rel="nofollow external" class="bo">Free Icon Fonts for Web User Interfaces</a></li>
    <li>
    <em>Related categories</em>: <a href="http://sixrevisions.com/category/freebies/" rel="nofollow external" class="bo">Freebies</a> and <a href="http://sixrevisions.com/category/resources/" rel="nofollow external" class="bo">Resources</a>
    </li>
    </ul>
    <h3>About the Author</h3>
    <p><img src="http://cdn.sixrevisions.com/authors/stefan_irava_small.jpg" alt="" width="80" height="80" style="max-width: 100%; height: auto;"><span><strong>Stefan Irava</strong> is the Lead Designer for <a href="http://www.responsive-it.com/" rel="nofollow external" class="bo">Responsive</a>, a Bucharest-based design and development studio. Stefan is also the Lead Designer for Revolge, an online drag-and-drop design tool for creating stunning WordPress themes. See more work from Stefan on <a href="http://www.dribbble.com/responsive" rel="nofollow external" class="bo">Dribbble</a> and find out more about Revolge <a href="http://www.revolge.com/" rel="nofollow external" class="bo">here</a>.</span></p>
    <p>The post <a href="http://sixrevisions.com/freebies/icons/free-online-payment-icon-set-psd-png/" rel="nofollow external" class="bo">Free Online Payment Icon Set (PSD and PNG)</a> appeared first on <a href="http://sixrevisions.com" rel="nofollow external" class="bo">Six Revisions</a>.</p>
    </div>
]]>
</Body>
<Summary>This free set of icons contains the logos of top online payment solutions and credit cards like PayPal, Google Wallet, Visa, and MasterCard. This icon set contains 12 icons and is perfect for use...</Summary>
<Website>http://feedproxy.google.com/~r/SixRevisions/~3/tcNIuqJ8EjU/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34275/guest@my.umbc.edu/1596a08943ee9e6c142d101b79417ad5/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>database</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>icons</Tag>
<Tag>javascript</Tag>
<Tag>mysql</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>Fri, 16 Aug 2013 06:00:26 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34278" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34278">
<Title>Pair designing: taking a cue from Agile development practices</Title>
<Body>
<![CDATA[
    <div class="html-content">Amy Marquez introduces pair designing to generate better ideas, improve user experience and streamline the designing process<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fpair-designing-taking-cue-agile-development-practices&amp;t=Pair+designing%3A+taking+a+cue+from+Agile+development+practices" 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.netmagazine.com%2Ffeatures%2Fpair-designing-taking-cue-agile-development-practices&amp;t=Pair+designing%3A+taking+a+cue+from+Agile+development+practices" 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.netmagazine.com%2Ffeatures%2Fpair-designing-taking-cue-agile-development-practices&amp;t=Pair+designing%3A+taking+a+cue+from+Agile+development+practices" 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.netmagazine.com%2Ffeatures%2Fpair-designing-taking-cue-agile-development-practices&amp;t=Pair+designing%3A+taking+a+cue+from+Agile+development+practices" 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.netmagazine.com%2Ffeatures%2Fpair-designing-taking-cue-agile-development-practices&amp;t=Pair+designing%3A+taking+a+cue+from+Agile+development+practices" 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/173607976731/u/49/f/502346/c/32632/s/3006aa36/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607976731/u/49/f/502346/c/32632/s/3006aa36/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173607976731/u/49/f/502346/c/32632/s/3006aa36/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607976731/u/49/f/502346/c/32632/s/3006aa36/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173607976731/u/49/f/502346/c/32632/s/3006aa36/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607976731/u/49/f/502346/c/32632/s/3006aa36/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173607976731/u/49/f/502346/c/32632/s/3006aa36/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607976731/u/49/f/502346/c/32632/s/3006aa36/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Amy Marquez introduces pair designing to generate better ideas, improve user experience and streamline the designing process      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/geNh97qXek8/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34278/guest@my.umbc.edu/af0acf5114bfb0a69028b57fb08d15ea/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</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>Fri, 16 Aug 2013 05:54:28 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34276" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34276">
<Title>Build better sites by telling stories</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/08/thumbnail19.jpg" width="200" height="160" style="max-width: 100%; height: auto;">I’m sure you’ve heard of personas and scenarios, but let’s start with a quick explanation of how they are useful in the design process:</p> <p>A persona is an elementary tool of usability and user experience design and describes a typical member of your target audience. Although a persona is a fictional representation of a user, it is based on real data; the persona should be as close to a real potential user as possible.</p> <p>A scenario is a ‘story’ based on the persona’s experience of, journey with, and actions taken while interacting with your app or site. It explains the process a user might follow, their capabilities, reasons, goals, and motivations in relation to the site. Scenarios explain everyday situations; how the app or site fits in the persona’s daily life, what got them to use it, how they use it, why they keep on using it, and so on.</p> <p>Together they describe the various contexts in which someone could be using your site. This, in turn, flushes out problems and opportunities that ought to be addressed.</p> <p> </p> <h1>What are they good for?</h1> <p>Both personas and scenarios are a way for designers and developers to keep in touch with their target audience, as they progress with a project. They keep us in check and make sure we are in fact creating for these users.</p> <p>For instance, if you are creating a color picking app you will want to make sure that your personas have a desire and a reason to use such an app. Therefore, you might create a persona who is a designer, or someone who is redecorating their living room. It has to make sense; it has to be in context. This way you can use personas and scenarios to identify what you could be doing better to anticipate how a designer would use a color picking app, such as to pair up colors rather than as a random color generator.</p> <p>As you can see, thinking this through allows you to focus on features and functions that your audience actually wants and cares about; it allows for the process to be built from the ground up, and the project will be much more efficient and effective if we focus on users from the very beginning of development to the end.</p> <p> </p> <h1>The benefits of personas and scenarios</h1> <p>Personas specifically allow us as designers to make predictions about how our users will respond to our design decisions, based on these mental models. They change the questions we are asking, from ‘what is the best solution for this problem’ to ‘what would be the best solution to suit Angie, the freelance designer’. These two simple and fundamental tools have a psychological effect, a reminder that the project is not at all about us but the people who will use it; and that, right there is the most powerful effect personas and scenarios can offer.</p> <p>In more specific terms, personas provide a personality for a user you are creating your site or app for. It’s a motivating aspect for sure. You have a persona that describes Samantha, an easy going, tree hugging graphic design student who has high technology proficiency but is indecisive – which is why this color picking app is perfect for her. Scenarios communicate character and values of the user as they journey through a specific goal. In a scenario you could go over over how a friend recommended her this app and how she goes to explore it for the first time, what she found useful or confusing.</p> <p>Additionally, having a face put to your target audience discourages big directional changes from stakeholders as they now have a particular person in mind, they now have a human connection attached to the project and can anticipate what dramatic effects these changes could have. This is all possible with a simple, fictional persona. It’s fascinating how much impact a simple doodle can have.</p> <p>In addition, this is an extremely inexpensive approach, compared with the costs, in terms of time as well as money, involved in talking to real users every time you have a decision to make.</p> <p>Storytelling in itself is a very powerful tool; it brings people together, it brings in entertainment and meaning. By using personas in scenarios you are allowing for a special bond between your team and your audience. It allows them to come alive when you cannot literally talk to them yourself. They help your team understand and figure out how your audience might tackle problems and issues which may arise. As a result, it helps you to think about solutions to problems from the perspective of the target audience.</p> <p>I’ve mentioned briefly how personas ground us as designers. We may get so caught up in the project and in our own opinions that we need to be reminded that this is not about us; it is about the users. Having a bunch of personas hung on the wall is a great way to never forget about your users. As we get deep into a project, we may be too invested in our work to think clearly and objectively; this, in turn, could really harm the end product. You do not want to risk designing something that your target audience doesn’t appreciate.</p> <p> </p> <h1>Creating great personas and scenarios</h1> <p>I think a valid question at this point would be what it takes to create great personas and scenarios. First and foremost, your personas have to be based on actual user research so that you are not wasting your time and resources creating personas with no relation to your intended audience. If you have your data figured out, you will create your personas accurately and provide them with personalities, skills and motivations that are just right for you – they will guide you well.</p> <p>The same goes for scenarios, if your personas foundation is solid, your scenarios will be too as you will be able to create accurate scenarios and therefore identify potential problems that these users might face. Additionally, another thing that makes for great personas and scenarios is regular application and reference within your project progression.</p> <p> </p> <h1>Conclusion</h1> <p>Personas and scenarios are a staple for user experience design. Not having them in your projects would significantly degrade its quality, as the whole purpose of user experience design is to ensure the best possible experience for the users. If you do not count them in while creating your product, the experience will not match your users’ expectations or capabilities and therefore suffer. On the other hand, using these tools has been proven to significantly improve a project in terms of user experience.</p> <p> </p> <p><em><strong>Do you use personas and scenarios to design sites? How do you make them realistic? Let us know in the comments.</strong></em></p> <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-95792635/stock-photo-composition-of-people-with-different-expressions.html" rel="nofollow external" class="bo">people image</a> via Shutterstock.</em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/crest-master-collection.html?ref=inwidget" rel="nofollow external" class="bo"><strong>80+ High-Quality Crest Vector Illustrations – 63% off!</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="Build better sites by telling stories" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/08/build-better-sites-by-telling-stories/" 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%2F2013%2F08%2Fbuild-better-sites-by-telling-stories%2F&amp;t=Build+better+sites+by+telling+stories" 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%2F2013%2F08%2Fbuild-better-sites-by-telling-stories%2F&amp;t=Build+better+sites+by+telling+stories" 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%2F2013%2F08%2Fbuild-better-sites-by-telling-stories%2F&amp;t=Build+better+sites+by+telling+stories" 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%2F2013%2F08%2Fbuild-better-sites-by-telling-stories%2F&amp;t=Build+better+sites+by+telling+stories" 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%2F2013%2F08%2Fbuild-better-sites-by-telling-stories%2F&amp;t=Build+better+sites+by+telling+stories" 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/173607884840/u/49/f/661066/c/35285/s/3005cf73/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173607884840/u/49/f/661066/c/35285/s/3005cf73/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>I’m sure you’ve heard of personas and scenarios, but let’s start with a quick explanation of how they are useful in the design process:   A persona is an elementary tool of usability and user...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/3005cf73/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A80Cbuild0Ebetter0Esites0Eby0Etelling0Estories0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34276/guest@my.umbc.edu/ec8ec5f2eb3f931ee71aa73a5800ff22/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>great-user-experience</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>personas</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>planning-sites</Tag>
<Tag>scenarios</Tag>
<Tag>sql</Tag>
<Tag>ui</Tag>
<Tag>usability</Tag>
<Tag>user-experience</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>Fri, 16 Aug 2013 05:15:01 -0400</PostedAt>
<EditAt>Fri, 16 Aug 2013 05:15:01 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34272" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34272">
<Title>Congratulations to PROMISE GA Miguel Nino!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong>PROMISE: Maryland’s AGEP salutes GA Miguel Nino!</strong> Miguel graduated from UMBC with a master’s degree in Instructional Systems Development, and will be leaving us to pursue his PhD in Instructional Design and Technology at Virginia Tech.  Over the last two years, Miguel has continued to develop expertise in intercultural communication. He has also developed new skills to address issues in STEM Education, online training, evaluation and assessment, and recruitment and retention models.</p>
    <p>Miguel is a multilingual professional who has recruited for PROMISE at the AGMUS Research Symposium in Puerto Rico, and the Society of Hispanic Professional Engineers (SHPE) in California.  He has streamlined evaluation and assessment for PROMISE and has contributed to the process improvement of the PROF-it, Professors-in-Training Program. Miguel developed the video resources for the PROMISE Success Seminars: <a href="http://www.youtube.com/user/PROMISEagep" rel="nofollow external" class="bo">http://www.youtube.com/user/PROMISEagep</a>.</p>
    <p><a href="http://promiseagep.files.wordpress.com/2013/08/miguel_composite.jpg" rel="nofollow external" class="bo"><img alt="Miguel_Composite" src="http://promiseagep.files.wordpress.com/2013/08/miguel_composite.jpg?w=630&amp;h=348" width="630" height="348" style="max-width: 100%; height: auto;"></a></p>
    <p>Miguel has been an excellent collaborator. He co-authored and co-presented a paper on “Preparation for STEM Graduate Programs” at the Latin and Caribbean Consortium of Engineering Institutions (LACCEI) in Panama, in July 2012.  The Spanish version of his 2012 LACCEI paper was utilized during the “How to Apply to Graduate School” workshop at the 2013 GEM conference in San Juan, Puerto Rico, and at the  ”Foro de Liderazgo Estudiantil en Ingenieria,” in Quintana Roo, México for LACCEI 2013. He also co-authored and co-presented a paper on “Peer Mentoring” at the 120th Annual Conference of the American Society of Engineering Education, in Atlanta, GA, June 2013.</p>
    <p><em><strong>Both papers can be found here:</strong></em></p>
    <p>Carter-Johnson, F. D., Ordóñez Rozo, P.,  Tull, R. G., and <strong>Nino, M.</strong>  (2013).<a href="http://promiseagep.files.wordpress.com/2013/07/asee-2013-final-paper-conference-proceedings.pdf" rel="nofollow external" class="bo"> Examining the Intersection of Graduate Student Funding, Mentoring,and Training as a Mechanism of Success for Peer Mentors and their Mentees</a>, paper ID#7626. <em>120th Annual Conference of the American Association of Engineering Education, </em>Atlanta: ASEE.</p>
    <p>Tull, R. G., <strong>Nino, M.</strong>  and Ramoutar, N. (2012).  <a href="http://promiseagep.files.wordpress.com/2012/09/rp293.pdf" rel="nofollow external" class="bo">Preparing for Engineering and Other STEM Graduate/Post-Graduate Masters and Doctoral Programs.</a>  <em>Proceedings of the Tenth LACCEI Latin American and Caribbean Conference (LACCEI 2012), Megaprojects: Building Infrastructure by fostering engineering collaboration, efficient and effective integration and innovative planning, July 23-27, 2012, Panama City, Panama.  </em>[Spanish Version of Section 4 here: <strong><a href="http://promiseagep.files.wordpress.com/2012/09/laccei-2012-sec4-espanol.pdf" rel="nofollow external" class="bo">Preparación para Programas de Maestría y Doctorado</a></strong>].</p>
    <p>Miguel has been a great asset to PROMISE! He made his mark during his first assignment at the 2011 PROMISE Summer Success Institute (SSI) working with other PROMISE staff members, Gloria Anglon (now at Harvard), Dr. Laura “Violeta” Colombo (now teaching in Argentina), and Natasha Ramoutar (fellow GA). He later became the “Senior” Program Assistant on the PROMISE Team, co-leading the 2012 SSI, and taking a leading role in the implementation of the <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">2013 PROMISE SSI: 10th Anniversary Celebration</a>.</p>
    <p><em><strong>We will miss Miguel tremendously and we wish him the best as he pursues his doctorate, and continues to develop his skills as a global, technical professional! </strong></em></p>
    <br>   </div>
]]>
</Body>
<Summary>PROMISE: Maryland’s AGEP salutes GA Miguel Nino! Miguel graduated from UMBC with a master’s degree in Instructional Systems Development, and will be leaving us to pursue his PhD in Instructional...</Summary>
<Website>http://promiseagep.wordpress.com/2013/08/16/congratulations-to-promise-ga-miguel-nino/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34272/guest@my.umbc.edu/e2bc1951b120143f5f1adf6d67842242/api/pixel</TrackingUrl>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>development</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>miguel-nino-promise-agep</Tag>
<Tag>miguel-nino-umbc</Tag>
<Tag>nsf</Tag>
<Tag>postdoc</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>promise-profiles</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Graduate Student Development</Sponsor>
<PawCount>5</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 16 Aug 2013 01:14:55 -0400</PostedAt>
<EditAt>Fri, 16 Aug 2013 01:14:55 -0400</EditAt>
</NewsItem>

</News>
