<?xml version="1.0"?>
<News hasArchived="true" page="8952" pageCount="10793" pageSize="10" timestamp="Sun, 06 Sep 2026 13:41:41 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8952&amp;range=30">
<NewsItem contentIssues="true" id="27380" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27380">
<Title>Moving A WordPress Website Without Hassle</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>Moving WordPress is a task that many people find daunting. The advice on the Codex, while comprehensive, gives you a myriad of options and doesn’t describe the process simply and in one place.</p>
    <p>When I had to move a WordPress installation for the first time, I spent hours searching online for information on the various aspects of the process, and eventually <strong>wrote myself a checklist</strong> — which I still use.</p>
    <p>So to save you the hassle, here’s a step-by-step guide to moving a WordPress website. I’ll cover three different scenarios, which in my experience are the most common:</p>
    <ul>
    <li>Moving a website from a subdirectory of a domain to the root directory (for example, if you’ve been using a subdirectory for development while not affecting an existing website that’s in the root);</li>
    <li>Moving a website from a local installation to a remote installation; and</li>
    <li>Moving a website between domains or hosts.</li>
    </ul>
    <h3>Before You Start</h3>
    <p>Before you start any of these methods, make a backup of your website:</p>
    <ul>
    <li>Your theme files;</li>
    <li>Your uploads;</li>
    <li>The plugins you’ve used, so you won’t have to spend time downloading them again if things go wrong; and</li>
    <li>Your database.</li>
    </ul>
    <p>You can back up the database using one of a number of tools:</p>
    <ul>
    <li>
    <a href="http://www.phpmyadmin.net/home_page/index.php" rel="nofollow external" class="bo">phpMyAdmin</a>;</li>
    <li>
    <a href="http://www.sequelpro.com" rel="nofollow external" class="bo">Sequel Pro</a> for OS X;</li>
    <li>Terminal commands;</li>
    <li>A MySQL desktop client; or</li>
    <li>A backup plugin such as <a href="http://wordpress.org/extend/plugins/wp-db-backup/" rel="nofollow external" class="bo">WP-DB-Backup</a>, which will provide you a copy of your database by email or download.</li>
    </ul>
    <p>In this article I’ll show you <strong>how to back up your database using phpMyAdmin</strong>, as this is provided by most hosting providers and has a relatively easy-to-use interface.</p>
    <p>If I’m going to be editing the database (which needs to be done when uploading a website or moving it between hosts or servers), I start by making a duplicate of the database and adding “old” to its name. This is the backup, and I’ll be editing the original database.</p>
    <h3>Moving A Website From A Subdirectory To The Root</h3>
    <p>This is by far the simplest of the three moves I’m going to cover, because you don’t actually have to move anything — or nearly anything. This method will work on a standard installation of WordPress, and will work with most frameworks, or if you’re using a parent and child theme structure.</p>
    <p>Beware! This method will not work for:</p>
    <ul>
    <li>Multi-site installations; or</li>
    <li>Sites using Genesis as a framework (or so I’m told, I haven’t tested it myself — if you can get it to work please leave a comment below).</li>
    </ul>
    <p>The great thing about this method is that it only takes from three to ten minutes depending on your setup — no time at all in the scheme of things.</p>
    <h4>1. Remove the Existing Website</h4>
    <p>If there is an existing website in the root directory, remove it. It may be another WordPress installation or it may be a static website.</p>
    <p>If it’s a WordPress website, make a backup as detailed above, and then delete all of the WordPress files in the root.</p>
    <ul>
    <li>If you have access to <a href="http://www.softaculous.com/" rel="nofollow external" class="bo">Softaculous</a> or another installation service via your hosting control panel, use that to uninstall WordPress.</li>
    <li>If not, use phpMyAdmin to drop (delete) the database from the existing website. See the next section for details of how to do this.</li>
    <li>After dropping the database, remove all WordPress files. This normally means any files or folders beginning with <code>wp-</code>.</li>
    <li><strong>Beware — don’t remove the existing site until you have made a backup!</strong></li>
    </ul>
    <h4>2. Turn Off Permalinks</h4>
    <p>Turn off pretty permalinks in the “Permalinks” screen, which you’ll find in the “Settings” menu. Do this by selecting the “Default” option and clicking “Save Changes.”</p>
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/01/1-permalinks.png" rel="nofollow external" class="bo"><img alt="Permalink Settings screen." src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/1-permalinks.jpg" width="500" height="340" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/01/1-permalinks.png" rel="nofollow external" class="bo">Larger version</a>.</em></p>
    <h4>3. Change Your Website Address</h4>
    <p>In “Settings” → “General,” change the address of your website but not the address of WordPress. For example if you’ve been working on the website at <code>example.com/development</code>, change the settings as follows:</p>
    <ul>
    <li>WordPress address (URL): <code><a href="http://example.com/development">http://example.com/development</a></code>
    </li>
    <li>Site Address (URL): <code><a href="http://example.com">http://example.com</a></code>
    </li>
    </ul>
    <p>Save by clicking on the “Save Changes” button and move on to the next steps before trying to access your website.</p>
    <h4>4. Copy and Edit Two Files</h4>
    <p>Using FTP/SFTP or cPanel file manager, copy (don’t move) the following files from your WordPress directory to the root directory:</p>
    <ul>
    <li><code>index.php</code></li>
    <li>
    <code>.htaccess</code>, if you have one. If there isn’t an <code>.htaccess</code> file (and turning off pretty permalinks means you’re less likely to have one), don’t worry about creating one.</li>
    </ul>
    <p>Edit the <code>index.php</code> file that you’ve moved. You could do this by:</p>
    <ul>
    <li>Editing it in situ after the move, by using FTP/SFTP or cPanel file manager;</li>
    <li>Downloading it from the subdirectory, editing it and then uploading it to the root directory — instead of making a copy.</li>
    </ul>
    <p>The edit you need to make is very simple, to one line at the end of the file. <strong>You simply change this:</strong></p>
    <pre><code>require ('./wp-blog-header.php)</code></pre>
    <p>..to this:</p>
    <pre><code>require ('./subdirectoryname/wp-blog-header.php)</code></pre>
    <p>So if you’ve been developing in <code>example.com/development</code>, just change the line to:</p>
    <pre><code>require ('./development/wp-blog-header.php)</code></pre>
    <p>Save the new <code>index.php</code> file.</p>
    <h4>5. Turn Permalinks Back On and Test</h4>
    <p>Back in the WordPress admin, turn pretty permalinks on again, with whatever setting you need for your website.</p>
    <p>Visit the root domain of your website in the browser and it will display the website that’s stored in the subdirectory, but the URL will show the root URL rather than the subdirectory URL. And that’s it!</p>
    <h3>Uploading A WordPress Website From A Local To A Remote Installation</h3>
    <p>This is one of the most common instances of moving WordPress. If you’re working on a local website for development and need to upload it either to go live or because you need to show a client or other team members your work, you’re going to need to upload your WordPress website. This is more complicated than moving from a subdirectory to the root directory, and involves moving three things:</p>
    <ul>
    <li>WordPress itself — you’ll need to install this in the new location;</li>
    <li>The database — which you can move using phpMyAdmin;</li>
    <li>Your theme files, uploads and plugins.</li>
    </ul>
    <h4>1. Turn Off Permalinks</h4>
    <p>Turn off pretty permalinks in the “Permalinks” screen, which you’ll find in the “Settings” menu. Do this by selecting the “Default” option and clicking “Save Changes.”</p>
    <h4>2. Backup the Database</h4>
    <p>Make a copy of the database and give it a new name (for example, by adding “old” to its name).</p>
    <h4>3. Install WordPress In the New Location and Upload Content</h4>
    <p>Using your preferred method, install WordPress on the server you want to move your website to.</p>
    <p>Using FTP or SFTP, copy the files from your local “wp-content” directory to the remote “wp-content” directory, using the same folder structure as in your local install.</p>
    <p>Go and have a cup of coffee. These files could take a while to upload.</p>
    <h4>4. Edit the Database</h4>
    <p>Open the original database file from your local installation and edit it. Using your preferred text editor, replace the old, local URL for the website with the new, remote URL.</p>
    <p>So for example, if your local URL is <code><a href="http://localhost/example">http://localhost/example</a></code>, you would change it to <code><a href="http://example.com">http://example.com</a></code>.</p>
    <p>Using the “replace” command in your text editor will speed this up — there could be thousands of instances. Save your new database.</p>
    <h4>5. Drop the Existing Remote Database</h4>
    <p><strong>Note</strong>: This step only applies if you’ve used a script such as Softaculous or Fantastico to install WordPress, as they automatically create a new database. If you’ve installed WordPress manually, you can ignore this bit.</p>
    <p>In phpMyAdmin, drop (delete) the database that was installed in the remote website when you installed WordPress:</p>
    <ul>
    <li>Select the database you’re working with.</li>
    <li>Click on the “Structure” tab.</li>
    <li>Below the list of tables, click “Check All.”</li>
    <li>In the drop-down menu which says “With selected,” select “Drop”:
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/01/2-phpmyadmin-drop-tables.jpg" rel="nofollow external" class="bo"><img alt="Dropping a database in phpMyAdmin." src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/2-phpmyadmin-drop-tables.jpg" width="500" height="474" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/01/2-phpmyadmin-drop-tables.jpg" rel="nofollow external" class="bo">Larger version</a>.</em></p>
    </li>
    <li>You will see a warning message checking that you want to drop all tables. Click “Yes.”</li>
    <li>Finally you will see a message telling you that your query has been implemented:
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/04/3-phpmyadmin-drop-success.png" rel="nofollow external" class="bo"><img alt="Confirmation message after dropping a database." src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/3-phpmyadmin-drop-success.jpg" width="500" height="101" style="max-width: 100%; height: auto;"></a><br><em><a href="http://media.smashingmagazine.com/wp-content/uploads/2013/04/3-phpmyadmin-drop-success.png" rel="nofollow external" class="bo">Larger version</a>.</em></p>
    </li>
    </ul>
    <h4>6. Upload the New Database</h4>
    <p>While you are still in phpMyAdmin, upload the database you’ve edited:</p>
    <ul>
    <li>Click the “Import” tab.</li>
    <li>Click the “Choose file” button.</li>
    <li>Select the database you saved in step 4 and click “Choose” or “OK.”</li>
    <li>Click the “Go” button.</li>
    <li>After a while (depending on the size of your database), you will see a message telling you the upload has successfully finished:
    <p><a href="http://media.smashingmagazine.com/wp-content/uploads/2012/12/4-phpmyadmin-import-success.jpg" rel="nofollow external" class="bo"><img alt="Confirmation message after importing a database." src="http://media.smashingmagazine.com/wp-content/uploads/2012/12/4-phpmyadmin-import-success.jpg" width="500" height="145" style="max-width: 100%; height: auto;"></a></p>
    </li>
    </ul>
    <h4>7. Clear Your Browser’s Cache</h4>
    <p>This avoids any problems you may have if the browser has cached content from the old version of the remote database.</p>
    <h4>8. Log Into the WordPress Admin For the Remote Website and Update Permalinks</h4>
    <p>Your log-in details will be the same as for your local website. If you specified different log-in details when installing remotely, these will have been overridden by the imported database.</p>
    <p>Visit the “Permalinks” screen and turn pretty permalinks back on.</p>
    <p>You’re done!</p>
    <h3>Moving A WordPress Website Between Hosts</h3>
    <p>This process is almost exactly the same as that for uploading a website from a local installation. The only difference is that you need to download the files and database from the existing website.</p>
    <p>Follow the above process, with changes to step 2:</p>
    <h4>2. Download and Backup the Old Database and Files</h4>
    <p>In phpMyAdmin for the old website, select the correct database and click on the “Export” tab. Download the database by clicking the “Go” button. The database will download to your machine.</p>
    <p>Move the database out of your downloads folder to somewhere useful and make a copy of it. You’ll be working with this database in Step 4.</p>
    <p>Using FTP or SFTP, download the contents of <code>wp-content</code> from your old website. You will upload this to the new website in step 3.</p>
    <p>Now return to the original process.</p>
    <h3>Summary</h3>
    <p>Moving WordPress doesn’t need to be complicated. As long as you follow the steps above in the right order, your data will be safe and your website will work in its new location. Important points to remember are:</p>
    <ul>
    <li>Always back up your website before you start.</li>
    <li>If moving WordPress within a domain, you don’t need to move the whole thing, just make some changes to the settings and move and edit the <code>index.php</code> file.</li>
    <li>When uploading your database to a new location, make sure you upload the version that you’ve edited with the new URL, not the backup version with the old URL. Otherwise, at the very least, internal links will break and it’s possible you’ll see the white screen of death when you try to install your website.</li>
    </ul>
    <p>If at any stage you go wrong, undo what you’ve done and start again with your backup. You did make a backup, right?</p>
    <h3>Resources</h3>
    <p>The WordPress Codex includes resources that will help you apply this method whatever your hosting setup:</p>
    <ul>
    <li><a href="http://codex.wordpress.org/Moving_WordPress" rel="nofollow external" class="bo">Moving WordPress</a></li>
    <li><a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory" rel="nofollow external" class="bo">Giving WordPress Its Own Directory</a></li>
    <li><a href="http://codex.wordpress.org/Installing_WordPress" rel="nofollow external" class="bo">Installing WordPress</a></li>
    </ul>
    <p>For help with phpMyAdmin, see <a href="http://www.phpmyadmin.net/documentation/" rel="nofollow external" class="bo">phpMyAdmin’s documentation</a>.</p>
    <p>There are also plugins which will help you move WordPress if you don’t want to do it all manually. I haven’t tested all of these, so I can’t vouch for their reliability or ease of use. If you do use one, do so with care.</p>
    <ul>
    <li><a href="http://wordpress.org/extend/plugins/wordpress-move/" rel="nofollow external" class="bo">WordPress Move</a></li>
    <li><a href="http://wordpress.org/extend/plugins/backup-and-move/" rel="nofollow external" class="bo">Backup and Move Plugin</a></li>
    <li><a href="http://wordpress.org/extend/plugins/wp-db-backup/" rel="nofollow external" class="bo">WP-DB-Backup</a></li>
    </ul>
    <p><em>(cp)</em></p>
    <hr>
    <p><small>© Rachel McCollin for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        Moving WordPress is a task that many people find daunting. The advice on the Codex, while comprehensive, gives you a myriad of options and doesn’t describe the process simply and in one...</Summary>
<Website>http://www.smashingmagazine.com/2013/04/08/moving-a-wordpress-website-without-hassle/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27380/guest@my.umbc.edu/85116c2caabbb687a0f21c081464f19c/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Tag>wordpress</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>Mon, 08 Apr 2013 11:54:10 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27378" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27378">
<Title>A Grand Farewell to the Iron Lady&#8230;and Cher</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p> </p>
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2013/04/Kal-Thatcher-small.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2013/04/Kal-Thatcher-small-777x1024.jpg" width="466" height="614" style="max-width: 100%; height: auto;"></a> </p>
    <p>At 87 years old, former British Prime Minister Margaret Thatcher passed away this morning on April 8th, 2013. She suffered from several strokes <a href="http://www.cnn.com/2013/04/08/world/europe/uk-margaret-thatcher-dead/index.html?hpt=hp_t1" rel="nofollow external" class="bo">since her retirement in 2002</a>, which caused her death.</p>
    <p>Not only is Thatcher the only female Prime Minister, but she served for three terms  – <a href="http://www.aljazeera.com/news/europe/2013/04/201348115218647429.html" rel="nofollow external" class="bo">the longest time in office</a> since before the 19th century.</p>
    <p>Leading the Conservative Party, Thatcher privatized many industries and ended government subsidies to pay off the country’s massive debt. <a href="http://www.economist.com/blogs/blighty/2013/04/margaret-thatcher" rel="nofollow external" class="bo">According to The Economist, </a></p>
    <blockquote>
    <p>Her enthusiasm for privatization launched a global revolution and her willingness to stand up to tyranny helped to bring an end to the Soviet Union.</p>
    </blockquote>
    <p>Thatcher worked closely with Reagan and supported Gorbachev’s rise to power, but argued against the reunification of East and West Germany. </p>
    <p>While social media is lamenting over Thatcher’s death, its also mourning the passing of another icon: Cher.</p>
    <p>A website called “Is Thatcher Dead Yet?”<a href="http://www.isthatcherdeadyet.co.uk/" rel="nofollow external" class="bo"> changed its home page</a> from a big NO to a big YES as of today. It also provides a Spotify playlist, a search result to finding parties on Facebook, and a link to the official Twitter hashtag, “<a href="https://twitter.com/search?q=%23nowthatchersdead" rel="nofollow external" class="bo">#nowthatchersdead</a>.”</p>
    <p>Unfortunately, many are confused and reading the trend as “now that Cher’s dead,” which completely brings the focus away from the actual point of the hashtag. But<a href="https://twitter.com/search?q=%23cher&amp;src=rela" rel="nofollow external" class="bo"> it seems that more people are correcting the misleading link</a> than lamenting Cher.</p>
    <p><strong>Here’s the philosophical question of the day: who would get more media attention if they died on the same day… Margaret Thatcher, or Cher?</strong></p>
    </div>
]]>
</Body>
<Summary>        At 87 years old, former British Prime Minister Margaret Thatcher passed away this morning on April 8th, 2013. She suffered from several strokes since her retirement in 2002, which caused...</Summary>
<Website>http://usdemocrazy.net/a-grand-farewell-to-the-iron-lady-and-cher/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27378/guest@my.umbc.edu/6502bf3cdad902217dca6c3da295d846/api/pixel</TrackingUrl>
<Tag>cher</Tag>
<Tag>democracy</Tag>
<Tag>irc</Tag>
<Tag>margaret-thatcher</Tag>
<Tag>news</Tag>
<Tag>politics</Tag>
<Tag>spotify</Tag>
<Tag>the-economist</Tag>
<Tag>twitter</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>18</PawCount>
<CommentCount>3</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 08 Apr 2013 11:47:38 -0400</PostedAt>
<EditAt>Mon, 08 Apr 2013 11:47:38 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="27387" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27387">
<Title>3 Apps to Help You Write a Marketing Plan</Title>
<Body>
<![CDATA[
    <div class="html-content">These tools can help you figure out your needs, understand your competition and develop a cost-effective marketing strategy.<br><br><a href="http://da.feedsportal.com/r/163041112457/u/49/f/625555/c/34343/s/2a7a14fc/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/163041112457/u/49/f/625555/c/34343/s/2a7a14fc/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>These tools can help you figure out your needs, understand your competition and develop a cost-effective marketing strategy.</Summary>
<Website>http://feedproxy.google.com/~r/entrepreneur/startingabusiness/~3/tkCiNXSg_bc/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27387/guest@my.umbc.edu/0c8a6a93cd42bb9c05120a82435f5992/api/pixel</TrackingUrl>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 08 Apr 2013 11:30:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27376" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27376">
<Title>Mitchell &#8217;09, Music, Launches CD and Film with Band Swampcandy</Title>
<Body>
<![CDATA[
    <div class="html-content">Annapolis-area blues duo Swampcandy — one half of which is comprised of bassist Joseph Mitchell ’09, music — launched a new CD and documentary film this month, according to a feature in the Capital newspaper. The article states: “Fresh in … <a href="http://umbcalumni.wordpress.com/2013/04/08/mitchell-09-music-launches-cd-and-film-with-band-swampcandy/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Annapolis-area blues duo Swampcandy — one half of which is comprised of bassist Joseph Mitchell ’09, music — launched a new CD and documentary film this month, according to a feature in the...</Summary>
<Website>http://umbcalumni.wordpress.com/2013/04/08/mitchell-09-music-launches-cd-and-film-with-band-swampcandy/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27376/guest@my.umbc.edu/bef467a8e69c6421d6732ce5fddaff5f/api/pixel</TrackingUrl>
<Tag>00s-alums</Tag>
<Tag>arts-and-humanities</Tag>
<Tag>uncategorized</Tag>
<Group token="retired-20">UMBC Alumni</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-20</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/original.png?1280681147</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/large.png?1280681147</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/medium.png?1280681147</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/small.png?1280681147</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxsmall.png?1280681147</AvatarUrl>
<Sponsor>UMBC Alumni</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 08 Apr 2013 10:57:54 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27447" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27447">
<Title>Mitchell &#8217;09, Music, Launches CD and Film with Band Swampcandy</Title>
<Body>
<![CDATA[
    <div class="html-content">Annapolis-area blues duo Swampcandy — one half of which is comprised of bassist Joseph Mitchell ’09, music — launched a new CD and documentary film this month, according to a feature in the Capital newspaper. The article states: “Fresh in … <a href="https://umbcalumni.wordpress.com/2013/04/08/mitchell-09-music-launches-cd-and-film-with-band-swampcandy/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Annapolis-area blues duo Swampcandy — one half of which is comprised of bassist Joseph Mitchell ’09, music — launched a new CD and documentary film this month, according to a feature in the...</Summary>
<Website>https://umbcalumni.wordpress.com/2013/04/08/mitchell-09-music-launches-cd-and-film-with-band-swampcandy/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27447/guest@my.umbc.edu/26f6adeec1fbf6dd0d13621f9f9d60ef/api/pixel</TrackingUrl>
<Tag>00s-alums</Tag>
<Tag>arts-and-humanities</Tag>
<Tag>uncategorized</Tag>
<Group token="retired-20">UMBC Alumni</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-20</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/original.png?1280681147</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/large.png?1280681147</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/medium.png?1280681147</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/small.png?1280681147</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxsmall.png?1280681147</AvatarUrl>
<Sponsor>UMBC Alumni</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 08 Apr 2013 10:57:54 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="107017" important="false" status="posted" url="https://my3.my.umbc.edu/posts/107017">
<Title>Mitchell &#8217;09, Music, Launches CD and Film with Band Swampcandy</Title>
<Body>
<![CDATA[
    <div class="html-content">Annapolis-area blues duo Swampcandy — one half of which is comprised of bassist Joseph Mitchell ’09, music — launched a …</div>
]]>
</Body>
<Summary>Annapolis-area blues duo Swampcandy — one half of which is comprised of bassist Joseph Mitchell ’09, music — launched a …</Summary>
<Website>https://magazine.umbc.edu/mitchell-09-music-launches-cd-and-film-with-band-swampcandy/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/107017/guest@my.umbc.edu/1a6b7543065ba92627a9a551f73ffe00/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/images/avatars/group/8/original.png?1787842820</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xxlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1787842820</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/8/medium.png?1787842820</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/8/small.png?1787842820</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/8/xxsmall.png?1787842820</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 08 Apr 2013 10:57:54 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27375" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27375">
<Title>jQuery Mobile 1.3</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/04/thumbnail4.jpg" alt="Thumbnail" width="200" height="160" style="max-width: 100%; height: auto;">jQuery Mobile 1.3 is now available as a stable release.</p>
    <p>This new version spearheads the jQuery team’s efforts to fully incorporate responsive web design principles into its robust library. Among the new features are several widgets optimized for touch interfaces, including smooth panel overlays, dual-handle range sliders, as well as two different options for responsive tables.</p>
    <h1>The new features</h1>
    <p>The new panel widgets allow hidden information to be displayed in a very smooth, eye-catching way. With three modes for transitioning—overlay, reveal and push—the panel slides in from the left or right with a swipe, click or press of the keyboard, keeping the design responsive regardless of the user’s chosen method of input.</p>
    <p>Also making its debut is a new feature of the tried and true list view: autocomplete! This feature works just as it sounds. Simply begin typing your desired criteria, and voila! Just like a Google search bar, matches are automatically displayed below the input.</p>
    <p>Tables in jQuery Mobile 1.3 now allow two additional modes: column toggle and reflow mode. Column toggle mode allows the user to select which columns of a table to hide and which to display. Reflow mode takes responsive web design to heart and solves the headache of formatting tables dynamically for small screens. It does this by breaking down a table and displaying each row as its own table, with the column labels as row headers and the row data transposed into a column format.</p>
    <p> </p>
    <h1>What this means for responsive web design</h1>
    <p>jQuery has long been a dependable framework, favored for its ability to simplify otherwise tedious and complex JavaScript tasks. jQuery Mobile has been tasked since its inception with bringing that same simplicity to the mobile arena, where touch interfaces rule the roost.</p>
    <p>Given the nature of having two separate implementations for two different platforms, the jQuery team has witnessed some confusion with the recent responsive web design movement. People have asked whether they should use responsive web design or jQuery Mobile for their sites, to which Todd Parker (member of the jQuery Mobile team) has responded with an emphatic “both”!</p>
    <p>Mr. Parker might be on to something here, too. By employing the rich features of the jQuery mobile framework, web designers can quickly blend their mobile sites into a broader responsive strategy without sacrificing innovation.</p>
    <p>Only a few of the new features are listed here; the entire change log can be viewed in the <a href="http://jquerymobile.com/blog/2013/02/04/jquery-mobile-1-3-0-rc1-released/" rel="nofollow external" class="bo">release announcement</a>. Also, take a gander at the jQuery Mobile 1.3 <a href="http://jquerymobile.com/demos/1.3.0-rc.1/" rel="nofollow external" class="bo">demo site</a> for some quality hands-on time.</p>
    <p> </p>
    <p><em><strong>Do you use jQuery, jQuery Mobile, or both? Which new features are your favorites? Let us know in the comments.</strong></em></p>
    <p><br><br>
    </p>
    <table width="100%">
    <tbody>
    <tr>
    <td>
          <a href="http://www.mightydeals.com/deal/trainsimple.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Get Certified Adobe Training for Web Design – 50% off!</strong></a>
        </td>
    <td>
          <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br>
            <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" style="max-width: 100%; height: auto;"><br>
          </a>
        </td>
    </tr>
    </tbody>
    </table>
    <p><br> </p>
    <a href="http://www.webdesignerdepot.com/2013/04/jquery-mobile-1-3/" rel="nofollow external" class="bo">Source</a>
    </div>
]]>
</Body>
<Summary>jQuery Mobile 1.3 is now available as a stable release.   This new version spearheads the jQuery team’s efforts to fully incorporate responsive web design principles into its robust library. Among...</Summary>
<Website>http://www.webdesignerdepot.com/2013/04/jquery-mobile-1-3/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27375/guest@my.umbc.edu/47da13227fb455ebc5835353b835e2c1/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>jquery</Tag>
<Tag>jquery-mobile</Tag>
<Tag>jquery-mobile-1-3</Tag>
<Tag>mobile</Tag>
<Tag>mysql</Tag>
<Tag>new-features-in-jquery</Tag>
<Tag>news</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>responsive-web-design</Tag>
<Tag>sql</Tag>
<Tag>stable-jquery-version</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>Mon, 08 Apr 2013 10:15:06 -0400</PostedAt>
<EditAt>Mon, 08 Apr 2013 10:15:06 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="27371" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27371">
<Title>Hacking anything connected to the Internet</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h1>Hacking anything connected to the Internet</h1>
    <h6>The Shodan search engine allows anyone to 
    search for anything connected to the Internet and if security settings 
    are not turned on, take control of the device.</h6>
    <p><br></p>
    <p>Video here: <a href="http://money.cnn.com/video/technology/2013/04/05/t-ts-shodan-hacking-devices.cnnmoney/index.html?iid=HP_LN">http://money.cnn.com/video/technology/2013/04/05/t-ts-shodan-hacking-devices.cnnmoney/index.html?iid=HP_LN</a><br></p>
    </div>
]]>
</Body>
<Summary>Hacking anything connected to the Internet   The Shodan search engine allows anyone to  search for anything connected to the Internet and if security settings  are not turned on, take control of...</Summary>
<Website>http://money.cnn.com/video/technology/2013/04/05/t-ts-shodan-hacking-devices.cnnmoney/index.html?iid=HP_LN</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27371/guest@my.umbc.edu/06811327a6ee4fddf6c48b40ccc2b09a/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 08 Apr 2013 10:14:25 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="27369" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27369">
<Title>Forming Honors Society for Students With Disabilitings!</Title>
<Tagline>Trying for form chapter of Delta Alpha Pi Honors Society.</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>Students are trying
    to start a chapter of the Delta Alpha Pi honors society at UMBC.  It is an  honors society for students with documented disabilities.  </span></p>
    <p><span>Since
    this is an honors society students must meet specific criteria in order to
    become a member.<span>  </span>This is a pre-established
    international honors society so these requirements have been predetermined and unfortunately
    cannot be manipulated.<span>  </span></span></p>
    <p><span></span> </p>
    <p><span>For undergraduate
    students:</span></p>
    <p><span>1. Must have a
    documented disability.</span></p>
    <p><span>2. Must be
    interested in disability issues</span></p>
    <p><span>3. Have a UMBC GPA of at
    least 3.1</span></p>
    <p><span>4. Have completed at
    least 24 credits at any school.</span></p>
    <p><span></span> </p>
    <p><span>Graduate students are
    also welcome:</span></p>
    <p><span>1. Must have a
    documented disability.</span></p>
    <p><span>2. Must be interested in
    disability issues.</span></p>
    <p><span>3. Have a GPA of at
    least 3.3</span></p>
    <p><span>4. Have completed at
    least 18 credits. </span></p>
    <p><span> </span></p>
    <p><span>Delta Alpha Pi is a way
    to celebrate the academic accomplishments of those with documented
    disabilities. Disabilities include all types as long as they are documented
    (physical disabilities, learning disabilities, ADHD, Autism Spectrum Disorders,
    ect.) I want to do this because as a student with ADHD and learning
    disabilities I have to work harder than the average student to get an A and I
    know I am not alone.<span>  </span>I realize that a
    lot of people with disabilities are embarrassed about it or fear it may hurt
    them for graduate school or going into the work force.  Delta Alpha Pi can
    only help you because it shows that although you have disabilities you have
    shown that you can beat the odds. Delta Alpha Pi members also do
    activities to take away the stigma of disabilities and to educate the
    community.<span>  </span>  </span></p>
    <p><span>For more information you
    can contact me at </span><a href="mailto:Sjul1@umbc.edu" rel="nofollow external" class="bo"><span><u>Sjul1@umbc.edu</u></span></a><span> or leave comments below.  The
    official Delta Alpha Pi honors society website is also attached to this
    message.  </span></p>
    <p><span>This is a great
    opportunity and we just need 10 students to get started!  </span></p>
    </div>
]]>
</Body>
<Summary>Students are trying to start a chapter of the Delta Alpha Pi honors society at UMBC.  It is an  honors society for students with documented disabilities.    Since this is an honors society...</Summary>
<Website>http://deltaalphapihonorsociety.org/</Website>
<AttachmentKind>Flyer</AttachmentKind>
<AttachmentUrl>https://assets3-my.umbc.edu/system/shared/attachments/71a0a509eb8d55a6e5f0e72d7357da58/6a9da5d5/news/000/027/369/74dbd1111727a31a2b825d615d80b2e7/DAP flyer.doc?1365429821</AttachmentUrl>
<Attachments>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/27369/attachments/9648"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27369/guest@my.umbc.edu/bd24560b86736dbcc4cc3ffce76cf517/api/pixel</TrackingUrl>
<Tag>disabilities</Tag>
<Tag>honors</Tag>
<Group token="retired-594">Delta Alpha Pi </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-594</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/xsmall.png?1365429063</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/original.jpg?1365429063</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/xxlarge.png?1365429063</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/xlarge.png?1365429063</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/large.png?1365429063</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/medium.png?1365429063</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/small.png?1365429063</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/xsmall.png?1365429063</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/594/77bb909a2d2ea5c42602592012e43474/xxsmall.png?1365429063</AvatarUrl>
<Sponsor>Trying to Form Chapter of Delta Alpha Pi</Sponsor>
<PawCount>2</PawCount>
<CommentCount>1</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 08 Apr 2013 10:03:41 -0400</PostedAt>
<EditAt>Mon, 08 Apr 2013 16:24:38 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="27368" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27368">
<Title>cPrime, Inc. is looking for a Project Manager</Title>
<Body>
<![CDATA[
    <div class="html-content">cPrime, Inc. is looking for a Project Manager<br><br><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fjobvite.com%2Fm%3F3A8IMfwW&amp;h=VAQGO2F4-&amp;s=1" rel="nofollow external" class="bo">cPrime, Inc. - Project Manager</a><br>hire.jobvite.com<br>Project Manager - •Be a quantitative leader in the organization, helping to inform new metrics which drive the business forward in ways that are consistent with key strategies. •Good understanding of technology (hardware/software) and how it all fits together. •Excellent Leader -- with the ability t...</div>
]]>
</Body>
<Summary>cPrime, Inc. is looking for a Project Manager   cPrime, Inc. - Project Manager hire.jobvite.com Project Manager - •Be a quantitative leader in the organization, helping to inform new metrics which...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/480386362015132</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27368/guest@my.umbc.edu/9fba805be1b5f3c9fabb369f043464d0/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>Mon, 08 Apr 2013 09:34:12 -0400</PostedAt>
<EditAt>Mon, 08 Apr 2013 09:34:12 -0400</EditAt>
</NewsItem>

</News>
