<?xml version="1.0"?>
<News hasArchived="true" page="8799" pageCount="10799" pageSize="10" timestamp="Tue, 08 Sep 2026 18:50:19 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8799&amp;range=2">
<NewsItem contentIssues="true" id="29520" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29520">
<Title>How to Write Testable and Maintainable Code in PHP</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=31726&amp;c=1165275806" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=31726&amp;c=1165275806" alt="" style="max-width: 100%; height: auto;"></a><p>Frameworks provide a tool for rapid application development, but often accrue technical debt as rapidly as they allow you to create functionality. Technical debt is created when maintainability isn't a purposeful focus of the developer. Future changes and debugging become costly, due to a lack of unit testing and structure.</p>
    <p>Here's how to begin structuring your code to achieve testability and maintainability – and save you time.</p>
    <p></p>
    <hr>
    <h2>We'll Cover (loosely)</h2>
    <ol>
    <li>DRY</li>
    <li>Dependency Injection</li>
    <li>Interfaces</li>
    <li>Containers</li>
    <li>Unit Tests with PHPUnit</li>
    </ol>
    <p>Let's begin with some contrived, but typical code. This might be a model class in any given framework.</p>
    <pre>class User {&#x000A;    &#x000A;    public function getCurrentUser()&#x000A;    {&#x000A;        $user_id = $_SESSION['user_id'];&#x000A;    &#x000A;        $user = App::db-&gt;select('id, username')&#x000A;                        -&gt;where('id', $user_id)&#x000A;                        -&gt;limit(1)&#x000A;                        -&gt;get();&#x000A;    &#x000A;        if ( $user-&gt;num_results() &gt; 0 )&#x000A;        {&#x000A;                return $user-&gt;row();&#x000A;        }&#x000A;    &#x000A;        return false;&#x000A;    }&#x000A;    &#x000A;    }&#x000A;    </pre>
    <p>This code will work, but needs improvement:</p>
    <ol>
    <li>This isn't testable.<ul>
    <li>We're relying on the <code>$_SESSION</code> global variable. Unit-testing frameworks, such as PHPUnit, rely on the command-line, where <code>$_SESSION</code> and many other global variables aren't available.</li>
    <li>We're relying on the database connection. Ideally, actual database connections should be avoided in a unit-test. Testing is about code, not about data.</li>
    </ul>
    </li>
    <li>This code isn't as maintainable as it could be. For instance, if we change the data source, we'll need to change the database code in every instance of <code>App::db</code> used in our application. Also, what about instances where we don't want just the current user's information?</li>
    </ol>
    <h4>An Attempted Unit Test</h4>
    <p>Here's an attempt to create a unit test for the above functionality.</p>
    <pre>class UserModelTest extends PHPUnit_Framework_TestCase {&#x000A;    &#x000A;        public function testGetUser()&#x000A;        {&#x000A;            $user = new User();&#x000A;    &#x000A;            $currentUser = $user-&gt;getCurrentUser();&#x000A;    &#x000A;            $this-&gt;assertEquals(1, $currentUser-&gt;id);&#x000A;        }&#x000A;    &#x000A;    }&#x000A;    </pre>
    <p>Let's examine this. First, the test will fail. The <code>$_SESSION</code> variable used in the <code>User</code> object doesn't exist in a unit test, as it runs PHP in the command line.</p>
    <p>Second, there's no database connection setup. This means that, in order to make this work, we will need to bootstrap our application in order to get the <code>App</code> object and its <code>db</code> object. We'll also need a working database connection to test against.</p>
    <p>To make this unit test work, we would need to:</p>
    <ol>
    <li>Setup a config setup for a CLI (PHPUnit) run in our application</li>
    <li>Rely on a database connection. Doing this means relying on a data source separate from our unit test. What if our test database doesn't have the data we're expecting? What if our database connection is slow?</li>
    <li>Relying on an application being bootstrapped increases the overhead of the tests, slowing the unit tests down dramatically. Ideally, most of our code can be tested independent of the framework being used.</li>
    </ol>
    <p>So, let's get down to how we can improve this.</p>
    <hr>
    <h2>Keep Code DRY</h2>
    <p>The function retrieving the current user is unnecessary in this simple context. This is a contrived example, but in the spirit of DRY principles, the first optimization I'm choosing to make is to generalize this method.</p>
    <pre>class User {&#x000A;    &#x000A;        public function getUser($user_id)&#x000A;        {&#x000A;            $user = App::db-&gt;select('user')&#x000A;                            -&gt;where('id', $user_id)&#x000A;                            -&gt;limit(1)&#x000A;                            -&gt;get();&#x000A;    &#x000A;            if ( $user-&gt;num_results() &gt; 0 )&#x000A;            {&#x000A;                return $user-&gt;row();&#x000A;            }&#x000A;    &#x000A;            return false;&#x000A;        }&#x000A;    &#x000A;    }&#x000A;    </pre>
    <p>This provides a method we can use across our entire application. We can pass in the current user at the time of the call, rather than passing that functionality off to the model. Code is more modular and maintainable when it doesn't rely on other functionalities (such as the session global variable).</p>
    <p>However, this is still not testable and maintainable as it could be. We're still relying on the database connection.</p>
    <hr>
    <h2>Dependency Injection</h2>
    <p>Let's help improve the situation by adding some Dependency Injection. Here's what our model might look like, when we pass the database connnection into the class.</p>
    <pre>class User {&#x000A;    &#x000A;        protected $_db;&#x000A;    &#x000A;        public function __construct($db_connection)&#x000A;        {&#x000A;            $this-&gt;_db = $db_connection;&#x000A;        }&#x000A;    &#x000A;        public function getUser($user_id)&#x000A;        {&#x000A;            $user = $this-&gt;_db-&gt;select('user')&#x000A;                            -&gt;where('id', $user_id)&#x000A;                            -&gt;limit(1)&#x000A;                            -&gt;get();&#x000A;    &#x000A;            if ( $user-&gt;num_results() &gt; 0 )&#x000A;            {&#x000A;                return $user-&gt;row();&#x000A;            }&#x000A;    &#x000A;            return false;&#x000A;        }&#x000A;    &#x000A;    }&#x000A;    </pre>
    <p>Now, the dependencies of our <code>User</code> model are provided for. Our class no longer assumes a certain database connection, nor relies on any global objects.</p>
    <p>At this point, our class is basically testable. We can pass in a data-source of our choice (mostly) and a user id, and test the results of that call. We can also switch out separate database connections (assuming that both implement the same methods for retrieving data). Cool.</p>
    <p>Let's look at what a unit test might look like for that.</p>
    <pre>&lt;?php&#x000A;    &#x000A;    use Mockery as m;&#x000A;    use Fideloper\User;&#x000A;    &#x000A;    class SecondUserTest extends PHPUnit_Framework_TestCase {&#x000A;    &#x000A;        public function testGetCurrentUserMock()&#x000A;        {&#x000A;            $db_connection = $this-&gt;_mockDb();&#x000A;    &#x000A;            $user = new User( $db_connection );&#x000A;    &#x000A;            $result = $user-&gt;getUser( 1 );&#x000A;    &#x000A;            $expected = new StdClass();&#x000A;            $expected-&gt;id = 1;&#x000A;            $expected-&gt;username = 'fideloper';&#x000A;    &#x000A;            $this-&gt;assertEquals( $result-&gt;id, $expected-&gt;id, 'User ID set correctly' );&#x000A;            $this-&gt;assertEquals( $result-&gt;username, $expected-&gt;username, 'Username set correctly' );&#x000A;        }&#x000A;    &#x000A;        protected function _mockDb()&#x000A;        {&#x000A;            // "Mock" (stub) database row result object&#x000A;            $returnResult = new StdClass();&#x000A;            $returnResult-&gt;id = 1;&#x000A;            $returnResult-&gt;username = 'fideloper';&#x000A;    &#x000A;            // Mock database result object&#x000A;            $result = m::mock('DbResult');&#x000A;            $result-&gt;shouldReceive('num_results')-&gt;once()-&gt;andReturn( 1 );&#x000A;            $result-&gt;shouldReceive('row')-&gt;once()-&gt;andReturn( $returnResult );&#x000A;    &#x000A;            // Mock database connection object&#x000A;            $db = m::mock('DbConnection');&#x000A;    &#x000A;            $db-&gt;shouldReceive('select')-&gt;once()-&gt;andReturn( $db );&#x000A;            $db-&gt;shouldReceive('where')-&gt;once()-&gt;andReturn( $db );&#x000A;            $db-&gt;shouldReceive('limit')-&gt;once()-&gt;andReturn( $db );&#x000A;            $db-&gt;shouldReceive('get')-&gt;once()-&gt;andReturn( $result );&#x000A;    &#x000A;            return $db;&#x000A;        }&#x000A;    &#x000A;    }&#x000A;    </pre>
    <p>I've added something new to this unit test: Mockery. Mockery lets you "mock" (fake) PHP objects. In this case, we're mocking the database connection. With our mock, we can skip over testing a database connection and simply test our model.</p>
    <blockquote><p>Want to <a href="http://net.tutsplus.com/tutorials/php/mockery-a-better-way/" rel="nofollow external" class="bo">learn more about Mockery</a>?</p></blockquote>
    <p>In this case, we're mocking a SQL connection. We're telling the mock object to expect to have the <code>select</code>, <code>where</code>, <code>limit</code> and <code>get</code> methods called on it. I am returning the Mock, itself, to mirror how the SQL connection object returns itself (<code>$this</code>), thus making its method calls "chainable". Note that, for the <code>get</code> method, I return the database call result – a <code>stdClass</code> object with the user data populated.</p>
    <p>This solves a few problems:</p>
    <ol>
    <li>We're testing only our model class. We're not also testing a database connection.</li>
    <li>We're able to control the inputs and outputs of the mock database connection, and, therefore, can reliably test against the result of the database call. I know I'll get a user ID of "1" as a result of the mocked database call.</li>
    <li>We don't need to bootstrap our application or have any configuration or database present to test.</li>
    </ol>
    <p>We can still do much better. Here's where it gets interesting.</p>
    <hr>
    <h2>Interfaces</h2>
    <p>To improve this further, we could define and implement an interface. Consider the following code.</p>
    <pre>interface UserRepositoryInterface {&#x000A;        public function getUser($user_id);&#x000A;    }&#x000A;    &#x000A;    class MysqlUserRepository implements UserRepositoryInterface {&#x000A;    &#x000A;        protected $_db;&#x000A;    &#x000A;        public function __construct($db_conn)&#x000A;        {&#x000A;            $this-&gt;_db = $db_conn;&#x000A;        }&#x000A;    &#x000A;        public function getUser($user_id)&#x000A;        {&#x000A;            $user = $this-&gt;_db-&gt;select('user')&#x000A;                        -&gt;where('id', $user_id)&#x000A;                        -&gt;limit(1)&#x000A;                        -&gt;get();&#x000A;    &#x000A;            if ( $user-&gt;num_results() &gt; 0 )&#x000A;            {&#x000A;                return $user-&gt;row();&#x000A;            }&#x000A;    &#x000A;            return false;&#x000A;        }&#x000A;    &#x000A;    }&#x000A;    &#x000A;    class User {&#x000A;    &#x000A;        protected $userStore;&#x000A;    &#x000A;        public function __construct(UserRepositoryInterface $user)&#x000A;        {&#x000A;            $this-&gt;userStore = $user;&#x000A;        }&#x000A;    &#x000A;        public function getUser($user_id)&#x000A;        {&#x000A;            return $this-&gt;userStore-&gt;getUser($user_id);&#x000A;        }&#x000A;    &#x000A;    }&#x000A;    </pre>
    <p>There's a few things happening here.</p>
    <ol>
    <li>First, we define an interface for our user <em>data source</em>. This defines the <code>addUser()</code> method.</li>
    <li>Next, we implement that interface. In this case, we create a MySQL implementation. We accept a database connection object, and use it to grab a user from the database.</li>
    <li>Lastly, we enforce the use of a class implementing the <code>UserInterface</code> in our <code>User</code> model. This guarantees that the data source will always have a <code>getUser()</code> method available, no matter which data source is used to implement <code>UserInterface</code>.</li>
    </ol>
    <blockquote><p>Note that our <code>User</code> object type-hints <code>UserInterface</code> in its constructor. This means that a class implementing <code>UserInterface</code> MUST be passed into the <code>User</code> object. This is a guarantee we are relying on – we need the <code>getUser</code> method to always be available.</p></blockquote>
    <p>What is the result of this?</p>
    <ul>
    <li>Our code is now <em>fully</em> testable. For the <code>User</code> class, we can easily mock the data source. (Testing the implementations of the datasource would be the job of a separate unit test).</li>
    <li>Our code is <em>much</em> more maintainable. We can switch out different data sources without having to change code throughout our application.</li>
    <li>We can create <em>ANY</em> data source. ArrayUser, MongoDbUser, CouchDbUser, MemoryUser, etc.</li>
    <li>We can easily pass any data source to our <code>User</code> object if we need to.  If you decide to ditch SQL, you can just create a different implementation (for instance, <code>MongoDbUser</code>) and pass that into your <code>User</code> model.</li>
    </ul>
    <p>We've simplified our unit test, as well!</p>
    <pre>&lt;?php&#x000A;    &#x000A;    use Mockery as m;&#x000A;    use Fideloper\User;&#x000A;    &#x000A;    class ThirdUserTest extends PHPUnit_Framework_TestCase {&#x000A;    &#x000A;        public function testGetCurrentUserMock()&#x000A;        {&#x000A;            $userRepo = $this-&gt;_mockUserRepo();&#x000A;    &#x000A;            $user = new User( $userRepo );&#x000A;    &#x000A;            $result = $user-&gt;getUser( 1 );&#x000A;    &#x000A;            $expected = new StdClass();&#x000A;            $expected-&gt;id = 1;&#x000A;            $expected-&gt;username = 'fideloper';&#x000A;    &#x000A;            $this-&gt;assertEquals( $result-&gt;id, $expected-&gt;id, 'User ID set correctly' );&#x000A;            $this-&gt;assertEquals( $result-&gt;username, $expected-&gt;username, 'Username set correctly' );&#x000A;        }&#x000A;    &#x000A;        protected function _mockUserRepo()&#x000A;        {&#x000A;            // Mock expected result&#x000A;            $result = new StdClass();&#x000A;            $result-&gt;id = 1;&#x000A;            $result-&gt;username = 'fideloper';&#x000A;    &#x000A;            // Mock any user repository&#x000A;            $userRepo = m::mock('Fideloper\Third\Repository\UserRepositoryInterface');&#x000A;            $userRepo-&gt;shouldReceive('getUser')-&gt;once()-&gt;andReturn( $result );&#x000A;    &#x000A;            return $userRepo;&#x000A;        }&#x000A;    &#x000A;    }&#x000A;    </pre>
    <p>We've taken the work of mocking a database connection out completely. Instead, we simply mock the data source, and tell it what to do when <code>getUser</code> is called.</p>
    <p>But, we can still do better!</p>
    <hr>
    <h2>Containers</h2>
    <p>Consider the usage of our current code:</p>
    <pre>// In some controller&#x000A;    $user = new User( new MysqlUser( App:db-&gt;getConnection("mysql") ) );&#x000A;    $user-&gt;id = App::session("user-&gt;id");&#x000A;    &#x000A;    $currentUser = $user-&gt;getUser($user_id);&#x000A;    </pre>
    <p>Our final step will be to introduce <em>containers</em>. In the above code, we need to create and use a bunch of objects just to get our current user. This code might be littered across your application. If you need to switch from MySQL to MongoDB, you'll <em>still</em> need to edit every place where the above code appears. That's hardly DRY. <a href="http://pimple.sensiolabs.org/" rel="nofollow external" class="bo">Containers</a> can fix this.</p>
    <p>A container simply "contains" an object or functionality. It's similar to a registry in your application. We can use a container to automatically instantiate a new <code>User</code> object with all needed dependencies. Below, I use <a href="http://pimple.sensiolabs.org/" rel="nofollow external" class="bo">Pimple</a>, a popular container class.</p>
    <pre>// Somewhere in a configuration file&#x000A;    $container = new Pimple();&#x000A;    $container["user"] = function() {&#x000A;        return new User( new MysqlUser( App:db-&gt;getConnection('mysql') ) );&#x000A;    }&#x000A;    &#x000A;    // Now, in all of our controllers, we can simply write:&#x000A;    $currentUser = $container['user']-&gt;getUser( App::session('user_id') );&#x000A;    </pre>
    <p>I've moved the creation of the <code>User</code> model into one location in the application configuration. As a result:</p>
    <ol>
    <li>We've kept our code DRY. The <code>User</code> object and the data store of choice is defined in one location in our application.</li>
    <li>We can switch out our <code>User</code> model from using MySQL to any other data source in <strong>ONE</strong> location. This is vastly more maintainable.</li>
    </ol>
    <hr>
    <h2>Final Thoughts</h2>
    <p>Over the course of this tutorial, we accomplished the following:</p>
    <ol>
    <li>Kept our code DRY and reusable</li>
    <li>Created maintainable code – We can switch out data sources for our objects in one location for the entire application if needed</li>
    <li>Made our code testable – We can mock objects easily without relying on bootstrapping our application or creating a test database</li>
    <li>Learned about using Dependency Injection and Interfaces, in order to enable creating testable and maintainable code</li>
    <li>Saw how containers can aid in making our application more maintainable</li>
    </ol>
    <p>I'm sure you've noticed that we've added much more code in the name of maintainability and testability. A strong argument can be made against this implementation: we're increasing complexity. Indeed, this requires a deeper knowledge of code, both for the main author and for collaborators of a project.</p>
    <p>However, the cost of explanation and understanding is far out-weighed by the extra overall <em>decrease</em> in technical debt.</p>
    <ul>
    <li>The code is vastly more maintainable, making changes possible in one location, rather than several.</li>
    <li>Being able to unit test (quickly) will reduce bugs in code by a large margin – especially in long-term or community-driven (open-source) projects.</li>
    <li>Doing the extra-work up front <em>will</em> save time and headache later.</li>
    </ul>
    <h3>Resources</h3>
    <p>You may include <strong>Mockery</strong> and <strong>PHPUnit</strong> into your application easily using <a href="http://getcomposer.org/" rel="nofollow external" class="bo">Composer</a>. Add these to your "require-dev" section in your <code>composer.json</code> file:</p>
    <pre>"require-dev": {&#x000A;        "mockery/mockery": "0.8.*",&#x000A;        "phpunit/phpunit": "3.7.*"&#x000A;    }&#x000A;    </pre>
    <p>You can then install your Composer-based dependencies with the "dev" requirements:</p>
    <pre>$ php composer.phar install --dev&#x000A;    </pre>
    <p>Learn more about Mockery, Composer and PHPUnit here on Nettuts+.</p>
    <ul>
    <li><a href="http://net.tutsplus.com/tutorials/php/mockery-a-better-way/" rel="nofollow external" class="bo">Mockery: A Better Way</a></li>
    <li><a href="http://net.tutsplus.com/tutorials/php/easy-package-management-with-composer/" rel="nofollow external" class="bo">Easy Package Management With Composer</a></li>
    <li><a href="http://net.tutsplus.com/sessions/test-driven-php/" rel="nofollow external" class="bo">Test-Driven PHP</a></li>
    </ul>
    <p>For PHP, consider using Laravel 4, as it makes exceptional use of <a href="http://four.laravel.com/docs/ioc" rel="nofollow external" class="bo">containers</a> and other concepts written about here.</p>
    <p>Thanks for reading!</p>
    </div>
]]>
</Body>
<Summary>Frameworks provide a tool for rapid application development, but often accrue technical debt as rapidly as they allow you to create functionality. Technical debt is created when maintainability...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/l6VzPp300us/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29520/guest@my.umbc.edu/b5f3015696a42eef6d710a874e1f0af2/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>tdd</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>Wed, 15 May 2013 16:08:11 -0400</PostedAt>
<EditAt>Wed, 15 May 2013 16:08:11 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="29525" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29525">
<Title>User Modeling for Accessibility - Online Symposium - Call for Papers</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/WAI/RD" rel="nofollow external" class="bo">Research and Development Working Group (RDWG)</a> will hold an online symposium to explore user modeling for accessibility, an approach for generating and adapting user interfaces to address particular user needs and preferences. The <a href="http://www.w3.org/WAI/RD/2013/user-modeling/cfp.html" rel="nofollow external" class="bo">Call for Papers</a> is open until 6 June 2013. Learn more about the <a href="http://www.w3.org/WAI/RD/2013/user-modeling/" rel="nofollow external" class="bo">User Modeling for Accessibility Symposium</a> to be held on 15 July 2013, and the Web Accessibility Initiative (<a href="http://www.w3.org/WAI/" rel="nofollow external" class="bo">WAI</a>).</p></div>
]]>
</Body>
<Summary>The Research and Development Working Group (RDWG) will hold an online symposium to explore user modeling for accessibility, an approach for generating and adapting user interfaces to address...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9823</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29525/guest@my.umbc.edu/1f6957de747216b61e842e701fe27890/api/pixel</TrackingUrl>
<Tag>browsers-and-authoring-tools</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</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>Wed, 15 May 2013 16:04:51 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110158" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110158">
<Title>Thomas Schaller, Political Science, in the Baltimore Sun</Title>
<Body>
<![CDATA[
    <div class="html-content">In his latest opinion column for the Baltimore Sun, UMBC political science professor Thomas F. Schaller takes on accusations surrounding the recent U.S. Department of Homeland Security purchase of large quantities of ammunition (up to 1.6 billion rounds in some reports)—including claims that the Obama administration is arming itself while simultaneously trying to disarm the citizenry through gun control legislation. In researching the purchase, Schaller found: It turns out the order is closer to 750 million rounds and covers a five-year period and the 70,000 federal officers who require firearm certification or retraining. That’s roughly 2,200 rounds per officer per …</div>
]]>
</Body>
<Summary>In his latest opinion column for the Baltimore Sun, UMBC political science professor Thomas F. Schaller takes on accusations surrounding the recent U.S. Department of Homeland Security purchase of...</Summary>
<Website>https://news.umbc.edu/thomas-schaller-political-science-in-the-baltimore-sun-26/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110158/guest@my.umbc.edu/e4230d275e053da7835df3dd423381be/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>Wed, 15 May 2013 15:55:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="29521" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29521">
<Title>Had a great webinar today about the Cyber Operations program! If you missed it,...</Title>
<Body>
<![CDATA[
    <div class="html-content">Had a great webinar today about the Cyber Operations program! If you missed it, sign up for the next one on May 30th<br><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fwebinar%2Fcyber.html&amp;h=SAQH576vD&amp;s=1" title="" rel="nofollow external" class="bo"><img src="https://fbexternal-a.akamaihd.net/safe_image.php?d=AQA1sZEk6gzdeUqU&amp;w=154&amp;h=154&amp;url=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fimages%2FUMBC-TC-new-logo.jpg" alt="" style="max-width: 100%; height: auto;"></a><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fwebinar%2Fcyber.html&amp;h=tAQFHDkzB&amp;s=1" rel="nofollow external" class="bo">Cyber Webinar | UMBC Training Centers</a><br><a href="http://www.umbc.edu">www.umbc.edu</a><br>UMBC Training Centers is hosting a free webinar on Wednesday, May 15th, 2013 from 12pm – 1pm to educate participants on our new Certificate in Cyber Operations program.</div>
]]>
</Body>
<Summary>Had a great webinar today about the Cyber Operations program! If you missed it, sign up for the next one on May 30th   Cyber Webinar | UMBC Training Centers www.umbc.edu UMBC Training Centers is...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10151376705661076</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29521/guest@my.umbc.edu/c75b2537e9eb08a293f29bbd55a8ebb5/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>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 15 May 2013 15:49:18 -0400</PostedAt>
<EditAt>Wed, 15 May 2013 15:49:18 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="29518" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29518">
<Title>Congratulations Tianle Yuan!</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The Physics Department has voted to affiliate Tianle Yuan at the Assistant Level!</p></div>
]]>
</Body>
<Summary>The Physics Department has voted to affiliate Tianle Yuan at the Assistant Level!</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29518/guest@my.umbc.edu/0ba8da110e5767e03285142d133194ab/api/pixel</TrackingUrl>
<Group token="jcet">Joint Center for Earth Systems Technology</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/jcet</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xsmall.png?1524593851</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/original.JPG?1524593851</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xxlarge.png?1524593851</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xlarge.png?1524593851</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/large.png?1524593851</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/medium.png?1524593851</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/small.png?1524593851</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xsmall.png?1524593851</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xxsmall.png?1524593851</AvatarUrl>
<Sponsor>Joint Center for Earth Systems Technology</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 15 May 2013 15:35:15 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="29515" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29515">
<Title>How Can W3C Improve Its Web Site? Let Us Know!</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/wiki/Headlights2013/SiteRedesign" rel="nofollow external" class="bo">Site Redesign Task Force</a>  invites the community to take a short <strong><a href="https://www.surveymonkey.com/s/w3c_redesign" rel="nofollow external" class="bo">site redesign survey</a></strong>. As discussed in the A List Apart Column "<a href="http://alistapart.com/column/w3c-is-getting-some-work-done" rel="nofollow external" class="bo">W3C is Getting Some Work Done</a>" W3C is developing a plan to refresh its Web presence for a variety of audiences. We appreciate your input on what you value from the site and what you would like to see us do better. We will be collecting survey responses until 11:59pm Boston time on 29 May 2013.</p></div>
]]>
</Body>
<Summary>The Site Redesign Task Force  invites the community to take a short site redesign survey. As discussed in the A List Apart Column "W3C is Getting Some Work Done" W3C is developing a plan to...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9822</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29515/guest@my.umbc.edu/7212e8d9235b67e574b7770db8ab0eeb/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>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>Wed, 15 May 2013 14:47:27 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="29509" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29509">
<Title>A Humble Reply to the Abercrombie &amp; Fitch CEO</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Check out this video for a heartwarming moment. Mike Jefferies trolls the CEO Greg Karber, by handing out Abercrombie &amp; Fitch’s  ”cool kid clothes” to the homeless population of Los Angeles. Good deed for the day = done.</p>
    <p><a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=O95DBxnXiSo#at=134" rel="nofollow external" class="bo">Abercrombie &amp; Fitch Gets a Brand Readjustment #FitchTheHomeless</a></p>
    <p> </p>
    </div>
]]>
</Body>
<Summary>Check out this video for a heartwarming moment. Mike Jefferies trolls the CEO Greg Karber, by handing out Abercrombie &amp; Fitch’s  ”cool kid clothes” to the homeless population of Los Angeles....</Summary>
<Website>http://usdemocrazy.net/a-humble-reply-to-the-abercrombie-fitch-ceo/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29509/guest@my.umbc.edu/2cfbc30b072f091e67d3f45cc8cfa540/api/pixel</TrackingUrl>
<Tag>abercrombie-and-fitch</Tag>
<Tag>democracy</Tag>
<Tag>homeless</Tag>
<Tag>irc</Tag>
<Tag>news</Tag>
<Tag>politics</Tag>
<Tag>social-media</Tag>
<Tag>umbc</Tag>
<Tag>uncategorized</Tag>
<Tag>usdemocrazy</Tag>
<Tag>video</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>15</PawCount>
<CommentCount>11</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 15 May 2013 13:27:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="35512" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35512">
<Title>A Humble Reply to the Abercrombie &amp; Fitch CEO</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Check out this video for a heartwarming moment. Mike Jefferies trolls the CEO Greg Karber, by handing out Abercrombie &amp; Fitch’s  ”cool kid clothes” to the homeless population of Los Angeles. Good deed for the day = done.</p>
    <p><a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=O95DBxnXiSo#at=134" rel="nofollow external" class="bo">Abercrombie &amp; Fitch Gets a Brand Readjustment #FitchTheHomeless</a></p>
    <p> </p>
    </div>
]]>
</Body>
<Summary>Check out this video for a heartwarming moment. Mike Jefferies trolls the CEO Greg Karber, by handing out Abercrombie &amp; Fitch’s  ”cool kid clothes” to the homeless population of Los Angeles....</Summary>
<Website>http://usdemocrazy.net/a-humble-reply-to-the-abercrombie-fitch-ceo/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35512/guest@my.umbc.edu/4aee422794768d4e5efa6151a516ede3/api/pixel</TrackingUrl>
<Tag>abercrombie-and-fitch</Tag>
<Tag>homeless</Tag>
<Tag>social-media</Tag>
<Tag>uncategorized</Tag>
<Tag>video</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>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 15 May 2013 13:27:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35513" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35513">
<Title>Prostitutes and Senior Citizens: When Two Worlds Collide</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2013/05/shockedoldlady-shutterstock.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2013/05/shockedoldlady-shutterstock-300x168.jpg" width="300" height="168" style="max-width: 100%; height: auto;"></a></p>
    <p>Most of us prefer not to think about old people rolling in the hay, right? Gross. Old people and prostitution? Well, that might be interesting. Check out <a href="http://www.newser.com/story/167897/cops-bust-prostitution-ring-at-senior-citizen-home.html" rel="nofollow external" class="bo">this snippet</a> from a recent news article:</p>
    <blockquote>
    <p>The suspects are accused of running a prostitution ring out of their apartments, using cocaine, and ultimately causing drunks and drug addicts to bother others living in the building, pass out in the halls, and leave used condoms in the rec room. Oh, the building in question? It’s a senior citizen housing complex in New Jersey, and the two main suspects who were arrested after a drug and prostitution sting last month are 75 and 66 years old…</p>
    </blockquote>
    <p>That’s right. While most eldery folk spend their time watching game shows or talking about their grandkids, these two residents of ran a prostitution ring straight from a senior citizens home. James Parham and Cheryl Chaney ought to be ashamed of themselves.</p>
    <p>Residents were too scared to leave their apartments after hearing drunks scramble up the stairwells and finding crack-addicted prostitutes unconscious on the floor. Security officers were often off-duty when Parham’s “friends” entered the building. One resident described her 98-year-old neighbor’s reaction late one night:</p>
    <blockquote>
    <p>Someone was banging on her door real hard and kicking it, literally kicking it. She was shaking like a leaf. I had to stay with her that night.</p>
    </blockquote>
    <p>Ironically, the Englewood Housing Authority requires a thorough background check before residents can move in. Both came out clean, save for a few minor arrests for disorderly conduct on Parham’s record. </p>
    <p>What other creative retirement ideas will seniors think up next?</p>
    </div>
]]>
</Body>
<Summary>Most of us prefer not to think about old people rolling in the hay, right? Gross. Old people and prostitution? Well, that might be interesting. Check out this snippet from a recent news article:...</Summary>
<Website>http://usdemocrazy.net/prostitutes-and-senior-citizens-when-two-worlds-collide/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35513/guest@my.umbc.edu/f4647e81f12e2526692f38af106859a5/api/pixel</TrackingUrl>
<Tag>cocaine</Tag>
<Tag>news</Tag>
<Tag>nursing-home</Tag>
<Tag>prostitution</Tag>
<Tag>retirement</Tag>
<Tag>seniors</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>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 15 May 2013 13:26:22 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="29510" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29510">
<Title>Prostitutes and Senior Citizens: When Two Worlds Collide</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2013/05/shockedoldlady-shutterstock.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2013/05/shockedoldlady-shutterstock-300x168.jpg" width="300" height="168" style="max-width: 100%; height: auto;"></a></p>
    <p>Most of us prefer not to think about old people rolling in the hay, right? Gross. Old people and prostitution? Well, that might be interesting. Check out <a href="http://www.newser.com/story/167897/cops-bust-prostitution-ring-at-senior-citizen-home.html" rel="nofollow external" class="bo">this snippet</a> from a recent news article:</p>
    <blockquote>
    <p>The suspects are accused of running a prostitution ring out of their apartments, using cocaine, and ultimately causing drunks and drug addicts to bother others living in the building, pass out in the halls, and leave used condoms in the rec room. Oh, the building in question? It’s a senior citizen housing complex in New Jersey, and the two main suspects who were arrested after a drug and prostitution sting last month are 75 and 66 years old…</p>
    </blockquote>
    <p>That’s right. While most eldery folk spend their time watching game shows or talking about their grandkids, these two residents of ran a prostitution ring straight from a senior citizens home. James Parham and Cheryl Chaney ought to be ashamed of themselves.</p>
    <p>Residents were too scared to leave their apartments after hearing drunks scramble up the stairwells and finding crack-addicted prostitutes unconscious on the floor. Security officers were often off-duty when Parham’s “friends” entered the building. One resident described her 98-year-old neighbor’s reaction late one night:</p>
    <blockquote>
    <p>Someone was banging on her door real hard and kicking it, literally kicking it. She was shaking like a leaf. I had to stay with her that night.</p>
    </blockquote>
    <p>Ironically, the Englewood Housing Authority requires a thorough background check before residents can move in. Both came out clean, save for a few minor arrests for disorderly conduct on Parham’s record. </p>
    <p>What other creative retirement ideas will seniors think up next?</p>
    </div>
]]>
</Body>
<Summary>Most of us prefer not to think about old people rolling in the hay, right? Gross. Old people and prostitution? Well, that might be interesting. Check out this snippet from a recent news article:...</Summary>
<Website>http://usdemocrazy.net/prostitutes-and-senior-citizens-when-two-worlds-collide/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29510/guest@my.umbc.edu/9e0db5c0f5b44d6b9b87a24bfa261fd2/api/pixel</TrackingUrl>
<Tag>cocaine</Tag>
<Tag>democracy</Tag>
<Tag>irc</Tag>
<Tag>news</Tag>
<Tag>nursing-home</Tag>
<Tag>politics</Tag>
<Tag>prostitution</Tag>
<Tag>retirement</Tag>
<Tag>seniors</Tag>
<Tag>umbc</Tag>
<Tag>usdemocrazy</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>8</PawCount>
<CommentCount>2</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 15 May 2013 13:26:22 -0400</PostedAt>
</NewsItem>

</News>
