<?xml version="1.0"?>
<News hasArchived="true" page="7724" pageCount="10777" pageSize="10" timestamp="Sun, 30 Aug 2026 12:52:29 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7724">
<NewsItem contentIssues="true" id="42301" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42301">
<Title>Testing Your Ruby Code With Guard, RSpec &amp; Pry</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>My recent work has been on a cloud based Ruby project for the BBC News, upcoming 2014 elections. It requires fast I/O, scalability and needs to be well tested. The "be well tested" requirement, is what I want to focus on in this tutorial.</p>
    <h2>Introduction</h2>
    
    <p>This project utilizes a few different Amazon services such as:</p>
    
    <ul>
    <li>SQS (Simple Queue Service)</li>
    <li>DynamoDB (key/value store)</li>
    <li>S3 (Simple Storage Service)</li>
    </ul>
    
    <p>We need to be able to write tests that are fast and give us instant feedback on problems with our code. </p>
    
    <p>Although, we won't be using Amazon services in this tutorial, I mention them because for us to have tests that are fast, it requires us to fake these external objects (for example, we shouldn't need a network connection to run our tests, because that dependency can result in slow running tests).</p>
    
    <p>Alongside tech lead <a href="http://twitter.com/kenturamon" rel="nofollow external" class="bo">Robert Kenny</a> (who is very well versed in writing <a href="http://en.wikipedia.org/wiki/Test-driven_development" rel="nofollow external" class="bo">TDD (test-driven development)</a> based Ruby applications) we've been utilizing different tools that have made this process and our programming work a lot easier.</p>
    
    <p>I want to share some information about these tools with you.</p>
    
    <p>The tools I'll be covering are:</p>
    
    <ul>
    <li>
    <a href="http://rspec.info/" rel="nofollow external" class="bo">RSpec</a> (testing framework)</li>
    <li>
    <a href="http://guardgem.org/" rel="nofollow external" class="bo">Guard</a> (task runner)</li>
    <li>
    <a href="http://pryrepl.org/" rel="nofollow external" class="bo">Pry</a> (REPL and debugging)</li>
    </ul>
    
    <h2>What Do I Need to Know Upfront?</h2>
    
    <p>I'm going to make an assumption that you are familiar with Ruby code and the Ruby eco-system. For example, I shouldn't need to explain to you what 'gems' are or how certain Ruby syntax/concepts work. </p>
    
    <p>If you're unsure, then before you move, on I would recommend reading one of my other posts on Ruby to get yourself up to speed.</p>
    
    <h2>Guard</h2>
    
    <p>You might not be familiar with Guard, but in essence it's a command line tool that utilizes Ruby to handle different events. </p>
    
    <p>For example, Guard can notify you whenever specific files have been edited and you can carry out some action based on the type of file or event that was fired.</p>
    
    <p>This is known as a 'task runner', you may have heard the phrase before, as they are getting a lot of usage in the front-end/client-side world at the moment (<a href="http://gruntjs.com/" rel="nofollow external" class="bo">Grunt</a> and <a href="http://gulpjs.com/" rel="nofollow external" class="bo">Gulp</a> are two popular examples).</p>
    
    <p>The reason we'll be using Guard is because it helps make the feedback loop (when doing TDD) a lot tighter. It allows us to edit our test files, see a failing test, update and save our code and immediately see if it passes or fails (depending on what we wrote).</p>
    
    <p>You could use something like Grunt or Gulp instead, but we prefer to use those types of task runners for handling front-end/client-side stuff. For back-end/server-side code, we use Rake and Guard.</p>
    
    <h2>RSpec</h2>
    
    <p>RSpec, if you weren't already aware, is a testing tool for the <a href="https://www.ruby-lang.org/en/" rel="nofollow external" class="bo">Ruby</a> programming language.</p>
    
    <p>You run your tests (using RSpec) via the command line and I'll demonstrate how you can make this process easier via the use of Ruby's build program, <a href="http://rake.rubyforge.org/" rel="nofollow external" class="bo">Rake</a>.</p>
    
    <h2>Pry</h2>
    
    <p>Lastly, we'll be using another Ruby gem called <a href="http://pryrepl.org/" rel="nofollow external" class="bo">Pry</a> which is an extremely powerful Ruby debugging tool which injects itself into your application, while it is running, to allow you to inspect your code and figure out why something isn't working.</p>
    
    <h2>TDD (Test-Driven Development)</h2>
    
    <p>Although not necessary for demonstrating the use of RSpec and Guard, it's worth noting that I fully endorse the use of TDD as a means to ensure every line of code you write has a purpose and has been designed in a testable and reliable manner.</p>
    
    <p>I'll be detailing how we would do TDD with a simple application, so at least you'll get a feel for how the process works.</p>
    
    <h2>Creating an Example Project</h2>
    
    <p>I've created a basic example on GitHub to save you from having to type everything out yourself. Feel free to <a href="https://github.com/Integralist/Guard-and-RSpec" rel="nofollow external" class="bo">download the code</a>. </p>
    
    <p>Let's now go ahead and review this project, step-by-step.</p>
    
    <h3>Primary Files</h3>
    
    <p>There are three primary files required for our example application to work, these are: </p>
    
    <ol>
    <li><code>Gemfile</code></li>
    <li><code>Guardfile</code></li>
    <li><code>Rakefile</code></li>
    </ol>
    
    <p>We'll go over the content of each file shortly, but the first thing we need to do is get our directory structure in place.</p>
    
    <h3>Directory Structure</h3>
    
    <p>For our example project, we'll need two folders created:</p>
    
    <ul>
    <li>
    <code>lib</code> (this will hold our application code)</li>
    <li>
    <code>spec</code> (this will hold our test code)</li>
    </ul>
    
    <p>This isn't a requirement for your application, you can easily tweak the code within our other files to work with whatever structure suits you.</p>
    
    <h3>Installation</h3>
    
    <p>Open up your terminal and run the following command: </p>
    
    <pre>gem install bundler</pre>
    
    <p><a href="http://bundler.io/" rel="nofollow external" class="bo">Bundler</a> is a tool that makes installing other gems easier.</p>
    
    <p>Once you've run that command, create the above three files (<code>Gemfile</code>, <code>Guardfile</code> and <code>Rakefile</code>).</p>
    
    <h3>Gemfile</h3>
    
    <p>The <code>Gemfile</code> is responsible for defining a list of dependencies for our
    application.</p>
    
    <p>Here is what it looks like:</p>
    
    <pre>source "<a href="https://rubygems.org">https://rubygems.org</a>"&#x000A;    &#x000A;    gem 'rspec'&#x000A;    &#x000A;    group :development do&#x000A;      gem 'guard'&#x000A;      gem 'guard-rspec'&#x000A;      gem 'pry'&#x000A;    end&#x000A;    </pre>
    
    <p>Once this file is saved, run the command <code>bundle install</code>.</p>
    <p>This will install all of our gems for us (including those gems specified within the <code>development</code> group).</p>
    
    <p>The purpose of the <code>development</code> group (which is a <a href="http://bundler.io/v1.3/groups.html" rel="nofollow external" class="bo">bundler specific feature</a>) is so when you deploy your application, you can tell your production environment to install only the gems that are required for your application to function properly.</p>
    
    <p>So for example, all the gems inside the <code>development</code> group, aren't required for the application to function properly. They are used solely to aid us while we're developing and testing our code.</p>
    
    <p>To install the appropriate gems on your production server, you would need to run something like:</p>
    
    <pre>bundle install --without development</pre>
    
    <h3>Rakefile</h3>
    
    <p>The <code>Rakefile</code> will allow us to run our RSpec tests from the command line.</p>
    
    <p>Here is what it looks like:</p>
    
    <pre>require 'rspec/core/rake_task'&#x000A;    &#x000A;    RSpec::Core::RakeTask.new do |task|&#x000A;      task.rspec_opts = ['--color', '--format', 'doc']&#x000A;    end&#x000A;    </pre>
    
    <p><em>Note</em>: you don't need Guard to be able to run your RSpec tests. We use Guard to make it easier to do TDD.</p>
    
    <p>When you install RSpec, it gives you access to a built in Rake task and that's what we're using here.</p>
    
    <p>We create a new instance of <code>RakeTask</code> which by default creates a task called <code>spec</code> that will look for a folder called <code>spec</code> and will run all the test files within that folder, using the configuration options we've defined.</p>
    
    <p>In this instance, we want our shell output to have color and we want to format the output to the <code>doc</code> style (you could change the format to be <code>nested</code> as an example).</p>
    
    <p>You can configure the Rake task to work any way you want and to look into different directories, if that's what you have. But the default settings work great for our application and so that's what we'll be using.</p>
    
    <p>Now if I want to run the tests in my example GitHub repository, then I need to open up my terminal and run the command:</p>
    
    <pre>rake spec</pre>
    
    <p>This gives us the following output:</p>
    
    <pre>rake spec&#x000A;    /bin/ruby -S rspec ./spec/example_spec.rb --color --format doc&#x000A;    &#x000A;    RSpecGreeter&#x000A;      RSpecGreeter#greet()&#x000A;    &#x000A;    Finished in 0.0006 seconds&#x000A;    1 example, 0 failures&#x000A;    </pre>
    
    <p>As you can see there are zero failures. That's because although we have no application code written, we also don't have any test code written yet either.</p>
    
    <h3>Guardfile</h3>
    
    <p>The contents of this file tells Guard what to do when we run the <code>guard</code> command:</p>
    
    <pre>guard 'rspec' do&#x000A;      # watch /lib/ files&#x000A;      watch(%r{^lib/(.+).rb$}) do |m|&#x000A;        "spec/#{m[1]}_spec.rb"&#x000A;      end&#x000A;    &#x000A;    # watch /spec/ files&#x000A;      watch(%r{^spec/(.+).rb$}) do |m|&#x000A;        "spec/#{m[1]}.rb"&#x000A;      end&#x000A;    end&#x000A;    </pre>
    
    <p>You'll have noticed within our <code>Gemfile</code> we specified the gem: <code>guard-rspec</code>. We need that gem to allow Guard to understand how to handle changes to RSpec related files.</p>
    
    <p>If we look again at the content, we can see that if we ran <code>guard rspec</code> then Guard would watch the specified files and execute the specified commands once any changes to those files had occurred.</p>
    
    <p><em>Note</em>: because we only have one guard task, <code>rspec</code>, then that is run by default if we ran the command <code>guard</code>.</p>
    
    <p>You can see Guard provides us with a <code>watch</code> function which we pass a <a href="http://www.regular-expressions.info/" rel="nofollow external" class="bo">Regular Expression</a> to allow us to define what files we're interested in Guard watching.</p>
    
    <p>In this instance, we're telling Guard to watch all the files within our <code>lib</code> and <code>spec</code> folders and if any changes occur to any of those files then to execute the test files within our <code>spec</code> folder to make sure no changes we made broke our tests (and subsequently didn't break our code).</p>
    
    <p>If you have all the files downloaded from the <a href="https://github.com/Integralist/Guard-and-RSpec" rel="nofollow external" class="bo">GitHub repo</a> then you can try out the command for yourself. </p>
    
    <p>Run <code>guard</code> and then save one of the files to see it run the tests.</p>
    
    <h2>Test Code</h2>
    
    <p>Before we start looking at some test and application code, let me explain what our application is going to do. Our application is a single class that will return a greeting message to whoever is running the code. </p>
    
    <p>Our requirements are purposely simplified, as it'll make the process we're about to undertake easier to understand.</p>
    
    <p>Let's now take a look at an example specification (for example, our test file) which will describe our requirements. After that, we'll start to step through the code defined in the specification and see how we can use TDD to aid us in writing our application.</p>
    
    <h3>Our First Test</h3>
    
    <p>We're going to create a file titled <code>example_spec.rb</code>. The purpose of this file
    is to become our specification file (in other words, this is going to be our
    test code and will represent the expected functionality).</p>
    
    <p>The reason we write our test code before writing our actual application code is because it ultimately means that any application code we do produce will exist because it
    was actually used. </p>
    
    <p>That's an important point I'm making and so let me take a moment to clarify it in more detail.</p>
    <h4>Writing Test Code Before Application Code</h4>
    
    <p>Typically, if you write your application code first (so you're not doing TDD), then you will find yourself writing code that at some point in the future is over engineered and potentially obsolete. Through the process of refactoring or changing requirements, you may find that some functions will fail to ever be called. </p>
    
    <p>This is why TDD is considered the better practice and the preferred development method to use, because every line of code you produce will has been produced for a reason: to get a failing specification (your actual business requirement) to pass. That's a very powerful thing to keep in mind.</p>
    
    <p>Here is our test code:</p>
    
    <pre>require 'spec_helper'&#x000A;    &#x000A;    describe 'RSpecGreeter' do&#x000A;      it 'RSpecGreeter#greet()' do&#x000A;        greeter  = RSpecGreeter.new         # Given&#x000A;        greeting = greeter.greet            # When&#x000A;        greeting.should eq('Hello RSpec!')  # Then&#x000A;      end&#x000A;    end&#x000A;    </pre>
    
    <p>You may notice the code comments at the end of each line:</p>
    
    <ul>
    <li><code>Given</code></li>
    <li><code>When</code></li>
    <li><code>Then</code></li>
    </ul>
    
    <p>These are a form of BDD (Behaviour-Driven Development) terminology. I included them for readers who are more familiar with <a href="http://en.wikipedia.org/wiki/Behavior-driven_development" rel="nofollow external" class="bo">BDD (Behavior-Driven Development)</a> and who were interested in how they can equate these statements with TDD.</p>
    
    <p>The first thing we do inside this file is load <code>spec_helper.rb</code> (which is found in the same directory as our spec file). We'll come back and look at the contents of that file in a moment.</p>
    
    <p>Next we have two code blocks that are specific to RSpec:</p>
    
    <ul>
    <li><code>describe 'x' do</code></li>
    <li><code>it 'y' do</code></li>
    </ul>
    
    <p>The first <code>describe</code> block should adequately describe the specific class/module we're working on and providing tests for. You could very well have multiple <code>describe</code> blocks within a single specification file.</p>
    
    <p>There are many different theories on how to use <code>describe</code> and <code>it</code> description blocks. I personally prefer simplicity and so I'll use the identifiers for the Class/Modules/Methods that we'll be testing. But you often find some people who prefer to use full sentences for their descriptions. Neither is right or wrong, just personal preference.</p>
    
    <p>The <code>it</code> block is different and should always be placed inside a <code>describe</code> block. It should explain <em>how</em> we want our application to work. </p>
    
    <p>Again, you could use a normal sentence to describe the requirements, but I've found that sometimes doing so can cause the descriptions to be too explicit, when they should really be more <em>implicit</em>. Being less explicit reduces the chances of changes to your functionality, causing your description to become outdated (having to update your description every time minor functionality changes occur is more of a burden than a help). By using the identifier of the method we're testing (for example, the name of the method we're executing) we can avoid that issue.</p>
    
    <p>The contents of the <code>it</code> block is the code we're going to test. </p>
    
    <p>In the above example, we create a new instance of the class <code>RSpecGreeter</code> (which doesn't exist yet). We send the message <code>greet</code> (which also doesn't exist yet) to the instantiated object created (<em>note</em>: these two lines are standard Ruby code at this point). </p>
    
    <p>Finally, we tell the testing framework that we expect the outcome of calling the <code>greet</code> method to be the text "<code>Hello RSpec!</code>", by using the RSpec syntax: <code>eq(something)</code>. </p>
    
    <p>Notice how the syntax allows it to be easily read (even by a non-technical person). These are known as <em>assertions</em>.</p>
    
    <p>There's a lot of different RSpec assertions and we won't go into the details, but feel free to review the <a href="https://relishapp.com/rspec" rel="nofollow external" class="bo">documentation</a> to see all the features RSpec provides.</p>
    
    <h3>Creating a Helper for Our Test</h3>
    
    <p>There is a certain amount of boilerplate required for our tests to run. In this project, we only have one specification file but in a real project you're likely to have dozens (depending on the size of your application).</p>
    
    <p>To help us reduce the boilerplate code, we'll place it inside of a special helper file that we'll load from our specification files. This file will be titled <code>spec_helper.rb</code>.</p>
    
    <p>This file will do a couple of things:</p>
    
    <ul>
    <li>tell Ruby where our main application code is located</li>
    <li>load our application code (for the tests to run against)</li>
    <li>load the <code>pry</code> gem (helps us debug our code; if we need to).</li>
    </ul>
    
    <p>Here is the code:</p>
    
    <pre>$ &lt;&lt; File.join(File.dirname(FILE), '..', 'lib')&#x000A;    &#x000A;    require 'pry'&#x000A;    require 'example'&#x000A;    </pre>
    
    <p><em>Note</em>: the first line may look a bit cryptic, so let me explain how it works. Here we're saying we want to add the <code>/lib/</code> folder to Ruby's <code>$LOAD_PATH</code> system variable. Whenever Ruby evaluates <code>require 'some_file'</code> it has a list of directories it will try and locate that file. In this instance, we're making sure that if we have the code <code>require 'example'</code> that Ruby will be able to locate it because it'll check our <code>/lib/</code> directory and there, it'll find the file specified. This is a clever trick you will see used in a lot of Ruby gems, but it can be quite confusing if you've never seen it before.</p>
    
    <h3>Application Code</h3>
    
    <p>Our application code is going to be inside a file titled <code>example.rb</code>.</p>
    
    <p>Before we begin writing any application code, remember that we're doing this project TDD. So we're going to let the tests in our specification file guide us on what to do first.</p>
    
    <p>Let's begin by assuming you're using <code>guard</code> to run your tests (so every time we make a change to <code>example.rb</code>, Guard will notice the change and proceed to run <code>example_spec.rb</code> to make sure our tests pass).</p>
    
    <p>For us to do TDD properly, our <code>example.rb</code> file will be empty and so if we open the file and 'save' it in its current state, then Guard will run and we'll discover (unsurprisingly) that our test will fail:</p>
    
    <pre>Failures:&#x000A;      1) RSpecGreeter RSpecGreeter#greet()&#x000A;         Failure/Error: greeter  = RSpecGreeter.new         # Given&#x000A;         NameError:&#x000A;           uninitialized constant RSpecGreeter&#x000A;         # ./spec/example_spec.rb:5:in&lt;/code&gt;block (2 levels) in '&#x000A;     &#x000A;    Finished in 0.00059 seconds&#x000A;    1 example, 1 failure&#x000A;     &#x000A;    Failed examples:&#x000A;     &#x000A;    rspec ./spec/example_spec.rb:4 # RSpecGreeter RSpecGreeter#greet()</pre>
    
    <hr>
    
    <p>Now before we go any further, let me clarify again that TDD is based on the premise that every line of code has a reason to exist, so <em>don't</em> start racing ahead and writing out more code than you need. Only write the minimum amount of code required for the test to pass. Even if the code is ugly or doesn't fulfill the full functionality.</p>
    
    <p>The point of TDD is to have a tight <em>feedback loop</em>, also known as 'red, green,
    refactor'). What this means in practice is:</p>
    
    <ul>
    <li>write a failing test</li>
    <li>write the least amount of code to get it to pass</li>
    <li>refactor the code</li>
    </ul>
    
    <p>You'll see in a moment that because our requirements are so simple, there is no need for us to refactor. But in a real project with much more complex requirements, you'll likely need to take the third step and refactor the code you entered, to get the test to pass.</p>
    
    <hr>
    
    <p>Coming back to our failing test, as you can see in the error, there is no <code>RSpecGreeter</code> class defined. Let's fix that and add the following code and save the file so our tests run:</p>
    
    <pre>class RSpecGreeter&#x000A;      # code will eventually go here&#x000A;    end&#x000A;    </pre>
    
    <p>This will result in the following error:</p>
    
    <pre>Failures:&#x000A;      1) RSpecGreeter RSpecGreeter#greet()&#x000A;         Failure/Error: greeter  = greeter.greet            # When&#x000A;         NoMethodError:&#x000A;           undefined methodgreet' for #&#x000A;         # ./spec/example_spec.rb:6:in `block (2 levels) in '&#x000A;    &#x000A;    Finished in 0.00036 seconds&#x000A;    1 example, 1 failure&#x000A;    </pre>
    
    <p>Now we can see that this error is telling us the method <code>greet</code> doesn't exist, so let's add it and then again save our file to run our tests:</p>
    
    <pre>class RSpecGreeter&#x000A;      def greet&#x000A;        # code will eventually go here&#x000A;      end&#x000A;    end&#x000A;    </pre>
    
    <p>OK, we're almost there. The error we get now is:</p>
    
    <pre>Failures:&#x000A;      1) RSpecGreeter RSpecGreeter#greet()&#x000A;         Failure/Error: greeter  = greeting.should eq('Hello RSpec!')  # Then&#x000A;    &#x000A;           expected: "Hello RSpec!"&#x000A;                got: nil&#x000A;    &#x000A;           (compared using ==)&#x000A;         # ./spec/example_spec.rb:7:in `block (2 levels) in '&#x000A;    &#x000A;    Finished in 0.00067 seconds&#x000A;    1 example, 1 failure&#x000A;    </pre>
    
    <p>RSpec is telling us that it was expecting to see <code>Hello RSpec!</code> but instead it got <code>nil</code> (because we defined the <code>greet</code> method but didn't actually define anything inside the method and so it returns <code>nil</code>).</p>
    
    <p>We'll add the remaining piece of code that would get our test to pass:</p>
    
    <pre>class RSpecGreeter&#x000A;      def greet&#x000A;        "Hello RSpec!"&#x000A;      end&#x000A;    end&#x000A;    </pre>
    
    <p>There we have it, a passing test:</p>
    
    <pre>Finished in 0.00061 seconds&#x000A;    1 example, 0 failures&#x000A;    </pre>
    
    <p>We're done here. Our test is written and the code is passing.</p>
    
    <h2>Conclusion</h2>
    
    <p>So far we've applied a Test-Driven Development process to building our application, alongside utilizing the popular RSpec testing framework.</p>
    
    <p>We're going to leave it here for now. Come back and join us for part two where we'll look at more RSpec specific features as well as using the Pry gem to help you debug and write your code.</p>
    </div>
]]>
</Body>
<Summary>My recent work has been on a cloud based Ruby project for the BBC News, upcoming 2014 elections. It requires fast I/O, scalability and needs to be well tested. The "be well tested" requirement, is...</Summary>
<Website>http://code.tutsplus.com/tutorials/testing-your-ruby-code-with-guard-rspec-pry--cms-19974</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42301/guest@my.umbc.edu/6314fc5b892291926ce64b851788ede2/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 11:00:00 -0400</PostedAt>
<EditAt>Tue, 11 Mar 2014 11:00:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42297" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42297">
<Title>Google Launches Interactive Online Education Tool  (via The Next Web) http://ow....</Title>
<Body>
<![CDATA[
    <div class="html-content">Google Launches Interactive Online Education Tool  (via The Next Web) <a href="http://l.facebook.com/l.php?u=http%3A%2F%2Fow.ly%2FusTBu&amp;h=6AQEcC5IL&amp;s=1" rel="nofollow external" class="bo">http://ow.ly/usTBu</a><br><br><a href="http://l.facebook.com/l.php?u=http%3A%2F%2Fow.ly%2FusTBu&amp;h=CAQEU3vYQ&amp;s=1" title="" rel="nofollow external" class="bo"><img src="https://fbexternal-a.akamaihd.net/safe_image.php?d=AQC443N1-3ZpTWxV&amp;w=154&amp;h=154&amp;url=http%3A%2F%2Fcdn2.tnwcdn.com%2Fwp-content%2Fblogs.dir%2F1%2Ffiles%2F2014%2F01%2F95920158.jpg" alt="" style="max-width: 100%; height: auto;"></a><br><a href="http://l.facebook.com/l.php?u=http%3A%2F%2Fow.ly%2FusTBu&amp;h=bAQGfs_L5&amp;s=1" rel="nofollow external" class="bo">Google Debuts Education Tool Oppia for Teaching Others</a><br>thenextweb.com<br>Google today launched a new online education tool called Oppia, currently an open source project with the goal of making it easy for anyone to...</div>
]]>
</Body>
<Summary>Google Launches Interactive Online Education Tool  (via The Next Web) http://ow.ly/usTBu   Google Debuts Education Tool Oppia for Teaching Others thenextweb.com Google today launched a new online...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10100609635223073</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42297/guest@my.umbc.edu/e0423a517ccfc6e1ac05a3e787a7d725/api/pixel</TrackingUrl>
<Tag>ccna</Tag>
<Tag>ceh</Tag>
<Tag>centers</Tag>
<Tag>cisco</Tag>
<Tag>cyber</Tag>
<Tag>cybersecurity</Tag>
<Tag>information</Tag>
<Tag>it</Tag>
<Tag>leadership</Tag>
<Tag>management</Tag>
<Tag>microsoft</Tag>
<Tag>project</Tag>
<Tag>security</Tag>
<Tag>technology</Tag>
<Tag>training</Tag>
<Tag>umbc</Tag>
<Group token="retired-575">UMBC Training Centers</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-575</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/original.jpg?1361981335</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/large.png?1361981335</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/medium.png?1361981335</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/small.png?1361981335</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxsmall.png?1361981335</AvatarUrl>
<Sponsor>UMBC Training Centers</Sponsor>
<PawCount>0</PawCount>
<CommentCount>1</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 10:25:38 -0400</PostedAt>
<EditAt>Tue, 11 Mar 2014 10:25:38 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42296" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42296">
<Title>Major A = Career B??</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Major A = Career B – Career Week will Prove the Error in this equation!</p>
    <p><span><br></span></p>
    <p><span>Many students pick a major based on the career they
    ultimately want to pursue.</span><span>  </span><span>Want to be an
    Economist?</span><span>  </span><span>Pursue a degree in Economics.</span><span>  </span><span>Want to be a biologist?</span><span>  </span><span>Begin training as a Biology major.</span><span>  </span><span>What about the student who, along the way,
    figures out all that lab/bench work they have done is not what they want to do
    for the next 30 years?</span><span>  </span><span>Or the Psychology
    major who loves the subject but doesn’t see themselves pursuing a Ph.D. to become
    a Psychologist.</span><span>  </span><span>Would they think to
    apply to a technology company where they could use their knowledge of human
    behavior to lead an application end user testing team?</span><span> </span></p>
    <p></p>
    
    <p> </p>
    
    <p>The staff members of the UMBC Career Services Center work
    with students to help them evaluate the major-career connection in terms of the
    skills being developed in any given major and the environments where those
    skills are valued.  Thinking in these
    less limiting terms opens up new options for potential job titles, skills being
    used, and the industry where they are using them.  For instance, the obvious choice if you are
    an information systems or computer science major would be to pursue employment
    at a technology company such as Google, Amazon, or IBM.  Another option would be to follow in the
    footsteps of other UMBC technology alumni doing great technological work in a
    variety of other industries:  Insurance (GEICO),
    government agencies (U.S. Census), finance (T. Rowe Price) and defense (NSA)—just
    to glimpse the tip of the career options iceberg. </p>
    
    <p> </p>
    
    <p>To help students understand the broad applicability of their
    degrees and their specific majors, UMBC will be hosting our 7th annual Career
    Week, April 7-10, 2014.  Key components
    to the schedule include a series of alumni panels and guest speakers.  Other Career Week events include the free
    Dining &amp; Business Etiquette Dinner and annual Spring Career Fair.  Information for Career Week events can be
    accessed at <a href="http://www.careers.umbc.edu/careerweek" rel="nofollow external" class="bo">www.careers.umbc.edu/careerweek</a>.  Encourage your student to attend as many of
    these free events as their schedule allows…it is never too early to begin
    discovering the vast array of career paths that are available to them!</p>
    
    <p> </p>
    
    <p>For students pursuing Math or any other major, the equation
    Major A = Career B is about to get a whole lot more interesting!</p>
    </div>
]]>
</Body>
<Summary>Major A = Career B – Career Week will Prove the Error in this equation!     Many students pick a major based on the career they ultimately want to pursue.  Want to be an Economist?  Pursue a...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42296/guest@my.umbc.edu/849466b7075dd5de7b59e34f51b841f6/api/pixel</TrackingUrl>
<Group token="retired-420">UMBC Family Connection </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-420</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xsmall.png?1340914772</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/original.png?1340914772</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xxlarge.png?1340914772</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xlarge.png?1340914772</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/large.png?1340914772</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/medium.png?1340914772</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/small.png?1340914772</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xsmall.png?1340914772</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/420/30293457191c29e0d0d7a715d26041bd/xxsmall.png?1340914772</AvatarUrl>
<Sponsor>UMBC Family Connection</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/296/b442e83a5556fa523514fdf47e8e4e1b/xxlarge.jpg?1394547641</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/296/b442e83a5556fa523514fdf47e8e4e1b/xlarge.jpg?1394547641</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/296/b442e83a5556fa523514fdf47e8e4e1b/large.jpg?1394547641</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/296/b442e83a5556fa523514fdf47e8e4e1b/medium.jpg?1394547641</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/296/b442e83a5556fa523514fdf47e8e4e1b/small.jpg?1394547641</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/296/b442e83a5556fa523514fdf47e8e4e1b/xsmall.jpg?1394547641</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/296/b442e83a5556fa523514fdf47e8e4e1b/xxsmall.jpg?1394547641</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 10:21:41 -0400</PostedAt>
<EditAt>Tue, 11 Mar 2014 10:23:51 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42298" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42298">
<Title>Updated Techniques for Web Content Accessibility Guidelines (WCAG) 2.0 and Understanding WCAG 2.0</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/WAI/GL/" rel="nofollow external" class="bo">Web Content Accessibility Guidelines Working Group</a> today published updates of two Notes that accompany WCAG 2.0: <a href="http://www.w3.org/TR/2014/NOTE-WCAG20-TECHS-20140304/" rel="nofollow external" class="bo">Techniques for WCAG 2.0</a> and <a href="http://www.w3.org/TR/2014/NOTE-UNDERSTANDING-WCAG20-20140304/" rel="nofollow external" class="bo">Understanding WCAG 2.0</a>. (This is not an update to WCAG 2.0, which is a stable document.) For information on these updates and links to blog posts, please see the <a href="http://lists.w3.org/Archives/Public/w3c-wai-ig/2014JanMar/0165.html" rel="nofollow external" class="bo">WCAG Techniques &amp; Understanding WCAG Updated March 2014 e-mail</a>. Read about the <a href="http://www.w3.org/WAI/" rel="nofollow external" class="bo">Web Accessibility Initiative (WAI)</a>.</p></div>
]]>
</Body>
<Summary>The Web Content Accessibility Guidelines Working Group today published updates of two Notes that accompany WCAG 2.0: Techniques for WCAG 2.0 and Understanding WCAG 2.0. (This is not an update to...</Summary>
<Website>http://www.w3.org/blog/news/archives/3710</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42298/guest@my.umbc.edu/659a1ee5c018cc5f3f1bfa89d029b99a/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>web-design-and-applications</Tag>
<Tag>web-of-services</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>Tue, 11 Mar 2014 10:13:30 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42294" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42294">
<Title>Last Call: Linked Data Platform 1.0</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/2012/ldp/" rel="nofollow external" class="bo">Linked Data Platform (LDP) Working Group</a> has published a Last Call Working Draft of <a href="http://www.w3.org/TR/2014/WD-ldp-20140311/" rel="nofollow external" class="bo">Linked Data Platform 1.0</a>. This document describes a set of best practices and simple approach for a read-write Linked Data architecture, based on HTTP access to web resources that describe their state using the RDF data model. Comments are welcome through <strong>02 April 2014</strong>. Learn more about the <a href="http://www.w3.org/2013/data/" rel="nofollow external" class="bo">Data Activity</a>.</p></div>
]]>
</Body>
<Summary>The Linked Data Platform (LDP) Working Group has published a Last Call Working Draft of Linked Data Platform 1.0. This document describes a set of best practices and simple approach for a...</Summary>
<Website>http://www.w3.org/blog/news/archives/3708</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42294/guest@my.umbc.edu/a607a2493418ea954107848da95cbf89/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>semantic-web</Tag>
<Tag>sql</Tag>
<Tag>w3</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>Tue, 11 Mar 2014 09:46:40 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42292" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42292">
<Title>PicUMBC #9: What Makes People Turn Out the Way They Do?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <span>by David Hoffman and Craig Berger</span><br><span><br></span><br><div><a href="http://3.bp.blogspot.com/-C2pQKItVsF4/Ux4wWnY-NVI/AAAAAAAADzc/DWc1a4arHyM/s1600/photo+(41).JPG" rel="nofollow external" class="bo"><span><img src="http://3.bp.blogspot.com/-C2pQKItVsF4/Ux4wWnY-NVI/AAAAAAAADzc/DWc1a4arHyM/s1600/photo+(41).JPG" height="240" width="320" style="max-width: 100%; height: auto;"></span></a></div>
    <span><br>UMBC is full of treasures and oddities hidden in plain view. Here's one of them. Where were we standing when we took this photo, and what does it depict? Let us know by email at CoCreateUMBC [at] umbc.edu. Bonus points for sending us a photo of yourself at the location of this image (by email, or via the <a href="https://www.facebook.com/cocreateumbc" rel="nofollow external" class="bo">Co-Create UMBC Facebook page</a> or Twitter (#PicUMBC)). The prize for being the first to identify the location of this treasure/oddity correctly (and specifically): You'll be celebrated in the next PicUMBC post.</span><br><span><br><strong>PicUMBC #8, Revisited:</strong></span><br><span><br>Once in a while a Co-Create UMBC post doesn't get enough MyUMBC "paws" to rocket onto the "Pawpular" posts chart, so not many people see it (for which we blame the ones who did see it but neglected to "paw" the post!). Such was the fate of PicUMBC #8, which was seen by few ... and solved by none, until Dylan Cook came through at the last minute. Here is the clue again:</span><br><div><span><br></span></div>
    <div><a href="http://2.bp.blogspot.com/-bKtj_14ckRM/UxdDv04Z2TI/AAAAAAAADyw/pSu2GdGXTVI/s1600/photo+(43).JPG" rel="nofollow external" class="bo"><span><img src="http://2.bp.blogspot.com/-bKtj_14ckRM/UxdDv04Z2TI/AAAAAAAADyw/pSu2GdGXTVI/s1600/photo+(43).JPG" height="234" width="320" style="max-width: 100%; height: auto;"></span></a></div>
    <span><br>This brick cylinder sits atop one of the two brick columns near the Administration Building that mark the entrance to UMBC's main academic corridor:</span><br><span><br></span><br><div><a href="http://4.bp.blogspot.com/-Quymp4xxi-I/Ux8QbGMER5I/AAAAAAAADzs/L7trXcoR4wY/s1600/photo+(44).JPG" rel="nofollow external" class="bo"><span><img src="http://4.bp.blogspot.com/-Quymp4xxi-I/Ux8QbGMER5I/AAAAAAAADzs/L7trXcoR4wY/s1600/photo+(44).JPG" height="320" width="240" style="max-width: 100%; height: auto;"></span></a></div>
    <span><br></span><span>Dylan gets the win and the bonus points:</span><br><span><br></span><br><div><a href="http://1.bp.blogspot.com/-3IF9cFI9p4w/Ux8QwWPaKmI/AAAAAAAADz0/bCcmLrrHr_4/s1600/Dylan+and+PicUMBC+%238.jpg" rel="nofollow external" class="bo"><span><img src="http://1.bp.blogspot.com/-3IF9cFI9p4w/Ux8QwWPaKmI/AAAAAAAADz0/bCcmLrrHr_4/s1600/Dylan+and+PicUMBC+%238.jpg" height="320" width="240" style="max-width: 100%; height: auto;"></span></a></div>
    <span><br></span><span>Note: If you want to be sure not to miss one of these posts, join the <a href="http://my.umbc.edu/groups/co-create" rel="nofollow external" class="bo">Co-Create UMBC group</a> on MyUMBC.</span><br><strong><span><br></span></strong><strong><span>PicUMBC #7, Revisited:</span></strong><br><span><br></span><span>We shared the answer to PicUMBC #7 when we posted PicUMBC #8, but are sharing it again for those who missed it. Here was the clue:</span><br><span><br></span><br><div><a href="http://1.bp.blogspot.com/-K2Z0ZySVQhw/Uw39L9S7IoI/AAAAAAAADwc/3pTTiEmN5es/s1600/photo+(3).JPG" rel="nofollow external" class="bo"><span><img src="http://1.bp.blogspot.com/-K2Z0ZySVQhw/Uw39L9S7IoI/AAAAAAAADwc/3pTTiEmN5es/s1600/photo+(3).JPG" height="318" width="320" style="max-width: 100%; height: auto;"></span></a></div>
    <span><br></span><br><div><a href="http://1.bp.blogspot.com/-4QyQlikVFtg/UvRKRKFJz0I/AAAAAAAADro/qxNeXp5lBV0/s1600/photo+4.JPG" rel="nofollow external" class="bo"></a></div>
    <span><br></span><span>To find this image on the UMBC campus, you had to look up. That's what Patrick Hixenbaugh did, in the Commons Main Street Lounge:</span><br><span><br></span><br><div><a href="http://1.bp.blogspot.com/-eOMSC3-D8tY/UxdGuiLxjmI/AAAAAAAADy8/3N2tRqpAAy0/s1600/IMG_20140304_152040129_HDR.jpg" rel="nofollow external" class="bo"><span><img src="http://1.bp.blogspot.com/-eOMSC3-D8tY/UxdGuiLxjmI/AAAAAAAADy8/3N2tRqpAAy0/s1600/IMG_20140304_152040129_HDR.jpg" height="400" width="225" style="max-width: 100%; height: auto;"></span></a></div>
    <span><br></span><span>Poulomi Banerjee found it too, and was happy about it:</span><br><span><br></span><br><div><a href="http://2.bp.blogspot.com/-eKcw0eEqaD4/UxdbaCCfZVI/AAAAAAAADzM/Sls-P5H1xIw/s1600/Poulomi+Banerjee.jpg" rel="nofollow external" class="bo"><span><img src="http://2.bp.blogspot.com/-eKcw0eEqaD4/UxdbaCCfZVI/AAAAAAAADzM/Sls-P5H1xIw/s1600/Poulomi+Banerjee.jpg" height="400" width="300" style="max-width: 100%; height: auto;"></span></a></div>
    <span><br></span><span>So Patrick and Poulomi got all the bonus points. But the first person to identify the location correctly was Lois Sarfo-Mensah, so she was the PicUMBC #7 winner. </span><span>Who's next?</span><br><span><br></span><em><span><a href="http://cocreateumbc.blogspot.com/" rel="nofollow external" class="bo">Co-Create UMBC</a> is a blog for and about UMBC, written by David Hoffman and Craig Berger from Student Life. Join the <a href="http://my.umbc.edu/groups/co-create" rel="nofollow external" class="bo">Co-Create UMBC group</a> on MyUMBC. Like <a href="https://www.facebook.com/cocreateumbc" rel="nofollow external" class="bo">Co-Create UMBC on Facebook</a>. And follow <a href="https://twitter.com/CoCreateUMBC" rel="nofollow external" class="bo">David</a> and <a href="https://twitter.com/CraigBerger" rel="nofollow external" class="bo">Craig</a> on Twitter.</span></em><span> </span>
    </div>
]]>
</Body>
<Summary>by David Hoffman and Craig Berger      UMBC is full of treasures and oddities hidden in plain view. Here's one of them. Where were we standing when we took this photo, and what does it depict? Let...</Summary>
<Website>http://cocreateumbc.blogspot.com/2014/03/picumbc-9-what-makes-people-turn-out.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42292/guest@my.umbc.edu/114082c4df1f90a664dc37e60ba3fb89/api/pixel</TrackingUrl>
<Tag>picumbc</Tag>
<Group token="co-create">Co-Create UMBC</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/co-create</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/original.jpg?1499890363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xlarge.png?1499890363</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/large.png?1499890363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/medium.png?1499890363</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/small.png?1499890363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xsmall.png?1499890363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/002/5b8f025dafb56cb8d3088b7259aadcfb/xxsmall.png?1499890363</AvatarUrl>
<Sponsor>Co-Create UMBC</Sponsor>
<PawCount>26</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 09:40:00 -0400</PostedAt>
<EditAt>Tue, 11 Mar 2014 09:40:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42293" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42293">
<Title>&#8220;Cosmos&#8221; Reborn With New Star</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2014/03/6a00d8341bf7f753ef01a3fc24fcdf970b.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2014/03/6a00d8341bf7f753ef01a3fc24fcdf970b.jpg" width="960" height="540" style="max-width: 100%; height: auto;"></a></p>
    <p>TV doesn’t have to be all about talent competitions and reality shows.</p>
    <p>Back in 1980, Carl Sagan, America’s favorite turtle-neck wearing, smooth-talking scientist brought us <em>Cosmos: A Personal Voyage.</em></p>
    <p>The thirteen part series focused on a range of scientific subjects, from space to the origins of the human race, and became a public television success. The material was educational and interesting, but the backbone was Sagan himself, a lovable optimistic host who saw endless possibility in scientific exploration.</p>
    <p>So it seemed unlikely that, with Sagan gone, the series would ever get a reboot.</p>
    <p>Until now.</p>
    <p>Enter: the charismatic Neil deGrasse Tyson – this generation’s favorite scientist.</p>
    <p>Tyson hosts <em>Cosmos: A Spacetime Odyssey </em>at 9pm Sundays on Fox. The primetime special opened with an introduction from President Obama, which you can watch <a href="http://www.deadline.com/2014/03/president-obamas-cosmos-seth-macfarlane-fox/" rel="nofollow external" class="bo">here</a>. Clearly, it’s a big friggin deal!</p>
    <p>Much of the magic again comes from the host. Tyson maintains a hilarious, insightful <a href="https://twitter.com/neiltyson" rel="nofollow external" class="bo">Twitter account</a>. Tyson, President Obama, and Bill Nye the Science Guy <a href="http://theweek.com/article/index/257215/speedreads-bill-nye-and-neil-degrasse-tyson-accost-president-obama-for-a-selfie" rel="nofollow external" class="bo">took a selfie</a> that went viral a few weeks ago when the science icons took a trip to the White House. </p>
    <p>He’s the perfect candidate to bring educational programming back to primetime. He matches Sagan’s love of science and hope of possibility. Tyson has a personal connection to the man and the series. In the first episode, Tyson tears up as he describes meeting Sagan as a teenager.</p>
    <p>The series reboot gets the big network treatment – grand green-screen, a theatrical orchestrated soundtrack, and some Disney like animation for the historical parts. The result is pretty thrilling. Where the original <em>Cosmos </em>lacked the bang in the Big Bang, the new version has all the flash of a modern movie spectacle.</p>
    <p>We hope <em>Cosmos </em>kick starts a return to primetime educational programming, the kind of programs that both parents and kids can watch, learn and be inspired by. Science doesn’t have to be exiled to the Science Channel.</p>
    <p><em><a href="http://www.cosmosontv.com" rel="nofollow external" class="bo">Cosmos: A Spacetime Odyssey</a> </em>airs on Sundays at 9pm on Fox and on Mondays at 10pm on the National Geographic Channel.</p>
    </div>
]]>
</Body>
<Summary>TV doesn’t have to be all about talent competitions and reality shows.   Back in 1980, Carl Sagan, America’s favorite turtle-neck wearing, smooth-talking scientist brought us Cosmos: A Personal...</Summary>
<Website>http://usdemocrazy.net/cosmos-reborn-with-new-star/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42293/guest@my.umbc.edu/c84d6ed45b5800fdea79a0da48c13049/api/pixel</TrackingUrl>
<Tag>bill-nye</Tag>
<Tag>carl-sagan</Tag>
<Tag>cosmos</Tag>
<Tag>current</Tag>
<Tag>democracy</Tag>
<Tag>educational-programming</Tag>
<Tag>fox</Tag>
<Tag>neil-degrasse-tyson</Tag>
<Tag>news</Tag>
<Tag>politics</Tag>
<Tag>president-obama</Tag>
<Tag>science</Tag>
<Tag>television</Tag>
<Tag>tv</Tag>
<Tag>us</Tag>
<Tag>usdemocrazy</Tag>
<Tag>whatzup</Tag>
<Group token="retired-12">USDemocrazy</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-12</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/original.jpg?1279120129</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/large.png?1279120129</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/medium.png?1279120129</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/small.png?1279120129</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxsmall.png?1279120129</AvatarUrl>
<Sponsor>USDemocrazy</Sponsor>
<PawCount>43</PawCount>
<CommentCount>4</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 09:37:31 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42295" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42295">
<Title>HTML Imports Draft Published</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/2008/webapps/" rel="nofollow external" class="bo">Web Applications Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2014/WD-html-imports-20140311/" rel="nofollow external" class="bo">HTML Imports</a>. HTML Imports are a way to include and reuse HTML documents in other HTML documents. Learn more about the <a href="http://www.w3.org/2006/rwc/" rel="nofollow external" class="bo">Rich Web Client Activity</a>.</p></div>
]]>
</Body>
<Summary>The Web Applications Working Group has published a Working Draft of HTML Imports. HTML Imports are a way to include and reuse HTML documents in other HTML documents. Learn more about the Rich Web...</Summary>
<Website>http://www.w3.org/blog/news/archives/3706</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42295/guest@my.umbc.edu/3e1a1702fda0a73f0d0356d3544018c5/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>web-design-and-applications</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>Tue, 11 Mar 2014 09:31:38 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42291" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42291">
<Title>Researcher of the Week: Sanchari Ghosh</Title>
<Tagline>Undergraduate researchers explore their interests!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Meet Sanchari. She is a Biochemistry and Molecular Biology major and current URA (Undergraduate Research Award) Scholar. She is also engaged in oncological research in a UMBC laboratory and has also worked in a lab at the Howard Hughes Medical Institute.<br><br><strong>How did you find your mentor for year research project? </strong><br>When I was looking for research mentors on campus, some upper classmen suggested that I look into Dr. Rosenberg’s lab, especially since I had some background in oncological research. I looked at her research on the UMBC website, and the research excited me; although I had conducted oncological research before, I had not explored the immunological approach to cancer before. I e-mailed Dr. Rosenberg about my interest in her lab, and it all started from there!<br><br><strong>Is this your first independent research project?</strong><br>No, I have worked in three other research labs before this, including an HHMI funded project.<br><br><strong>How much time do you put into it?</strong><br>I try to put in an average of 16-18 hours a week for research, but it varies depending on the experiment being conducted.<br><br><strong>How did you hear about the Undergraduate Research Award (URA) program?</strong><br>My PI, Dr. Rosenberg, emailed me about the URA. One of the senior undergraduates in my lab was a previous URA scholar, and she encouraged me to apply.<br><br>Was the application difficult to do?<br>Not at all – it was very straightforward and easily accessible.<br><br><strong>What has been the hardest part about your research? </strong><br>The hardest part about research is effectively communicating the results of the research to others, and this is something that Dr. Rosenberg, my mentor, Dr. Sinha, and others in the lab are working with me on so that I can continuously improve on this essential skill for any researcher. I am practicing this skill by presenting in lab meetings and conferences both here at UMBC, as well as other states.<br><br><strong>What was the most unexpected thing?</strong><br>The most unexpected thing about this internship was that, through my experience, I am getting to make so many valuable connections to people, who can (or have already) helped me out in many ways. It gives me immense pleasure to see that people understand and appreciate the research that I am doing, and are willing to help me to continue researching.<br><br><strong>How does your research relate to your work in other classes?</strong><br>When we research, we are expected to learn very specific details about one subtopic under a larger umbrella subject. In college classes, we start by learning those umbrella subjects in a very broad manner, and as classes go on, we learn the more specific details. Therefore, there are many times that I have light bulb moments in class or lab, when I am able to connect what I already know with what I am learning.<br><br><strong>What is your advice to other students about getting involved in research? </strong><br>Research is extremely important, no matter what subject area we are involved in, because it teaches us to think critically, a skill essential for any type of career today. I would like to encourage all students to get involved in some type of research in these undergraduate years. The experience can help you to narrow down your career choice and develop essential skills for that career as well.<br><br></p>
    <p>Read her abstract here...</p>
    </div>
]]>
</Body>
<Summary>Meet Sanchari. She is a Biochemistry and Molecular Biology major and current URA (Undergraduate Research Award) Scholar. She is also engaged in oncological research in a UMBC laboratory and has...</Summary>
<Website>http://www.umbc.edu/undergrad_ed/research/ResearcherProfiles/sanchariGhosh.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42291/guest@my.umbc.edu/684c3bf623a79e7448ea7a018306c39c/api/pixel</TrackingUrl>
<Group token="undergradresearch">Undergraduate Research</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/undergradresearch</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/original.jpg?1600355057</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/large.png?1600355057</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/medium.png?1600355057</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/small.png?1600355057</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxsmall.png?1600355057</AvatarUrl>
<Sponsor>Undergraduate Research</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/291/737e6e42f8a0c420edf0d2889f18a361/xxlarge.jpg?1394542501</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/291/737e6e42f8a0c420edf0d2889f18a361/xlarge.jpg?1394542501</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/291/737e6e42f8a0c420edf0d2889f18a361/large.jpg?1394542501</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/291/737e6e42f8a0c420edf0d2889f18a361/medium.jpg?1394542501</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/291/737e6e42f8a0c420edf0d2889f18a361/small.jpg?1394542501</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/291/737e6e42f8a0c420edf0d2889f18a361/xsmall.jpg?1394542501</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/291/737e6e42f8a0c420edf0d2889f18a361/xxsmall.jpg?1394542501</ThumbnailUrl>
<PawCount>79</PawCount>
<CommentCount>16</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 09:06:51 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42290" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42290">
<Title>System Downtime Over Spring Break</Title>
<Tagline>System Downtime</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>As part of our ongoing commitment to security, the Unix Infrastructure will be conducting its quarterly patching of systems.  While many of the systems will be patched without any service disruption, there are several systems which require the downtime of key services.  The schedule below outlines which key services will be offline and for how long.</span></p>
    <br><p><span>Monday March 17th, 9am to 1pm</span></p>
    <ul>
    <li><p><span>myUMBC lite page will be up resulting in  reduced myUMBC functionality</span></p></li>
    <li><p><span>The sites (wordpress) web hosting environment will be down </span></p></li>
    <li><p><span>The new web hosting environment will be down (pages will be available but any database calls will not work)</span></p></li>
    <li><p><span>All HFS (user) servers will be down</span></p></li>
    <li><p><span>Student mySQL databases will be offline</span></p></li>
    </ul>
    <br><p><span>Tuesday March 18th, 9am to 1pm</span></p>
    <ul>
    <li><p><span>RT will be down</span></p></li>
    <li><p><span>Userpages will be down</span></p></li>
    <li><p><span>Wiki will be down</span></p></li>
    <li><p><span>R25 will be down</span></p></li>
    <li><p><span>License5 will be down (</span><span>autodesk, cadence, </span><span>idl, </span><span>schrodinger, xilinx)</span></p></li>
    <li><p><span>Student mySQL databases will be offline</span></p></li>
    <li><p><span>Perseus will be down</span></p></li>
    </ul>
    <br><p><span>There will be no data loss during the outage and no user action is required prior to the downtime. If you have any questions or concerns, please contact the Technology Support Center at x53838.</span></p>
    </div>
]]>
</Body>
<Summary>As part of our ongoing commitment to security, the Unix Infrastructure will be conducting its quarterly patching of systems.  While many of the systems will be patched without any service...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42290/guest@my.umbc.edu/c5e90fb056bdbd60e06d2866915f9854/api/pixel</TrackingUrl>
<Group token="doit">Division of Information Technology (DoIT)</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/doit</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xsmall.png?1727453227</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/original.JPG?1727453227</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xxlarge.png?1727453227</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xlarge.png?1727453227</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/large.png?1727453227</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/medium.png?1727453227</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/small.png?1727453227</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xsmall.png?1727453227</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/021/d27760c5de12c74b73faec8d0e631acf/xxsmall.png?1727453227</AvatarUrl>
<Sponsor>Division of Information Technology</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 11 Mar 2014 08:49:40 -0400</PostedAt>
</NewsItem>

</News>
