<?xml version="1.0"?>
<News hasArchived="true" page="8600" pageCount="10794" pageSize="10" timestamp="Mon, 07 Sep 2026 13:35:24 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8600&amp;range=2">
<NewsItem contentIssues="true" id="32506" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32506">
<Title>Getting Acquainted with WordPress Action Hooks</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Action hooks are one my favorite features WordPress has to offer. Today we’ll get acquainted with how to make use of the default hooks in in themes and plugins and even how to create our own.</p>
    <h2>
    <code>wp_head()</code> and <code>wp_footer()</code>
    </h2>
    <p>If you’ve done any custom WordPress theme development, odds are you’ve run across <code>wp_head()</code> and <code>wp_footer()</code> before. They’re the two most common and essential action hooks in the WordPress ecosystem. Since they’re primary used to insert code just above <code>&lt;/head&gt;</code> and <code>&lt;/body&gt;</code> respectively, most plugins that have anything to do with the front-end will usually break without them.</p>
    <p>Below, we’ll look at how to make use of them ourselves.</p>
    <h2>Hooking Into an Action Hook</h2>
    <p>Hooking into an action hook is easy. Let’s say we’re creating a plugin that allows users to upload a custom favicon from the admin panel. Obviously, that entire process is a bit outside the scope of this tutorial, but let’s focus on just the part that inserts the favicon code into the document <code>&lt;head&gt;</code>. First, we’ll create a function that echos out the favicon code.</p>
    <pre>function myplugin_favicon_head_code() {&#x000A;    	echo '&lt;link rel="icon" type="image/png" href="path/to/favicon/file"&gt;';&#x000A;    }</pre>
    <p>Next, we’ll hook into the <code>wp_head()</code> action hook.</p>
    <pre>add_action('wp_head', 'myplugin_favicon_head_code');</pre>
    <p>And there you have it! We’ve inserted code into our document <code>&lt;head&gt;</code> without ever touching our template files. As you can see, the first parameter is the action hook you’re hooking into and the second is the function you’re referencing.</p>
    <h2>Registering a Custom Action Hook</h2>
    <p><code>wp_head()</code>, <code>wp_footer</code> and the rest of the gang are nice and all, but what if we want to create our own hooks? Thankfully, WordPress makes this really easy with <code>do_action()</code>. Simply put it wherever you want your custom hook to display in your theme files.</p>
    <pre>&lt;?php do_action('my_custom_action_hook'); ?&gt;</pre>
    <p>This hook is now available to be used using <code>add_action()</code> just like the rest of the WordPress default action hooks.</p>
    <pre>add_action('my_custom_action_hook', 'my_really_cool_function');</pre>
    <h2>An Example Usecase</h2>
    <p>Let’s say I do a lot of WordPress client work and I’ve decided I want to create a simple, parent-theme framework to start my sites with. I can be fairly certain that a few things will be the same from site-to-site. Each page will have a header with a page navigation, a main content section and a footer.</p>
    <p>Here are my three major parent-theme files.</p>
    <h4>header.php</h4>
    <pre>&lt;!DOCTYPE html&gt;&#x000A;    &lt;html&gt;&#x000A;    &lt;head&gt;&#x000A;    	&lt;title&gt;&lt;?php wp_title(); ?&gt;&lt;/title&gt;&#x000A;    &lt;/head&gt;&#x000A;    &lt;body&gt;&#x000A;    	&lt;header&gt;&#x000A;    		&lt;h1&gt;&lt;a href="&lt;?php echo home_url(); ?&gt;"&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;&#x000A;    		&lt;nav&gt;&#x000A;    			&lt;?php wp_list_pages(); ?&gt;&#x000A;    		&lt;/nav&gt;&#x000A;    	&lt;/header&gt;</pre>
    <h4>index.php</h4>
    <pre>&lt;?php get_header(); ?&gt;&#x000A;    &lt;!-- The Loop goes here. --&gt;&#x000A;    &lt;?php get_footer(); ?&gt;</pre>
    <h4>footer.php</h4>
    <pre>	&lt;footer&gt;&amp;copy; &lt;?php echo date('Y'); ?&gt; &lt;?php bloginfo('name'); ?&gt;&lt;/footer&gt;&#x000A;    &lt;/body&gt;&#x000A;    &lt;/html&gt;</pre>
    <p>I won’t cover creating Child Themes here as it’s been <a href="http://codex.wordpress.org/Child_Themes" title="http://codex.wordpress.org/Child_Themes" rel="nofollow external" class="bo">well-documented</a> in the WordPress Codex. If you aren’t familiar with the process or haven’t done it in a while, I’d highly recommend you head over and read up on it. It’ll take five minutes flat. Don’t worry, I’ll wait. <img src="http://blog.teamtreehouse.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" style="max-width: 100%; height: auto;"> </p>
    <p>We’ve got a solid base here, but what if we need additional markup in the end project? Perhaps our designer has included a small section in the design below the footer with contact info. How are we going to do that?</p>
    <p>Typically would create a second <code>footer.php</code> in the child theme, overriding our parent theme’s <code>footer.php</code> and thus giving us the ability to add our additional markup. But not today. Instead, we’ll create a custom action hook in the parent theme and hook into it in the child theme.</p>
    <p>Let’s take this one step at a time.</p>
    <p>I’ll add two action hooks to the parent theme <code>footer.php</code> <s>-</s> one for above the <code>&lt;footer&gt;</code> and one for below it:</p>
    <pre>		&lt;?php do_action('parenttheme_above_footer'); ?&gt;&#x000A;    		&lt;footer&gt;&amp;copy; &lt;?php echo date('Y'); ?&gt; &lt;?php bloginfo('name'); ?&gt;&lt;/footer&gt;&#x000A;    		&lt;?php do_action('parenttheme_below_footer'); ?&gt;&#x000A;    &lt;/body&gt;&#x000A;    &lt;/html&gt;</pre>
    <p>Now, in our child theme’s <code>functions.php</code> file, we’ll add something similar to this:</p>
    <pre>function childtheme_contact_info() {&#x000A;    	echo 'You can contact us via email at &lt;a href="mailto:<a href="mailto:us@example.com">us@example.com</a>"&gt;<a href="mailto:us@example.com">us@example.com</a>&lt;/a&gt;';&#x000A;    }</pre>
    <pre>add_action('parenttheme_below_footer', 'childtheme_contact_info');</pre>
    <p>Voilà! Now, without having to touch a line of code in our parent theme or override the entire parent theme <code>footer.php</code> in our child theme, we’ve added additional markup to our page.</p>
    <h2>Going Further</h2>
    <p>We’ve just scratched the surface of the power of action hooks. For additional reading, I’d highly recommend the following resources.</p>
    <ul>
    <li>
    <a href="http://adambrown.info/p/wp_hooks" title="http://adambrown.info/p/wp_hooks" rel="nofollow external" class="bo">The Complete List of WordPress Action Hooks</a> by <a href="Adam%20Brown" title="Adam Brown" rel="nofollow external" class="bo">Adam Brown</a>
    </li>
    <li>
    <a href="http://digwp.com/2009/09/wordpress-action-hooks/" title="http://digwp.com/2009/09/wordpress-action-hooks/" rel="nofollow external" class="bo">Precision Targeting with Custom Action Hooks</a> by <a href="http://digwp.com/jeff-starr/" title="http://digwp.com/jeff-starr/" rel="nofollow external" class="bo">Jeff Star</a>
    </li>
    <li>
    <a href="http://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/" title="http://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/" rel="nofollow external" class="bo">Using Action Hooks in WordPress Child Themes</a> by <a href="http://iandanielstewart.com/" title="http://iandanielstewart.com/" rel="nofollow external" class="bo">Ian Stewart</a>
    </li>
    <li>
    <a href="http://www.sitepoint.com/customizing-wordpress-themes-with-action-hooks/" title="http://www.sitepoint.com/customizing-wordpress-themes-with-action-hooks/" rel="nofollow external" class="bo">Customizing WordPress Themes with Action Hooks</a> by <a href="http://www.innovativephp.com/" title="http://www.innovativephp.com/" rel="nofollow external" class="bo">Rakhitha Nimesh</a>
    </li>
    </ul>
    <p>The post <a href="http://blog.teamtreehouse.com/getting-aquainted-with-wordpress-action-hooks" rel="nofollow external" class="bo">Getting Acquainted with WordPress Action Hooks</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>Action hooks are one my favorite features WordPress has to offer. Today we’ll get acquainted with how to make use of the default hooks in in themes and plugins and even how to create our own....</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/ySCydbjV9QI/getting-aquainted-with-wordpress-action-hooks</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32506/guest@my.umbc.edu/015933fa71419c0c02784810297a68a1/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>learn-to-code</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Tag>wordpress</Tag>
<Tag>wordpress-hooks</Tag>
<Tag>wordpress-tutorials</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, 11 Jul 2013 09:58:57 -0400</PostedAt>
<EditAt>Thu, 11 Jul 2013 09:58:57 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32502" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32502">
<Title>Attend the Grace Hopper Celebration of Women in Computing</Title>
<Tagline>Registration is now open!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Registration is currently open for the Grace Hopper 
    Celebration of Women in Computing (GHC), which is the largest conference
     for technical women in the world!  Keep reading for info about possible
     help with funding your trip. <br>
    <br>The conference will be held October 2-5, 2013, in Minneapolis,
     MN.  Students who attended this conference last year in Baltimore had 
    great things to say:<br><br><p>"Grace Hopper was a totally <strong>exceptional experience</strong>.  I had the opportunity for three on-site interviews, which offered great <strong>practice with technical interviews</strong>." -- Emily Scheerer, Computer Science</p>
    
    
    
    <p>"It was great meeting a bunch of new people from all around the country at the conference as well as <strong>networking with many of the biggest names in technology</strong>,
     like Facebook, Twitter, Apple, and Microsoft.  I know getting to meet 
    these recruiters in person was a huge opportunity and I am <strong>very optimistic in my chances of getting an internship</strong> on the west coast, which is one of my dreams." -- Alec Pulianas, Computer Engineering</p>Registration costs $290 until 7/26, then goes up to $310 from 7/27 until the deadline of 9/25.<br>
    <br>The Center for Women in Technology (CWIT) is looking for ways 
    to help fund students' expenses to attend this conference.  If you are 
    interested in attending and would like to be considered for funding, 
    please contact Cindy Greenwood in CWIT at <a href="mailto:cindyg@umbc.edu">cindyg@umbc.edu</a> and you will receive more 
    information as it becomes available.  We cannot guarantee that any funds
     will be available, but we will do our best to help students attend.<br>
    <br>To learn more about the GHC, check out their website:  <a href="http://gracehopper.org/2013/" rel="nofollow external" class="bo">http://gracehopper.org/2013/</a>.</div>
]]>
</Body>
<Summary>Registration is currently open for the Grace Hopper  Celebration of Women in Computing (GHC), which is the largest conference  for technical women in the world!  Keep reading for info about...</Summary>
<Website>http://gracehopper.org/2013/.</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32502/guest@my.umbc.edu/23a766a57dd0077ad25dccc394c1f14b/api/pixel</TrackingUrl>
<Group token="cwitaffiliates">CWIT Affiliates</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/cwitaffiliates</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/xsmall.png?1724681280</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/original.png?1724681280</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/xxlarge.png?1724681280</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/xlarge.png?1724681280</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/large.png?1724681280</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/medium.png?1724681280</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/small.png?1724681280</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/xsmall.png?1724681280</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/215/ed0dde28b964e06263b6aa35dc2ee277/xxsmall.png?1724681280</AvatarUrl>
<Sponsor>CWIT Affiliates</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/032/502/8cc73dd2a42ac2d64984ddb3c72f633b/xxlarge.jpg?1373550480</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/032/502/8cc73dd2a42ac2d64984ddb3c72f633b/xlarge.jpg?1373550480</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/032/502/8cc73dd2a42ac2d64984ddb3c72f633b/large.jpg?1373550480</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/032/502/8cc73dd2a42ac2d64984ddb3c72f633b/medium.jpg?1373550480</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/032/502/8cc73dd2a42ac2d64984ddb3c72f633b/small.jpg?1373550480</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/032/502/8cc73dd2a42ac2d64984ddb3c72f633b/xsmall.jpg?1373550480</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/032/502/8cc73dd2a42ac2d64984ddb3c72f633b/xxsmall.jpg?1373550480</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 11 Jul 2013 09:50:31 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="32510" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32510">
<Title>Easier Aspect Ratio Elements</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Nice writeup by Marc Hinse. It's similar to <a href="http://daverupert.com/2012/04/uncle-daves-ol-padded-box/" rel="nofollow external" class="bo">Uncle Dave's Ol' Padded Box</a>, except the percentage padding-bottom is moved to a pseudo element where it doesn't need to be adjusted when the width value changes.</p>
    <p><a href="http://www.mademyday.de/css-height-equals-width-with-pure-css.html" title="Direct link to featured article" rel="nofollow external" class="bo">Direct Link to Article</a> — <a href="http://css-tricks.com/easier-aspect-ratio-elements/" rel="nofollow external" class="bo">Permalink</a></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/easier-aspect-ratio-elements/" rel="nofollow external" class="bo">Easier Aspect Ratio Elements</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Nice writeup by Marc Hinse. It's similar to Uncle Dave's Ol' Padded Box, except the percentage padding-bottom is moved to a pseudo element where it doesn't need to be adjusted when the width value...</Summary>
<Website>http://www.mademyday.de/css-height-equals-width-with-pure-css.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32510/guest@my.umbc.edu/7a73790d922620be499bbbf613de49da/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>link</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 11 Jul 2013 09:50:25 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32548" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32548">
<Title>Corner Office: So Who Says a New Business Has to Be Small?</Title>
<Body>
<![CDATA[
    <div class="html-content">The chief executive of Flipboard, the news and social media app, says entrepreneurs don’t have to focus on tiny, niche companies.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F12%2Fbusiness%2Fmike-mccue-on-broadening-your-start-up-idea.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Corner+Office%3A+So+Who+Says+a+New+Business+Has+to+Be+Small%3F" 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%2F07%2F12%2Fbusiness%2Fmike-mccue-on-broadening-your-start-up-idea.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Corner+Office%3A+So+Who+Says+a+New+Business+Has+to+Be+Small%3F" 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%2F07%2F12%2Fbusiness%2Fmike-mccue-on-broadening-your-start-up-idea.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Corner+Office%3A+So+Who+Says+a+New+Business+Has+to+Be+Small%3F" 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%2F07%2F12%2Fbusiness%2Fmike-mccue-on-broadening-your-start-up-idea.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Corner+Office%3A+So+Who+Says+a+New+Business+Has+to+Be+Small%3F" 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%2F07%2F12%2Fbusiness%2Fmike-mccue-on-broadening-your-start-up-idea.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Corner+Office%3A+So+Who+Says+a+New+Business+Has+to+Be+Small%3F" 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>The chief executive of Flipboard, the news and social media app, says entrepreneurs don’t have to focus on tiny, niche companies.     </Summary>
<Website>http://www.nytimes.com/2013/07/12/business/mike-mccue-on-broadening-your-start-up-idea.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32548/guest@my.umbc.edu/0afeeb773a4f0c77edda7ad77f0fbacc/api/pixel</TrackingUrl>
<Tag>entrepreneurship</Tag>
<Tag>executives-and-management-theory</Tag>
<Tag>flipboard-inc</Tag>
<Tag>hiring-and-promotion</Tag>
<Tag>international-business-machines-corporation-ibm-nyse</Tag>
<Tag>linkedin-corporation-lnkd-nyse</Tag>
<Tag>mccue-mike</Tag>
<Tag>microsoft-corporation-msft-nasdaq</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, 11 Jul 2013 09:46:21 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32516" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32516">
<Title>Responsive design: we are not there yet</Title>
<Body>
<![CDATA[
    <div class="html-content">There's still some way to go before designing responsively becomes a smooth process, warns Anselm Hannemann<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fresponsive-design-we-are-not-there-yet&amp;t=Responsive+design%3A+we+are+not+there+yet" 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%2Fresponsive-design-we-are-not-there-yet&amp;t=Responsive+design%3A+we+are+not+there+yet" 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%2Fresponsive-design-we-are-not-there-yet&amp;t=Responsive+design%3A+we+are+not+there+yet" 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%2Fresponsive-design-we-are-not-there-yet&amp;t=Responsive+design%3A+we+are+not+there+yet" 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%2Fresponsive-design-we-are-not-there-yet&amp;t=Responsive+design%3A+we+are+not+there+yet" 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/165666493767/u/49/f/502346/c/32632/s/2e86b489/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666493767/u/49/f/502346/c/32632/s/2e86b489/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>There's still some way to go before designing responsively becomes a smooth process, warns Anselm Hannemann     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/tzQW-Q-b1-4/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32516/guest@my.umbc.edu/ebfee55d7fab2d9c4116dcc0a95ad9f2/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>Thu, 11 Jul 2013 09:43:06 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32501" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32501">
<Title>Gadgetwise: Sharing Files With Dropbox</Title>
<Body>
<![CDATA[
    <div class="html-content">Online file storage services like Dropbox let you share files with people who do not have an account with the company.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-sharing-files-with-dropbox%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Sharing+Files+With+Dropbox" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-sharing-files-with-dropbox%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Sharing+Files+With+Dropbox" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-sharing-files-with-dropbox%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Sharing+Files+With+Dropbox" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-sharing-files-with-dropbox%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Sharing+Files+With+Dropbox" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-sharing-files-with-dropbox%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Sharing+Files+With+Dropbox" 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/165666084345/u/0/f/640387/c/34625/s/2e85929c/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666084345/u/0/f/640387/c/34625/s/2e85929c/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Online file storage services like Dropbox let you share files with people who do not have an account with the company.     </Summary>
<Website>http://gadgetwise.blogs.nytimes.com/2013/07/11/qa-sharing-files-with-dropbox/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32501/guest@my.umbc.edu/a4cd820661e0f14ef248fdd85c7353a2/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>data-storage</Tag>
<Tag>dropbox-inc</Tag>
<Tag>microsoft-corporation</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>new</Tag>
<Tag>q-and-a</Tag>
<Tag>software</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, 11 Jul 2013 09:19:54 -0400</PostedAt>
<EditAt>Thu, 11 Jul 2013 09:19:54 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32500" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32500">
<Title>Microsoft Overhauls, the Apple Way</Title>
<Body>
<![CDATA[
    <div class="html-content">The giant software company is creating four new divisions and reassigning nearly every senior executive as it tries to create timely products that consumers want.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F12%2Ftechnology%2Fmicrosoft-revamps-structure-and-management.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Microsoft+Overhauls%2C+the+Apple+Way" 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%2F07%2F12%2Ftechnology%2Fmicrosoft-revamps-structure-and-management.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Microsoft+Overhauls%2C+the+Apple+Way" 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%2F07%2F12%2Ftechnology%2Fmicrosoft-revamps-structure-and-management.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Microsoft+Overhauls%2C+the+Apple+Way" 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%2F07%2F12%2Ftechnology%2Fmicrosoft-revamps-structure-and-management.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Microsoft+Overhauls%2C+the+Apple+Way" 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%2F07%2F12%2Ftechnology%2Fmicrosoft-revamps-structure-and-management.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Microsoft+Overhauls%2C+the+Apple+Way" 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/165667040491/u/0/f/640387/c/34625/s/2e857ab5/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165667040491/u/0/f/640387/c/34625/s/2e857ab5/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The giant software company is creating four new divisions and reassigning nearly every senior executive as it tries to create timely products that consumers want.     </Summary>
<Website>http://www.nytimes.com/2013/07/12/technology/microsoft-revamps-structure-and-management.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32500/guest@my.umbc.edu/53dcb7ba172b8fd4e538cbbda4c79d20/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>executives-and-management-theory</Tag>
<Tag>microsoft-corporation-msft-nasdaq</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, 11 Jul 2013 09:00:23 -0400</PostedAt>
<EditAt>Thu, 11 Jul 2013 20:47:19 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32497" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32497">
<Title>Gadgetwise: Revealing Your Location (or Not) to Mobile Apps</Title>
<Body>
<![CDATA[
    <div class="html-content">Mobile apps may have useful reasons for requesting your location information, while others just want to show you local advertising.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-revealing-your-location-or-not-to-mobile-apps%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Revealing+Your+Location+%28or+Not%29+to+Mobile+Apps" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-revealing-your-location-or-not-to-mobile-apps%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Revealing+Your+Location+%28or+Not%29+to+Mobile+Apps" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-revealing-your-location-or-not-to-mobile-apps%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Revealing+Your+Location+%28or+Not%29+to+Mobile+Apps" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-revealing-your-location-or-not-to-mobile-apps%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Revealing+Your+Location+%28or+Not%29+to+Mobile+Apps" 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%2Fgadgetwise.blogs.nytimes.com%2F2013%2F07%2F11%2Fqa-revealing-your-location-or-not-to-mobile-apps%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Revealing+Your+Location+%28or+Not%29+to+Mobile+Apps" 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/165666484237/u/0/f/640387/c/34625/s/2e838bcc/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666484237/u/0/f/640387/c/34625/s/2e838bcc/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Mobile apps may have useful reasons for requesting your location information, while others just want to show you local advertising.     </Summary>
<Website>http://gadgetwise.blogs.nytimes.com/2013/07/11/qa-revealing-your-location-or-not-to-mobile-apps/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32497/guest@my.umbc.edu/54ce3bd86f84d619e907b28c52d1992f/api/pixel</TrackingUrl>
<Tag>android-operating-system</Tag>
<Tag>iphone</Tag>
<Tag>mobile-applications</Tag>
<Tag>new</Tag>
<Tag>privacy</Tag>
<Tag>q-and-a</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, 11 Jul 2013 06:18:41 -0400</PostedAt>
<EditAt>Thu, 11 Jul 2013 06:18:41 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32495" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32495">
<Title>Creative And Innovative Navigation Designs</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>A website has a personality — it is a reflection of the person or organization behind it. When people visit your website, you want it to stand out from the crowd, to be memorable. You want people to come back and use your website or get in touch with you.</p>
    <p>So, to distinguish itself from the unwashed masses, your website not only needs remarkable content, but also has to be innovative yet functional. Ask yourself, what would make life easier for your user? Simple search functionality may be needed, or perhaps the navigation menu could use some sprucing up. Nevertheless, the personality of the website needs to be consistent throughout. The following websites will whet your appetite for extreme creativity. Browse through and explore them for yourself.</p>
    <h3>Creative Navigation Designs</h3>
    <p><a href="http://www.toybox.co.nz" rel="nofollow external" class="bo">Toybox</a><br>
    Navigation should always be there when needed, and graciously disappear when the user wants to focus on a particular task. For example, in designing the checkout for an online store, the navigation should always be accessible but also give enough prominence to criticial features of the website, such as the checkout form. The navigation for Toybox does just that.</p>
    <p><a href="http://www.toybox.co.nz/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Toybox1_mini.png" alt="Toybox" width="600" height="333" style="max-width: 100%; height: auto;"></a></p>
    <p>It feels like you’re peeking behind the page or the lid of a toybox to see what’s inside. The navigation is easy to use, and the swivel effect directs the user’s attention to the navigation bar when they’re using it. Hiding the navigation also allows for a simple, clean design that makes viewing the projects quite pleasant, because the projects are not competing for attention.</p>
    <p>Information you might want to know, such as what Toybox does and where it is located, can still be found in a discreet navigation bar at the top. The hover effect is also fun, as the other images get pushed back and fade as the user focuses on one project.</p>
    <p><a href="http://olivierbossel.com/" rel="nofollow external" class="bo">Olivier Bossel</a><br>
    The portfolio of Olivier Bossel, an interactive designer, is interesting. The navigation elements create an effect of exploding pixels as you hover over them. The effect is quite dynamic and contrasts with the otherwise clean design. It works nicely as a visual element because it encourages the user to continue through the website. The consistent visual voice and tone complement the brand’s identity. Just by viewing the website, the user experiences the designer’s work.</p>
    <p><a href="http://olivierbossel.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Olivier-Bossel-1_mini.png" alt="Olivier Bossel" width="600" height="300" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.tsto.org/work/shapeshift/" rel="nofollow external" class="bo">Tsto</a><br>
    Tsto, a design agency, has a simple yet unorthodox approach to design; its navigation is different from what we’d expect. A navigation element is fixed in each corner of the screen, framing the work being showcased. The visual identity is created with heavy hot-pink letters, along with the descriptive information. The hierarchy is clear, however, with the “Work” tab in the top-left corner, and the “Contact” and “About” tabs at the bottom of the page. In keeping with the style, the title of the work being showcased is in the same heavy pink font.</p>
    <p><a href="http://www.tsto.org/#shapeshift" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Tsto1_mini.png" alt="Tsto" width="600" height="331" style="max-width: 100%; height: auto;"></a></p>
    <p>When clicking through the work, which presents like a slideshow, a preview of the next project is shown when you hover over the arrow. The images are large and take up most of the page. As the user clicks through and views the large images, they get a clear idea of Tsto’s identity and work.</p>
    <p><a href="http://derekboateng.com/" rel="nofollow external" class="bo">Derek Boateng</a><br>
    Derek Boateng’s portfolio welcomes the user with a polite “Hi” upon loading, and an arrow directs you to scroll down. The general design is understated; it doesn’t shout at you, but rather gently guides you through the work. As you scroll down from the loading page, the header and navigation shrink back, allowing more space for the portfolio. This is a good example of navigation that is always accessible yet gives center stage to the main content.</p>
    <p><a href="http://derekboateng.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Derek-Boateng_mini.png" alt="Derek Boateng" width="600" height="403" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.secondstory.com/" rel="nofollow external" class="bo">Second Story</a><br>
    Ah, good ol’ horizontal scrolling! Second Story’s website works like a magazine app on a tablet. It is innovative in that it doesn’t have the feel of a typical Web page and it scrolls horizontally. The content is laid out in columns, and each section scrolls vertically. The navigation is anchored to the left, which helps to establish the rhythm. As you view this portfolio, the navigation minimizes to a bar on the left and reappears when hovered over. You can choose to view the portfolio in thumbnail view or as a slideshow.</p>
    <p><a href="http://www.secondstory.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Second-Story_mini.png" alt="Second Story Interactive Studios" width="600" height="266" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://mostlyserious.io/" rel="nofollow external" class="bo">Mostly Serious</a><br>
    As its name suggests, Mostly Serious has an element of playfulness to it. You are greeted by navigation that is designed as balloons floating around. The friendly animation creates movement on the otherwise static website and sets the tone for the brand. While you can come back to the home page at any stage, a subtle navigation bar appears at the bottom of the page. The website is functional, with a splash of the studio’s fun personality. Actually, it reminds me of funky Flash animations from the good old days (<a href="http://www.eye4u.com/home/" rel="nofollow external" class="bo">EYE4U</a>, anyone?), but because the website is supposed to be a little playful, it works well in this context.</p>
    <p><a href="http://mostlyserious.io/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Mostly-Serious_mini.png" alt="Mostly Serious" width="600" height="571" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://minimalmonkey.com/" rel="nofollow external" class="bo">Minimal Monkey</a><br>
    Scrolling through articles in this bold simple design reminds me of browsing a bookshelf. The hover effect singles out an article for the user to focus on. This website also has a clever design for the “About” and “Contact” sections: When you click on a tab, the page drops down to reveal the information. It’s a simple way to provide information without redirecting to another page.</p>
    <p><a href="http://minimalmonkey.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Minimal-Monkey_mini.png" alt="Minimal Monkey" width="600" height="249" style="max-width: 100%; height: auto;"></a></p>
    <p>However, viewing old articles is not so easy because there is no search functionality. If the user is looking for a particular article, they would have to scroll through to find it. Search functionality would be useful without changing the overall design too much.</p>
    <p><a href="https://layervault.com/" rel="nofollow external" class="bo">LayerVault</a><br>
    It’s amazing what effect a simple, clean layout with playful colors and fun animations can have. LayerVault balances white space and subtle animation to intrigue and engage the user. Animation can be used to illustrate a point, to guide the user through a website, or even to illustrate how-tos. Animation doesn’t always do the trick, but LayerVault applies it sparingly, and only when the user is browsing a particular section of the page. The result? A well laid out page with engaging and attractive illustrations.</p>
    <p><a href="https://layervault.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/LayerVault_mini.png" alt="LayerVault" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://escapeflight.com/" rel="nofollow external" class="bo">Escape Flight</a><br>
    Escape Flight is cleverly designed, and the logo animation as a page is loading is novel and funky. The navigation is fixed at the top and looks like a departures and arrivals board, as though you’re at the airport already! The drop-down menus look like a travel checklist, which works well with the theme. When you click on a location and scroll down, all of the important information remains fixed at the top, making access to the content much easier and more comfortable for the intrepid traveler.</p>
    <p><a href="http://escapeflight.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Escapeflight_mini.png" alt="Escape Fligh" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p>Making use of stunning photography, Escape Flight maximizes its space. It’s exactly what you want from a travel website. It gives you a little taste of the adventure that awaits, beautifully showcasing the amazing destinations. When you hover over a destination, you find exactly what you need to know: ticket prices, weather conditions, flight time and travel length. What more could you ask for?</p>
    <p><a href="http://www.asciiarena.com/" rel="nofollow external" class="bo">aSCIIaRENa</a><br>
    Calling all ASCII enthusiasts! aSCIIaRENa reeks of the ’90s. People can register and post news on the wall, submit their own text art, and get featured on the wall of fame.</p>
    <p><a href="http://www.asciiarena.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Asciiarena_mini.png" alt="Asciiarena" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.thesartorialist.com/category/men/" rel="nofollow external" class="bo">The Sartorialst</a><br>
    Photographs are the focus on this website, and the design supports that with no muss or fuss. More importantly, the website uses the hover effect quite elegantly; captions slide in from the side and slide out again, following the cursor.</p>
    <p><a href="http://www.thesartorialist.com/category/men/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/The-Satorialist_mini.png" alt="The Satorialst" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://silktricky.com/#/home" rel="nofollow external" class="bo">SilkTricky</a><br>
    The people behind SilkTricky are out to break the status quo, and their website doesn’t let down. Mousing over the images creates an interesting effect. The movement on the page creates a sense of activity that intrigues the user. On this single-page website, the user doesn’t have to click from page to page to navigate. Just click “View,” and the chosen article folds out as the other articles shift off. This would be a nice way to showcase a photography portfolio, too.</p>
    <p><a href="http://silktricky.com/#/home" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Silk-Tricky_mini.png" alt="SilkTricky" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="https://sumall.com/" rel="nofollow external" class="bo">SumAll</a><br>
    SumAll’s layout is clean, with no unnecessary extras that would distract the user. Hovering reveals more information in a simple understated manner, and the transitions are an extension of the hover effect. When you click on a button, succinct information and options appear below. I quite like that you aren’t redirected to another page when you click an option; rather, the information tidily appears below the button. A drawback: the navigation isn’t responsive, looking broken and inaccessible on smaller views.</p>
    <p><a href="https://sumall.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/SumAll_mini.png" alt="SumAll" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="https://www.potluck.it/" rel="nofollow external" class="bo">Potluck</a><br>
    Sorry for being so enthusiastic about this one, but Potluck exhibits a fantastic user experience. The generous white space helps the user access what they need, when they need it. The forms and buttons have a fresh and open aesthetic that makes them easy to spot and use. Both the text and beautiful graphics are laid out in a way that guides the user through the website. The buttons and icons work well together, and all buttons and input areas feel consistent and engaging. This is a great example of how a bit of well-chosen typography and a subtle, clean user interface go a long way to engaging and delighting users.</p>
    <p><a href="https://www.potluck.it/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Potluck_mini.png" alt="Potluck" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="https://lowdi.com/" rel="nofollow external" class="bo">Lowdi</a><br>
    The single-page responsive layout works quite beautifully. Lowdi uses lines and shapes to set off sections of the page, a great way to break away from the conventional boxy layout. I love how the “Order now” button is incorporated in the design with line and shape. These elements adjust to your screen effectively, and the design maintains a flow throughout, which makes for easy viewing.</p>
    <p><a href="https://lowdi.com/?z=UK" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Lowdi_mini.png" alt="Lowdi" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://barcampomaha.org/" rel="nofollow external" class="bo">Barcamp Omaha</a><br>
    Barcamp Omaha is an online invitation to an event. The single-page tool effectively guides the user through the narrative with a consistent visual theme. All of the essential what, where and when information is at the top of the page, but the design urges the user to scroll down to see what else they can find. I really like the clever integration of the Twitter and Facebook icons.</p>
    <p><a href="http://barcampomaha.org/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Barcamp-Omaha_mini.png" alt="Barcamp Omaha" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p>As the user scrolls down, more information is provided systematically, and the layout remains tidy and succinct, with bold headings. The categories of conference talks are illustrated with simple animation to keep the user engaged. Once you’ve scrolled down the building and reached the ground, contact information is waiting for you, easily accessible.</p>
    <p><a href="http://combadi.com/" rel="nofollow external" class="bo">Combadi</a><br>
    This website feels tranquil as soon as it loads, a result of the careful design. While it does not have a lot of white space, it does not feel claustrophobic. Tabs expand on hover, providing more information and enhancing usability. Along with the other elements, this effect conveys an airy, calm feeling. The design mirrors the vocabulary of the website, and the various elements work together to achieve a coherent and consistent identity.</p>
    <p><a href="http://combadi.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Comabdi_mini.png" alt="Combadi" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://wallercreek.org/finalfour/" rel="nofollow external" class="bo">Waller Creek Conservancy: The Final Four</a><br>
    A hover effect should not only provide more information, but also contribute to the visual appeal of the website. This website does that quite beautifully by expanding the image as you hover over it. The image also changes from greyscale to full color, with a caption. The effect is quite captivating.</p>
    <p><a href="http://wallercreek.org/finalfour/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Wallcreek_mini.png" alt="The Waller Creek Conversy Design Comepetition" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.liftinteractive.com/" rel="nofollow external" class="bo">Lift</a><br>
    When laying out products or items on a website, it’s easy to end up with a static catalogue-style view. Lift’s simple hover effect rotates the books to display a 3-D version. This seemingly minor and simple visual effect really makes the website more interesting. The user feels that they are involved and can interact with the website. You can <a href="http://tympanus.net/codrops/2013/01/08/3d-book-showcase/" rel="nofollow external" class="bo">achieve this 3-D effect</a>, too.</p>
    <p><a href="http://www.liftinteractive.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Lift_mini.png" alt="Lift" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://www.snowbird.com/" rel="nofollow external" class="bo">Snowbird</a><br>
    Snowbird is a dynamic website that involves the user. The current weather is displayed and, when you hover over it, folds out to reveal the week’s forecast. The hover effect on the “Full Report” button, as it transforms rounded corners into square corners, is subtle yet effective. The teasers are triangular and look like a snowbird’s wing; when hovered over, they unfold into a square for a larger view.</p>
    <p><a href="http://www.snowbird.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Snowbird_mini.png" alt="Snowbird" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <p><a href="http://etchapps.com/" rel="nofollow external" class="bo">Etch</a><br>
    The square sections on this website are tightly laid out but don’t feel cramped. The navigation in the top-left corner takes up little space because icons are used for the various categories. You can toggle the navigation to show and hide in the large view by clicking the menu icon. The responsive design makes the website easily accessible on any device, without losing functionality or brand appeal.</p>
    <p><a href="http://etchapps.com/" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/07/Etch_mini.png" alt="Etch" width="600" height="406" style="max-width: 100%; height: auto;"></a></p>
    <h3>Would You Like To See More Showcases On Smashing Magazine?</h3>
    <p>How’s that for inspiration? With so many fresh ideas to implement, we mustn’t forget that the personality of a website still needs to engage the user. An effective website should be creative yet user-friendly.</p>
    <p>Leave a comment and let us know if this article was helpful and whether you’d like to see more showcases like it.</p>
    <p><br>
    <a href="http://polldaddy.com/poll/7242543/" rel="nofollow external" class="bo">Would you like to see more similar showcases on Smashing Magazine?</a>
    </p>
    <p><em>(al)</em></p>
    <hr>
    <p><small>© Shavaughn Haack for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        A website has a personality — it is a reflection of the person or organization behind it. When people visit your website, you want it to stand out from the crowd, to be memorable. You want...</Summary>
<Website>http://www.smashingmagazine.com/2013/07/11/innovative-navigation-designs/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32495/guest@my.umbc.edu/67d2d5983a58268d768871ebbc39353c/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>global-web-design</Tag>
<Tag>html</Tag>
<Tag>inspiration</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>navigation</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Tag>web-design</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, 11 Jul 2013 05:43:06 -0400</PostedAt>
<EditAt>Thu, 11 Jul 2013 05:43:06 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32499" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32499">
<Title>Five killer ways to create delight</Title>
<Body>
<![CDATA[
    <div class="html-content">Gene Crawford explains how adding just the tiniest morsel of wonderment can keep your users coming back for more<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Ffive-killer-ways-create-delight&amp;t=Five+killer+ways+to+create+delight" 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%2Ffive-killer-ways-create-delight&amp;t=Five+killer+ways+to+create+delight" 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%2Ffive-killer-ways-create-delight&amp;t=Five+killer+ways+to+create+delight" 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%2Ffive-killer-ways-create-delight&amp;t=Five+killer+ways+to+create+delight" 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%2Ffive-killer-ways-create-delight&amp;t=Five+killer+ways+to+create+delight" 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/165665990686/u/49/f/502346/c/32632/s/2e841695/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665990686/u/49/f/502346/c/32632/s/2e841695/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Gene Crawford explains how adding just the tiniest morsel of wonderment can keep your users coming back for more     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/DSPoweK_Els/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32499/guest@my.umbc.edu/2a63bb2bcacb926b0d8e7046efe42ca9/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>Thu, 11 Jul 2013 05:38:47 -0400</PostedAt>
</NewsItem>

</News>
