<?xml version="1.0"?>
<News hasArchived="true" page="7836" pageCount="10769" pageSize="10" timestamp="Tue, 25 Aug 2026 16:59:45 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7836">
<NewsItem contentIssues="true" id="41103" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41103">
<Title>Optimizing Mobile Web Apps for iOS</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>When I was looking through the analytics data for a product I recently launched I was taken aback by just how much mobile traffic the web app was getting. After seeking some feedback from users it became clear that people were using the ‘Add to Home Screen’ feature in Safari on iOS to create a shortcut to the app right on their home screen. The app was already designed to be responsive but after discovering how popular this user behaviour was I started thinking about how I could make the mobile experience even better for these users.</p>
    <p>In this post I want to share with you some of the techniques I’ve learned about how to optimize mobile web apps for iOS. You’re going to learn how to set the launcher icon, startup image, status bar styling, and more.</p>
    <p>Lets get started!</p>
    <h2>Setting the Viewport</h2>
    <p>The first thing you can do to ensure that you’re delivering a great mobile experience to users is to correctly set the viewport for your app. This will ensure that the layout and content is displayed nicely within the dimensions of the screen your app is being viewed on.</p>
    <p>To set the viewport you just need to add the following <code>&lt;meta&gt;</code> tag to the <code>&lt;head&gt;</code> of the document.</p>
    <pre><code>&lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;</code></pre>
    <p>This will set the <code>width</code> of the viewport to match the width of the device. The <code>initial-scale</code> value ensures that no zoom will be applied to the page when it first loads.</p>
    <h2>Adding an Icon</h2>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/app-icon.png" rel="nofollow external" class="bo"><img alt="Launcher Icon" src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/app-icon.png" width="117" height="136" style="max-width: 100%; height: auto;"></a><p>Launcher Icon</p>
    </div>
    <p>One of the most important things to do when optimizing your web app for iOS is to set the launcher icon. This is the icon that will be displayed on the home screen of the user’s device. If you don’t set this yourself, iOS will use a screenshot of the page instead.</p>
    <p>You can specify the launcher icon by adding a <code>&lt;link&gt;</code> element to the <code>&lt;head&gt;</code> of your document. Make sure that you set the <code>rel</code> attribute on this element to <code>apple-touch-icon</code>.</p>
    <pre><code>&lt;link rel="apple-touch-icon" href="apple-touch-icon-iphone.png"&gt;</code></pre>
    <p>Your icon image should be supplied in PNG format.</p>
    <p>As Apple hardware has evolved we’ve seen the introduction of new screen sizes and densities. This means that you cannot create a single icon that will be displayed nicely on all Apple devices. Instead you need to create icons that specifically target devices with <em>retina</em> and <em>non-retina</em> screens.</p>
    <p>You can specify icons aimed at particular device resolutions by adding multiple <code>&lt;link&gt;</code> elements with <code>sizes</code> attributes. This attribute should contain the size of the icon referenced in the <code>href</code> attribute. Safari will pick out the icon that is most appropriate to the user’s device.</p>
    <pre><code>&lt;link rel="apple-touch-icon" href="apple-touch-icon-iphone.png"&gt;&#x000A;    &lt;link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png"&gt;&#x000A;    &lt;link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png"&gt;&#x000A;    &lt;link rel="apple-touch-icon" sizes="152x152" href="touch-icon-ipad-retina.png"&gt;</code></pre>
    <p>The icon sizes needed to target specific devices can be found in the table below. If you don’t specify a <code>sizes</code> attribute, the default size of <code>60x60</code> will be used.</p>
    <table>
    <thead>
    <tr>
    <th>Icon Size</th>
    <th>Devices</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>60×60</td>
    <td>iPhone &amp; iPod Touch (Non-Retina)</td>
    </tr>
    <tr>
    <td>76×76</td>
    <td>iPad 2 &amp; iPad mini (Non-Retina)</td>
    </tr>
    <tr>
    <td>120×120</td>
    <td>iPhone &amp; iPod Touch (Retina)</td>
    </tr>
    <tr>
    <td>152×152</td>
    <td>iPad &amp; iPad mini (Retina)</td>
    </tr>
    </tbody>
    </table>
    <hr>
    <p><strong>Note:</strong> Safari on iOS 7 doesn’t add any effects to your icons, however older versions of Safari will. If you don’t want older versions of Safari to apply effects to your icons make sure that the filenames end with <code>-precomposed.png</code>.</p>
    <hr>
    <h2>Setting a Startup Image</h2>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/IMG_1424.png" rel="nofollow external" class="bo"><img alt="The startup image for the Jawbone UP app." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/IMG_1424.png" width="184" height="327" style="max-width: 100%; height: auto;"></a><p>The startup image for the Jawbone UP app.</p>
    </div>
    <p>Next up you’re going to learn how to add a startup image for your app. This will be displayed to the user whilst the page is loading. If you don’t specify a startup image the user will just see a blank white screen.</p>
    <p>You can specify a startup image using a <code>&lt;link&gt;</code> tag with the <code>rel</code> attribute set to <code>apple-touch-startup-image</code>.</p>
    <pre><code>&lt;link rel="apple-touch-startup-image" href="/startup-image.png"&gt;</code></pre>
    <p>The size of the startup image for iPhone 5S/5C is 640 x 1136 (pixels).</p>
    <p>Unlike with launcher icons, you cannot use the <code>sizes</code> attribute to target different screen resolutions when it comes to startup images. Instead you need to use media queries. Github user Taylor Fausak has put together a <a href="https://gist.github.com/tfausak/2222823" rel="nofollow external" class="bo">great gist</a> that demonstrates how to do this.</p>
    <h2>Setting the Launcher Title</h2>
    <p>By default Safari will use the contents of the page’s <code>&lt;title&gt;</code> element to set the initial title for the launcher icon. You can however override this by adding a <code>&lt;meta&gt;</code> tag with <code>apple-mobile-web-app-title</code> set as the value of the <code>name</code> attribute. The value of the element’s <code>content</code> attribute will then be used as the launcher title.</p>
    <pre><code>&lt;meta name="apple-mobile-web-app-title" content="Kojitsu"&gt;</code></pre>
    <p>Explicitly setting the title of your web app like this can be useful if the <code>&lt;title&gt;</code> element contains a lot of text that’s used for SEO purposes.</p>
    <h2>Hiding the Browser’s User Interface</h2>
    <p>Another great optimization is to hide the browser UI so that you can maximize the screen space available to your app. This can be done by adding a <code>&lt;meta&gt;</code> element with the <code>name</code> attribute set to <code>apple-mobile-web-app-capable</code>, and the <code>content</code> attribute set to <code>yes</code>.</p>
    <pre><code>&lt;meta name="apple-mobile-web-app-capable" content="yes"&gt;</code></pre>
    <p>This will cause your app to run in <em>standalone</em> mode. It’s worth noting that any links to other pages that are clicked whilst your app is in standalone mode will launch the full Safari browser. To get around this you could build your app as a <em>single-page application</em> (SPA).</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/browser-ui-comparison.png" rel="nofollow external" class="bo"><img alt="Browser UI Comparison: Visible (left) and Hidden (right)." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/browser-ui-comparison.png" width="640" height="568" style="max-width: 100%; height: auto;"></a><p>Browser UI Comparison: Visible (left) and Hidden (right).</p>
    </div>
    <hr>
    <p><strong>Note:</strong> Chrome for Android also supports the ability to run an app in <em>standalone</em> mode. Be sure to add a <code>&lt;meta&gt;</code> element with the <code>name</code> attribute set as <code>mobile-web-app-capable</code> to enable this.</p>
    <pre><code>&lt;meta name="mobile-web-app-capable" content="yes"&gt;</code></pre>
    <hr>
    <p>You can check to see if your app is running in standalone mode by examining the <code>navigator.standalone</code> property using JavaScript.</p>
    <pre><code>if (window.navigator.standalone) {&#x000A;        // The app is running in standalone mode.&#x000A;    }</code></pre>
    <h2>Styling the Status Bar</h2>
    <p>As well as hiding the browser UI, you can also alter how the iOS status bar is displayed. This is done using a <code>&lt;meta&gt;</code> element with the <code>name</code> attribute set to <code>apple-mobile-web-app-status-bar-style</code>.</p>
    <pre><code>&lt;meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"&gt;</code></pre>
    <p>There are a number of different values that you can use to set the style of the status bar. These should be specified as the value for the <code>content</code> attribute.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/default.png" rel="nofollow external" class="bo"><img alt="The 'default' status bar style (iOS 7)." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/default.png" width="640" height="136" style="max-width: 100%; height: auto;"></a><p>The ‘default’ status bar style (iOS 7).</p>
    </div>
    <p><code>default</code> – The default system status bar will be displayed above the web content.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/black.png" rel="nofollow external" class="bo"><img alt="The 'black' status bar style (iOS 7)." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/black.png" width="640" height="136" style="max-width: 100%; height: auto;"></a><p>The ‘black’ status bar style (iOS 7).</p>
    </div>
    <p><code>black</code> – The status bar will be displayed above the web content with a black background.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/black-translucent.png" rel="nofollow external" class="bo"><img alt="The 'black-translucent' status bar style (iOS 7)." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/black-translucent.png" width="640" height="136" style="max-width: 100%; height: auto;"></a><p>The ‘black-translucent’ status bar style (iOS 7).</p>
    </div>
    <p><code>black-translucent</code> – The status bar will be displayed over the top of the web content, with a translucent background.</p>
    <p>If you use the <code>black-translucent</code> value be sure to add an extra 20 pixels of padding to the top of your page to ensure that the status bar does not obscure your content.</p>
    <hr>
    <p><strong>Note</strong>: Setting the status bar style will only work if you have also specified an <code>apple-mobile-web-app-capable</code> meta tag.</p>
    <hr>
    <h2>Linking to Native Apps</h2>
    <p>The last optimization we’re going to look at is how to link to native apps. This allows you to do things like make a phone call, send an SMS message, or even launch the YouTube app.</p>
    <p>To launch native apps you need to use one of the <a href="https://developer.apple.com/library/mac/featuredarticles/iPhoneURLScheme_Reference/Introduction/Introduction.html#//apple_ref/doc/uid/TP40007899" rel="nofollow external" class="bo">URL schemes</a> supported by Safari on iOS.</p>
    <h3>Sending an Email</h3>
    <p>To launch the mail app you just use the standard <code>mailto</code> scheme that you may already be familiar with.</p>
    <pre><code>&lt;a href="mailto:<a href="mailto:hello@example.com">hello@example.com</a>"&gt;Send Email&lt;/a&gt;</code></pre>
    <h3>Making a Phone Call</h3>
    <p>The <code>tel</code> URL scheme is used to launch the dialer from your mobile web app. An alert will be displayed prompting the user to confirm that they wish to make the call.</p>
    <pre><code>&lt;a href="tel:01234567890"&gt;Call Jim&lt;/a&gt;</code></pre>
    <h3>Starting a FaceTime Call</h3>
    <p>You can launch the FaceTime app using the <code>facetime</code> URL scheme. You should specify either the phone number or email address of the person you wish to call. Again the user will be asked to confirm the call before the app is launched.</p>
    <pre><code>&lt;a href="facetime:01234567890"&gt;Call using FaceTime&lt;/a&gt;&#x000A;    &lt;a href="facetime:<a href="mailto:hello@example.com">hello@example.com</a>"&gt;Call using FaceTime&lt;/a&gt;</code></pre>
    <h3>Sending an SMS Message</h3>
    <p>You can launch the Messages app using the <code>sms</code> URL scheme. You have the option to specify the phone number for the person you wish to message. If you leave it blank the app will still be launched, just without a pre-filled recipient.</p>
    <pre><code>&lt;a href="sms:"&gt;Launch Messages App&lt;/a&gt;&#x000A;    &lt;a href="sms:01234567890"&gt;Send an SMS&lt;/a&gt;</code></pre>
    <h3>Launching the Maps App</h3>
    <p>The Maps app can be launched by specifying a <code>maps.apple.com</code> URL. There are a number of parameters that can be used to specify the behavior of the Maps app when it is launched (e.g. location, directions, zoom level, etc…). You can find a full list of these parameters <a href="https://developer.apple.com/library/mac/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html#//apple_ref/doc/uid/TP40007899-CH5-SW1" rel="nofollow external" class="bo">here</a>.</p>
    <pre><code>&lt;a href="<a href="http://maps.apple.com/?q=cupertino%22&gt;Cupertino&lt;/a&amp;gt">http://maps.apple.com/?q=cupertino"&gt;Cupertino&lt;/a&amp;gt</a>;</code></pre>
    <p>For driving directions, you can specify the destination and start addresses using the <code>daddr</code> and <code>saddr</code> parameters.</p>
    <pre><code>&lt;a href="<a href="http://maps.apple.com/?daddr=San+Francisco,+CA&amp;saddr=cupertino%22&gt;Directions&lt;/a&amp;gt">http://maps.apple.com/?daddr=San+Francisco,+CA&amp;saddr=cupertino"&gt;Directions&lt;/a&amp;gt</a>;</code></pre>
    <h3>Launching a YouTube Video</h3>
    <p>Links that use a full YouTube URL will be intercepted by the native YouTube app (if it’s installed). Ensure that the URL matches one of the formats in the examples below.</p>
    <pre><code>&lt;a href="<a href="http://www.youtube.com/watch?v=VIDEO_ID%22&gt;Play">http://www.youtube.com/watch?v=VIDEO_ID"&gt;Play</a> Video&lt;/a&gt;&#x000A;    &lt;a href="<a href="http://www.youtube.com/v/VIDEO_ID%22&gt;Play">http://www.youtube.com/v/VIDEO_ID"&gt;Play</a> Video&lt;/a&gt;</code></pre>
    <h2>Final Thoughts on Mobile Web Apps</h2>
    <p>Despite the popularity of native applications, I don’t think that anyone should write-off the demand for mobile web apps. Browsing on mobile devices has been growing at a staggering rate over the past few years and is showing no signs of slowing down. By applying the techniques you’ve learned in this post you can ensure that you’re delivering the best possible experience to your mobile users.</p>
    <h2>Further Reading</h2>
    <ul>
    <li><a href="https://developer.apple.com/library/mac/documentation/AppleApplications/Reference/SafariWebContent/ConfiguringWebApplications/ConfiguringWebApplications.html" rel="nofollow external" class="bo">Developing Web Content for Safari</a></li>
    <li><a href="https://developer.apple.com/library/ios/documentation/userexperience/conceptual/MobileHIG/IconMatrix.html" rel="nofollow external" class="bo">iOS User Interface Guidelines: Icon and Images Sizes</a></li>
    <li><a href="https://gist.github.com/tfausak/2222823" rel="nofollow external" class="bo">iOS7 Web App Gist (by tfausak)</a></li>
    </ul>
    <p>The post <a href="http://blog.teamtreehouse.com/optimizing-mobile-web-apps-ios" rel="nofollow external" class="bo">Optimizing Mobile Web Apps for iOS</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>When I was looking through the analytics data for a product I recently launched I was taken aback by just how much mobile traffic the web app was getting. After seeking some feedback from users it...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/g3fLKFSHI6Q/optimizing-mobile-web-apps-ios</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41103/guest@my.umbc.edu/4f1e8bcb9a59449f621608455b61cea9/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>code</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>mobile</Tag>
<Tag>mobile-web-apps</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Tag>web-apps</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 15:19:36 -0500</PostedAt>
<EditAt>Thu, 06 Feb 2014 15:19:36 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41097" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41097">
<Title>Let Student Life help you promote your Student Org!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div><div>
    <div>
    <span>Let the UMBC Community get to know your organization better by joining our "How I Met Your Org" blog! The blog is aimed towards promoting organizations on myUMBC, as well as a way to let people hear from actual members.</span><strong> If your organization is interested in participating, please fill out your responses <a href="https://docs.google.com/a/umbc.edu/forms/d/1UW1n1OVpvu0bWh61XasaX4JvipdhUKUdmvJEOEALASk/viewform" rel="nofollow external" class="bo">here</a>. </strong>
    </div>
    <div><br></div>
    <div>In addition to the written portion of the blog, we encourage you to include a short 1 min video about your organization. As you can see in the link posted below, SAA (Student Alumni Association) recorded a video with the help of our Social Media Intern, Dina, and it added a great touch to the blog: <a href="http://my.umbc.edu/news/36927" rel="nofollow external" class="bo">http://my.umbc.edu/news/36927</a><br><br><strong>If you're interested in making a video</strong> (whether you want to make it yourself and send it to us or would like help making one), <strong>please email Dina Trembisky</strong> at <a href="mailto:dinat1@umbc.edu" rel="nofollow external" class="bo">dinat1@umbc.edu</a> for any questions, ideas, or assistance in producing your video!<br>
    </div>
    <div><br></div>
    <div>We hope you hear from you soon!</div>
    </div></div>
    <div><br></div>
    </div>
]]>
</Body>
<Summary>Let the UMBC Community get to know your organization better by joining our "How I Met Your Org" blog! The blog is aimed towards promoting organizations on myUMBC, as well as a way to let people...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41097/guest@my.umbc.edu/460637b24f7e71fe7133037b27429c84/api/pixel</TrackingUrl>
<Group token="retired-769">UMBC Student Organizations </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-769</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/original.jpg?1383677072</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/large.png?1383677072</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/medium.png?1383677072</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/small.png?1383677072</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxsmall.png?1383677072</AvatarUrl>
<Sponsor>UMBC Student Organizations</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 14:47:49 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41096" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41096">
<Title>Dresher Center for the Humanities Events</Title>
<Tagline>Spring 2014 Humanities Forum</Tagline>
<Body>
<![CDATA[
    <div class="html-content">The James T. and Virginia M. Dresher Center for the Humanities supports and promotes research in the humanities at UMBC, in the Baltimore region, and beyond. With its Humanities Forum, it seeks to make UMBC’s impressive achievements in the humanities more widely known, while connecting UMBC researchers and students to important ongoing conversations about the  humanities in the region, nation, and world. Through its support of the undergraduate Humanities Scholars Program the Dresher Center for the Humanities also helps to sponsor a generation of humanities thinkers for the future.<br><br>Founded in 1996, the Humanities Forum builds on a tradition of advancing the study of human thought and culture at UMBC and the Baltimore region. The<br>Forum offers the community a program of events that illustrate the richness of contemporary work in philosophy, history, culture, language, media, literature and the arts. Forum events present exciting new ideas and lively exchange, with a spirit of ongoing inquiry and conversation. These events are always free and open to the public.<br><br>See the attached document for the complete list of events for Spring 2014 <br><br><a href="mailto:dreshercenter@umbc.edu">dreshercenter@umbc.edu</a><br>410-455-6798<br><a href="dreshercenter.umbc.edu" rel="nofollow external" class="bo">dreshercenter.umbc.edu</a>
    </div>
]]>
</Body>
<Summary>The James T. and Virginia M. Dresher Center for the Humanities supports and promotes research in the humanities at UMBC, in the Baltimore region, and beyond. With its Humanities Forum, it seeks to...</Summary>
<AttachmentKind>Document</AttachmentKind>
<AttachmentUrl>https://assets3-my.umbc.edu/system/shared/attachments/36fb713b163a98b12a1d233aff9a62cb/6a8e0242/news/000/041/096/020e3e36116fa2175efc76885d034450/HF-mailer-2014.final.pdf?1391716055</AttachmentUrl>
<Attachments>
<Attachment kind="Document" url="https://my3.my.umbc.edu/posts/41096/attachments/12489"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41096/guest@my.umbc.edu/932f00a9f1991d32fd48206f2c3aa9bd/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 14:47:45 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41095" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41095">
<Title>2014 Summer Study Abroad Program to Ghana, West Africa</Title>
<Tagline>Call for applicants</Tagline>
<Body>
<![CDATA[
    <div class="html-content">UMBC’s Department of Africana Studies invites you to join us for our 2014 SUMMER STUDY ABROAD PROGRAM TO<br>GHANA, WEST AFRICA<br>Understanding Culture and Politics in Ghana<br>July 6 – August 4, 2014<br><br>THE PROGRAM<br>The UMBC Department of Africana Studies’ 2014 Summer Study Abroad Program to Ghana, West Africa, to be held July 6 – August 4, will explore the diverse and unique heritage of Ghana. Combining classroom, laboratory, and field-based academic study, intense language lessons, supervised intercultural exchanges with Ghanaian governmental and non-governmental officials, and guided-sightseeing activities to select historical and cultural sites, this four-week program will enable participants to learn about Ghana’s cultural, political, and economic heritage and the consequent impact of this heritage on the region and the continent. Participants will also learn about the Trans-Atlantic Slave Trade, the African anti-colonialism movement, Ghana’s experiences with different political systems, the Akan Twi language system, and the intersections of culture, language, religion, and regionalism within the Ghanaian political and economic structure.<br><br>All Inclusive<br>Program Cost: $3,872*<br>Installment plan available<br><br>APPLICATION INFORMATION<br>Applicants must 1) complete an application form, 2) submit two letters of reference, and 3) submit documentation attesting to their health and physical abilities. Application forms are available from the Department of Africana Studies. A deposit of $300 and completed applications are due by March 10, 2014. Make check or money order payable to UMBC. Notifications of interviews will be made by March 11th and conclude by March 17th. The balance is due May 20, 2014. Early application is encouraged. At all times, participants will be selected without regard to race, gender, color, national origin, age, or handicapping condition.<br><br>*The program cost is per person, based on double-occupancy. This price includes 4-credits of tuition, roundtrip international airfare, visa fees, emergency health insurance, lodging (all rooms with private bath), tours and site visits, meals, all transfers and baggage handling, security, hotel taxes and service charges, gratuities, seminar lectures, cultural and experiential learning activities, course materials and weekend pre-departure sessions, in-country farewell dinner, identification cards for library access, and seminar-style language instruction. The price does not include required immunizations and vaccinations, passport fees, or personal spending money. <br><br>Additional Information <br>Participants will earn 4 credits of AFST 495 (Field Research in Africana Studies).<br><br>We especially encourage applications from current K-12 educators in Maryland, from undergraduates and graduate students with an interest in becoming K-16 educators, and others currently enrolled in teacher certification programs.<br><br>Current Maryland K-12 teachers may be eligible for funding from their local school districts.<br><br>For further information, contact: Dr. Tyson King-Meadows (410-455-2194 or <a href="mailto:tkingmea@umbc.edu">tkingmea@umbc.edu</a>) or Dr. Gloria Chuku (410-455-2921 or <a href="mailto:chuku@umbc.edu">chuku@umbc.edu</a>) in the Department of Africana Studies (410-455-2158). Applications are also available at the UMBC Office of International Education Services.<br><br>To apply and to get more information, visit <a href="http://www.umbc.edu/africana_studies/" rel="nofollow external" class="bo">http://www.umbc.edu/africana_studies/</a>
    </div>
]]>
</Body>
<Summary>UMBC’s Department of Africana Studies invites you to join us for our 2014 SUMMER STUDY ABROAD PROGRAM TO GHANA, WEST AFRICA Understanding Culture and Politics in Ghana July 6 – August 4, 2014  THE...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41095/guest@my.umbc.edu/b0d34bdc2b3136ce292375188a255172/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 14:35:29 -0500</PostedAt>
<EditAt>Thu, 06 Feb 2014 14:37:08 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="109842" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109842">
<Title>Artwork by Jason Hughes, IMDA, in the New York Times</Title>
<Body>
<![CDATA[
    <div class="html-content">This week, a project by Jason Hughes, IMDA, was included in a New York Times Education Life slideshow that highlights the work of students whose art creatively solves a problem. One of only 17 featured artworks, Hughes’ limited edition Artistic Futures Savings Bonds aim to raise and sustain support for future artworks. He says, “they can be bought for $100 and increase in value every six months, to $250 in 10 years. Art patrons can trade in the bond toward the acquisition of a new work or hold onto it as an artwork itself.” View the full slideshow including Hughes’ work: “Students Get …</div>
]]>
</Body>
<Summary>This week, a project by Jason Hughes, IMDA, was included in a New York Times Education Life slideshow that highlights the work of students whose art creatively solves a problem. One of only 17...</Summary>
<Website>https://news.umbc.edu/artwork-by-jason-hughes-imda-in-the-new-york-times/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109842/guest@my.umbc.edu/3cebf76510c87209e4ec82473060203b/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>engage</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 13:34:48 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41101" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41101">
<Title>Some Mobile Apps Add Anonymity to Social Networking</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Social-networking apps that eschew real names are gaining ground.</p>
    <p>For just over a decade, Facebook has enforced the idea of an authentic online identity tied to each user of a social network. This might be fine for sharing news of a promotion or new baby with friends, but sometimes you’d probably like to post a status update that won’t go on your permanent record.</p>
    </div>
]]>
</Body>
<Summary>Social-networking apps that eschew real names are gaining ground.  For just over a decade, Facebook has enforced the idea of an authentic online identity tied to each user of a social network....</Summary>
<Website>http://www.technologyreview.com/news/524156/some-mobile-apps-add-anonymity-to-social-networking/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41101/guest@my.umbc.edu/82871eb6ac15b169be4e094ac7fbc3f1/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 13:33:00 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41093" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41093">
<Title>Nominate student leaders to attend Green Dot training!</Title>
<Body>
<![CDATA[
    <div class="html-content">Please consider nominating some of the student leaders you work with for UMBC's <u>Green Dot Bystander Intervention training on Fri Feb 28th from 1-6:30pm in UC 310.</u> It's a great training program and we are looking for student leaders to participate in this training to take a step in making change in our community!<div><br></div>
    <div><strong>How to nominate:</strong></div>
    <div><br></div>
    <div>If there's a student you'd like to nominate please either email me (<a href="mailto:sleidner@umbc.edu">sleidner@umbc.edu</a>) with their name/email/student org they're affiliated with if applicable OR encourage them to fill out this form to register for the training: <a href="https://docs.google.com/a/umbc.edu/forms/d/1qCeIGUNmF1v3I4D-aenPXEd1tjqLQUfkv9eENAb9oSY/edit#" rel="nofollow external" class="bo">https://docs.google.com/a/umbc.edu/forms/d/1qCeIGUNmF1v3I4D-aenPXEd1tjqLQUfkv9eENAb9oSY/edit#</a> <br><div><br></div>
    <div><strong>What is Green Dot? </strong></div>
    <div><br></div>
    <div>
    <span>The Green Dot program is a violence prevention and bystander intervention program launching here at UMBC. The goal of the program is to engage a critical mass of our community in a behavior change where violence will not be tolerated and the end result will be a reduction in violence. Have you ever been in a situation where you saw something and knew it was not right and wanted to do something and you were unsure what to do?  The Green Dot teaches the skills to be an active bystander and react to a situation that has the potential for violence. Because we know that interpersonal violence happens, it is important for everyone to have the knowledge, awareness and skills to address the issue. The Green Dot program empowers those who are trained to do the right think for themselves, their neighbor, classmate, teammate or friend. The Green Dot slogan is "No one has to do everything, everyone has to do something." Let's work together to create a culture at UMBC where we do not accept violence and look out for each other.</span><br><div><br></div>
    <div>
    <strong>For more information about Green Dot</strong> </div>
    <div><br></div>
    <div>Check out the attached flyer</div>
    <div><br></div>
    <div>Visit the Green Dot myUMBC group page: <a href="http://my.umbc.edu/groups/greendot">http://my.umbc.edu/groups/greendot</a>  </div>
    </div>
    </div>
    <div><br></div>
    <div>Visit Green Dot's main website: <a href="http://www.livethegreendot.com/">http://www.livethegreendot.com/</a>
    </div>
    <div><br></div>
    </div>
]]>
</Body>
<Summary>Please consider nominating some of the student leaders you work with for UMBC's Green Dot Bystander Intervention training on Fri Feb 28th from 1-6:30pm in UC 310. It's a great training program and...</Summary>
<AttachmentKind>Document</AttachmentKind>
<AttachmentUrl>https://assets2-my.umbc.edu/system/shared/attachments/6f6e8e5df416b45b8a26eae533053263/6a8e0242/news/000/041/093/a3e80e62340f85e584f072b212415d32/Green Dot Flier community training 2014.pdf?1391711158</AttachmentUrl>
<Attachments>
<Attachment kind="Document" url="https://my3.my.umbc.edu/posts/41093/attachments/12485"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41093/guest@my.umbc.edu/6c85cd588829fc951058157de401f1a9/api/pixel</TrackingUrl>
<Group token="retired-198">Student Organization Advisors</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-198</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/xsmall.png?1299087749</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/original.gif?1299087749</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/xxlarge.png?1299087749</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/xlarge.png?1299087749</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/large.png?1299087749</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/medium.png?1299087749</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/small.png?1299087749</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/xsmall.png?1299087749</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/198/baf4f1a5938b8d520b328c13b51ccf11/xxsmall.png?1299087749</AvatarUrl>
<Sponsor>Student Organization Advisors</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 13:26:05 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109843" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109843">
<Title>Project by Charlotte Keniston, IMDA, in Peace Corps Blog</Title>
<Body>
<![CDATA[
    <div class="html-content">MFA candidate and Shriver Peaceworker Fellow, Charlotte Keniston was featured this week in the National Peace Corps Association blog. The article, “Returned Volunteer Takes on Food Deserts of Baltimore,” discusses an ongoing project by Keniston that tackles food challenges in Baltimore. Keniston cites her Peace Corps experience in Guatemala and her involvement as a Shriver Fellow as a major influence in her work saying, “While in Guatemala, I spent a lot of time cooking and eating with people. I learned that healthy food doesn’t just nourish the body, but growing food and eating it together can also nourish the community . . …</div>
]]>
</Body>
<Summary>MFA candidate and Shriver Peaceworker Fellow, Charlotte Keniston was featured this week in the National Peace Corps Association blog. The article, “Returned Volunteer Takes on Food Deserts of...</Summary>
<Website>https://news.umbc.edu/project-by-charlotte-keniston-imda-in-peace-corps-blog/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109843/guest@my.umbc.edu/6897aad0cb1f7da9dc0df0ff59ea09a7/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>engage</Tag>
<Tag>visualarts</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 13:02:25 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41088" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41088">
<Title>OPT and CPT Schedule for Spring 2014 Semester</Title>
<Tagline>Informative Sessions about OPT and CPT</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong><span>IES Office <u>OPT</u>
     and <u>CPT</u> Workshop Schedule </span></strong></p>
    <p><strong><span>Spring 2014</span></strong></p>
    <p><em>All workshops take place in Admin 218</em></p>
    
    
    
    
    
    
    
    
    
    
    
    <table border="1">
     <tbody>
    <tr>
      <td>
      <p><strong><span>OPT</span></strong></p>
      </td>
      <td>
      <p><strong><span>CPT</span></strong></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Wednesday, Feb 5, </span></p>
    <p><span>1pm-2pm</span></p>
      </td>
      <td>
      <p><span>Wednesday, Feb 5, </span></p>
    <p><span>2pm-3pm</span></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Tuesday, Feb 18, </span></p>
    <p><span>12pm-1pm</span><span></span></p>
      </td>
      <td>
      <p><span>Tuesday, Feb 18, </span></p>
    <p><span>1pm-2pm</span><span></span></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Friday, March 7, </span></p>
    <p><span>1pm-2pm</span></p>
      </td>
      <td>
      <p><span>Friday, March 7, </span></p>
    <p><span>2pm-3pm</span></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Wednesday, March 12, 12pm- 1pm</span></p>
      </td>
      <td>
      <p><span>Wednesday, March 12, 1pm- 2pm</span></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Thursday, March 27, 10am-11am</span></p>
      </td>
      <td>
      <p><span>Thursday, March 27, 11am-12pm</span></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Monday, April 7, </span></p>
    <p><span>1pm-2pm</span></p>
      </td>
      <td>
      <p><span>Monday, April 7, </span></p>
    <p><span>2pm-3pm</span></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Tuesday, April 22, </span></p>
    <p><span>1pm-2pm</span></p>
      </td>
      <td>
      <p><span>Tuesday, April 22, </span></p>
    <p><span>2pm-3pm</span></p>
      </td>
     </tr>
     <tr>
      <td>
      <p><span>Thursday, May 8, </span></p>
    <p><span>12pm-1pm</span></p>
      </td>
      <td>
      <p><span>Thursday, May 8, </span></p>
    <p><span>1pm-2pm</span></p>
    </td>
    </tr>
    </tbody>
    </table>
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    <p><span>Immigration Options After Graduation Workshop: </span></p>
    <p><em>Learn from Immigration Attorney Lynn O-Brien about immigration options after F-1 status.</em></p>
    <p><span>Monday, March 3, 12pm – 1pm, Admin 101</span></p>
    
    </div>
]]>
</Body>
<Summary>IES Office OPT  and CPT Workshop Schedule   Spring 2014  All workshops take place in Admin 218                      OPT           CPT               Wednesday, Feb 5,   1pm-2pm           Wednesday,...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41088/guest@my.umbc.edu/a0d2588c4bc6481356290c84daa9691e/api/pixel</TrackingUrl>
<Group token="ies">International Student and Scholar Services (ISSS)</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/ies</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/xsmall.png?1693323874</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/original.jpeg?1693323874</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/xxlarge.png?1693323874</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/xlarge.png?1693323874</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/large.png?1693323874</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/medium.png?1693323874</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/small.png?1693323874</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/xsmall.png?1693323874</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/431/46ad84ea8ba0baeed7c3faf29d1fd4ef/xxsmall.png?1693323874</AvatarUrl>
<Sponsor>UMBC International Education Services</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/088/26a9c7ab6107b61166fbbc7e64756a1f/xxlarge.jpg?1391707189</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/088/26a9c7ab6107b61166fbbc7e64756a1f/xlarge.jpg?1391707189</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/088/26a9c7ab6107b61166fbbc7e64756a1f/large.jpg?1391707189</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/088/26a9c7ab6107b61166fbbc7e64756a1f/medium.jpg?1391707189</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/088/26a9c7ab6107b61166fbbc7e64756a1f/small.jpg?1391707189</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/088/26a9c7ab6107b61166fbbc7e64756a1f/xsmall.jpg?1391707189</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/088/26a9c7ab6107b61166fbbc7e64756a1f/xxsmall.jpg?1391707189</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 12:52:00 -0500</PostedAt>
<EditAt>Thu, 06 Feb 2014 12:56:30 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41090" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41090">
<Title>December 2013 Meeting Summary</Title>
<Body>
<![CDATA[
    <div class="html-content">Please see the attached summary of our 12/12/13 Task Force meeting.</div>
]]>
</Body>
<Summary>Please see the attached summary of our 12/12/13 Task Force meeting.</Summary>
<AttachmentKind>Document</AttachmentKind>
<AttachmentUrl>https://assets1-my.umbc.edu/system/shared/attachments/eff65aa162b31e3eeea2ded3057654ad/6a8e0242/news/000/041/090/eae048851f0bf3279e3650da896306d9/December meeting summary, 12-12-13.doc?1391707464</AttachmentUrl>
<Attachments>
<Attachment kind="Document" url="https://my3.my.umbc.edu/posts/41090/attachments/12482"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41090/guest@my.umbc.edu/3096f318c7fb61923128059096f92213/api/pixel</TrackingUrl>
<Group token="interdisciplinarytaskforce">Provost's Interdisciplinary Activities Advisory Committee</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/interdisciplinarytaskforce</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/2/xsmall.png?1787677490</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/images/avatars/group/2/original.png?1787677490</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/images/avatars/group/2/xxlarge.png?1787677490</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/2/xlarge.png?1787677490</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/2/large.png?1787677490</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/2/medium.png?1787677490</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/2/small.png?1787677490</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/2/xsmall.png?1787677490</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/2/xxsmall.png?1787677490</AvatarUrl>
<Sponsor>UMBC Task Force on Interdisciplinary Activities</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 06 Feb 2014 12:25:17 -0500</PostedAt>
</NewsItem>

</News>
