<?xml version="1.0"?>
<News hasArchived="true" page="8626" pageCount="10799" pageSize="10" timestamp="Tue, 08 Sep 2026 18:44:14 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8626&amp;range=2">
<NewsItem contentIssues="true" id="32421" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32421">
<Title>How to develop a custom Tumblr theme</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/06/thumbnail21.jpg" width="200" height="160" style="max-width: 100%; height: auto;">As a freelance web designer and developer I have become accustomed to working in a specific order from start to finish on a typical client’s website. My typical workflow starts with programming/sketching which then leads to development and revisions all with constant contact with the client along the way.</p>
    <p>When I was asked about developing for Tumblr my mind initially went blank. Tumblr at the time was something I never knew of or understood why someone would want to use it. I had no clue how customizable it truly was until I dug deeper.</p>
    <p>The purpose of this post is to share some insight about Tumblr and how you can use it effectively for your own upcoming projects.</p>
    <h1>Key benefits</h1>
    <p>The true benefits of Tumblr are within the blogging section of each site. The one concept that stood out to me was FREE hosting for your theme. There are steps to make this work but once you carry them out all you need is the domain name and you’re golden.</p>
    <p>The same rules apply when it comes to developing a traditional website with tumblr but any includes such as CSS or JavaScript files need to have absolute URLs (more on this in a bit).</p>
    <p> </p>
    <h1>Getting started</h1>
    <p>To get started you first need to create a Tumblr account. Set one up and then navigate to the settings area after logging in. For each client I’ll typically set up two Tumblr blogs or use my own testing Tumblr and create a password-protected blog for development and viewing before the site goes live. For the purpose of this demo I’ve included my band’s most recent blog design (music coming soon :)). Inside the sidebar you see my <em>test</em> blog and then the main blog featuring the band’s Tumblr.</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/1_login.png" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p>You may be wondering why I created two blogs? Well to <em>password protect</em> a blog or make it <em>private</em> you need to have a <em>base</em> blog in place on Tumblr, which I did here in order to do so. Later on you can switch this feature off and either keep the <em>sitename.tumblr.com</em> extension or switch it to a direct URL like I have. You can also just skip this step if you’re not worried about only releasing the site once it’s fully developed.</p>
    <p>To create a private blog click on the <em>Create a new blog</em> link inside the side bar and you’ll be taken to the page below. Make sure the <em>Privacy</em> tick is selected and you’re good to go.</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/2_passwordprotected.png" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p> </p>
    <h1>Moving forward</h1>
    <p>Now we move into the meat of Tumblr: after you have your site designed and finalized it is then time to move into the slicing and dicing of it to optimize it for Tumblr. There are two types of operators to render content into your existing HTML. You will need to have a basic HTML shell built when starting a custom theme.</p>
    <p>Some key terms and useful lins:</p>
    <ul>
    <li>
    <strong>Variables:</strong> are used to insert dynamic data like your blog’s title or description.</li>
    <li>
    <strong>Blocks:</strong> are used to render HTML or set data like a previous link or a blog post.</li>
    </ul>
    <p>There is a complete list of the different types of Variables and Blocks you can assign to your HTML <a href="http://www.tumblr.com/docs/en/custom_themes" rel="nofollow external" class="bo">here.</a> Rather than copy the site I HIGHLY recommend you visit this page and get familiar with it. It would be best to even do this before you start your design. There are a lot of features available for any Tumblr theme which can be used or not used inside your own design. My band’s site is a bare bones site. I needed a place for people to go to find out more and see what we are always up to and that’s about it.<a href="http://www.tumblr.com/docs/en/custom_themes" rel="nofollow external" class="bo"><br></a></p>
    <p>You’ll want to have a plan for all types of posts that are available inside of Tumblr. Code these and style them properly for every blog you create and of course see the documentation to include other elements that are essential like navigation, pagination, meta data, reposts, comments (notes) etc:</p>
    <ul>
    <li>
    <strong>{block:Posts}</strong><em> This is a wrapper or sorts to any post </em><strong>{/block:Posts}</strong>
    </li>
    <li>
    <strong>{block:Text}</strong><em> For text based posts </em><strong>{/block:Text}</strong>
    </li>
    <li>
    <strong>{block:Photo}</strong><em> For photo posts </em><strong>{/block:Photo}</strong>
    </li>
    <li>
    <strong>{block:Photoset}</strong><em> For photo posts in gallery form </em><strong>{/block:Photoset}</strong>
    </li>
    <li>
    <strong>{block:Quote}</strong><em> For quotes </em><strong>{/block:Quote}</strong>
    </li>
    <li>
    <strong>{block:Link}</strong><em> For Links </em><strong>{/block:Link}</strong>
    </li>
    <li>
    <strong>{block:Audio}</strong><em> For audio posts </em><strong>{/block:Audio}</strong>
    </li>
    <li>
    <strong>{block:Video}</strong><em> For video posts </em><strong>{/block:Video}</strong>
    </li>
    </ul>
    <p> </p>
    <h1>So where do I put my code?</h1>
    <p>To import your freshly polished HTML into your custom theme you will need to login and select the appropriate blog on the left sidebar inside the <em>Settings</em> section of the dashboard. Look for the Heading titled <em>Theme</em> and click the <em>Customize</em> button.</p>
    <p>Once you click the button you are greeted with a new page with some custom editing options for your site. Below you see how my finished site currently looks with Tumblr dummy content. This area is great to see updates to any changes you make inside Tumblr’s code editor but I really recommend developing the site using a basic code editor and browser from the start. Once the code is in place you can insert the custom Tumblr based variables and block elements within the HTML. Then simply copy and paste your changes into each custom Tumblr page.</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/4_customize_landing.png" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p>To edit the HTML click the <em>Edit HTML</em> button (yes it’s that easy) and a new side window appears. You’ll see some HTML with whatever base theme you are customizing. Delete or alter that code to match your own style and design and then click <em>Update Preview</em> to see the page update to your right. One thing I cannot stress enough is to <strong>use absolute URL’s</strong> to host your images, CSS, JavaScript, and whatever includes you may have because they will not link properly inside of Tumblr if you don’t. I happen to have hosting for my own website so I just created a directory to link the images and includes. You could just as easily use an image or file hosting service for free. I would only do that if you are completely sure the links won’t drop and leave your website without styles or images, etc…</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/06/5_edit_html.png" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p> </p>
    <h1>What if I want more pages?</h1>
    <p>Easy. After you’ve clicked the <em>Edit HTML</em> button like I mentioned above, scroll down to the pages section of the sidebar on the left that appears. Here you’ll see the example I’ve provided with additional pages of my band’s website. You can drag the order of them and edit each individually.</p>
    <p>Simply click the <em>+Add a page</em> link to create another. With each new page you will need to update the content as well as navigation if, for example, you have active states that change via CSS. This should be a no brainer if you’ve worked with HTML and CSS before. If not, you should check out the numerous tutorials and posts on this subject on this site.</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/07/6_pages.jpg" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p>One thing to note is that when you click <em>edit</em> beside an existing page you will see a new browser window appear like below. Be sure to have the custom layout active in the drop down as you are creating a custom layout for each page. The option is there to use a standard layout and have a navigation link redirect to another.</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/07/7_edit_page.jpg" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p> </p>
    <h1>Advanced features</h1>
    <p>On top of creating your own CSS styles and HTML documents you have the ability to use some of Tumblr’s advanced features, which are bundled with each blog. Right below the <em>Pages</em> section you will see an <em>Advanced</em> section with a few options available.</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/07/8_advanced.jpg" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p>Most of these are self-explanatory. If your site doesn’t have a mobile optimized layout like mine does then I would switch on the<em> use optimized mobile layout </em>option. Descriptive URLS make the permalink to any post much more identifiable. Finally, if you’re in a pinch, you can insert some custom CSS below that but it’s just as easy to include your own CSS via absolute link.</p>
    <p> </p>
    <h1>I don’t want the .tumblr extension</h1>
    <p>The folks at Tumblr made this easy. All that is required is that you own the domain name you are trying to redirect your Tumblr blog to.</p>
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/07/9_custom_domain.jpg" width="650" alt="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"></p>
    <p>To lose the extension you’ll need to navigate to the settings area of your dashboard. From there select <em>Use a custom domain name </em>inside the URL section. Enter the appropriate domain you have registered and then make sure to test your domain by clicking the blue button staring back at you. Once you do that you’ll need to update the <em>A-record</em> of your current domain supplier to point to Tumblr’s, which is <strong>66.6.44.4</strong>. Complete directions on how to do this are <a href="http://www.Tumblr.com/docs/en/custom_domains" rel="nofollow external" class="bo">available here.</a></p>
    <p> </p>
    <h1>To summarize</h1>
    <p>Using Tumblr is a great option for anyone interested in keeping an active blog or even developing a complete website.</p>
    <p>I built the example site you’ve seen throughout this tutorial from the ground up. The website was first designed inside of photoshop. Once I decided on the style and look I began translating the static design into an interactive experience much like a similar website but then added the variables and blocks required for Tumblr to function as an additional, but easy step. From there I optimized it to fit on mobile devices and the rest is history.</p>
    <p>There are plenty more customizations available like incorporating Google analytics, customizable options which can be turned on and off from the settings panel, the connection to other apps like Instagram, Facebook, and more, but the process overall was very easy and highly recommended to anyone interested in a new way to host a blogging based website.</p>
    <p>This tutorial is meant to be a very broad overview of how to start developing websites with Tumblr. To get more information and to gain a better understanding please read the <a href="http://www.tumblr.com/docs/en/custom_themes" rel="nofollow external" class="bo">full documentation provided by Tumblr.</a></p>
    <p> </p>
    <p><em><strong>Have you built a project around Tumblr? What tips would you add? Let us know in the comments.</strong></em></p>
    <p><br><br>
    </p>
    <table width="100%">
    <tbody>
    <tr>
    <td>
          <a href="http://www.mightydeals.com/deal/veneer-font.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Top-Selling Vintage Veneer Font Family – only $9!</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="How to develop a custom Tumblr theme" style="max-width: 100%; height: auto;"><br>
          </a>
        </td>
    </tr>
    </tbody>
    </table>
    <p><br> </p>
    <a href="http://www.webdesignerdepot.com/2013/07/how-to-develop-a-custom-tumblr-theme/" rel="nofollow external" class="bo">Source</a>
    </div>
]]>
</Body>
<Summary>As a freelance web designer and developer I have become accustomed to working in a specific order from start to finish on a typical client’s website. My typical workflow starts with...</Summary>
<Website>http://www.webdesignerdepot.com/2013/07/how-to-develop-a-custom-tumblr-theme/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32421/guest@my.umbc.edu/6098872e51d8fed68aa43f59c5b3852d/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>how-to</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 05 Jul 2013 05:15:10 -0400</PostedAt>
<EditAt>Fri, 05 Jul 2013 05:15:10 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="32244" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32244">
<Title>PHP 5.4.17 released!</Title>
<Body>
<![CDATA[
    <div class="html-content">The PHP development team announces the immediate availability of PHP
         5.4.17. About 20 bugs were fixed. All users of PHP are encouraged to upgrade to this release.
         
         For source downloads of PHP 5.4.17 please visit our downloads page,
         Windows binaries can be found on windows.php.net/download/.
         The list of changes is recorded in the ChangeLog.</div>
]]>
</Body>
<Summary>The PHP development team announces the immediate availability of PHP      5.4.17. About 20 bugs were fixed. All users of PHP are encouraged to upgrade to this release.            For source...</Summary>
<Website>http://php.net/index.php#id2013-07-04-1</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32244/guest@my.umbc.edu/553eb782675f2b5d1d5f97eef482ad74/api/pixel</TrackingUrl>
<Tag>design</Tag>
<Tag>develop</Tag>
<Tag>frontpage</Tag>
<Tag>learn</Tag>
<Tag>mysql</Tag>
<Tag>news</Tag>
<Tag>php</Tag>
<Tag>releases</Tag>
<Tag>sql</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 04 Jul 2013 23:33:50 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32249" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32249">
<Title>Critic&#8217;s Notebook: Latest Vision for Las Vegas: A Downtown Vibe</Title>
<Body>
<![CDATA[
    <div class="html-content">Tony Hsieh, the billionaire who runs Zappos, is leading an effort to transform downtown Las Vegas in a way that has nothing to do with gambling.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F05%2Farts%2Fdesign%2Flatest-vision-for-las-vegas-a-downtown-ambience.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Critic%E2%80%99s+Notebook%3A+Latest+Vision+for+Las+Vegas%3A+A+Downtown+Vibe" 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%2F05%2Farts%2Fdesign%2Flatest-vision-for-las-vegas-a-downtown-ambience.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Critic%E2%80%99s+Notebook%3A+Latest+Vision+for+Las+Vegas%3A+A+Downtown+Vibe" 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%2F05%2Farts%2Fdesign%2Flatest-vision-for-las-vegas-a-downtown-ambience.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Critic%E2%80%99s+Notebook%3A+Latest+Vision+for+Las+Vegas%3A+A+Downtown+Vibe" 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%2F05%2Farts%2Fdesign%2Flatest-vision-for-las-vegas-a-downtown-ambience.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Critic%E2%80%99s+Notebook%3A+Latest+Vision+for+Las+Vegas%3A+A+Downtown+Vibe" 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%2F05%2Farts%2Fdesign%2Flatest-vision-for-las-vegas-a-downtown-ambience.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Critic%E2%80%99s+Notebook%3A+Latest+Vision+for+Las+Vegas%3A+A+Downtown+Vibe" 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>Tony Hsieh, the billionaire who runs Zappos, is leading an effort to transform downtown Las Vegas in a way that has nothing to do with gambling.     </Summary>
<Website>http://www.nytimes.com/2013/07/05/arts/design/latest-vision-for-las-vegas-a-downtown-ambience.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32249/guest@my.umbc.edu/67afb029850a38617e7f7b4128816cf6/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>architecture</Tag>
<Tag>downtown-project-las-vegas</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>hsieh-tony</Tag>
<Tag>las-vegas-nev</Tag>
<Tag>new</Tag>
<Tag>relocation-of-business</Tag>
<Tag>technology</Tag>
<Tag>tesla-motors-inc-tsla-nasdaq</Tag>
<Tag>york</Tag>
<Tag>zappos</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, 04 Jul 2013 22:48:11 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32243" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32243">
<Title>Ban Lifted, Japan&#8217;s Politicians Race Online</Title>
<Body>
<![CDATA[
    <div class="html-content">For the first time in Japan’s history, candidates for public office are allowed to use the Internet and social media for campaigning.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F05%2Fworld%2Fasia%2Fban-lifted-japans-politicians-race-online.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ban+Lifted%2C+Japan%E2%80%99s+Politicians+Race+Online" 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%2F05%2Fworld%2Fasia%2Fban-lifted-japans-politicians-race-online.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ban+Lifted%2C+Japan%E2%80%99s+Politicians+Race+Online" 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%2F05%2Fworld%2Fasia%2Fban-lifted-japans-politicians-race-online.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ban+Lifted%2C+Japan%E2%80%99s+Politicians+Race+Online" 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%2F05%2Fworld%2Fasia%2Fban-lifted-japans-politicians-race-online.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ban+Lifted%2C+Japan%E2%80%99s+Politicians+Race+Online" 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%2F05%2Fworld%2Fasia%2Fban-lifted-japans-politicians-race-online.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ban+Lifted%2C+Japan%E2%80%99s+Politicians+Race+Online" 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/165666261180/u/0/f/640387/c/34625/s/2e3ad8c9/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666261180/u/0/f/640387/c/34625/s/2e3ad8c9/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>For the first time in Japan’s history, candidates for public office are allowed to use the Internet and social media for campaigning.     </Summary>
<Website>http://www.nytimes.com/2013/07/05/world/asia/ban-lifted-japans-politicians-race-online.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32243/guest@my.umbc.edu/ddf92981ae97cb96d228e674505ecf92/api/pixel</TrackingUrl>
<Tag>abe-shinzo</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>democratic-party-japan</Tag>
<Tag>elections</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>japan</Tag>
<Tag>legislatures-and-parliaments</Tag>
<Tag>liberal-democratic-party-japan</Tag>
<Tag>new</Tag>
<Tag>social-networking-internet</Tag>
<Tag>technology</Tag>
<Tag>voting-and-voters</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, 04 Jul 2013 22:34:15 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32240" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32240">
<Title>R&#233;sum&#233; Shows Snowden Honed Hacking Skills</Title>
<Body>
<![CDATA[
    <div class="html-content">Edward J. Snowden’s résumé suggests that he transformed himself into the kind of cybersecurity expert the National Security Agency is desperate to recruit.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F05%2Fus%2Fresume-shows-snowden-honed-hacking-skills.html%3Fpartner%3Drss%26emc%3Drss&amp;t=R%C3%A9sum%C3%A9+Shows+Snowden+Honed+Hacking+Skills" 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%2F05%2Fus%2Fresume-shows-snowden-honed-hacking-skills.html%3Fpartner%3Drss%26emc%3Drss&amp;t=R%C3%A9sum%C3%A9+Shows+Snowden+Honed+Hacking+Skills" 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%2F05%2Fus%2Fresume-shows-snowden-honed-hacking-skills.html%3Fpartner%3Drss%26emc%3Drss&amp;t=R%C3%A9sum%C3%A9+Shows+Snowden+Honed+Hacking+Skills" 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%2F05%2Fus%2Fresume-shows-snowden-honed-hacking-skills.html%3Fpartner%3Drss%26emc%3Drss&amp;t=R%C3%A9sum%C3%A9+Shows+Snowden+Honed+Hacking+Skills" 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%2F05%2Fus%2Fresume-shows-snowden-honed-hacking-skills.html%3Fpartner%3Drss%26emc%3Drss&amp;t=R%C3%A9sum%C3%A9+Shows+Snowden+Honed+Hacking+Skills" 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/165665708501/u/0/f/640387/c/34625/s/2e3a4167/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665708501/u/0/f/640387/c/34625/s/2e3a4167/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Edward J. Snowden’s résumé suggests that he transformed himself into the kind of cybersecurity expert the National Security Agency is desperate to recruit.     </Summary>
<Website>http://www.nytimes.com/2013/07/05/us/resume-shows-snowden-honed-hacking-skills.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32240/guest@my.umbc.edu/860a319c1fb07e7acc4f18097f9055d9/api/pixel</TrackingUrl>
<Tag>booz-allen-hamilton-holding-corporation-bah-nyse</Tag>
<Tag>central-intelligence-agency</Tag>
<Tag>classified-information-and-state-secrets</Tag>
<Tag>cyberattacks-and-hackers</Tag>
<Tag>dell-inc-dell-nasdaq</Tag>
<Tag>espionage-and-intelligence-services</Tag>
<Tag>national-security-agency</Tag>
<Tag>new</Tag>
<Tag>snowden-edward-j</Tag>
<Tag>surveillance-of-citizens-by-government</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, 04 Jul 2013 20:32:30 -0400</PostedAt>
<EditAt>Thu, 04 Jul 2013 20:32:30 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32241" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32241">
<Title>As Competition Wanes, Amazon Cuts Back Discounts</Title>
<Body>
<![CDATA[
    <div class="html-content">After years of lowering book prices, Amazon is offering smaller discounts on some books. Authors and small publishers said this put some books beyond an audience’s reach.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F05%2Fbusiness%2Fas-competition-wanes-amazon-cuts-back-its-discounts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=As+Competition+Wanes%2C+Amazon+Cuts+Back+Discounts" 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%2F05%2Fbusiness%2Fas-competition-wanes-amazon-cuts-back-its-discounts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=As+Competition+Wanes%2C+Amazon+Cuts+Back+Discounts" 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%2F05%2Fbusiness%2Fas-competition-wanes-amazon-cuts-back-its-discounts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=As+Competition+Wanes%2C+Amazon+Cuts+Back+Discounts" 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%2F05%2Fbusiness%2Fas-competition-wanes-amazon-cuts-back-its-discounts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=As+Competition+Wanes%2C+Amazon+Cuts+Back+Discounts" 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%2F05%2Fbusiness%2Fas-competition-wanes-amazon-cuts-back-its-discounts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=As+Competition+Wanes%2C+Amazon+Cuts+Back+Discounts" 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/165665708500/u/0/f/640387/c/34625/s/2e3a4163/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665708500/u/0/f/640387/c/34625/s/2e3a4163/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>After years of lowering book prices, Amazon is offering smaller discounts on some books. Authors and small publishers said this put some books beyond an audience’s reach.     </Summary>
<Website>http://www.nytimes.com/2013/07/05/business/as-competition-wanes-amazon-cuts-back-its-discounts.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32241/guest@my.umbc.edu/e538828a28efd59d67c6a1365ba9f2bd/api/pixel</TrackingUrl>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>barnes-and-noble-inc-bks-nyse</Tag>
<Tag>book-trade-and-publishing</Tag>
<Tag>consumer-behavior</Tag>
<Tag>discount-selling</Tag>
<Tag>e-commerce</Tag>
<Tag>new</Tag>
<Tag>prices-fares-fees-and-rates</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, 04 Jul 2013 18:34:11 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32239" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32239">
<Title>Interview With Dan Croak of Thoughtbot</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=33053&amp;c=1755578649" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=33053&amp;c=1755578649" alt="" style="max-width: 100%; height: auto;"></a><p><a href="http://www.dancroak.com/" rel="nofollow external" class="bo">Dan Croak</a> is the Chief Marketing Officer of the prominent development shop <a href="http://www.thoughtbot.com" rel="nofollow external" class="bo">thoughtbot</a>. Before he moved to San Francisco to start thoughtbot’s west coast branch, Dan was a friend of mine in Boston who helped me learn the ins and outs of Ruby on Rails.</p>
    <p></p>
    <p> Dan’s a good guy to know because he and his shop have authored everything from core Rails commits to numerous gems and plugins (such as <a href="http://github.com/thoughtbot/capybara_webkit" rel="nofollow external" class="bo">Capybara Webkit</a> and <a href="http://github.com/thoughtbot/bourbon" rel="nofollow external" class="bo">Bourbon</a>) that are known throughout the web community. I wanted to sit down with him and talk about Rails, its evolution, and how his company has built such a following around Ruby on Rails.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/07/dan-croak-1.png" alt="dan-croak-1" width="600" height="593" style="max-width: 100%; height: auto;"><br> <hr>
    <div><h4>
    <span>Q</span> How did you get started with thoughtbot?</h4></div>
    <p>I hired thoughtbot in 2006 to complete a side project. I was writing <a href="http://asp.net/" rel="nofollow external" class="bo">ASP.NET</a> web applications by day. I wanted to learn about open source, Ruby on Rails, Test-Driven Development, Unix, version control, etc.</p>
    <p>After they completed the project, I did some Rails freelancing, then applied for a job at thoughtbot and they hired me. I’ve now been at the company for more than five years.</p>
    <hr>
    <div><h4>
    <span>Q</span> How did your firm settle on Ruby on Rails?</h4></div>
    <blockquote><p>Rails struck them as something that would be great.</p></blockquote>
    <p>In 2005 Jon and Chad had been doing consulting projects in different languages, such as Perl and Java. After they did a couple of projects in Ruby on Rails, they felt it was state of the art and that they could be reliably productive with it.</p>
    <p> As a team, they needed to pick one language/framework and specialize in it. Rails struck them as something that would be great. The community surrounding the language were the kind of people that they would want to work with. They were one of the first consultancies to announce that Rails was their specialty.</p>
    <p> That was the turning point – they could have been a shop that split technologies but by picking one, especially an up-and-coming one like Rails, they were able to attract great people like Tammer Saleh, Jared Carroll, Eric Mill, and others.</p>
    <hr>
    <div><h4>
    <span>Q</span> What role does Ruby on Rails play in your business?</h4></div>
    <p> In total, our team currently spends about 2,000 hours/week interacting with Rails and its ecosystem. It is the main medium from which we work with our customers. It’s the environment we feel most efficient, and most able to create software with a solid test suite.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/07/dan-croak-2.png" alt="dan-croak-2" width="600" height="600" style="max-width: 100%; height: auto;"><br> <hr>
    <div><h4>
    <span>Q</span> What’s your favorite part of Ruby/Rails?</h4></div>
    <p> I’m currently in a role where I’m reviewing a lot of code – reading thousands of lines of diffs a day – and it’s nice to have a language that doesn’t have a lot of ceremony or extra tokens. In the last year, we’ve developed a <a href="http://github.com/thoughtbot/guides" rel="nofollow external" class="bo">style guide</a> that makes it even easier and more pleasant to review lots of code.</p>
    <p> There is always some shortcut in Rails to clean up a view by letting it render partials polymorphically, based on its type and based on conventional directory structures. Things like HAML and CoffeeScript further reduce clutter and help simplify the code to focus exactly on your ideas and how to express them in a web app.</p>
    <p> The community is a huge benefit, too. Ruby is a very stable, 20-year old language with a gigantic community. Libraries for dependency management (Bundler), testing (RSpec), authenticating users via OAuth (Omniauth), are in a great state. <a href="http://rubygems.org" rel="nofollow external" class="bo">Rubygems.org</a> is a tremendously useful community effort. There are thousands of Rubyists with GitHub accounts contributing to gems. Ruby is the second-most represented language on GitHub.</p>
    <hr>
    <div><h4>
    <span>Q</span> What role has thoughtbot played in the development of Ruby on Rails?</h4></div>
    <blockquote><p>Once GitHub came out, it became obvious that Git and GitHub were the superior way to share code.</p></blockquote>
    <p> <a href="https://github.com/sikachu" rel="nofollow external" class="bo">Prem</a> and <a href="https://github.com/arunagw" rel="nofollow external" class="bo">Arun</a> show up on the Rails contributed list.</p>
    <p> <a href="https://github.com/thoughtbot/paperclip" rel="nofollow external" class="bo">Paperclip</a> and <a href="https://github.com/thoughtbot/shoulda" rel="nofollow external" class="bo">Shoulda</a> were early libraries that became pretty popular in the community. Both were continuations of testing and file uploading that we did before. Paperclip was inspired by <a href="https://github.com/rust/file_column" rel="nofollow external" class="bo">file_column</a> and <a href="https://github.com/technoweenie/attachment_fu" rel="nofollow external" class="bo">attachment_fu</a>. Shoulda was built atop <code>Test::Unit</code> – similar to how Sass was built atop CSS. That process of improvement is never ending in the community. Other great efforts in the file attachment tradition continue today with CarrierWave and Filepicker.io.</p>
    <p> I remember coming to Rails and learning a ton by going to <a href="https://github.com/technoweenie" rel="nofollow external" class="bo">technoweenie’s</a> Subversion account. Paperclip and Shoulda were open sourced on a custom Subversion instance at svn.thoughtbot.com.</p>
    <p> Once GitHub came out, it became obvious that Git and GitHub were the superior way to share code. We moved our older libraries over to GitHub and have continued to chip in on other projects and some of our own. Shoulda has evolved into a library that works beautifully with RSpec. <a href="http://github.com/thoughtbot/factory_girl" rel="nofollow external" class="bo">Factory Girl</a> was written to replace fixtures.</p>
    <p> We added <a href="http://robots.thoughtbot.com/post/159805295/spy-vs-spy" rel="nofollow external" class="bo">test spies</a> to a fork of Mocha, then a standalone library called Bourne that extended Mocha, and more recently added spies to <a href="https://github.com/rspec/rspec-mocks" rel="nofollow external" class="bo">RSpec Mocks</a>. We didn’t invent the test spy technique (we recommend everyone reads xUnit Test Patterns), but we worked hard to bring them into our workflow and add them to the existing tools in the community, evolving as those tools have gotten better and gained community support.</p>
    <p> We wrote <a href="http://github.com/thoughtbot/clearance" rel="nofollow external" class="bo">Clearance</a> (which I personally maintain) after writing email-and-password-based authentication a few times by hand. We wrapped it in a library with a great automated test suite. It’s now a battle-tested, four year old library. Things like that we’re always trying to tweak and improve, as well as blog about it to keep the community informed and see how we’re evolving our practices.</p>
    <hr>
    <div><h4>
    <span>Q</span> What is your development process for a web application? How has it evolved since you started using Rails?</h4></div>
    <p> We’ve described our development process in our <a href="http://playbook.thoughtbot.com" rel="nofollow external" class="bo">playbook</a> and <a href="http://github.com/thoughtbot/guides" rel="nofollow external" class="bo">guides</a>.</p>
    <p> I’ve taken better advantage of my shell (zsh) and editor (vim). I’ve tightened my feedback loops, particularly when writing tests. I’ve gotten more consistent and disciplined about style and Git flow. I understand and use object-oriented techniques better.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/07/dan-croak-3.png" alt="dan-croak-3" width="600" height="400" style="max-width: 100%; height: auto;"><br> <hr>
    <div><h4>
    <span>Q</span> What do you think about the new Ruby 2 and Rails 4 releases?</h4></div>
    <p> I think they’re great! I’m most looking forward to the speed improvement and named parameters in Ruby. I’m most looking forward to the additional Postgres integrations in Rails 4, like hstore and database array types.</p>
    <p> We don’t have any major projects in production on Rails 4 or Ruby 2 yet. Looking at the history of past releases, we tend to be careful not to jump the gun. We’ve been testing our open source libraries against both versions for awhile and reporting any issues back upstream, fixing what we can, but for the sake of our clients, we’re a bit more conservative to adopt the newest technology.</p>
    <hr>
    <div><h4>
    <span>Q</span> How do you want to see Ruby on Rails evolve in the future?</h4></div>
    <p> For a long time, I’ve been wrapping my head around some of the base choices you need to make as a developer. We’ve had a less-than-a-hundred-line shell script called <a href="http://github.com/thoughtbot/laptop" rel="nofollow external" class="bo">Laptop</a> for a couple of years to help us set up new machines while documenting the current best practice we know of. I still think there’s lots of room for improvement here, though.</p>
    <p> Let’s say you’re using OS X. You probably want to use Homebrew but it’s not the standard package manager for the operating system. I’d like to see Apple make that the standard. In the same way, Ruby installers, Ruby switchers, Bundler’s binstubs, the .ruby-version file community convention, and rbenv’s shims continue to evolve to manage different versions of libraries that you want to use on different projects.</p>
    <hr>
    <div><h4>
    <span>Q</span> Will thoughtbot always be a Ruby on Rails shop?</h4></div>
    <blockquote><p>It’s unlikely we would make a primary replacement for Ruby as our server-side language.</p></blockquote>
    <p> I don’t know! In the near future, definitely – there’s a lot we can accomplish with Ruby, SQL, and JavaScript. It’s unlikely we would make a primary replacement for Ruby as our server-side language. It’s more likely we’d work on projects that use service-oriented architectures and the various services start to use alternative frameworks and languages such as <a href="http://golang.org/" rel="nofollow external" class="bo">Go</a>.</p>
    <p> I’d expect us to be more polyglot as opposed to replacing Ruby. We’ve used lots of databases in the past few years, although, Redis and Postgres can currently handle 99% of our use cases.</p>
    <p> I’d also like to try doing something like the Barack Obama 2012 campaign’s architecture, which was <a href="http://kylerush.net/blog/meet-the-obama-campaigns-250-million-fundraising-platform/" rel="nofollow external" class="bo">static HTML/CSS/JS served by Akamai and S3</a>, with hundreds of backend APIs.</p>
    <hr>
    <div><h4>
    <span>Q</span> Any final advice for people just getting started with Ruby on Rails?</h4></div>
    <p> We’ve worked really hard for years to put our best advice on <a href="https://learn.thoughtbot.com/rails" rel="nofollow external" class="bo">Learn Rails</a>. We have a “trail map” specifically for learning Rails and we’ve curated it from across the web and in our own shop. Go in there and you can see which resources we recommend going through in which order. There’s an iPhone app that helps you self-assess your own abilities and keep track of your progress along the Rails, Git, Postgres, JavaScript trails, and other trails.</p>
    <hr>
    <h2>In Conclusion</h2>
    <p>Thank you Dan for taking the time to do this interview, we really appreciate it.</p>
    </div>
]]>
</Body>
<Summary>Dan Croak is the Chief Marketing Officer of the prominent development shop thoughtbot. Before he moved to San Francisco to start thoughtbot’s west coast branch, Dan was a friend of mine in Boston...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/G3IMpSwpJZY/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32239/guest@my.umbc.edu/fa5a695ce16e266e44e1bba5935314f0/api/pixel</TrackingUrl>
<Tag>articles</Tag>
<Tag>css</Tag>
<Tag>dan-croak</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>interview</Tag>
<Tag>interviews</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>thoughtbot</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 04 Jul 2013 16:48:04 -0400</PostedAt>
<EditAt>Thu, 04 Jul 2013 16:48:04 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="32238" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32238">
<Title>Build a Mobile Web App Using jQuery Mobile and AJAX</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Today we’re announcing a new upcoming workshop from Treehouse expert teacher, Amit Bijlani. In this workshop, you’ll learn to build a simple weather app called GOOD Weather using jQuery Mobile. Find out the strengths of jQuery Mobile and how to use some of its components. Learn about data roles, themes and page layout.</p>
    <p>Here’s the trailer:</p>
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/WzWLTmYUbDg" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <p>If you’re a <a href="http://teamtreehouse.com/?cid=1000" title="Treehouse Gold Membership" rel="nofollow external" class="bo">Treehouse Gold Member</a>, you can login and take this workshop very soon!</p>
    <p>The post <a href="http://blog.teamtreehouse.com/build-a-mobile-web-app-using-jquery-mobile-and-ajax" rel="nofollow external" class="bo">Build a Mobile Web App Using jQuery Mobile and AJAX</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>Today we’re announcing a new upcoming workshop from Treehouse expert teacher, Amit Bijlani. In this workshop, you’ll learn to build a simple weather app called GOOD Weather using jQuery Mobile....</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/wQeD3VmFgH0/build-a-mobile-web-app-using-jquery-mobile-and-ajax</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32238/guest@my.umbc.edu/c8e79b800f7be3b3e14f7526d0ded746/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>how-to-make-a-weather-app-for-iphone</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>jquery-mobile-tutorials</Tag>
<Tag>learn-to-code</Tag>
<Tag>mobile</Tag>
<Tag>mobile-apps</Tag>
<Tag>responsive</Tag>
<Tag>treehouse-workshop</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, 04 Jul 2013 14:30:18 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="123203" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123203">
<Title>New Publication by Ellen Handler-Spitz, Visual Arts, Honors College</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="/wp-content/uploads/2013/07/9780300196405.jpg" rel="nofollow external" class="bo"><img alt="9780300196405" src="/wp-content/uploads/2013/07/9780300196405.jpg?w=137" width="137" height="150" style="max-width: 100%; height: auto;"></a>Ellen Handler-Spitz’s, most recent publication, <em>Barbara Chase-Riboud: The Malcolm X Steles</em>, in which she is a principal contributor, is featured now on the <a href="http://yalepress.yale.edu/yupbooks/book.asp?isbn=9780300196405" rel="nofollow external" class="bo">Yale University Press’ website</a>.</p>
    <p>The publication, a catalog for the exhibition of the same name, features Handler-Spitz’s writing alongside photography of the work of Barbara Chase-Riboud’s “monumental series of sculptures dedicated to the assassinated civil rights leader Malcolm X.” It includes a fascinating analysis of the <em>Malcolm X </em>sculptures in light of critical debates on abstract art’s role in memorializing the past.</p>
    <p><em>Barbara Chase-Riboud: The Malcolm X Steles</em> will be on display at the <a href="http://www.philamuseum.org/exhibitions/763.html" rel="nofollow external" class="bo">Philadelphia Museum of Art</a> September 14 – December 8, 2013.</p>
    </div>
]]>
</Body>
<Summary>Ellen Handler-Spitz’s, most recent publication, Barbara Chase-Riboud: The Malcolm X Steles, in which she is a principal contributor, is featured now on the Yale University Press’ website.   The...</Summary>
<Website>https://umbc.edu/stories/new-publication-by-ellen-handler-spitz-visual-arts-honors-college/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123203/guest@my.umbc.edu/53a87d29ba21d78e8fb48a96051dca89/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>honorscollege</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 04 Jul 2013 13:00:22 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32242" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32242">
<Title>Quito Journal: Ecuador, Possible Snowden Haven, Is High on Beauty but Low on Tech</Title>
<Body>
<![CDATA[
    <div class="html-content">If granted asylum — a big if — the N.S.A. leaker Edward J. Snowden would likely find life in tiny, beautiful, impoverished Ecuador a bit of an adjustment.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F07%2F04%2Fworld%2Famericas%2Fecuador-possible-snowden-haven-is-high-on-beauty-but-low-on-tech.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Quito+Journal%3A+Ecuador%2C+Possible+Snowden+Haven%2C+Is+High+on+Beauty+but+Low+on+Tech" 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%2F04%2Fworld%2Famericas%2Fecuador-possible-snowden-haven-is-high-on-beauty-but-low-on-tech.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Quito+Journal%3A+Ecuador%2C+Possible+Snowden+Haven%2C+Is+High+on+Beauty+but+Low+on+Tech" 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%2F04%2Fworld%2Famericas%2Fecuador-possible-snowden-haven-is-high-on-beauty-but-low-on-tech.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Quito+Journal%3A+Ecuador%2C+Possible+Snowden+Haven%2C+Is+High+on+Beauty+but+Low+on+Tech" 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%2F04%2Fworld%2Famericas%2Fecuador-possible-snowden-haven-is-high-on-beauty-but-low-on-tech.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Quito+Journal%3A+Ecuador%2C+Possible+Snowden+Haven%2C+Is+High+on+Beauty+but+Low+on+Tech" 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%2F04%2Fworld%2Famericas%2Fecuador-possible-snowden-haven-is-high-on-beauty-but-low-on-tech.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Quito+Journal%3A+Ecuador%2C+Possible+Snowden+Haven%2C+Is+High+on+Beauty+but+Low+on+Tech" 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/165665708499/u/0/f/640387/c/34625/s/2e3a4168/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665708499/u/0/f/640387/c/34625/s/2e3a4168/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>If granted asylum — a big if — the N.S.A. leaker Edward J. Snowden would likely find life in tiny, beautiful, impoverished Ecuador a bit of an adjustment.     </Summary>
<Website>http://www.nytimes.com/2013/07/04/world/americas/ecuador-possible-snowden-haven-is-high-on-beauty-but-low-on-tech.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32242/guest@my.umbc.edu/794ecc33b591370d3f05d84ab0b9637d/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>asylum-right-of</Tag>
<Tag>collective-brands-inc-pss-nyse</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>ecuador</Tag>
<Tag>mcdonalds-corporation-mcd-nyse</Tag>
<Tag>national-security-agency</Tag>
<Tag>new</Tag>
<Tag>nike-inc-nke-nyse</Tag>
<Tag>snowden-edward-j</Tag>
<Tag>starbucks-corporation-sbux-nasdaq</Tag>
<Tag>surveillance-of-citizens-by-government</Tag>
<Tag>technology</Tag>
<Tag>united-states-international-relations</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, 04 Jul 2013 12:14:28 -0400</PostedAt>
</NewsItem>

</News>
