<?xml version="1.0"?>
<News hasArchived="true" page="8605" pageCount="10722" pageSize="10" timestamp="Sat, 11 Jul 2026 18:06:50 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8605">
<NewsItem contentIssues="false" id="31478" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31478">
<Title>Asynchronous UIs - the future of web user interfaces</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>It’s an interesting time to be working on the frontend now. We have new technologies such as HTML5, CSS3, Canvas and WebGL; all of which greatly increase the possibilities for web application development. The world is our oyster! </p>
    
    <p>However, there’s also another trend I’ve noticed. Web developers are still stuck in the request/response mindset. I call it the ‘click and wait’ approach - where every UI interaction results in a delay before another interaction can be performed. That’s the process they’ve used their entire careers so it’s no wonder most developers are blinkered to the alternatives. </p>
    
    <p>Speed matters; a lot. Or to be precise, <em>perceived</em> speed matters a lot. Speed is a critical and often neglected part of UI design, but it can make a huge difference to user experience, engagement and revenue. </p>
    
    <ul>
    <li>Amazon: 100 ms of extra load time caused a 1% drop in sales (source: Greg Linden, Amazon).</li>
    <li>Google: 500 ms of extra load time caused 20% fewer searches (source: Marrissa Mayer, Google).</li>
    <li>Yahoo!: 400 ms of extra load time caused a 5–9% increase in the number of people who clicked “back” before the page even loaded (source: Nicole Sullivan, Yahoo!).</li>
    </ul>
    
    <p>Yet, despite all this evidence, developers still insist on using the request/response model. Even the introduction of Ajax hasn’t improved the scene much, replacing blank loading states with spinners. There’s no technical reason why we’re still in this state of affairs, it’s purely conceptual. </p>
    
    <p>A good example of the problem is Gmail’s ‘sending’ notification; how is this useful to people? What’s the point of blocking? 99% of the time the email will be sent just fine.</p>
    
    <p><img src="https://lh3.googleusercontent.com/-uh2NoHAnaa4/TsLsP4z5VCI/AAAAAAAABe0/T2QCu4zyuEQ/s800/Screen%252520Shot%2525202011-11-15%252520at%2525202.17.00%252520PM%2525201.png" alt="Why oh why?" style="max-width: 100%; height: auto;"></p>
    
    <p>As developers, we should optimize for the most likely scenario. Behavior like this reminds me of Window’s balloon notifications, which were awesome for telling you about something you just did:</p>
    
    <p><img src="https://lh5.googleusercontent.com/-qkosWy4Icgo/TsHZFtBxk-I/AAAAAAAABeo/Ujrg4tI6F1Y/s800/audio-popup.jpeg" alt="No shit sherlock" style="max-width: 100%; height: auto;"></p>
    
    <h2>The solution</h2>
    
    <p>I’ve been working on this problem, specifically with a MVC JavaScript framework called <a href="http://spinejs.com" rel="nofollow external" class="bo">Spine</a>, and implementing what I’ve dubbed <em>asynchronous user interfaces</em>, or AUIs. The key to this is that interfaces should be <strong>completely non-blocking</strong>. Interactions should be resolved instantly; there should be no loading messages or spinners. Requests to the server should be decoupled from the interface.</p>
    
    <p>The key thing to remember is that <strong>users don’t care about Ajax</strong>. They don’t give a damn if a request to the server is still pending. They don’t want loading messages. Users would just like to use your application without any interruptions.</p>
    
    <h2>The result</h2>
    
    <p>AUIs result in a significantly better user experience, more akin to what people are used to on the desktop than the web. <a href="http://spine-rails3.herokuapp.com/" rel="nofollow external" class="bo">Here’s an example</a> of an AUI Spine application with a Rails backend. </p>
    
    <p><a href="http://spine-rails3.herokuapp.com/" rel="nofollow external" class="bo"><img src="https://lh4.googleusercontent.com/-vxBcOT0TIpM/ToNWaL-o83I/AAAAAAAABao/ObsGjxoX5oQ/s500/Screen%252520Shot%2525202011-09-27%252520at%25252022.16.41.png" alt="AUI" style="max-width: 100%; height: auto;"></a></p>
    
    <p>Notice that any action you take, such as updating a page, is completely asynchronous and instant. Ajax REST calls are sent off to Rails in the background after the UI has updated. It’s a much better user experience.</p>
    
    <p>Compare it to the <a href="http://spine-rails3.herokuapp.com/posts" rel="nofollow external" class="bo">static version</a> of the same application, which blocks and navigates to a new page on every interaction. The AUI experience is a big improvement, that will get even more noticeable in larger (and slower) applications. </p>
    
    <p>Have a browse <a href="https://github.com/maccman/spine.rails3" rel="nofollow external" class="bo">round the source</a> to see what’s going on, especially the <a href="https://github.com/maccman/spine.rails3/blob/master/app/assets/javascripts/app/controllers/pages.js.coffee" rel="nofollow external" class="bo">main controller</a>.</p>
    
    <h2>Not a silver bullet</h2>
    
    <p>It’s worth mentioning here that I don’t think this approach is a silver bullet for all web applications, and it won’t be appropriate for all use cases. One example that springs to mind is credit-card transactions, something you’ll always want to be synchronous and blocking. However, I do believe that AUIs are applicable the vast majority of the time.</p>
    
    <p>The other point I’d like to make is that not <em>all</em> feedback is bad. Unobtrusive feedback that’s actually useful to your users is completely fine; like a spinner indicating when files have synced, or network connections have finished. The key thing is that feedback is useful and doesn’t block further interaction.</p>
    
    <h2>The implementation</h2>
    
    <p>So how do you achieve these AUIs? There are a number of key principles:</p>
    
    <ul>
    <li>Move state &amp; view rendering to the client side</li>
    <li>Intelligently preload data</li>
    <li>Asynchronous server communication</li>
    </ul>
    
    <p>Now, these concepts turn the existing server-driven model on its head. It’s often not possible to convert a conventional web application into a client side app; you need to set out from the get go with these concepts in mind as they involve a significantly different architecture. </p>
    
    <p>Moving state to the client side is a huge subject and beyond the scope of this article. For more information on that, you might want to read my book: <a href="http://oreilly.com/catalog/0636920018421" rel="nofollow external" class="bo"><em>JavaScript Web Applications</em></a>. Instead in this post I want to focus in on a specific part of AUIs; <strong>asynchronous server communication</strong>, or in other words: server interaction that’s decoupled from the user interface. </p>
    
    <p>The idea is that you update the client before you send an Ajax request to the server. For example, say a user updated a page name in a CMS. With an asynchronous UI, the name change would be immediately reflected in the application, without any loading or pending messages. The UI is available for further interaction instantly. The Ajax request specifying the name change would then be sent off separately in the background. At no point does the application depend on the Ajax request for further interaction.</p>
    
    <p>For example, let’s take a <a href="http://spinejs.com/docs/models" rel="nofollow external" class="bo">Spine Model</a> called <code>Page</code>. Say we update it in a controller, changing its name:</p>
    
    <pre><code>page = Page.find(1)&#x000A;    page.name = "Hello World"&#x000A;    page.save()&#x000A;    </code></pre>
    
    <p>As soon as you call <code>save()</code>, Spine will perform the following actions:</p>
    
    <ol>
    <li>Run validation callbacks and persist the changes to memory</li>
    <li>Fire the <em>change</em> event and update the user interface</li>
    <li>Send an Ajax PUT to the server indicating the change</li>
    </ol>
    
    <p>Notice that the Ajax request to the server has been sent <em>after</em> the UI has been updated, in other words what we’ve got here is an  asynchronous interface.</p>
    
    <h2>Synchronizing state</h2>
    
    <p>Now this is all very well in principle, but I’m sure you’re already thinking of scenarios where this breaks down. Since I’ve been working with these types of applications for a while, I can hopefully address some of these concerns. Feel free to skip the next few sections if you’re not interested in the finer details.</p>
    
    <h3>Validation</h3>
    
    <p>What if server validation fails? The client thinks the action has already succeeded, so they’ll be pretty surprised if subsequently told that the validation had failed.</p>
    
    <p>There’s a pretty simple solution to this: client-side validation. Replicate server-side validation on the client side, performing the same checks. You’ll always ultimately need server-side validation, since you can’t trust clients. But, by also validating on the client you can be confident a request will be successful. Server-side validation should only fail if there’s a flaw in your client-side validation.</p>
    
    <p>That said, not all validation is possible on the client-side, especially validating the uniqueness of an attribute (an operation which requires DB access). There’s no easy solution to this, but there is a discussion covering various options in <a href="http://spinejs.com/docs/forms" rel="nofollow external" class="bo">Spine’s documentation</a>. </p>
    
    <h3>Network failures &amp; server errors</h3>
    
    <p>What happens if the user closes their browser before a request has completed? This is fairly simple to resolve, just listen to the <code>window.onbeforeunload</code> event, check to see if Ajax requests are still pending, and if appropriate notify the user. <a href="http://spinejs.com/docs/ajax" rel="nofollow external" class="bo">Spine’s Ajax documentation</a> contains a discussion about this. </p>
    
    <pre><code>window.onbeforeunload = -&gt;&#x000A;      if Spine.Ajax.pending&#x000A;        '''Data is still being sent to the server; &#x000A;           you may lose unsaved changes if you close the page.'''&#x000A;    </code></pre>
    
    <p>Alternatively, if the server returns an unsuccessful response code, say a <code>500</code>, or the network request fails, we can catch that in a global error handler and notify the user. Again, this is an exceptional event, so it’s not worth investing too much developer time into. We can just log the event, inform the user and perhaps refresh the page to re-sync state.</p>
    
    <h3>ID generation</h3>
    
    <p>IDs are useful to refer to client-side records, and are used extensively throughout JavaScript frameworks like <a href="http://documentcloud.github.com/backbone" rel="nofollow external" class="bo">Backbone</a> and <a href="http://spinejs.com" rel="nofollow external" class="bo">Spine</a>. However, this throws up a bit of a dilemma - where are the IDs generated, the server or the client?</p>
    
    <p>Generating IDs on the server has the advantage that IDs are guaranteed to be unique, but generating them on the client side has the advantage that they’re available instantly. How do we resolve this situation?</p>
    
    <p>Well, a solution that Backbone uses is generating an internal <code>cid</code> (or client id). You can use this <code>cid</code> temporarily before the server responds with the real identifier. Backbone has a separate record retrieval API, depending on whether you’re using a <code>cid</code>, or a real <code>id</code>.</p>
    
    <pre><code>Users.getByCid(internalID)&#x000A;    Users.get(serverID)&#x000A;    </code></pre>
    
    <p>I’m not such a fan of that solution, so I’ve taken a different tack with Spine. Spine generates pseudo GUIDs internally when creating records (unless you specify an ID yourself). It’ll use that ID to identify records from then on. However, if the response from an Ajax create request to the server returns a new ID, Spine will switch to using the server specified ID. Both the new and old ID will still work, and the API to find records is still the same.</p>
    
    <h3>Synchronous requests</h3>
    
    <p>The last issue is with Ajax requests that get sent out in parallel. If a user creates a record, and then immediately updates the same record, two Ajax requests will be sent out at the same time, a <code>POST</code> and a <code>PUT</code>. However, if the server processes the ‘update’ request before the ‘create’ one, it’ll freak out. It has no idea what record needs updating, as the record hasn’t been created yet. </p>
    
    <p>The solution to this is to pipeline Ajax requests, transmitting them serially. Spine does this by default, queuing up <code>POST</code>, <code>PUT</code> and <code>DELETE</code> Ajax requests so they’re sent one at a time. The next request sent only after the previous one has returned successfully. </p>
    
    <h2>Next steps</h2>
    
    <p>So that’s a pretty thorough introduction into asynchronous interfaces, and even if you glossed over the finer details, I hope you’ve been left with the impression that AUIs are a huge improvement over the status quo, and a valid option when building web applications.</p>
    
    <p>If you’re interested in building AUIs, you should definitely check out <a href="http://spinejs.com" rel="nofollow external" class="bo">Spine</a>, and <a href="http://spinejs.com/docs/ajax" rel="nofollow external" class="bo">Spine’s Ajax guide</a>.</p>
    
    <hr>
    
    <p><em>This is a repost of an article first posted in November 2011</em></p>
    </div>
]]>
</Body>
<Summary>It’s an interesting time to be working on the frontend now. We have new technologies such as HTML5, CSS3, Canvas and WebGL; all of which greatly increase the possibilities for web application...</Summary>
<Website>http://blog.alexmaccaw.com/asynchronous-ui</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31478/guest@my.umbc.edu/382d4ba768a0802b278e012466598a70/api/pixel</TrackingUrl>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 19:59:23 -0400</PostedAt>
<EditAt>Tue, 18 Jun 2013 19:59:23 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="31477" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31477">
<Title>Bits Blog: Tech Moves to the Background as Design Becomes Foremost</Title>
<Body>
<![CDATA[
    <div class="html-content">As the speed of chips and the size of screens move into the background, design is becoming part of mainstream discussions about gadgets.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Ftech-moves-to-the-background-as-design-becomes-mainstream%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Moves+to+the+Background+as+Design+Becomes+Foremost" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Ftech-moves-to-the-background-as-design-becomes-mainstream%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Moves+to+the+Background+as+Design+Becomes+Foremost" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Ftech-moves-to-the-background-as-design-becomes-mainstream%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Moves+to+the+Background+as+Design+Becomes+Foremost" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Ftech-moves-to-the-background-as-design-becomes-mainstream%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Moves+to+the+Background+as+Design+Becomes+Foremost" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Ftech-moves-to-the-background-as-design-becomes-mainstream%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Moves+to+the+Background+as+Design+Becomes+Foremost" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/165666222902/u/0/f/640387/c/34625/s/2d791288/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666222902/u/0/f/640387/c/34625/s/2d791288/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>As the speed of chips and the size of screens move into the background, design is becoming part of mainstream discussions about gadgets.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/06/18/tech-moves-to-the-background-as-design-becomes-mainstream/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31477/guest@my.umbc.edu/db9513a53d2973c2f0b428c77b3cf50b/api/pixel</TrackingUrl>
<Tag>apple-inc</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>devices</Tag>
<Tag>fuseproject</Tag>
<Tag>mobile</Tag>
<Tag>new</Tag>
<Tag>side-cr-llc</Tag>
<Tag>software</Tag>
<Tag>technology</Tag>
<Tag>twitter</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 19:09:36 -0400</PostedAt>
<EditAt>Wed, 19 Jun 2013 10:45:57 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="31475" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31475">
<Title>Bits Blog: Google Seeks Permission to Publish Data on Security Requests</Title>
<Body>
<![CDATA[
    <div class="html-content">Google escalated its pressure on the government to permit it to publish more detailed data about the requests it receives for the information of foreign users.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fgoogle-asks-secret-court-for-permission-to-publish-national-security-request-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Seeks+Permission+to+Publish+Data+on+Security+Requests" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fgoogle-asks-secret-court-for-permission-to-publish-national-security-request-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Seeks+Permission+to+Publish+Data+on+Security+Requests" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fgoogle-asks-secret-court-for-permission-to-publish-national-security-request-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Seeks+Permission+to+Publish+Data+on+Security+Requests" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fgoogle-asks-secret-court-for-permission-to-publish-national-security-request-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Seeks+Permission+to+Publish+Data+on+Security+Requests" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fgoogle-asks-secret-court-for-permission-to-publish-national-security-request-data%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Google+Seeks+Permission+to+Publish+Data+on+Security+Requests" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/165665233525/u/0/f/640387/c/34625/s/2d78d39c/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665233525/u/0/f/640387/c/34625/s/2d78d39c/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Google escalated its pressure on the government to permit it to publish more detailed data about the requests it receives for the information of foreign users.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/06/18/google-asks-secret-court-for-permission-to-publish-national-security-request-data/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31475/guest@my.umbc.edu/f9801cc8bcff1307b46491a9a6bceec2/api/pixel</TrackingUrl>
<Tag>apple-inc</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>facebook-inc</Tag>
<Tag>first-amendment-us-constitution</Tag>
<Tag>foreign-intelligence-surveillance-act-fisa</Tag>
<Tag>foreign-intelligence-surveillance-court</Tag>
<Tag>google-inc</Tag>
<Tag>internet</Tag>
<Tag>microsoft-corporation</Tag>
<Tag>new</Tag>
<Tag>policy</Tag>
<Tag>privacy</Tag>
<Tag>surveillance-of-citizens-by-government</Tag>
<Tag>technology</Tag>
<Tag>yahoo-inc</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 18:40:21 -0400</PostedAt>
<EditAt>Wed, 19 Jun 2013 15:05:13 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="31473" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31473">
<Title>Scalable Vector Graphics (SVG) 2 Draft Published</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/Graphics/SVG/WG/" rel="nofollow external" class="bo">SVG Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2013/WD-SVG2-20130409/" rel="nofollow external" class="bo">Scalable Vector Graphics (SVG) 2</a>. This specification defines the features and syntax for Scalable Vector Graphics (SVG) Version 2, a language for describing two-dimensional vector and mixed vector/raster graphics. Changes in this working draft include introduction of a new <a href="http://www.w3.org/TR/SVG2/pservers.html#Hatches" rel="nofollow external" class="bo">‘hatch’</a> element as a refinement on patterns, improved accessibility and integration with HTML through the addition of the <a href="http://www.w3.org/TR/SVG2/interact.html#SVGElementTabindexAttribute" rel="nofollow external" class="bo">‘tabindex’</a> attribute and changes to the <a href="http://www.w3.org/TR/SVG2/extend.html#ForeignObjectElement" rel="nofollow external" class="bo">‘foreignObject’</a> element, addition of a new 'auto-start-reverse' attribute value for markers, clarification of CSS transforms on SVG content, and various updates to bring SVG closer in line with CSS best practices. See the <a href="http://www.w3.org/TR/SVG2/changes.html" rel="nofollow external" class="bo">full list of modifications</a> in the SVG changes appendix. Learn more about the <a href="http://www.w3.org/Graphics/" rel="nofollow external" class="bo">Graphics Activity</a>.</p></div>
]]>
</Body>
<Summary>The SVG Working Group has published a Working Draft of Scalable Vector Graphics (SVG) 2. This specification defines the features and syntax for Scalable Vector Graphics (SVG) Version 2, a language...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9866</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31473/guest@my.umbc.edu/6c169c5207d287c05fe0867f87ca452e/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>web-design-and-applications</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 18:29:41 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="31474" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31474">
<Title>Test cases for Canonical XML 2.0 Note Published</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/2008/xmlsec/" rel="nofollow external" class="bo">XML Security Working Group</a> has published a Group Note of <a href="http://www.w3.org/TR/2013/NOTE-xml-c14n2-testcases-20130618/" rel="nofollow external" class="bo">Test cases for Canonical XML 2.0</a>. This document outlines test cases for Canonical XML 2.0. Learn more about the <a href="http://www.w3.org/Security/" rel="nofollow external" class="bo">Security Activity</a>.</p></div>
]]>
</Body>
<Summary>The XML Security Working Group has published a Group Note of Test cases for Canonical XML 2.0. This document outlines test cases for Canonical XML 2.0. Learn more about the Security Activity.</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9865</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31474/guest@my.umbc.edu/5d01e189ca5e7412e6a3a04eadf4c9bd/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>xml-core-technologies</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 18:27:30 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="31476" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31476">
<Title>Bits Blog: I.B.M. Inflates Its Cloud</Title>
<Body>
<![CDATA[
    <div class="html-content">I.B.M. announced it has 100 cloud computing offerings and is targeting executives in areas like marketing and human resources.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fi-b-m-inflates-its-cloud%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+I.B.M.+Inflates+Its+Cloud" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fi-b-m-inflates-its-cloud%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+I.B.M.+Inflates+Its+Cloud" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fi-b-m-inflates-its-cloud%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+I.B.M.+Inflates+Its+Cloud" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fi-b-m-inflates-its-cloud%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+I.B.M.+Inflates+Its+Cloud" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F06%2F18%2Fi-b-m-inflates-its-cloud%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+I.B.M.+Inflates+Its+Cloud" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>I.B.M. announced it has 100 cloud computing offerings and is targeting executives in areas like marketing and human resources.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/06/18/i-b-m-inflates-its-cloud/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31476/guest@my.umbc.edu/affbc7d9bc3d5ec4546a712425c729dc/api/pixel</TrackingUrl>
<Tag>cloud-computing</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>data-centers</Tag>
<Tag>international-business-machines-corporation</Tag>
<Tag>international-business-machines-corporation-ibm-nyse</Tag>
<Tag>new</Tag>
<Tag>rometty-virginia-m</Tag>
<Tag>salesforce-com-inc</Tag>
<Tag>salesforce-com-inc-crm-nyse</Tag>
<Tag>technology</Tag>
<Tag>yammer</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 17:45:15 -0400</PostedAt>
<EditAt>Tue, 18 Jun 2013 17:45:15 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="31470" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31470">
<Title>DealBook: Google&#8217;s Effort to Skirt Regulation May Invite More Scrutiny</Title>
<Body>
<![CDATA[
    <div class="html-content">Google may have pushed the boundaries of antitrust law in its Waze deal, but the question is whether the government pushes back.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F06%2F18%2Fgoogles-effort-to-skirt-regulation-may-invite-more-scrutiny%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Google%E2%80%99s+Effort+to+Skirt+Regulation+May+Invite+More+Scrutiny" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F06%2F18%2Fgoogles-effort-to-skirt-regulation-may-invite-more-scrutiny%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Google%E2%80%99s+Effort+to+Skirt+Regulation+May+Invite+More+Scrutiny" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F06%2F18%2Fgoogles-effort-to-skirt-regulation-may-invite-more-scrutiny%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Google%E2%80%99s+Effort+to+Skirt+Regulation+May+Invite+More+Scrutiny" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F06%2F18%2Fgoogles-effort-to-skirt-regulation-may-invite-more-scrutiny%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Google%E2%80%99s+Effort+to+Skirt+Regulation+May+Invite+More+Scrutiny" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F06%2F18%2Fgoogles-effort-to-skirt-regulation-may-invite-more-scrutiny%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Google%E2%80%99s+Effort+to+Skirt+Regulation+May+Invite+More+Scrutiny" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/165665213309/u/0/f/640387/c/34625/s/2d781c45/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165665213309/u/0/f/640387/c/34625/s/2d781c45/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Google may have pushed the boundaries of antitrust law in its Waze deal, but the question is whether the government pushes back.     </Summary>
<Website>http://dealbook.nytimes.com/2013/06/18/googles-effort-to-skirt-regulation-may-invite-more-scrutiny/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31470/guest@my.umbc.edu/65288372c934a3e1986df94b088d5da2/api/pixel</TrackingUrl>
<Tag>antitrust-laws-and-competition-issues</Tag>
<Tag>deal-professor</Tag>
<Tag>federal-trade-commission</Tag>
<Tag>google-inc</Tag>
<Tag>justice-department</Tag>
<Tag>legal-regulatory</Tag>
<Tag>maps</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>top-headline-1</Tag>
<Tag>waze-mobile</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 17:31:25 -0400</PostedAt>
<EditAt>Wed, 19 Jun 2013 21:45:44 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="123233" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123233">
<Title>VIDEO: Portraits of Giving: Shlomo and Rachel Carmi</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <img width="150" height="150" src="https://umbc.edu/wp-content/uploads/2022/02/carmi-video-still-150x150.jpg" alt="" style="max-width: 100%; height: auto;"><p><a href="http://www.youtube.com/watch?v=wZ-GRAZH-PQ" rel="nofollow external" class="bo"><img alt="Carmi Video Still" src="http://umbcgiving.files.wordpress.com/2013/06/carmi-video-still.jpg?w=300" width="300" height="159" style="max-width: 100%; height: auto;"></a>When Dr. Shlomo Carmi – former Dean of the College of Engineering and Information Technology and professor of mechanical engineering – retired from UMBC this semester, he and his wife Rachel decided to give back to the university that has been such a big part of their lives for so many years.</p>
    <p><a href="http://www.youtube.com/watch?v=wZ-GRAZH-PQ" rel="nofollow external" class="bo">Watch the video to learn more about why the Carmis give to UMBC. </a></p>
    </div>
]]>
</Body>
<Summary>When Dr. Shlomo Carmi – former Dean of the College of Engineering and Information Technology and professor of mechanical engineering – retired from UMBC this semester, he and his wife Rachel...</Summary>
<Website>https://umbc.edu/stories/video-portraits-of-giving-schlomo-and-rachel-carmi/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123233/guest@my.umbc.edu/b8bdb7f99c83725974bf668e3a66b4af/api/pixel</TrackingUrl>
<Tag>impact</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>Tue, 18 Jun 2013 16:53:09 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="31469" important="false" status="posted" url="https://my3.my.umbc.edu/posts/31469">
<Title>UMBC Names Tim Hall as Next Athletic Director</Title>
<Body>
<![CDATA[
    <div class="html-content">Contact: Steve Levy, UMBC Director of Athletic Communications, 410-455-2197
    
    UMBC is pleased to announce the appointment of Tim Hall as Director of Athletics, Physical Education and Recreation effective July 8, 2013. 
    
    Hall joins the UMBC community after serving as Director of Athletics at the University of Missouri-Kansas City (UMKC) since February 2007. A member of the Chancellor’s executive cabinet, Hall’s stewardship of the program propelled UMKC to new heights at the NCAA Division I level in athletic competitiveness, academic success, fundraising and community service efforts.
    
    Hall succeeds Dr. Charles Brown, who will retire June 30 as the longest-tenured NCAA Division I director in Maryland history. The new Retriever leader will build on substantial momentum, including championships in seven different sports over ten seasons in the America East Conference and titles in men’s and women’s basketball, men’s lacrosse and men’s soccer. UMBC just matched its best-ever finish by placing third in the race for the America East Conference’s Stuart P. Haskell, Jr. Commissioner’s Cup. The Retrievers’ 19-sport program also finished third in 2007-08 and 2010-11. 
     
    The Retrievers have also excelled in the classroom. Since UMBC entered the America East, 36 student-athletes earned Academic All-District or All-America status and the program’s graduation rate (GSR) is at 88%, which is 6% above the national average.
    
    “I am excited to serve UMBC as its new Director of Athletics,” said Hall. “UMBC is an exemplary institution of higher learning—one that is on the cutting edge of innovation and entrepreneurism. I pledge to work with great enthusiasm to advance the reputation, efficiency and impact of Retriever Athletics. In addition, my family and I are looking forward to integrating ourselves into the UMBC community and beyond.”
    
    Hall will have direct responsibility for the UMBC’s NCAA Division I Intercollegiate Athletics program, all campus recreational programs (intramurals, club sports, recreational activities) and the Physical Education program. His primary responsibility will be to encourage and support the total development of all students and student-athletes at UMBC through the competitive, recreational and educational sports programs and activities sponsored by the university. 
     
    “Our campus takes pride in connecting athletics with the life and academic culture of the university,” said UMBC President Dr. Freeman Hrabowski. "Tim Hall has led UMKC’s teams to success on the field, in the classroom, and in the community by bringing out the best in his colleagues and students. I have no doubt that he will provide our athletics department with the kind of the visionary and creative leadership that we so value at UMBC."
    
    “The search process was a thorough and inclusive one and I know that I speak for the entire campus community when I say we couldn’t be more enthused to welcome an athletic director with a competitive spirit, integrity and a proven track record of success,” said Dr. Nancy Young, Vice President of Student Affairs. 
    
    Since Hall accepted the UMKC post in 2007, the Kangaroos have seen competitive improvement every year. UMKC has won conference championships in men’s soccer, men’s golf, men’s tennis and softball. In the spring of 2013, he led UMKC athletics into a new era, announcing that it was joining the Western Athletic Conference (WAC) on July 1, 2013.
    
    In 2011-12, UMKC Athletics finished fifth place in the Summit League Commissioner's Cup standings, the highest finish for the Kangaroos since 1999-2000. UMKC also took third in the Dr. Helen Smiley Women's All-Sports standings, the highest finish since winning in 1998-99. In the classroom, the department posted a grade point average of better than 3.26. Additionally, UMKC finished with a 958.7 APR average and the volleyball team received the NCAA public recognition award.
    
    In 2008, UMKC received a 5-million pledge from the Stanley H. Durwood Foundation, the largest gift in Athletics and the fifth-largest gift in University history. The resulting Stanley H. Durwood Soccer Stadium and Recreational Field opened in August 2009 and is among the premier soccer facilities in the Midwest region. On an annual basis, the Kangaroo Athletics Scholarship Fund, which was rebranded prior to the 2007-08 school year, posted three consecutive years of 50% growth, while donor participation increased over 200% during that same time period. 
    
    Hall is also in a three-year term on the NACDA Division I-AAA Executive Committee and serves on the NCAA volleyball rules committee, as well as the NCAA committee on Women’s Athletics.
    
    Hall came to Kansas City after serving as the Associate Athletics Director for Development at Kent State University in Kent, Ohio, 2003-07. While at KSU, he was a member of the athletics senior administrative staff, working in all phases of departmental management including game and personnel contracts, scheduling, budget, policy and strategic planning.
    
    Previously, Hall worked at Eastern Kentucky University, 2000-03. He began work as the collegiate Director for Development in 2000 before being promoted to the Director of Major Gifts and Special Projects in 2001. In this capacity, he raised over $4.6 million for the university, including $1.3 million for athletics.
    
    Hall also served as the Assistant Director of Development at Saint Xavier University in Chicago from September 1999 through October 2000. Before moving to Chicago, Hall worked at Youngstown State University as an Assistant Director of Athletic Development from 1997 to 1999. 
    
    Hall earned his bachelor's degree in sports administration from the University of Toledo in 1994. He then received his master's degree in sports administration from Kent State University in 1998. Hall and his wife, Beth, have four children, Aidan, Aislin, Donovan and Landon.
    <em>
    Update: UMBC will host a "Meet-and-Greet" with Tim Hall on Tuesday, June 25, 3:30 p.m., at the Sports Zone, third floor of the Commons. The campus community is invited to join President Hrabowski, Dr. Nancy Young and the athletic department staff in welcoming Tim and his family to UMBC. Light refreshments will be served. </em>
    
    <img alt="TimHall_DY_small.jpg" src="http://www.umbc.edu/blogs/umbcnews/TimHall_DY_small.jpg" width="239" height="358" style="max-width: 100%; height: auto;">
    </div>
]]>
</Body>
<Summary>Contact: Steve Levy, UMBC Director of Athletic Communications, 410-455-2197  UMBC is pleased to announce the appointment of Tim Hall as Director of Athletics, Physical Education and Recreation...</Summary>
<Website>http://www.umbc.edu/blogs/umbcnews/2013/06/umbc_names_tim_hall_as_next_at.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/31469/guest@my.umbc.edu/954bb836e4eeaaffedca7cccffad1713/api/pixel</TrackingUrl>
<Group token="retired-30">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-30</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/10/xsmall.png?1783795755</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/10/original.png?1783795755</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/10/xxlarge.png?1783795755</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/10/xlarge.png?1783795755</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/10/large.png?1783795755</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/10/medium.png?1783795755</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/10/small.png?1783795755</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/10/xsmall.png?1783795755</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/10/xxsmall.png?1783795755</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>6</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 16:31:09 -0400</PostedAt>
<EditAt>Tue, 18 Jun 2013 16:31:09 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="52529" important="false" status="posted" url="https://my3.my.umbc.edu/posts/52529">
<Title>UMBC Names Tim Hall as Next Athletic Director</Title>
<Body>
<![CDATA[
    <div class="html-content">Contact: Steve Levy, UMBC Director of Athletic Communications, 410-455-2197
    
    UMBC is pleased to announce the appointment of Tim Hall as Director of Athletics, Physical Education and Recreation effective July 8, 2013. 
    
    Hall joins the UMBC community after serving as Director of Athletics at the University of Missouri-Kansas City (UMKC) since February 2007. A member of the Chancellor’s executive cabinet, Hall’s stewardship of the program propelled UMKC to new heights at the NCAA Division I level in athletic competitiveness, academic success, fundraising and community service efforts.
    
    Hall succeeds Dr. Charles Brown, who will retire June 30 as the longest-tenured NCAA Division I director in Maryland history. The new Retriever leader will build on substantial momentum, including championships in seven different sports over ten seasons in the America East Conference and titles in men’s and women’s basketball, men’s lacrosse and men’s soccer. UMBC just matched its best-ever finish by placing third in the race for the America East Conference’s Stuart P. Haskell, Jr. Commissioner’s Cup. The Retrievers’ 19-sport program also finished third in 2007-08 and 2010-11. 
     
    The Retrievers have also excelled in the classroom. Since UMBC entered the America East, 36 student-athletes earned Academic All-District or All-America status and the program’s graduation rate (GSR) is at 88%, which is 6% above the national average.
    
    “I am excited to serve UMBC as its new Director of Athletics,” said Hall. “UMBC is an exemplary institution of higher learning—one that is on the cutting edge of innovation and entrepreneurism. I pledge to work with great enthusiasm to advance the reputation, efficiency and impact of Retriever Athletics. In addition, my family and I are looking forward to integrating ourselves into the UMBC community and beyond.”
    
    Hall will have direct responsibility for the UMBC’s NCAA Division I Intercollegiate Athletics program, all campus recreational programs (intramurals, club sports, recreational activities) and the Physical Education program. His primary responsibility will be to encourage and support the total development of all students and student-athletes at UMBC through the competitive, recreational and educational sports programs and activities sponsored by the university. 
     
    “Our campus takes pride in connecting athletics with the life and academic culture of the university,” said UMBC President Dr. Freeman Hrabowski. "Tim Hall has led UMKC’s teams to success on the field, in the classroom, and in the community by bringing out the best in his colleagues and students. I have no doubt that he will provide our athletics department with the kind of the visionary and creative leadership that we so value at UMBC."
    
    “The search process was a thorough and inclusive one and I know that I speak for the entire campus community when I say we couldn’t be more enthused to welcome an athletic director with a competitive spirit, integrity and a proven track record of success,” said Dr. Nancy Young, Vice President of Student Affairs. 
    
    Since Hall accepted the UMKC post in 2007, the Kangaroos have seen competitive improvement every year. UMKC has won conference championships in men’s soccer, men’s golf, men’s tennis and softball. In the spring of 2013, he led UMKC athletics into a new era, announcing that it was joining the Western Athletic Conference (WAC) on July 1, 2013.
    
    In 2011-12, UMKC Athletics finished fifth place in the Summit League Commissioner's Cup standings, the highest finish for the Kangaroos since 1999-2000. UMKC also took third in the Dr. Helen Smiley Women's All-Sports standings, the highest finish since winning in 1998-99. In the classroom, the department posted a grade point average of better than 3.26. Additionally, UMKC finished with a 958.7 APR average and the volleyball team received the NCAA public recognition award.
    
    In 2008, UMKC received a 5-million pledge from the Stanley H. Durwood Foundation, the largest gift in Athletics and the fifth-largest gift in University history. The resulting Stanley H. Durwood Soccer Stadium and Recreational Field opened in August 2009 and is among the premier soccer facilities in the Midwest region. On an annual basis, the Kangaroo Athletics Scholarship Fund, which was rebranded prior to the 2007-08 school year, posted three consecutive years of 50% growth, while donor participation increased over 200% during that same time period. 
    
    Hall is also in a three-year term on the NACDA Division I-AAA Executive Committee and serves on the NCAA volleyball rules committee, as well as the NCAA committee on Women’s Athletics.
    
    Hall came to Kansas City after serving as the Associate Athletics Director for Development at Kent State University in Kent, Ohio, 2003-07. While at KSU, he was a member of the athletics senior administrative staff, working in all phases of departmental management including game and personnel contracts, scheduling, budget, policy and strategic planning.
    
    Previously, Hall worked at Eastern Kentucky University, 2000-03. He began work as the collegiate Director for Development in 2000 before being promoted to the Director of Major Gifts and Special Projects in 2001. In this capacity, he raised over $4.6 million for the university, including $1.3 million for athletics.
    
    Hall also served as the Assistant Director of Development at Saint Xavier University in Chicago from September 1999 through October 2000. Before moving to Chicago, Hall worked at Youngstown State University as an Assistant Director of Athletic Development from 1997 to 1999. 
    
    Hall earned his bachelor's degree in sports administration from the University of Toledo in 1994. He then received his master's degree in sports administration from Kent State University in 1998. Hall and his wife, Beth, have four children, Aidan, Aislin, Donovan and Landon.
    <em>
    Update: UMBC will host a "Meet-and-Greet" with Tim Hall on Tuesday, June 25, 3:30 p.m., at the Sports Zone, third floor of the Commons. The campus community is invited to join President Hrabowski, Dr. Nancy Young and the athletic department staff in welcoming Tim and his family to UMBC. Light refreshments will be served. </em>
    
    <img alt="TimHall_DY_small.jpg" src="http://www.umbc.edu/blogs/umbcnews/TimHall_DY_small.jpg" width="239" height="358" style="max-width: 100%; height: auto;">
    </div>
]]>
</Body>
<Summary>Contact: Steve Levy, UMBC Director of Athletic Communications, 410-455-2197  UMBC is pleased to announce the appointment of Tim Hall as Director of Athletics, Physical Education and Recreation...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/52529/guest@my.umbc.edu/a26e9d9a20398b3ee413981ecba2dc55/api/pixel</TrackingUrl>
<Group token="retired-30">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-30</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/10/xsmall.png?1783795755</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/10/original.png?1783795755</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/10/xxlarge.png?1783795755</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/10/xlarge.png?1783795755</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/10/large.png?1783795755</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/10/medium.png?1783795755</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/10/small.png?1783795755</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/10/xsmall.png?1783795755</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/10/xxsmall.png?1783795755</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 18 Jun 2013 16:31:09 -0400</PostedAt>
</NewsItem>

</News>
