<?xml version="1.0"?>
<News hasArchived="true" page="8441" pageCount="10776" pageSize="10" timestamp="Fri, 28 Aug 2026 15:33:37 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8441">
<NewsItem contentIssues="true" id="34569" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34569">
<Title>How to Collaborate On GitHub</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=34267&amp;c=1895645209" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=34267&amp;c=1895645209" alt="" style="max-width: 100%; height: auto;"></a><p>If you don’t already know, GitHub is an incredibly effective way to collaborate on development projects. Providing a place for anyone with an internet connection to have an avenue where they can share code with the world for free (not to mention the robust supporting tools for source inspection and easy viewing of commit histories). GitHub has been adopted by many large open-source projects as their primary home for collaboration and contribution.</p>
    <p>But how do you join in and contribute to a project? Sure, you know how to use Git to track changes to files and push those files to a server. But there are major benefits to getting involved in larger open-source projects, and GitHub is arguably the best place to start. Today, we will discuss a few rules of the road for collaborating on open source projects, and give you the knowledge and intuition you will need to get involved.</p>
    <p></p>
    <hr>
    <h2>Start Small</h2>
    <blockquote><p>Don’t be afraid to start small</p></blockquote>
    <p>One of the most important things to understand when getting started with collaboration on open-source projects is to recognize your role. Often, there are plenty of things you as a developer can do that don’t involve being an extremely clever programmer. In fact, fear of being an inadequate programmer is often a reason why people don’t get involved in open source projects to begin with. Don’t be afraid to start small: instead of trying to fix a major bug or rewriting an entire module, try finding things like documentation inadequacies or cross-device testing and patching, or even simple syntax errors and grammar issues (like <a href="https://github.com/jquery/jquery/commit/f766f8c" rel="nofollow external" class="bo">this one</a> from GitHub user mzgol).</p>
    <p>These kinds of tasks are a good way to get your foot in the door as a contributor to the project without trying to take on more than you can handle. Sign up for <a href="http://www.codetriage.com/" rel="nofollow external" class="bo">CodeTriage</a> to get automated GitHub Issues sent to your inbox. If one hits your inbox that you feel confident you can take on, work on it and send a pull request. (We’ll talk about how to do that a bit further down in the post.)</p>
    <hr>
    <h2>Learn the Ecosystem of the Project</h2>
    <p>With any collaborative effort, a set of conventions has probably been adopted. This may include a vocabulary set, a way of contributing and formatting commit messages, a certain rhythm of collaborating that the contributors have agreed to, or even syntactic standards that have been established. Before you try to get involved with a project, <em>read all documents related to these things</em>. For instance, GitHub has standardized a <code>CONTRIBUTING.md</code> file (check out the <a href="https://github.com/jquery/jquery/blob/master/CONTRIBUTING.md" rel="nofollow external" class="bo">guidelines for getting involved with jQuery</a> for a thorough example). These guides are maintained by the people who also maintain the codebase and the <code>master branch</code>.</p>
    <p>Another way of understanding the ecosystem of a project is to simply look at the existing codebase and the <code>git log</code>. Reading through the commit messages and perusing the code style can tell you a lot about a project. Read through the project’s documentation, and adopt the vocabulary used so that your contributions maintain continuity and portray a similar voice.</p>
    <p>Once you’re part of the project’s cultural ecosystem, how do you actually <em>contribute code</em>?</p>
    <hr>
    <h2>The Pull-Request Workflow for Code Contribution</h2>
    <blockquote><p>The workflow for contributing code can seem daunting at first.</p></blockquote>
    <p>The workflow for contributing code can seem daunting at first. The most important thing to remember is to follow the patterns and standards outlined by the project you are working on (as we have already discussed). The general workflow that GitHub supports is fairly simple.</p>
    <ol>
    <li>Fork the target repo to your own account.</li>
    <li>Clone the repo to your local machine.</li>
    <li>Check out a new “topic branch” and make changes.</li>
    <li>Push your topic branch to your fork.</li>
    <li>Use the diff viewer on GitHub to create a pull request via a discussion.</li>
    <li>Make any requested changes.</li>
    <li>The pull request is then merged (usually into the master branch) and the topic branch is deleted from the upstream (target) repo.</li>
    </ol>
    <p>Within this workflow, you may see many variations for any given project. For instance, the naming conventions for topic branches vary. Some projects use conventions like <code>bug_345</code>, where 345 is the ID # of a GitHub issue that has been filed. Some projects prefer shorter commit messages than others. Here is a series of commands that would complete the workflow above.</p>
    <h3>
    <span>Step 1</span>: Forking</h3>
    <p>Fork the repo on GitHub.com</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/08/github_header.png" alt="github_header" width="600" height="67" style="max-width: 100%; height: auto;"><br>   <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/08/forking.png" alt="forking" width="600" height="425" style="max-width: 100%; height: auto;"><br> <h3>
    <span>Step 2</span>: Cloning</h3>
    <p>Clone the repo using the URL in the right sidebar:</p>
    <pre>git clone <a href="mailto:git@github.com">git@github.com</a>:jcutrell/jquery.git</pre> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/08/clone_url.png" alt="clone_url" width="600" height="438" style="max-width: 100%; height: auto;"><br> <h3>
    <span>Step 3</span>: Adding the Upstream Remote</h3>
    <p>Change into the cloned directory and then at this point, you can add the upstream remote:</p>
    <pre>cd jquery&#x000A;    git remote add upstream <a href="mailto:git@github.com">git@github.com</a>:jquery/jquery.git</pre>
    <p>This will now allow you to pull in changes from the source locally and merge them, like so:</p>
    <pre>git fetch upstream&#x000A;    git merge upstream/master&#x000A;    </pre>
    <h3>
    <span>Step 4</span>: Checking Out a Topic Branch</h3>
    <p>However, before you make your own changes, checkout a topic branch:</p>
    <pre>git checkout -b enhancement_345</pre>
    <h3>
    <span>Step 5</span>: Committing</h3>
    <p>Now, you can make your changes, and create a commit that tracks <em>just those changes</em>.</p>
    <pre>git commit -am "adding a smileyface to the documentation."</pre>
    <h3>
    <span>Step 6</span>: Pushing</h3>
    <p>Next, you’ll push this topic branch to your own fork of the project.</p>
    <pre>git push origin enhancment_345</pre>
    <h3>
    <span>Step 7</span>: Creating a Pull Request</h3>
    <p>Finally, you will create a pull request. First, go to your fork of the repo. You might see a <strong>“your recently pushed branches”</strong>, and if so, you can choose <strong>“Compare and Pull Request”</strong>. Otherwise, you can select your branch from the dropdown, and subsequently click <strong>“Pull Request”</strong> or <strong>“Compare”</strong> at the top right of the repo section.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/08/compare_pull_request.png" alt="compare_pull_request" width="600" height="603" style="max-width: 100%; height: auto;"><br> Creating a pull request via the <strong>Compare and Pull Request</strong> button.<br>   <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/08/switch_branches.png" alt="switch_branches" width="600" height="835" style="max-width: 100%; height: auto;"><br> Creating a pull request via the branch dropdown menu.<br> <p> Either of these will take you to a page where you can create a pull request and comment on the request. This page also includes a visualization of the changes you made. This makes it easy for the project administrator to see what you have done and make easier decisions about whether it is appropriate to merge your commit. If they have questions, they can ask them in the comments; they may also ask you to clean up your pull request and resubmit, and subsequently close the pull request.</p>
    <p>Note that it is incredibly important that you show the administrators of a project full respect; after all, you can always use your forked version of the code, and if they chose not to pull in your changes, it is because they have the position to do so. Remember, according to Github Employee <a href="http://twitter.com/holman" rel="nofollow external" class="bo">Zach Holman</a>‘s take in <a href="http://zachholman.com/talk/how-github-uses-github-to-build-github/" rel="nofollow external" class="bo">“How GitHub Uses GitHub to Build GitHub”</a>, pull requests are conversations. This is how they should be treated; instead of expecting your commit to be accepted, you should expect only that it will open conversation about the code that you wrote.</p>
    <hr>
    <h2>GitHub Issues + Pull Requests = Project Management Zen</h2>
    <p>GitHub offers GitHub Issues, which is a robust way of creating documented, interactive, automated conversations about bugs or features for any given project. While Issues can be disabled, they are enabled by default. There are a lot of awesome features that Issues has built-in, but one of the most important features is its integration with pull requests. A user can reference an issue in their commit message by simply including the issue’s numerical ID in the commit message. For instance:</p>
    <pre>git commit -am "Adding a header; fixes #3"</pre>
    <p>This commit message would automatically mark issue #3 as closed when its associated pull request is accepted. This kind of automation makes GitHub a wonderful tool for development project management.</p>
    <hr>
    <h2>Seek Out Secondary Channels of Collaboration</h2>
    <blockquote><p>Often, large open-source projects benefit from many different kinds of collaborative work.</p></blockquote>
    <p>Don’t get caught up thinking that the only way you can contribute is through pull requests. Often, large open-source projects benefit from many different kinds of collaborative work. For instance, a project like Ruby on Rails was notorious for its <em>community</em>; this community would answer questions on forums and in IRC chatrooms to help build knowledge about the framework, and also would help drive the future direction of the framework by talking about ideas and uncovering bugs.</p>
    <p>These channels of collaboration are usually opened up as support environments as mentioned before, such as forums and chatrooms. There may also be email chains, meetups, or conference calls that help define the project’s direction and create a lively, productive community around the project. Without this kind of community, pull requests are far less effective.</p>
    <hr>
    <h2>Most of All, It’s About Your Attitude</h2>
    <p>Remember, open source is driven by people who have the attitude that sharing knowledge and building collaborative intelligence is a worthwhile endeavor. Your involvement in these projects will be most effective if you approach a given project with the inquisitive attitude that asks “how can I help?” rather than a closed attitude that says “I’m going to help however I want.” People in the open source world want to work with people who are genuinely driven to help others.</p>
    <hr>
    <h2>Conclusion</h2>
    <p>If you are interested in getting involved in an open source project, great! Remember, if you approach the project with the right attitude and start small, you could see your name on pull requests merged into code that is distributed to people all over the world and used every day. Take the time to learn about the project and the people who are involved with the project. Develop a genuine interest in helping the project become better. The power of GitHub and the open-source world is continuing to grow every day; start collaborating with other developers, and you can be a part of that world!</p>
    </div>
]]>
</Body>
<Summary>If you don’t already know, GitHub is an incredibly effective way to collaborate on development projects. Providing a place for anyone with an internet connection to have an avenue where they can...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/OvRpl01MVFE/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34569/guest@my.umbc.edu/d74b95bf3569854a988986b549a14bf7/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>github-collaboration</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tools-and-tips</Tag>
<Tag>tutorials</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, 22 Aug 2013 18:29:10 -0400</PostedAt>
<EditAt>Thu, 22 Aug 2013 18:29:10 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34566" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34566">
<Title>The Pentagon as Silicon Valley&#8217;s Incubator</Title>
<Body>
<![CDATA[
    <div class="html-content">Government experts on computer vulnerabilities are heading to Silicon Valley to create technology start-ups specializing in tools aimed at thwarting online threats.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Ftechnology%2Fthe-pentagon-as-start-up-incubator.html%3Fpartner%3Drss%26emc%3Drss&amp;t=The+Pentagon+as+Silicon+Valley%E2%80%99s+Incubator" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Ftechnology%2Fthe-pentagon-as-start-up-incubator.html%3Fpartner%3Drss%26emc%3Drss&amp;t=The+Pentagon+as+Silicon+Valley%E2%80%99s+Incubator" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Ftechnology%2Fthe-pentagon-as-start-up-incubator.html%3Fpartner%3Drss%26emc%3Drss&amp;t=The+Pentagon+as+Silicon+Valley%E2%80%99s+Incubator" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Ftechnology%2Fthe-pentagon-as-start-up-incubator.html%3Fpartner%3Drss%26emc%3Drss&amp;t=The+Pentagon+as+Silicon+Valley%E2%80%99s+Incubator" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Ftechnology%2Fthe-pentagon-as-start-up-incubator.html%3Fpartner%3Drss%26emc%3Drss&amp;t=The+Pentagon+as+Silicon+Valley%E2%80%99s+Incubator" 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/173952921623/u/0/f/640387/c/34625/s/304863a6/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921623/u/0/f/640387/c/34625/s/304863a6/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173952921623/u/0/f/640387/c/34625/s/304863a6/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921623/u/0/f/640387/c/34625/s/304863a6/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173952921623/u/0/f/640387/c/34625/s/304863a6/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921623/u/0/f/640387/c/34625/s/304863a6/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173952921623/u/0/f/640387/c/34625/s/304863a6/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921623/u/0/f/640387/c/34625/s/304863a6/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Government experts on computer vulnerabilities are heading to Silicon Valley to create technology start-ups specializing in tools aimed at thwarting online threats.      </Summary>
<Website>http://www.nytimes.com/2013/08/23/technology/the-pentagon-as-start-up-incubator.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34566/guest@my.umbc.edu/675c61c941c8817bd4c72b7330e1f3be/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>cyberwarfare</Tag>
<Tag>defense-department</Tag>
<Tag>entrepreneurship</Tag>
<Tag>espionage-and-intelligence-services</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>national-security-agency</Tag>
<Tag>new</Tag>
<Tag>raytheon-company-rtn-nyse</Tag>
<Tag>silicon-valley-calif</Tag>
<Tag>start-ups</Tag>
<Tag>surveillance-of-citizens-by-government</Tag>
<Tag>technology</Tag>
<Tag>washington-dc</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, 22 Aug 2013 18:03:55 -0400</PostedAt>
<EditAt>Thu, 22 Aug 2013 18:03:55 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34567" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34567">
<Title>High &amp; Low Finance: How BlackBerry Handled Past Wealth</Title>
<Body>
<![CDATA[
    <div class="html-content">As the company’s fortunes spiral down, a look back shows little reward for loyal shareholders even in its heyday. But executives did well.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Fbusiness%2Feconomy%2Fhow-blackberry-handled-prosperity-past.html%3Fpartner%3Drss%26emc%3Drss&amp;t=High+%26+Low+Finance%3A+How+BlackBerry+Handled+Past+Wealth" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Fbusiness%2Feconomy%2Fhow-blackberry-handled-prosperity-past.html%3Fpartner%3Drss%26emc%3Drss&amp;t=High+%26+Low+Finance%3A+How+BlackBerry+Handled+Past+Wealth" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Fbusiness%2Feconomy%2Fhow-blackberry-handled-prosperity-past.html%3Fpartner%3Drss%26emc%3Drss&amp;t=High+%26+Low+Finance%3A+How+BlackBerry+Handled+Past+Wealth" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Fbusiness%2Feconomy%2Fhow-blackberry-handled-prosperity-past.html%3Fpartner%3Drss%26emc%3Drss&amp;t=High+%26+Low+Finance%3A+How+BlackBerry+Handled+Past+Wealth" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Fbusiness%2Feconomy%2Fhow-blackberry-handled-prosperity-past.html%3Fpartner%3Drss%26emc%3Drss&amp;t=High+%26+Low+Finance%3A+How+BlackBerry+Handled+Past+Wealth" 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/173952921622/u/0/f/640387/c/34625/s/304863ad/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921622/u/0/f/640387/c/34625/s/304863ad/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173952921622/u/0/f/640387/c/34625/s/304863ad/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921622/u/0/f/640387/c/34625/s/304863ad/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173952921622/u/0/f/640387/c/34625/s/304863ad/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921622/u/0/f/640387/c/34625/s/304863ad/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173952921622/u/0/f/640387/c/34625/s/304863ad/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952921622/u/0/f/640387/c/34625/s/304863ad/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>As the company’s fortunes spiral down, a look back shows little reward for loyal shareholders even in its heyday. But executives did well.      </Summary>
<Website>http://www.nytimes.com/2013/08/23/business/economy/how-blackberry-handled-prosperity-past.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34567/guest@my.umbc.edu/7c9fd45c1953e1c9e916c81c1080ccd6/api/pixel</TrackingUrl>
<Tag>blackberry-bbry-nasdaq</Tag>
<Tag>digital-equipment-corp</Tag>
<Tag>executive-compensation</Tag>
<Tag>hewlett-packard-company-hpq-nyse</Tag>
<Tag>new</Tag>
<Tag>stock-options-and-purchase-plans</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, 22 Aug 2013 17:39:40 -0400</PostedAt>
<EditAt>Thu, 22 Aug 2013 17:39:40 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34564" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34564">
<Title>GWST Student Kelly Martin Broderick makes national headlines</Title>
<Tagline>Turning cyberbullying into an opportunity for activism</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div>After learning that an anonymous person used her profile picture to create a mean-spirited meme online, Kelly first tried to retrieve her image and stop the spread of the photo online. When those attempts were unsuccessful, she decided instead to respond publicly.</div>
    <div><br></div>
    <div>She wrote about her story, critiquing the systems of oppression at work in this cyberbulling episode, which you can read online at xoJane: "<span><a href="http://www.xojane.com/issues/my-picture-was-stolen-and-turned-into-a-fat-shaming-anti-feminist-meme" rel="nofollow external" class="bo">My Picture Was Stolen And Turned Into A Fat-Shaming Anti-Feminist Meme on Facebook</a>: </span><span>At first I was in shock. Then I got angry. Then I decided to do something about it." This story has been picked up by additional news outlets, including Cosmo (</span><a href="http://www.cosmopolitan.com/celebrity/news/what-feminists-look-like" rel="nofollow external" class="bo">http://www.cosmopolitan.com/celebrity/news/what-feminists-look-like</a>).</div>
    <div><span><br></span></div>
    <div>Kelly took this experience one step further and created a tumblr where folks can submit pictures of themselves, to help prove her point, "Feminists are not a monolith. We are diverse and unique. We don’t fit into every stereotype." Check out her tumblr and submit your photo to this project here: <a href="http://wearewhatfeministslooklike.tumblr.com/" rel="nofollow external" class="bo">http://wearewhatfeministslooklike.tumblr.com/</a>
    </div>
    <div><br></div>
    <div><span>The Department of Gender and Women's Studies applauds Kelly's activism, leadership, courage, and quick wit. We look forward to seeing what Kelly will do next, and you should too.</span></div>
    </div>
]]>
</Body>
<Summary>After learning that an anonymous person used her profile picture to create a mean-spirited meme online, Kelly first tried to retrieve her image and stop the spread of the photo online. When those...</Summary>
<Website>http://gwst.umbc.edu</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34564/guest@my.umbc.edu/c4a41b49abeb2fed5bb9a1a409164916/api/pixel</TrackingUrl>
<Group token="gwst">Department of Gender, Women's, + Sexuality Studies</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gwst</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/xsmall.png?1551107229</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/original.png?1551107229</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/xxlarge.png?1551107229</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/xlarge.png?1551107229</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/large.png?1551107229</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/medium.png?1551107229</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/small.png?1551107229</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/xsmall.png?1551107229</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/442/0951c34dc17cf35be31bb59fa96435df/xxsmall.png?1551107229</AvatarUrl>
<Sponsor>Department of Gender + Women's Studies</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/564/cded3aaf29d4f966ac4207eeaa15dcfc/xxlarge.jpg?1377206102</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/564/cded3aaf29d4f966ac4207eeaa15dcfc/xlarge.jpg?1377206102</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/564/cded3aaf29d4f966ac4207eeaa15dcfc/large.jpg?1377206102</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/564/cded3aaf29d4f966ac4207eeaa15dcfc/medium.jpg?1377206102</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/564/cded3aaf29d4f966ac4207eeaa15dcfc/small.jpg?1377206102</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/564/cded3aaf29d4f966ac4207eeaa15dcfc/xsmall.jpg?1377206102</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/564/cded3aaf29d4f966ac4207eeaa15dcfc/xxsmall.jpg?1377206102</ThumbnailUrl>
<PawCount>133</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 22 Aug 2013 17:20:06 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110054" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110054">
<Title>Thomas Schaller, Political Science, in the Baltimore Sun</Title>
<Body>
<![CDATA[
    <div class="html-content">In advance of Labor Day, UMBC political science professor Thomas F. Schaller writes in his latest Baltimore Sun column that despite increased productivity, U.S. workers have less access to vacation time and lower pay than their international peers. Schaller references a study released earlier this year by the International Labor Organization, which found American workers are the most productive in the world, producing $63,885 of wealth annually on average. However, he notes, citing a recent study by the Center for Economic and Policy Research, “the United States is the only nation that doesn’t guarantee every worker a certain number of …</div>
]]>
</Body>
<Summary>In advance of Labor Day, UMBC political science professor Thomas F. Schaller writes in his latest Baltimore Sun column that despite increased productivity, U.S. workers have less access to...</Summary>
<Website>https://news.umbc.edu/thomas-schaller-political-science-in-the-baltimore-sun-30/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110054/guest@my.umbc.edu/2c23168dd936dade631ef15f60e000e7/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>politicalscience</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 22 Aug 2013 17:16:47 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34565" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34565">
<Title>Bits Blog: Yahoo Surpasses Google in Web Traffic, Somehow</Title>
<Body>
<![CDATA[
    <div class="html-content">For the first time since 2011, Yahoo had more unique visitors in a month than any other Web property, but why that happened remains unclear.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fyahoo-surpasses-google-to-take-top-spot%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Yahoo+Surpasses+Google+in+Web+Traffic%2C+Somehow" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fyahoo-surpasses-google-to-take-top-spot%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Yahoo+Surpasses+Google+in+Web+Traffic%2C+Somehow" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fyahoo-surpasses-google-to-take-top-spot%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Yahoo+Surpasses+Google+in+Web+Traffic%2C+Somehow" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fyahoo-surpasses-google-to-take-top-spot%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Yahoo+Surpasses+Google+in+Web+Traffic%2C+Somehow" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fyahoo-surpasses-google-to-take-top-spot%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Yahoo+Surpasses+Google+in+Web+Traffic%2C+Somehow" 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>For the first time since 2011, Yahoo had more unique visitors in a month than any other Web property, but why that happened remains unclear.      </Summary>
<Website>http://bits.blogs.nytimes.com/2013/08/22/yahoo-surpasses-google-to-take-top-spot/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34565/guest@my.umbc.edu/99d5880da88e529031ef802e69fd145a/api/pixel</TrackingUrl>
<Tag>comscore-inc</Tag>
<Tag>google-inc</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>internet</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>yahoo-inc</Tag>
<Tag>yahoo-inc-yhoo-nasdaq</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, 22 Aug 2013 16:42:37 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34562" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34562">
<Title>Bits Blog: A 3-D Scanner Reaches for the Masses</Title>
<Body>
<![CDATA[
    <div class="html-content">MakerBot, a leader in consumer 3-D printing, has introduced a desktop scanner called the Digitizer that could help push more of the public into 3-D printing.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fa-3-d-scanner-reaches-for-the-masses%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+3-D+Scanner+Reaches+for+the+Masses" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fa-3-d-scanner-reaches-for-the-masses%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+3-D+Scanner+Reaches+for+the+Masses" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fa-3-d-scanner-reaches-for-the-masses%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+3-D+Scanner+Reaches+for+the+Masses" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fa-3-d-scanner-reaches-for-the-masses%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+3-D+Scanner+Reaches+for+the+Masses" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F22%2Fa-3-d-scanner-reaches-for-the-masses%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+A+3-D+Scanner+Reaches+for+the+Masses" 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/173608223581/u/0/f/640387/c/34625/s/304739e4/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608223581/u/0/f/640387/c/34625/s/304739e4/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608223581/u/0/f/640387/c/34625/s/304739e4/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608223581/u/0/f/640387/c/34625/s/304739e4/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608223581/u/0/f/640387/c/34625/s/304739e4/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608223581/u/0/f/640387/c/34625/s/304739e4/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173608223581/u/0/f/640387/c/34625/s/304739e4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608223581/u/0/f/640387/c/34625/s/304739e4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>MakerBot, a leader in consumer 3-D printing, has introduced a desktop scanner called the Digitizer that could help push more of the public into 3-D printing.      </Summary>
<Website>http://bits.blogs.nytimes.com/2013/08/22/a-3-d-scanner-reaches-for-the-masses/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34562/guest@my.umbc.edu/2904f8fdf30c7f151ca920a4a5684ec3/api/pixel</TrackingUrl>
<Tag>3-d-devices-and-effects</Tag>
<Tag>3-d-printers</Tag>
<Tag>3-d-scanners</Tag>
<Tag>devices</Tag>
<Tag>makerbot-industries</Tag>
<Tag>new</Tag>
<Tag>stratasys-inc</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, 22 Aug 2013 15:12:47 -0400</PostedAt>
<EditAt>Fri, 23 Aug 2013 12:41:26 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34560" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34560">
<Title>Blackboard Down for Maintenance 10 pm 8/30 to 1 am 9/1</Title>
<Body>
<![CDATA[
    <div class="html-content">The UMBC Blackboard server will be down from 10 pm Friday 8/30 to 1 am Saturday 9/1.  This down time is during the <a href="http://www.umbc.edu/blogs/oit-news/archives/2011/08/blackboard_week.html" rel="nofollow external" class="bo">regularly scheduled maintenance window</a> and is necessary for DoIT staff to perform maintenance on the system. We appreciate your patience and apologize for any inconvenience that this down time may cause.<div><br></div>
    <div>After Blackboard is back online, please clear your Internet browser cache and cookies before logging in. Step-by-step instructions are on <a href="https://wiki.umbc.edu/x/gIAc" rel="nofollow external" class="bo">https://wiki.umbc.edu/x/gIAc</a>
    </div>
    </div>
]]>
</Body>
<Summary>The UMBC Blackboard server will be down from 10 pm Friday 8/30 to 1 am Saturday 9/1.  This down time is during the regularly scheduled maintenance window and is necessary for DoIT staff to perform...</Summary>
<Website>http://my.umbc.edu/groups/bbannouncements/news/34560</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34560/guest@my.umbc.edu/6e46e5fb6e9c094b30a3c36be0ed5674/api/pixel</TrackingUrl>
<Group token="bbannouncements">Blackboard Announcements</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bbannouncements</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xsmall.png?1437137819</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/original.png?1437137819</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xxlarge.png?1437137819</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xlarge.png?1437137819</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/large.png?1437137819</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/medium.png?1437137819</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/small.png?1437137819</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xsmall.png?1437137819</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/319/f6b35e5217428f5021e113525a55e6f4/xxsmall.png?1437137819</AvatarUrl>
<Sponsor>Blackboard Announcements</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/560/cf1420a1b265012ab70e3e275f812180/xxlarge.jpg?1377198469</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/560/cf1420a1b265012ab70e3e275f812180/xlarge.jpg?1377198469</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/560/cf1420a1b265012ab70e3e275f812180/large.jpg?1377198469</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/560/cf1420a1b265012ab70e3e275f812180/medium.jpg?1377198469</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/560/cf1420a1b265012ab70e3e275f812180/small.jpg?1377198469</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/560/cf1420a1b265012ab70e3e275f812180/xsmall.jpg?1377198469</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/560/cf1420a1b265012ab70e3e275f812180/xxsmall.jpg?1377198469</ThumbnailUrl>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 22 Aug 2013 15:08:34 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 21:54:54 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="34559" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34559">
<Title>How do I create questions within TurningPoint AnyWhere Polling?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~anna%0A" rel="nofollow external" class="bo">Anna Sniadach</a>
                </p>
            <div>
            <h2>Tell me</h2>
    <ol>
    <li>Launch the Turning Point dashboard</li>
    <li>Click the drop down arrow next to the <em>Responses</em> window</li>
    <li>Select the kind of question you wish to add<br>TurningPoint will open polling immediately after your selection</li>
    <li>Close the polling and a graph will be displayed show the audience's response</li>
    </ol>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D22709326&amp;q=0&amp;v=1&amp;s=faq&amp;l=clickers" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D22709326" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D22709326" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D22709326&amp;q=0&amp;v=0&amp;s=faq&amp;l=clickers" rel="nofollow external" class="bo">Request Help</a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=22709326" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=22709326&amp;revisedVersion=7&amp;originalVersion=6" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Anna Sniadach                                  Tell me   Launch the Turning Point dashboard  Click the drop down arrow next to the Responses window...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=22709326</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34559/guest@my.umbc.edu/f20f3b6670fdf88a520d1a9b50df288a/api/pixel</TrackingUrl>
<Tag>clickers</Tag>
<Tag>faq</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1787842653</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/1/original.png?1787842653</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1787842653</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1787842653</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/images/avatars/group/1/large.png?1787842653</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/images/avatars/group/1/medium.png?1787842653</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/1/small.png?1787842653</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xsmall.png?1787842653</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/1/xxsmall.png?1787842653</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 22 Aug 2013 14:40:05 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34561" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34561">
<Title>How to Install Gems in Ruby on Rails &#8211; Treehouse Quick Tip</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>A Ruby gem is a library you can use in your Ruby applications. It’s really easy to install a gem. You just need to know the name of the gem you want to install. In this Treehouse Quick Tip, Ruby teacher Jason shows you how to install the Bundler gem.</p>
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/KJnJrQNifZ4" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <p>The post <a href="http://blog.teamtreehouse.com/how-to-install-gems-in-ruby-on-rails-treehouse-quick-tip" rel="nofollow external" class="bo">How to Install Gems in Ruby on Rails – Treehouse Quick Tip</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>A Ruby gem is a library you can use in your Ruby applications. It’s really easy to install a gem. You just need to know the name of the gem you want to install. In this Treehouse Quick Tip, Ruby...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/xlnmOj3CPnE/how-to-install-gems-in-ruby-on-rails-treehouse-quick-tip</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34561/guest@my.umbc.edu/cdfda63b83abfae8f507be75412506fb/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>gem-bundler</Tag>
<Tag>html</Tag>
<Tag>installing-gems</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>quick-tips</Tag>
<Tag>responsive</Tag>
<Tag>ruby-on-rails</Tag>
<Tag>ruby-on-rails-tutorials</Tag>
<Tag>ruby-on-rails-tutorials-treehouse</Tag>
<Tag>ruby-on-rails-video-tutorials</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, 22 Aug 2013 14:30:00 -0400</PostedAt>
</NewsItem>

</News>
