<?xml version="1.0"?>
<News hasArchived="true" page="8561" pageCount="10808" pageSize="10" timestamp="Sat, 12 Sep 2026 23:25:08 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=recent&amp;page=8561">
<NewsItem contentIssues="true" id="33234" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33234">
<Title>Handlebars.js &#8211; a Behind the Scenes Look</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=32678&amp;c=12559663" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=32678&amp;c=12559663" alt="" style="max-width: 100%; height: auto;"></a><p><a href="http://handlebarsjs.com/" rel="nofollow external" class="bo">Handlebars</a> has been gaining popularity with its adoption in frameworks like Meteor and Ember.js, but what is really going on behind the scenes of this exciting templating engine?</p>
    <p>In this article we will take a deep look through the underlying process Handlebars goes through to compile your templates.</p>
    <p></p>
    <p>This article expects you to have read my previous introduction to <a rel="nofollow external" class="bo">Handlebars</a> and as such assumes you know the basics of creating Handlebar templates.</p>
    <p>When using a Handlebars template you probably know that you start by compiling the template's source into a function using <code>Handlebars.compile()</code> and then you use that function to generate the final HTML, passing in values for properties and placeholders.</p>
    <p>But that seemingly simple compile function is actually doing quite a few steps behind the scenes, and that is what this article will really be about; let's take a look at a quick breakdown of the process:</p>
    <ul>
    <li>Tokenize the source into components.</li>
    <li>Process each token into a set of operations.</li>
    <li>Convert the process stack into a function.</li>
    <li>Run the function with the context and helpers to output some HTML.</li>
    </ul>
    <hr>
    <h2>The Setup</h2>
    <p>In this article we will be building a tool to analyze Handlebars templates at each of these steps, so to display the results a bit better on screen, I will be using the <a rel="nofollow external" class="bo">prism.js</a> syntax highlighter created by the one and only <a href="http://lea.verou.me/" rel="nofollow external" class="bo">Lea Verou</a>. Download the minified source remembering to check JavaScript in the languages section.</p>
    <p>The next step is to create a blank HTML file and fill it with the following:</p>
    <pre>&lt;!DOCTYPE HTML&gt;&#x000A;    &lt;html xmlns="<a href="http://www.w3.org/1999/html%22&amp;gt">http://www.w3.org/1999/html"&amp;gt</a>;&#x000A;        &lt;head&gt;&#x000A;            &lt;title&gt;Handlebars.js&lt;/title&gt;&#x000A;            &lt;link rel="stylesheet" href="prism.css"&gt;&lt;/p&gt;&#x000A;    &#x000A;            &lt;script src="prism.js" data-manual&gt;&lt;/script&gt;&#x000A;            &lt;script src="handlebars.js"&gt;&lt;/script&gt;&#x000A;        &lt;/head&gt;&#x000A;        &lt;body&gt;&#x000A;            &lt;div id="analysis"&gt;&#x000A;                &lt;div id="tokens"&gt;&lt;h1&gt;Tokens:&lt;/h1&gt;&lt;/div&gt;&#x000A;                &lt;div id="operations"&gt;&lt;h1&gt;Operations:&lt;/h1&gt;&lt;/div&gt;&#x000A;                &lt;div id="output"&gt;&lt;h1&gt;Output:&lt;/h1&gt;&lt;/div&gt;&#x000A;                &lt;div id="function"&gt;&#x000A;                    &lt;h1&gt;Function:&lt;/h1&gt;&#x000A;                    &lt;pre&gt;&lt;code class="language-javascript" id="source"&gt;&lt;/code&gt;&lt;/pre&gt;&#x000A;                &lt;/div&gt;&#x000A;            &lt;/div&gt;&#x000A;            &lt;script id="dt" type="template/handlebars"&gt;&#x000A;            &lt;/script&gt;&#x000A;    &#x000A;            &lt;script&gt;&#x000A;                //Code will go here&#x000A;            &lt;/script&gt;&#x000A;        &lt;/body&gt;&#x000A;    &lt;/html&gt;&#x000A;    </pre>
    <p>It's just some boilerplate code which includes handlebars and prism and then set's up some divs for the different steps. At the bottom, you can see two script blocks: the first is for the template and the second is for our JS code.</p>
    <p>I also wrote a little CSS to arrange everything a bit better, which you are free to add:</p>
    <pre>     &#x000A;        body{&#x000A;            margin: 0;&#x000A;            padding: 0;&#x000A;            font-family: "opensans", Arial, sans-serif;&#x000A;            background: #F5F2F0;&#x000A;            font-size: 13px;&#x000A;        }&#x000A;        #analysis {&#x000A;            top: 0;&#x000A;            left: 0;&#x000A;            position: absolute;&#x000A;            width: 100%;&#x000A;            height: 100%;&#x000A;            margin: 0;&#x000A;            padding: 0;&#x000A;        }&#x000A;        #analysis div {&#x000A;            width: 33.33%;&#x000A;            height: 50%;&#x000A;            float: left;&#x000A;            padding: 10px 20px;&#x000A;            box-sizing: border-box;&#x000A;            overflow: auto;&#x000A;        }&#x000A;        #function {&#x000A;            width: 100% !important;&#x000A;        }&#x000A;    </pre>
    <p>Next we need a template, so let's begin with the simplest template possible, just some static text:</p>
    <pre>&lt;script id="dt" type="template/handlebars"&gt;&#x000A;        Hello World!&#x000A;    &lt;/script&gt;&#x000A;    &#x000A;    &lt;script&gt;&#x000A;        var src = document.getElementById("dt").innerHTML.trim();&#x000A;    &#x000A;        //Display Output&#x000A;        var t = Handlebars.compile(src);&#x000A;        document.getElementById("output").innerHTML += t();&#x000A;    &lt;/script&gt;&#x000A;    </pre>
    <p>Opening this page in your browser should result in the template being displayed in the output box as expected, nothing different yet, we now have to write the code to analyze the process at each of the other three stages.</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_1.png" alt="Basic Output" style="max-width: 100%; height: auto;"><hr>
    <h2>Tokens</h2>
    <p>The first step handlebars performs on your template is to tokenize the source, what this means is we need to break the source apart into its individual components so that we can handle each piece appropriately. So for example, if there was some text with a placeholder in the middle, then Handlebars would separate the text before the placeholder placing it into one token, then the placeholder itself would be placed into another token, and lastly all the text after the placeholder would be placed into a third token. This is because those pieces need to both retain the order of the template but they also need to be processed differently.</p>
    <p>This process is done using the <code>Handlebars.parse()</code> function, and what you get back is an object that contains all the segments or 'statements'.</p>
    <p>To better illustrate what I am talking about, let's create a list of paragraphs for each of the tokens taken out:</p>
    <pre>    &#x000A;        //Display Tokens&#x000A;        var tokenizer = Handlebars.parse(src);&#x000A;        var tokenStr = "";&#x000A;        for (var i in tokenizer.statements) {&#x000A;            var token = tokenizer.statements[i];&#x000A;            tokenStr += "&lt;p&gt;" + (parseInt(i)+1) + ") ";&#x000A;            switch (token.type) {&#x000A;                case "content":&#x000A;                    tokenStr += "[string] - \"" + token.string + "\"";&#x000A;                    break;&#x000A;                case "mustache":&#x000A;                    tokenStr += "[placeholder] - " + token.id.string;&#x000A;                    break;&#x000A;                case "block":&#x000A;                    tokenStr += "[block] - " + token.mustache.id.string;&#x000A;            }&#x000A;        }&#x000A;        document.getElementById("tokens").innerHTML += tokenStr;&#x000A;    </pre>
    <p>So we begin by running the templates source into <code>Handlebars.parse</code> to get the list of tokens. We then cycle through all the individual components and build up a set of human readable strings based on the segment’s type. Plain text will have a type of “content” which we can then just output the string wrapped in quotes to show what it equals. Placeholders will have a type of “mustache” which we can then display along with their “id” (placeholder name). And last but not least, block helpers will have a type of “block” which we can then also just display the blocks internal “id” (block name).</p>
    <p>Refreshing this now in the browser, you should see just a single 'string' token, with our template's text.</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_2.png" alt="Tokens!" style="max-width: 100%; height: auto;"><hr>
    <h2>Operations</h2>
    <p>Once handlebars has the collection of tokens, it cycles through each one and "generates" a list of predefined operations that need to be performed for the template to be compiled. This process is done using the <code>Handlebars.Compiler()</code> object, passing in the token object from step 1:</p>
    <pre>    &#x000A;        //Display Operations&#x000A;        var opSequence = new Handlebars.Compiler().compile(tokenizer, {});&#x000A;        var opStr = "";&#x000A;        for (var i in opSequence.opcodes) {&#x000A;            var op = opSequence.opcodes[i];&#x000A;            opStr += "&lt;p&gt;" + (parseInt(i)+1) + ") - " + op.opcode;&#x000A;        }&#x000A;        document.getElementById("operations").innerHTML += opStr;&#x000A;    </pre>
    <p>Here we are compiling the tokens into the operations sequence I talked about, and then we are cycling through each one and creating a similar list as in the first step, except here we just need to print the opcode. The opcode is the "operation's" or the function's 'name' that needs to be run for each element in the sequence.</p>
    <p>Back in the browser, you now should see just a single operation called 'appendContent' which will append the value to the current 'buffer' or 'string of text'. There are a lot of different opcodes and I don't think I am qualified to explain some of them, but doing a quick search in the source code for a given opcode will show you the function that will be run for it.</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_3.png" alt="Op Codes" style="max-width: 100%; height: auto;"><hr>
    <h2>The Function</h2>
    <p>The last stage is to take the list of opcodes and to convert them into a function, it does this by reading the list of operations and smartly concatenating code for each one. Here is the code required to get at the function for this step:</p>
    <pre>    &#x000A;        //Display Function&#x000A;        var outputFunction = new Handlebars.JavaScriptCompiler().compile(opSequence, {}, undefined, true);&#x000A;        document.getElementById("source").innerHTML = outputFunction.toString();&#x000A;        Prism.highlightAll();&#x000A;    </pre>
    <p>The first line creates the compiler passing in the op sequence, and this line will return the final function used for generating the template. We then convert the function to a string and tell Prism to syntax highlight it.</p>
    <p>With this final code, your page should look something like so:</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_4.png" alt="The Function" style="max-width: 100%; height: auto;"><p>This function is incredibly simple, since there was only one operation, it just returns the given string; let's now take a look at editing the template and seeing how these individually straight forward steps, group together to form a very powerful abstraction.</p>
    <hr>
    <h2>Examining Templates</h2>
    <p>Let's start with something simple, and let's simply replace the word 'World' with a placeholder; your new template should look like the following:</p>
    <pre>    &lt;script id="dt" type="template/handlebars"&gt;&#x000A;            Hello {{name}}!&#x000A;        &lt;/script&gt;&#x000A;    </pre>
    <p>And don't forget to pass the variable in so that the output looks OK:</p>
    <pre>    //Display Output&#x000A;        var t = Handlebars.compile(src);&#x000A;        document.getElementById("output").innerHTML += t({name: "Gabriel"});&#x000A;    </pre>
    <p>Running this, you will find that by adding just one simple placeholder, it complicates the process quite a bit.</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_5.png" alt="Single Placeholder" style="max-width: 100%; height: auto;"><blockquote><p>The complicated if/else section is because it doesn't know if the placeholder is in fact a placeholder or a helper method</p></blockquote>
    <p>If you were still unsure about what tokens are, you should have a better idea now; as you can see in the picture, it split out the placeholder from the strings and created three individual components.</p>
    <p>Next, in the operations section, there are quite a few additions. If you remember from before, to simply output some text, Handlebars uses the 'appendContent' operation, which is what you can now see on the top and bottom of the list (for both "Hello " and the "!"). The rest in the middle are all the operations needed to process the placeholder and append the escaped content.</p>
    <p>Finally, in the bottom window, instead of just returning a string, this time it creates a buffer variable, and handles one token at a time. The complicated if/else section is because it doesn't know if the placeholder is in fact a placeholder or a helper method. So it tries to see if a helper method with the given name exists, in which case it will call the helper method and set 'stack1' to the value. In the event it is a placeholder, it will assign the value from the context passed in (here named 'depth0') and if a function was passed in it will place the result of the function into the variable 'stack1'. Once that is all done, it escapes it like we saw in the operations and appends it to the buffer.</p>
    <p>For our next change, let's simply try the same template, except this time without escaping the results (to do this, add another curly brace <code>"{{{name}}}"</code>)</p>
    <p>Refreshing the page, now you will see it removed the operation to escape the variable and instead it just appends it, this bubbles down into the function which now simply checks to make sure the value isn't a falsy value (besides 0) and then appends it without escaping it.</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_6.png" alt="Single Placeholder Non Escaped" style="max-width: 100%; height: auto;"><p>So I think placeholders are pretty straight forward, lets now take a look at using helper functions.</p>
    <hr>
    <h2>Helper Functions</h2>
    <p>There is no point in making this more complicated then it has to be, let's just create a simple function that will return the duplicate of a number passed in, so replace the template and add a new script block for the helper (before the other code):</p>
    <pre>&lt;script id="dt" type="template/handlebars"&gt;&#x000A;        3 * 2 = {{{doubled 3}}}&#x000A;    &lt;/script&gt;&#x000A;    &#x000A;    &lt;script&gt;&#x000A;        Handlebars.registerHelper("doubled", function(number){&#x000A;            return number * 2;&#x000A;        });&#x000A;    &lt;/script&gt;&#x000A;    </pre>
    <p>I have decided to not escape it, as it makes the final function slightly simpler to read, but you can try both if you like. Anyways, running this should produce the following:</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_7.png" alt="Helper Function" style="max-width: 100%; height: auto;"><p>Here you can see it knows it is a helper, so instead of saying 'invokeAmbiguous' it now says 'invokeHelper' and therefore also in the function there is no longer an if/else block. It does still however make sure the helper exists and tries to fall back to the context for a function with the same name in the event it doesn't.</p>
    <p>Another thing worth mentioning is you can see the parameters for helpers get passed in directly, and are actually hard coded in, if possible, when the function get's generated (the number 3 in the doubled function).</p>
    <p>The last example I want to cover is about block helpers.</p>
    <hr>
    <h2>Block Helpers</h2>
    <p>Block helpers allow you to wrap other tokens inside a function which is able to set its own context and options. Let's take a look at an example using the default 'if' block helper:</p>
    <pre>&lt;script id="dt" type="template/handlebars"&gt;&#x000A;        Hello&#x000A;        {{#if name}}&#x000A;            {{{name}}}&#x000A;        {{else}}&#x000A;            World!&#x000A;        {{/if}}&#x000A;    &lt;/script&gt;&#x000A;    </pre>
    <p>Here we are checking if "name" is set in the current context, in which case we will display it, otherwise we output "World!". Running this in our analyzer, you will see only two tokens even though there are more; this is because each block is run as its own 'template' so all the tokens inside it (like <code>{{{name}}}</code>) will not be part of the outer call, and you would need to extract it from the block’s node itself.</p>
    <p>Besides that, if you take a look at the function:</p> <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/06/Handlebars_Advanced_8.png" alt="Block Helper" style="max-width: 100%; height: auto;"><p>You can see that it actually compiles the block helper’s functions into the template’s function. There are two because one is the main function and the other is the inverse function (for when the parameter doesn't exist or is false). The main function: "program1" is exactly what we had before when we just had some text and a single placeholder, because like I mentioned, each of the block helper functions are built up and treated exactly like a regular template. They are then run through the "if" helper to receive the proper function which it will then append to the outer buffer.</p>
    <p>Like before, it is worth mentioning that the first parameter to a block helper is the key itself, whereas the 'this' parameter is set to the entire passed in context, which can come in handy when building your own block helpers.</p>
    <hr>
    <h2>Conclusion</h2>
    <p>In this article we may not have taken a practical look at how to accomplish something in Handlebars, but I hope you got a better understanding of what exactly is going on behind the scenes which should allow you to build better templates and helpers with this new found knowledge.</p>
    <p>I hope you enjoyed reading, like always if you have any questions feel free to contact me on Twitter (<a href="https://twitter.com/GabrielManricks" rel="nofollow external" class="bo">@GabrielManricks</a>) or on the Nettuts+ IRC (#nettuts on freenode).</p>
    </div>
]]>
</Body>
<Summary>Handlebars has been gaining popularity with its adoption in frameworks like Meteor and Ember.js, but what is really going on behind the scenes of this exciting templating engine?  In this article...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/NKFzG3tfSPo/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33234/guest@my.umbc.edu/0e292b1f9bf855c4e7739ccfc5e7b7a2/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>handlebars-js</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>javascript-and-ajax</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tutorials</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 17:31:22 -0400</PostedAt>
<EditAt>Fri, 26 Jul 2013 17:31:22 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="123170" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123170">
<Title>UMBC Again Named a &#8220;Great College to Work For&#8221;</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>July 26, 2013</p>
    <p>To: The UMBC Community</p>
    <p>From: President Freeman Hrabowski and Provost Philip Rous</p>
    <p>Re: UMBC Again Named a “Great College to Work For”</p>
    <p>For the fourth consecutive year, <em>The Chronicle of Higher Education</em> has named UMBC <a href="http://chronicle.com/section/Academic-Workplace-2013/729/" rel="nofollow external" class="bo">one of the best colleges in the nation for which to work</a>. Each year, the <em>Chronicle</em> asks faculty and staff across the country to rate their workplaces on a host of factors. UMBC rated highly across all categories this year, earning it a spot on the “Honor Roll” for the second consecutive year.</p>
    <p>UMBC is among only 97 colleges included in the <em>Chronicle’s</em> full list, and is one of only 10 Honor Roll institutions nationwide in its size category.  Other Honor Roll institutions in our category include Baylor University, Stanford University, and the University of Michigan at Ann Arbor.</p>
    <p>The <em>Chronicle</em> results are based on responses from nearly 45,000 people at 300 institutions nationwide, including UMBC. The assessment also included an analysis of demographic data, benefits, and workplace policies at each participating college. This year, UMBC received high ratings in seven categories:</p>
    <ul>
    <li>Collaborative Governance</li>
    <li>Teaching Environment</li>
    <li>Confidence in Senior Leadership</li>
    <li>Supervisor/Department Chair Relationship</li>
    <li>Respect and Appreciation</li>
    <li>Tenure Clarity and Process</li>
    <li>Diversity</li>
    </ul>
    <p>Those ratings reflect our values and our deep commitment to supporting one another. We are a “Great College to Work For” because of each of you. Thank you for all you do for the UMBC community.</p>
    </div>
]]>
</Body>
<Summary>July 26, 2013   To: The UMBC Community   From: President Freeman Hrabowski and Provost Philip Rous   Re: UMBC Again Named a “Great College to Work For”   For the fourth consecutive year, The...</Summary>
<Website>https://umbc.edu/stories/umbc-again-named-a-great-college-to-work-for/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123170/guest@my.umbc.edu/414bdde970c392b32efce3184bd74397/api/pixel</TrackingUrl>
<Tag>community</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 17:14:53 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110078" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110078">
<Title>Lisa Akchin, Associate Vice President for Marketing and Public Relations, in the Baltimore Sun</Title>
<Body>
<![CDATA[
    <div class="html-content">“In a time when social bridge building is greatly needed, we have lost much of our capacity for public friendliness,” writes Lisa Akchin, associate vice president for marketing and public relations, in a recent Baltimore Sun op-ed.  Akchin was responding to President Obama’s recollection of being greeted by the click of car door locks while crossing the street as a young black man. “I know my own hand made that reflexive move for the door lock too many times before my mind considered the impact of my actions as a white woman on the feelings of a young black man,” she says. …</div>
]]>
</Body>
<Summary>“In a time when social bridge building is greatly needed, we have lost much of our capacity for public friendliness,” writes Lisa Akchin, associate vice president for marketing and public...</Summary>
<Website>https://news.umbc.edu/lisa-akchin-associate-vice-president-for-marketing-and-public-relations-in-the-baltimore-sun/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110078/guest@my.umbc.edu/b7a964c9f0bfe0714bc511a8e3c18d09/api/pixel</TrackingUrl>
<Tag>admin</Tag>
<Tag>policy-and-society</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>Fri, 26 Jul 2013 17:04:38 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="123171" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123171">
<Title>Center for Digital History and Education and New Media Studio Develop iPad App</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The Center for Digital History and Education (CDHE) and the New Media Studio have developed an iPad app based on their recent project, “Children’s Lives at Colonial London Town: The Stories of Three Families.”  The app is now available for free in the Apple App Store <a href="https://itunes.apple.com/us/app/london-town/id672433369?mt=8" rel="nofollow external" class="bo">here</a>.</p>
    <p>“Children’s Lives at Colonial London Town: The Stories of Three Families” is an interactive exploration into the lives of children who actually lived in colonial America. The navigation and enhanced content enliven the stories of three families in London Town, Maryland from before the Revolutionary War.</p>
    <a href="/wp-content/uploads/2013/07/londontownapp.jpg" rel="nofollow external" class="bo"><img alt="A screenshot from the new app." src="/wp-content/uploads/2013/07/londontownapp.jpg?w=300" width="300" height="225" style="max-width: 100%; height: auto;"></a>A screenshot from the new app.
    <p>The app features include interactive timelines, historical and thematic maps, image galleries, a clickable glossary of terms and people, and a teaching guide.</p>
    <p>The stories were written by elementary school teachers in graduate course work at UMBC, under the direction of Marjoleine Kars, chair of history. Rachel Brubaker, CDHE, directed the digital project. Bill Shewbridge, director of the New Media Studio, oversaw the app design.</p>
    <p>“Children’s Lives at Colonial London Town” builds on a successful grant partnership between the CDHE, Anne Arundel County Public Schools, and Historic London Town and Gardens. Funding for the project was provided by the United States Department of Education’s Teaching American History Grant Program.</p>
    <p>A companion <a href="http://www.umbc.edu/londontown" rel="nofollow external" class="bo">website</a> was developed in 2012. The project received the 2012 Social Studies Program of Excellence Award from the Middle States Regional Council for the Social Studies, an affiliate of the National Council for the Social Studies.</p>
    </div>
]]>
</Body>
<Summary>The Center for Digital History and Education (CDHE) and the New Media Studio have developed an iPad app based on their recent project, “Children’s Lives at Colonial London Town: The Stories of...</Summary>
<Website>https://umbc.edu/stories/center-for-digital-history-and-education-and-new-media-studio-develop-ipad-app/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123171/guest@my.umbc.edu/5a1ce1f4ed62c5f18fa5da3b1a04ebe7/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>history</Tag>
<Tag>policy-and-society</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 16:06:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33230" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33230">
<Title>UMBC Again Named a "Great College to Work For"</Title>
<Body>
<![CDATA[
    <div class="html-content">Contact:
    Chelsea Williams, Senior Communications Manager
    <a href="mailto:chelseah@umbc.edu">chelseah@umbc.edu</a>
    410-455-6380
    
         <p><img src="http://umbcinsights.files.wordpress.com/2013/07/2013gcwfhonorroll-color.jpg" alt="" width="135" height="150" style="max-width: 100%; height: auto;">For the fourth consecutive year, <em>The Chronicle of Higher Education </em>has named UMBC one of the best colleges in the nation for which to work.  Each year, The Chronicle asks faculty and staff across the country to rate their workplaces on a host of factors.  UMBC rated highly across all categories this year, earning it a spot on the “Honor Roll” for the second consecutive year.
    
    “I’m delighted that the <em>Chronicle </em>has once again recognized UMBC for what those of us who work here already know: UMBC is a great place to work,” said Freeman Hrabowski, president of UMBC. “We support and respect each other and deeply value collaboration. Year after year, that makes us a ‘Great College to Work For.’”
    
    UMBC is among only 97 colleges included in the <em>Chronicle</em>'s full list, and is one of only 10 Honor Roll institutions nationwide in its size category.  UMBC is the only four-year institution in Maryland to appear on either list. Other Honor Roll institutions in our category include Baylor University, Stanford University, and the University of Michigan at Ann Arbor.
    
    The <em>Chronicle </em>results are based on responses from nearly 45,000 people at 300 institutions nationwide, including UMBC. The assessment also included an analysis of demographic data, benefits, and workplace policies at each participating college. This year, UMBC received high ratings in seven categories: 
    
    •	Collaborative Governance
    •	Teaching Environment 
    •	Confidence in Senior Leadership
    •	Supervisor/Department Chair Relationship
    •	Respect and Appreciation
    •	Tenure Clarity and Process
    •	Diversity
    
    “Our shared governance is really important as it shows that our leaders, faculty, staff and students work together to continue to improve and enhance the future growth of UMBC. This contributes to a positive work environment where our leadership is approachable,” said Dottie Caplan, president of the Non-Exempt Staff Senate.
    
    The full list and more information can be found in the <em>Chronicle</em>’s <a href="http://chronicle.com/section/Academic-Workplace-2013/729/" rel="nofollow external" class="bo">report</a>.</p>
    </div>
]]>
</Body>
<Summary>Contact: Chelsea Williams, Senior Communications Manager chelseah@umbc.edu 410-455-6380        For the fourth consecutive year, The Chronicle of Higher Education has named UMBC one of the best...</Summary>
<Website>http://www.umbc.edu/blogs/umbcnews/2013/07/umbc_again_named_a_great_colle_1.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33230/guest@my.umbc.edu/30e2046b92d02247462660b00bb542f0/api/pixel</TrackingUrl>
<Group token="retired-30">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-30</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/images/avatars/group/10/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/10/original.png?1789141848</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/images/avatars/group/10/xxlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/10/xlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/images/avatars/group/10/large.png?1789141848</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/images/avatars/group/10/medium.png?1789141848</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/10/small.png?1789141848</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/images/avatars/group/10/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/10/xxsmall.png?1789141848</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>25</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 14:04:39 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="52524" important="false" status="posted" url="https://my3.my.umbc.edu/posts/52524">
<Title>UMBC Again Named a "Great College to Work For"</Title>
<Body>
<![CDATA[
    <div class="html-content">Contact:
    Chelsea Williams, Senior Communications Manager
    <a href="mailto:chelseah@umbc.edu">chelseah@umbc.edu</a>
    410-455-6380
    
         <p><img src="http://umbcinsights.files.wordpress.com/2013/07/2013gcwfhonorroll-color.jpg" alt="" width="135" height="150" style="max-width: 100%; height: auto;">For the fourth consecutive year, <em>The Chronicle of Higher Education </em>has named UMBC one of the best colleges in the nation for which to work.  Each year, The Chronicle asks faculty and staff across the country to rate their workplaces on a host of factors.  UMBC rated highly across all categories this year, earning it a spot on the “Honor Roll” for the second consecutive year.
    
    “I’m delighted that the <em>Chronicle </em>has once again recognized UMBC for what those of us who work here already know: UMBC is a great place to work,” said Freeman Hrabowski, president of UMBC. “We support and respect each other and deeply value collaboration. Year after year, that makes us a ‘Great College to Work For.’”
    
    UMBC is among only 97 colleges included in the <em>Chronicle</em>'s full list, and is one of only 10 Honor Roll institutions nationwide in its size category.  UMBC is the only four-year institution in Maryland to appear on either list. Other Honor Roll institutions in our category include Baylor University, Stanford University, and the University of Michigan at Ann Arbor.
    
    The <em>Chronicle </em>results are based on responses from nearly 45,000 people at 300 institutions nationwide, including UMBC. The assessment also included an analysis of demographic data, benefits, and workplace policies at each participating college. This year, UMBC received high ratings in seven categories: 
    
    •	Collaborative Governance
    •	Teaching Environment 
    •	Confidence in Senior Leadership
    •	Supervisor/Department Chair Relationship
    •	Respect and Appreciation
    •	Tenure Clarity and Process
    •	Diversity
    
    “Our shared governance is really important as it shows that our leaders, faculty, staff and students work together to continue to improve and enhance the future growth of UMBC. This contributes to a positive work environment where our leadership is approachable,” said Dottie Caplan, president of the Non-Exempt Staff Senate.
    
    The full list and more information can be found in the <em>Chronicle</em>’s <a href="http://chronicle.com/section/Academic-Workplace-2013/729/" rel="nofollow external" class="bo">report</a>.</p>
    </div>
]]>
</Body>
<Summary>Contact: Chelsea Williams, Senior Communications Manager chelseah@umbc.edu 410-455-6380        For the fourth consecutive year, The Chronicle of Higher Education has named UMBC one of the best...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/52524/guest@my.umbc.edu/a992d6e050be2bf5990eb9e120c8b892/api/pixel</TrackingUrl>
<Group token="retired-30">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-30</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/images/avatars/group/10/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/10/original.png?1789141848</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/images/avatars/group/10/xxlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/10/xlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/images/avatars/group/10/large.png?1789141848</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/images/avatars/group/10/medium.png?1789141848</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/10/small.png?1789141848</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/images/avatars/group/10/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/10/xxsmall.png?1789141848</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 14:04:39 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33224" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33224">
<Title>Register for our Certificate in Oracle Database Administration today and snag ou...</Title>
<Body>
<![CDATA[
    <div class="html-content">Register for our Certificate in Oracle Database Administration today and snag our $250 early registration discount! #HappyFriday #Oracle<br><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fit%2Fcertificate-oracle-database-admin.html&amp;h=kAQEVZQ2H&amp;s=1" title="" rel="nofollow external" class="bo"><img src="https://fbexternal-a.akamaihd.net/safe_image.php?d=AQA1sZEk6gzdeUqU&amp;w=154&amp;h=154&amp;url=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fimages%2FUMBC-TC-new-logo.jpg" alt="" style="max-width: 100%; height: auto;"></a><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.umbc.edu%2Ftrainctr%2Fit%2Fcertificate-oracle-database-admin.html&amp;h=pAQEgInqk&amp;s=1" rel="nofollow external" class="bo">Certificate in Oracle Database Administration | UMBC Training Centers</a><br><a href="http://www.umbc.edu">www.umbc.edu</a><br>Oracle continues to be the clear leader in database technology, having the largest installation base including almost every government agency and large business worldwide. And with the proliferation of the demand for massive amounts of data to be stored, processed and analyzed, the demand for knowle...</div>
]]>
</Body>
<Summary>Register for our Certificate in Oracle Database Administration today and snag our $250 early registration discount! #HappyFriday #Oracle   Certificate in Oracle Database Administration | UMBC...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10151490663591076</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33224/guest@my.umbc.edu/175555f1b7765c08dbf21e6a411d606f/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>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 14:00:00 -0400</PostedAt>
<EditAt>Fri, 26 Jul 2013 14:00:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33226" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33226">
<Title>Naming Academic IV for Generous Supporters of UMBC</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong>TO:</strong> The UMBC Campus Community</p>
    <p><strong>FROM:</strong> Diane Lee, Vice Provost and Dean of Undergraduate Education, and Greg Simmons, Vice President for Institutional Advancement</p>
    <p><strong>RE:</strong> Naming Academic IV for Generous Supporters of UMBC</p>
    <p>We are delighted to announce that the USM Board of Regents have approved UMBC’s request to officially name Academic IV after George and Betsy Sherman, in honor of their generous support of the University. Over nearly 20 years, the Shermans have committed more than $10 million to help strengthen our efforts increase the number of well-prepared, highly qualified teachers committed to teaching science, technology, engineering, and mathematics in high-needs school throughout the Greater Baltimore region.</p>
    <p>In 2007, the Shermans partnered with UMBC to start the Sherman STEM Teacher Scholars Program, which is dedicated to growing the number of highly-qualified STEM teachers working in urban school districts by providing scholarships, intensive advising, and robust peer support and mentorship. Dozens of Sherman Scholar alumni are now working in Baltimore City Public Schools.</p>
    <p>The Shermans’ most recent gift commitment, a $1-million pledge, will enable UMBC and the Sherman STEM Teacher Scholars Program to deepen its connection to city schools through a multi-year partnership with Lakeland Elementary and Middle School in southwest Baltimore. Sherman Scholars, along with Shriver Center Peaceworkers and Choice Program caseworkers, will work with school leadership to develop school- and family-centered strategies that address student and community needs.</p>
    <p>In appreciation of the Shermans’ generosity, and in recognition of our shared commitment to the power of education to transform lives, Academic IV will be renamed “Sherman Hall.” In the tradition of the Robert and Jane Meyerhoff Chemistry Building and Janet and Walter Sondheim Hall, signage throughout the building will be changed and donor plaques will be introduced. Work will begin over the summer, with the building officially assuming its new name at the beginning of fall 2013.</p>
    <p>A formal dedication ceremony will be planned for the fall, and we will share that information in a follow up communication in the coming weeks.</p>
    <br>   </div>
]]>
</Body>
<Summary>TO: The UMBC Campus Community   FROM: Diane Lee, Vice Provost and Dean of Undergraduate Education, and Greg Simmons, Vice President for Institutional Advancement   RE: Naming Academic IV for...</Summary>
<Website>http://umbcgiving.wordpress.com/2013/07/26/naming-academic-iv-for-generous-supporters-of-umbc/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33226/guest@my.umbc.edu/c920645b0744d3de89a0eaf82c7f0382/api/pixel</TrackingUrl>
<Tag>friends-of-umbc</Tag>
<Tag>natural-and-mathematical-sciences</Tag>
<Tag>sherman-stem</Tag>
<Tag>uncategorized</Tag>
<Group token="retired-548">UMBC Giving</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-548</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/11/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/images/avatars/group/11/original.png?1789141848</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/images/avatars/group/11/xxlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/11/xlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/images/avatars/group/11/large.png?1789141848</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/images/avatars/group/11/medium.png?1789141848</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/11/small.png?1789141848</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/11/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/11/xxsmall.png?1789141848</AvatarUrl>
<Sponsor>UMBC Giving</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 13:58:59 -0400</PostedAt>
<EditAt>Fri, 26 Jul 2013 13:58:59 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="106950" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106950">
<Title>Naming Academic IV for Generous Supporters of UMBC</Title>
<Body>
<![CDATA[
    <div class="html-content">TO: The UMBC Campus Community FROM: Diane Lee, Vice Provost and Dean of Undergraduate Education, and Greg Simmons, Vice President …</div>
]]>
</Body>
<Summary>TO: The UMBC Campus Community FROM: Diane Lee, Vice Provost and Dean of Undergraduate Education, and Greg Simmons, Vice President …</Summary>
<Website>https://magazine.umbc.edu/naming-academic-iv-for-generous-supporters-of-umbc/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106950/guest@my.umbc.edu/9b44ad5c58d88d956eaade22670f126a/api/pixel</TrackingUrl>
<Tag>impact</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/images/avatars/group/8/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/8/original.png?1789141848</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/8/xxlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/8/xlarge.png?1789141848</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/images/avatars/group/8/large.png?1789141848</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/images/avatars/group/8/medium.png?1789141848</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/images/avatars/group/8/small.png?1789141848</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/images/avatars/group/8/xsmall.png?1789141848</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/images/avatars/group/8/xxsmall.png?1789141848</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 26 Jul 2013 13:58:59 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33223" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33223">
<Title>Job Posting: Ameri Corps</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>10 full-time graduate students needed for a year of service 
    with Ameri Corps. The students will work in high-
     need schools tutoring students in a 1:3 relationship.  Fellows will be 
    paid a stipend of $20,000 a year with medical and dental benefits, along
     with the possibility of earning an education award. <br></span></p>
    <p><span>For more 
    information, go to Baltimore County Public Schools
     Website, click on our system, jobs opportunity, and support positions. <br></span></p>
    <p><span>To apply, by <span><span>August 9, 2013</span></span>,  send resume and cover letter to
    <span><a href="mailto:bcpsfellows@gmail.com" rel="nofollow external" class="bo"><span>bcpsfellows@gmail.com</span></a></span></span><u></u></p>
    </div>
]]>
</Body>
<Summary>10 full-time graduate students needed for a year of service  with Ameri Corps. The students will work in high-  need schools tutoring students in a 1:3 relationship.  Fellows will be  paid a...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33223/guest@my.umbc.edu/a993174cb7b06dd52b1859cd8830f1c3/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>Fri, 26 Jul 2013 13:43:05 -0400</PostedAt>
</NewsItem>

</News>
