<?xml version="1.0"?>
<News hasArchived="true" page="7692" pageCount="10787" pageSize="10" timestamp="Thu, 03 Sep 2026 06:34:44 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7692&amp;range=30">
<NewsItem contentIssues="true" id="42784" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42784">
<Title>SVG &amp; WordPress Custom Fields</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://ianmarquette.com/" rel="nofollow external" class="bo">Ian Marquette</a>. Ian learned that SVG can have a <code>&lt;text&gt;</code> element, meaning that text could come from a dynamic source while still being able to do cool custom SVG-specific stuff to it.</em></p>
    <p></p>
    <p>I was recently working on a WordPress-based website that needed an infographic. Being a proponent of responsive design, I drew the infographic in Illustrator and exported it to SVG for scalability. While tinkering around in the backend I discovered that you can add WordPress custom fields to SVG text elements that allow you to control text-based content from within your WordPress CMS. How awesome is that?</p>
    <p>Here I'll explain how I did it, and some further options you might find useful.</p>
    <h3>Preparing the SVG File</h3>
    <p>Create the graphic in your vector-editing software of choice. Add placeholder text to the area you'll want to contain user-controlled text. Here I've created a simple graphic for demonstration purposes. </p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/03/example-text-on-path.png" style="max-width: 100%; height: auto;">
    My SVG file. Note that the path is to demonstrate something uniquely SVG. It could be a filter or a stroke or anything else cool that SVG can do.
    
    <p>Now open your SVG file with your preferred editor. You'll have to make some changes to the code. In my example the path had to be changed to a <code>&lt;textpath&gt;</code>, given an ID and linked to using xlink. If I didn't do this, each individual character in my text would have its own tag, coordinates etc.</p>
    <pre><code>&lt;svg width="1000px" height="300px" viewBox="0 0 1000 300"&#x000A;         xmlns="<a href="http://www.w3.org/2000/svg">http://www.w3.org/2000/svg</a>" &#x000A;         xmlns:xlink="<a href="http://www.w3.org/1999/xlink%22&amp;gt">http://www.w3.org/1999/xlink"&amp;gt</a>;&#x000A;      &lt;defs&gt;&#x000A;        &lt;path id="MyPath"&#x000A;              d="M 100 200 &#x000A;                 C 200 100 300   0 400 100&#x000A;                 C 500 200 600 300 700 200&#x000A;                 C 800 100 900 100 900 100" /&gt;&#x000A;      &lt;/defs&gt;&#x000A;    &#x000A;      &lt;use xlink:href="#MyPath" fill="none" stroke="green"  /&gt;&#x000A;    &#x000A;      &lt;text font-family="Helvetica" font-size="42.5"&gt;&#x000A;        &lt;textPath xlink:href="#MyPath"&gt;&#x000A;          SVG Text on a path for WordPress!&#x000A;        &lt;/textPath&gt;&#x000A;      &lt;/text&gt;&#x000A;    &#x000A;    &lt;/svg&gt;</code></pre>
    <p>Here's a live demo of some text-on-a-path:</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/JoakC/" rel="nofollow external" class="bo">JoakC</a> by Chris Coyier (<a href="http://codepen.io/chriscoyier" rel="nofollow external" class="bo">@chriscoyier</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>You can just copy and paste the markup straight into a WordPress template. You could also use on of the other methods of using SVG on your page, such as linking to the file as an object. Essentially it needs to be inline SVG, not SVG used as an  or background-image. </p>
    <p>You'll want to replace the content between the <code>&lt;text&gt;</code> tags with the following code, replacing <code>custom_field</code> with whatever name you want to give yours:</p>
    <pre><code>&lt;?php&#x000A;      global $wp_query;&#x000A;      $postid = $wp_query-&gt;post-&gt;ID;&#x000A;      echo get_post_meta($postid, 'custom_field', true);&#x000A;      wp_reset_query();&#x000A;    ?&gt;</code></pre>
    <p>Dropping that within the SVG will look like:</p>
    <pre><code>&lt;svg width="1000px" height="300px" viewBox="0 0 1000 300"&#x000A;         xmlns="<a href="http://www.w3.org/2000/svg">http://www.w3.org/2000/svg</a>" &#x000A;         xmlns:xlink="<a href="http://www.w3.org/1999/xlink%22&amp;gt">http://www.w3.org/1999/xlink"&amp;gt</a>;&#x000A;    &#x000A;      &lt;defs&gt;&#x000A;        &lt;path id="MyPath"&#x000A;              d="M 100 200 &#x000A;                 C 200 100 300   0 400 100&#x000A;                 C 500 200 600 300 700 200&#x000A;                 C 800 100 900 100 900 100" /&gt;&#x000A;      &lt;/defs&gt;&#x000A;    &#x000A;      &lt;use xlink:href="#MyPath" fill="none" stroke="green"  /&gt;&#x000A;    &#x000A;      &lt;text font-family="Helvetica" font-size="42.5"&gt;&#x000A;        &lt;textPath xlink:href="#MyPath"&gt;&#x000A;           &lt;?php&#x000A;            global $wp_query;&#x000A;            $postid = $wp_query-&gt;post-&gt;ID;&#x000A;            echo get_post_meta($postid, 'custom_field', true);&#x000A;            wp_reset_query();&#x000A;           ?&gt;&#x000A;        &lt;/textPath&gt;&#x000A;      &lt;/text&gt;&#x000A;    &#x000A;    &lt;/svg&gt;</code></pre>
    <p>Now create a custom field in the WordPress CMS with this label and populate it.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/03/custom-fields-wp.png" alt="" style="max-width: 100%; height: auto;">
    <p>Now if you check out that page, you should see the custom text sitting inside your custom SVG graphic! Of course custom fields are just one way to do this that is rather extensible. You could use do the post title this way, menus, or anything else that dynamically spits out text from any CMS.</p>
    
      <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/03/finished.png" style="max-width: 100%; height: auto;">
    Custom field added to your SVG
    
    <p>Once it's in there the text can be styled just like regular markup. For instance:</p>
    <pre><code>...&#x000A;    &lt;textpath class="text-path" ... &gt;&#x000A;      ...</code></pre>
    <pre><code>.text-path {&#x000A;      fill: orange;&#x000A;    }</code></pre>
    <p>Or any other <a href="https://gist.github.com/sol0mka/7397561" rel="nofollow external" class="bo">SVG CSS property</a>. That means using custom fonts via @font-face work just fine. You also have access to nice features such as SVG filters and animation.</p>
    <hr>
    <p><small><a href="http://css-tricks.com/svg-wordpress-custom-fields/" rel="nofollow external" class="bo">SVG &amp; WordPress Custom Fields</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by Ian Marquette. Ian learned that SVG can have a &lt;text&gt; element, meaning that text could come from a dynamic source while still being able to do cool custom...</Summary>
<Website>http://css-tricks.com/svg-wordpress-custom-fields/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42784/guest@my.umbc.edu/825b5734b00e7b43d227187236d440f3/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 10:53:20 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42776" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42776">
<Title>High-Tech Manufacturing Leader Drives Innovation</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h1>A High-Tech Manufacturing Leader In Baltimore Drives Innovation With Lifelong Learning</h1>
    <p><br></p>
    <p>In the last decade, Baltimore has become a hotbed for high-tech 
    growth and this accomplishment is one for the city to be proud of. It 
    takes a rich talent pool, often from local universities, to make a <a href="http://baltimore.cbslocal.com/2014/03/24/a-high-tech-manufacturing-leader-in-baltimore-drives-innovation-with-lifelong-learning/#" rel="nofollow external" class="bo"><span><span>tech</span><img src="http://images.intellitxt.com/ast/adTypes/icon1.png" style="max-width: 100%; height: auto;"></span></a>
     city. Additionally, the business and political community have shown 
    strong support of technology initiatives and start-ups. With these 
    attractive features in place, the area is wired for continued prosperity
     in this industry.</p>
    <div>
    <a href="http://cbsbaltimore.files.wordpress.com/2014/03/bal-tech.jpg" rel="nofollow external" class="bo"><img alt="(Photo Courtesy of Mike Adelstein)" src="http://cbsbaltimore.files.wordpress.com/2014/03/bal-tech.jpg?w=420" style="max-width: 100%; height: auto;"></a><p>(Photo Courtesy of Mike Adelstein)</p>
    </div>
    <p>One of the primary reasons that Mike Adelstein, president and <a href="http://baltimore.cbslocal.com/2014/03/24/a-high-tech-manufacturing-leader-in-baltimore-drives-innovation-with-lifelong-learning/#" rel="nofollow external" class="bo"><span><span>CEO</span><img src="http://images.intellitxt.com/ast/adTypes/icon1.png" style="max-width: 100%; height: auto;"></span></a> of <a href="http://www.potomac-laser.com/" rel="nofollow external" class="bo">Potomac Photonics</a>, a leader in micro-fabrication and small hole drilling, moved the company to <a href="http://www.bwtechumbc.com/" rel="nofollow external" class="bo">bwtech@UMBC</a>
     (University of Maryland Baltimore County) Research and Technology Park 
    was to be in a tech-centric environment that fosters innovation and 
    learning. In fact, Adelstein initially started his education at UMBC 
    earning a B.S. in Biochemistry and Molecular Biology before joining 
    Potomac Photonics – a step that effectively launched his career and the 
    lifelong pursuit of education both in and out of classroom.</p>
    <p><strong>Where did you earn your degree?</strong></p>
    <p>“After I started working at Potomac Photonics, I earned a Masters of 
    Science in Technology Management at the University of Maryland 
    University College (UMUC) and became a Certified Public Accountant 
    (CPA).”</p>
    <p><strong>How has education prepared you for your job?</strong></p>
    <p>“My degree in biochemistry and molecular biology initially helped me 
    succeed as a sales engineer for Potomac Photonics because I felt very 
    comfortable working in a technical environment. My masters degree and 
    CPA provided me with the foundation to be promoted to president and CEO 
    in 2011, and lead a buyout of the company in 2012. The combination of my
     degrees and <a href="http://baltimore.cbslocal.com/2014/03/24/a-high-tech-manufacturing-leader-in-baltimore-drives-innovation-with-lifelong-learning/#" rel="nofollow external" class="bo"><span><span>certification</span><img src="http://images.intellitxt.com/ast/adTypes/icon1.png" style="max-width: 100%; height: auto;"></span></a>
     has been essential in preparing me to deal with all aspects of the 
    company and serve our partners and customers at a high level, both from a
     technical and business perspective.”</p>
    <p><strong>Could you have reached your present position without your <a href="http://baltimore.cbslocal.com/2014/03/24/a-high-tech-manufacturing-leader-in-baltimore-drives-innovation-with-lifelong-learning/#" rel="nofollow external" class="bo"><span><span>education</span><img src="http://images.intellitxt.com/ast/adTypes/icon1.png" style="max-width: 100%; height: auto;"></span></a> endeavors?</strong></p>
    <p>“Certainly my education played a critical role in helping me reach my
     present position. Additionally, factors such as my passion for 
    high-tech manufacturing and perseverance to <a href="http://baltimore.cbslocal.com/2014/03/24/a-high-tech-manufacturing-leader-in-baltimore-drives-innovation-with-lifelong-learning/#" rel="nofollow external" class="bo"><span><span>achieve</span><img src="http://images.intellitxt.com/ast/adTypes/icon1.png" style="max-width: 100%; height: auto;"></span></a> success, especially for our customers and employees, are also important.”</p>
    <p><strong>What continuing education is required for your specific role?</strong></p>
    <p>“In addition to <a href="http://baltimore.cbslocal.com/2014/03/24/a-high-tech-manufacturing-leader-in-baltimore-drives-innovation-with-lifelong-learning/#" rel="nofollow external" class="bo"><span><span>earning</span><img src="http://images.intellitxt.com/ast/adTypes/icon1.png" style="max-width: 100%; height: auto;"></span></a>
     CPE hours for my CPA license, I attend workshops and conferences. For 
    hands-on training, I am looking forward to spending time in our new 
    innovation laboratory. Potomac Photonics’ <em>Educational Manufacturing Initiative</em>,
     which provides universities and institutions with access to our 
    services at a reduced rate, helps to keep my pulse on what the next 
    generation of engineers and scientists will require in terms of 
    manufacturing.”</p>
    <p><em>Keri Ann Beazell is a Baltimore writer following the latest 
    developments in arts and culture, natural wonders, lifestyle and pets. 
    She enjoys promoting thought-provoking discussions, education, new ideas
     and smiles among readers. Follow her online at <a href="http://www.beazellblog.com/" rel="nofollow external" class="bo"> beazellblog.com</a> and <a href="http://www.examiner.com/pet-news-in-baltimore/keri-ann-beazell" rel="nofollow external" class="bo">Examiner.com</a></em>
    </p>
    </div>
]]>
</Body>
<Summary>A High-Tech Manufacturing Leader In Baltimore Drives Innovation With Lifelong Learning     In the last decade, Baltimore has become a hotbed for high-tech  growth and this accomplishment is one...</Summary>
<Website>http://baltimore.cbslocal.com/2014/03/24/a-high-tech-manufacturing-leader-in-baltimore-drives-innovation-with-lifelong-learning/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42776/guest@my.umbc.edu/bd8dcc7df0ae5e2f375bccdd8f98af37/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 10:16:53 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42777" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42777">
<Title>Discover the Future of Web Design, in London this April</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="fowd_thumb" src="http://netdna.webdesignerdepot.com/uploads/2014/03/fowd_thumb.jpg" width="200" height="160" style="max-width: 100%; height: auto;">Keeping abreast of emerging trends is one of the most challenging aspects of any designer’s job. If you’re looking for a truly accurate picture of the web design world we’ll inhabit over the next few years, as well as the technologies, techniques and ideas that will be guiding our careers then you need to attend the <a href="http://futureofwebdesign.com/london-2014/" rel="nofollow external" class="bo">Future of Web Design</a> conference.</p> <p>Returning for its 8th year, FOWD will be held 7th–9th April at the Brewery in London, UK.</p> <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/FXhzfCjHs3Y" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div> <p>There are practical hands-on workshops that allow you to experience a range of vital technologies including CSS architecture and responsive design. Workshops are taught by respected industry leaders including Rachel Nabors, Harry Roberts, Jason Pamental and Paul Addams; giving you the chance to immerse yourself in some genuinely innovative techniques.</p> <p><a href="http://futureofwebdesign.com/london-2014/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/fowd_002.jpg" width="650" alt="Discover the Future of Web Design, in London this April" style="max-width: 100%; height: auto;"></a></p> <p>The central focus of the conference is the future of the web design sector and all the sessions focus on key emerging practices and technologies that could be the next big thing.</p> <p><a href="http://futureofwebdesign.com/london-2014/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/fowd_001.jpg" width="650" alt="Discover the Future of Web Design, in London this April" style="max-width: 100%; height: auto;"></a> </p> <p>It’s the perfect opportunity to develop your agency’s staff into a cutting-edge team that are both prepared for, and excited about the next few years.</p> <p>Key sessions this year include Stephanie Rieger (Yiibu), Razvan Caliman (Adobe), Jason Pamental (H+W Design) and Gunnar Vilhjálmsson (Monotype); as well as many more with 30 sessions scheduled for the 2 conference days.</p> <p>On top of that, the buzz that surrounds the conference is a great place to network, hang out, and otherwise make those connections that ensure we stay a community rather than a professional field.</p> <p><a href="http://futureofwebdesign.com/london-2014/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/03/fowd_003.jpg" width="650" alt="Discover the Future of Web Design, in London this April" style="max-width: 100%; height: auto;"></a></p> <p>Attending the FOWD conference is a sure-fire way to develop a vision for where the Web is going, how we’re going to get there, and what we’ll see along the way. With an impressive list of speakers and a great balance of design, technical and inspirational sessions, FOWD is one of the premier events on the conference calendar and not to be missed.</p> <p>We’re delighted that FOWD have given WebdesignerDepot readers a discount off their regular price, just enter <strong>WEBDESIGNERDEPOT</strong> at the checkout for a 10% discount.</p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/luckstock-spring-music-bundle.html?ref=inwidget" rel="nofollow external" class="bo"><strong>17 Tracks, Happy Spring Music Bundle from LuckStock – only $17!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="Discover the Future of Web Design, in London this April" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2014/03/discover-the-future-of-web-design-in-london-this-april/" rel="nofollow external" class="bo">Source</a> <br><br><br><a href="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801895482/u/49/f/661066/c/35285/s/388c0134/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Keeping abreast of emerging trends is one of the most challenging aspects of any designer’s job. If you’re looking for a truly accurate picture of the web design world we’ll inhabit over the next...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/388c0134/sc/4/l/0L0Swebdesignerdepot0N0C20A140C0A30Cdiscover0Ethe0Efuture0Eof0Eweb0Edesign0Ein0Elondon0Ethis0Eapril0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42777/guest@my.umbc.edu/cec8048e48f540bdef042dbb1157bfe1/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>conferences</Tag>
<Tag>conferences-2014</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>design-conference-london</Tag>
<Tag>development</Tag>
<Tag>fowd</Tag>
<Tag>fowd-2014</Tag>
<Tag>future-of-web-design</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>news</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 10:15:56 -0400</PostedAt>
<EditAt>Mon, 24 Mar 2014 10:15:56 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42775" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42775">
<Title>Fiberight Facility Closer to Reality</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h4>Fiberight Facility Closer to Reality</h4>
    <br>MARION, IA (CBS 2/FOX 28) --A new waste-to-biofuel facility in Marion may be a step closer to becoming a reality. Tonight, Marion City Council members are set to vote on an incentive package for the Fiberight company. The company plans on building a 50-thousand square foot facility at this site in the Marion Industrial Center. That facility will take solid waste and convert it into renewable bio-fuels. The Marion economic development company says it will bring a boost to the area. The city council meeting starts  tonight at 7. Even if it's approved, it's not a done deal. The city is still waiting for financial assistance from the state for the project.  <br><div>
    <br> Read More at: <a href="http://www.cbs2iowa.com/news/features/top-stories/stories/fiberight-facility-closer-reality-25629.shtml" rel="nofollow external" class="bo">http://www.cbs2iowa.com/news/features/top-stories/stories/fiberight-facility-closer-reality-25629.shtml</a>
    </div>
    </div>
]]>
</Body>
<Summary>Fiberight Facility Closer to Reality  MARION, IA (CBS 2/FOX 28) --A new waste-to-biofuel facility in Marion may be a step closer to becoming a reality. Tonight, Marion City Council members are set...</Summary>
<Website>http://www.cbs2iowa.com/news/features/top-stories/stories/fiberight-facility-closer-reality-25629.shtml</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42775/guest@my.umbc.edu/0fe35edd527aedffed4f529448e76c15/api/pixel</TrackingUrl>
<Group token="bwtech">bwtech@UMBC Research and Technology Park</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bwtech</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/original.png?1760034935</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xlarge.png?1760034935</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/large.png?1760034935</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/medium.png?1760034935</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/small.png?1760034935</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xsmall.png?1760034935</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/410/afff9420ec03574fa84c6bb85b54a3e3/xxsmall.png?1760034935</AvatarUrl>
<Sponsor>bwtech@UMBC</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 10:08:46 -0400</PostedAt>
<EditAt>Mon, 24 Mar 2014 10:11:33 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42779" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42779">
<Title>After Reports on N.S.A., China Urges End to Spying</Title>
<Body>
<![CDATA[
    <div class="html-content">The Chinese called on the United States to explain its actions after news reports said that the N.S.A. had hacked into the computer systems of Huawei, a telecommunications company.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F25%2Fworld%2Fasia%2Fafter-reports-on-nsa-china-urges-halt-to-cyberspying.html%3Fpartner%3Drss%26emc%3Drss&amp;t=After+Reports+on+N.S.A.%2C+China+Urges+End+to+Spying" 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%2Fwww.nytimes.com%2F2014%2F03%2F25%2Fworld%2Fasia%2Fafter-reports-on-nsa-china-urges-halt-to-cyberspying.html%3Fpartner%3Drss%26emc%3Drss&amp;t=After+Reports+on+N.S.A.%2C+China+Urges+End+to+Spying" 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%2Fwww.nytimes.com%2F2014%2F03%2F25%2Fworld%2Fasia%2Fafter-reports-on-nsa-china-urges-halt-to-cyberspying.html%3Fpartner%3Drss%26emc%3Drss&amp;t=After+Reports+on+N.S.A.%2C+China+Urges+End+to+Spying" 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%2Fwww.nytimes.com%2F2014%2F03%2F25%2Fworld%2Fasia%2Fafter-reports-on-nsa-china-urges-halt-to-cyberspying.html%3Fpartner%3Drss%26emc%3Drss&amp;t=After+Reports+on+N.S.A.%2C+China+Urges+End+to+Spying" 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%2Fwww.nytimes.com%2F2014%2F03%2F25%2Fworld%2Fasia%2Fafter-reports-on-nsa-china-urges-halt-to-cyberspying.html%3Fpartner%3Drss%26emc%3Drss&amp;t=After+Reports+on+N.S.A.%2C+China+Urges+End+to+Spying" 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/191801896416/u/0/f/640387/c/34625/s/388c08ca/sc/1/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896416/u/0/f/640387/c/34625/s/388c08ca/sc/1/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801896416/u/0/f/640387/c/34625/s/388c08ca/sc/1/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896416/u/0/f/640387/c/34625/s/388c08ca/sc/1/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801896416/u/0/f/640387/c/34625/s/388c08ca/sc/1/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896416/u/0/f/640387/c/34625/s/388c08ca/sc/1/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801896416/u/0/f/640387/c/34625/s/388c08ca/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896416/u/0/f/640387/c/34625/s/388c08ca/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The Chinese called on the United States to explain its actions after news reports said that the N.S.A. had hacked into the computer systems of Huawei, a telecommunications company.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/388c08ca/sc/1/l/0L0Snytimes0N0C20A140C0A30C250Cworld0Casia0Cafter0Ereports0Eon0Ensa0Echina0Eurges0Ehalt0Eto0Ecyberspying0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42779/guest@my.umbc.edu/5cc36b5a792aa227f1b087da2cc07f74/api/pixel</TrackingUrl>
<Tag>china</Tag>
<Tag>cyberattacks-and-hackers</Tag>
<Tag>huawei-technologies-co-ltd</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>united-states-international-relations</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>Mon, 24 Mar 2014 10:05:52 -0400</PostedAt>
<EditAt>Mon, 24 Mar 2014 10:05:52 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42772" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42772">
<Title>INDS Living-Learning Community</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <span>Interdisciplinary Studies Living-Learning Community</span><span> </span><br><span>The INDS LLC offers an opportunity for all students to strengthen and 
    enrich their undergraduate experience by connecting with each other and 
    engaging in projects and community building activities, inside and 
    outside the classroom, which integrate diverse perspectives. While INDS majors will be given priority, we 
    welcome students engaged in all degrees who would 
    like to develop a broader context for their studies.</span><p>For more information contact Stephen Freeland at <strong><a href="mailto:freeland@umbc.edu" rel="nofollow external" class="bo">freeland@umbc.edu</a>.</strong></p>
    <p><strong>Incoming freshman have until May to register to be in the community. Students already on campus must register by the 27th.</strong></p>
    </div>
]]>
</Body>
<Summary>Interdisciplinary Studies Living-Learning Community  The INDS LLC offers an opportunity for all students to strengthen and  enrich their undergraduate experience by connecting with each other and...</Summary>
<Website>https://www.surveymonkey.com/s/TQCNX79</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42772/guest@my.umbc.edu/1dd803ffaac0a76f3e440bd0eb7288c1/api/pixel</TrackingUrl>
<Group token="inds">Individualized Study </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/inds</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xsmall.png?1775678457</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/original.png?1775678457</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xxlarge.png?1775678457</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xlarge.png?1775678457</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/large.png?1775678457</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/medium.png?1775678457</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/small.png?1775678457</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xsmall.png?1775678457</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xxsmall.png?1775678457</AvatarUrl>
<Sponsor>Interdisciplinary Studies</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/772/d21f9fc127b9849fddfaf59354916108/xxlarge.jpg?1395667937</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/772/d21f9fc127b9849fddfaf59354916108/xlarge.jpg?1395667937</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/772/d21f9fc127b9849fddfaf59354916108/large.jpg?1395667937</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/772/d21f9fc127b9849fddfaf59354916108/medium.jpg?1395667937</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/772/d21f9fc127b9849fddfaf59354916108/small.jpg?1395667937</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/772/d21f9fc127b9849fddfaf59354916108/xsmall.jpg?1395667937</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/772/d21f9fc127b9849fddfaf59354916108/xxsmall.jpg?1395667937</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>1</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 09:36:45 -0400</PostedAt>
<EditAt>Thu, 05 Feb 2015 13:37:15 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42768" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42768">
<Title>Garden of Thrones: Summer is Coming</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <img src="https://my3.my.umbc.edu/system/shared/attachments/news/000/042/768/be590ce170386babcf557b982eee50b4/summeriscoming1.jpg" style="max-width: 100%; height: auto;"><div>To show your support: </div>
    <div>paw this post</div>
    <div>
    <span>like us at </span><a href="https://www.facebook.com/growumbc" rel="nofollow external" class="bo">https://www.facebook.com/growumbc</a>
    </div>
    <div><br></div>
    <div>
    <br>The Garden began a year ago today. That was my first full semester at UMBC, and as a commuter I desperately wanted to feel closer to this campus. But for a bunch of different reasons, like so many students here I ended up going to class, going to the library, and then going home. I had never felt farther from my surroundings or myself. <br><br>The picture below is of me responding to a myUMBC thread titled "Community Garden interest!" on a Sunday--March 24th, 2013:</div>
    <div>
    <br><div>~~</div>
    <div>
    <img src="https://my3.my.umbc.edu/system/shared/attachments/news/000/042/768/6ddbcfc5780466b4939637df65b65c3d/gardenforum3.png" style="max-width: 100%; height: auto;"><br><div>~~</div>
    <div><br></div>
    <div><br></div>
    <div>The idea of a community garden has been brought forth many times before, and over the past year our group of 20 undergraduate students, in partnership with Scholars programs, the INDS department, Facilities Management, and others have looked at previous proposals, recognized the shortcomings, and worked to establish the robust and varied campus partnerships to address every single issue for a student-run space to be possible:</div>
    <div>
    <br>~~</div>
    <div>
    <img src="https://my3.my.umbc.edu/system/shared/attachments/news/000/042/768/e44a045fd42b7e450f0554f33df0b073/qcard3.jpg" style="max-width: 100%; height: auto;"><br>~~</div>
    <div><br></div>
    <div><br></div>
    <div>We'll be growing food--a ton of it. If a master gardener were to run the space we've been allotted, we could grow close to $39,000 a year worth of food, right here on UMBC's campus.That's incredible, and we've become closer and closer to the transformation of Baltimore's entire food system. Our members are negotiating with UMBC's Dinings Services to move toward more REAL food all over campus:</div>
    <div><br></div>
    <div>~~<br><br><img src="https://my3.my.umbc.edu/system/shared/attachments/news/000/042/768/16ad66b2d7d7eda19f34e2f6197e2236/realfoodcalc4.png" style="max-width: 100%; height: auto;">
    </div>
    <div>~~</div>
    <div><br></div>
    <div><br></div>
    <div>We believe in the profound power of food to bridge gaps, create bonds, and transcend the differences that separate us. Everyone has a place at the table. <br><br>We'll be growing other things too. How different my path as a commuter could have been if I had simply had a little part of campus that I could actually say was mine. We hope everyone can have that, and we believe that if people have ownership of even the smallest sliver of UMBC, they'll take more care and have more pride. Imagine Dr Hrabowski handing each and every freshman a seed at convocation, saying "If you plant this seed, and you care for it, and it bears fruit, then it's yours. Because on this campus, in this community, if you care for something you will reap what you've sown...Because your thoughts become your actions, your actions become your"--you know the rest =)<br><br>It brings me to tears, to think about the amount of care and sweat that has gone into this work:<br><br>Our sustainability team, Plants (+) People, working to legitimize our efforts by establishing the operations of The Garden--who grows what when and how--and ensuring that it all happens smoothly. They've been lucky enough to work with gifted and caring Graduate Students, Shriver Peaceworkers and folks in the Interdisciplinary Studies (INDS) department. So caring that the INDS department has worked to create a Living Learning Community that will come online next semester, with its mission tied to The Garden. <br><br>Our academics team, Writers (+) Researchers, establishing ties with the Shriver Center's SUCCESS program, pushing through URA proposals so that students can see that research doesn't only have to occur in a lab. As students we can create opportunities for research. <br><br>Our design team, Artists (+) Engineers, working tirelessly to bring this space to concrete reality. <br><br>There is so, so much more. We hope we've earned your vote, and your support. Thanks for reading. <br><br>If you have any questions or would like to get involved, please post to the facebook page, we would love to hear from you.<br><br><div><br></div>
    </div>
    </div>
    </div>
    </div>
]]>
</Body>
<Summary>To show your support:   paw this post  like us at https://www.facebook.com/growumbc      The Garden began a year ago today. That was my first full semester at UMBC, and as a commuter I desperately...</Summary>
<Website>http://facebook.com/growumbc</Website>
<AttachmentKind>Image</AttachmentKind>
<AttachmentUrl>https://assets3-my.umbc.edu/system/shared/attachments/e7bf0483e9b9441c846aa6f2f1d867df/6a994d44/news/000/042/768/be590ce170386babcf557b982eee50b4/summeriscoming1.jpg?1395665274</AttachmentUrl>
<Attachments>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12922"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12923"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12924"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12926"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12927"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12928"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12929"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12946"></Attachment>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/42768/attachments/12947"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42768/guest@my.umbc.edu/5c4250051e50ffd630e563c31bdc841a/api/pixel</TrackingUrl>
<Group token="retired-725">The Garden</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-725</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/xsmall.png?1395669381</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/original.png?1395669381</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/xxlarge.png?1395669381</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/xlarge.png?1395669381</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/large.png?1395669381</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/medium.png?1395669381</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/small.png?1395669381</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/xsmall.png?1395669381</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/725/ffad672a27161fbee2737a2a1b4ac28f/xxsmall.png?1395669381</AvatarUrl>
<Sponsor>The Garden</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/768/c98e7eb508ad306c40cc4d7773a3a69a/xxlarge.jpg?1395666424</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/768/c98e7eb508ad306c40cc4d7773a3a69a/xlarge.jpg?1395666424</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/768/c98e7eb508ad306c40cc4d7773a3a69a/large.jpg?1395666424</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/768/c98e7eb508ad306c40cc4d7773a3a69a/medium.jpg?1395666424</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/768/c98e7eb508ad306c40cc4d7773a3a69a/small.jpg?1395666424</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/768/c98e7eb508ad306c40cc4d7773a3a69a/xsmall.jpg?1395666424</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/768/c98e7eb508ad306c40cc4d7773a3a69a/xxsmall.jpg?1395666424</ThumbnailUrl>
<PawCount>309</PawCount>
<CommentCount>8</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 08:40:55 -0400</PostedAt>
<EditAt>Fri, 11 Apr 2014 10:34:34 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42773" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42773">
<Title>DealBook: GrubHub Sets Price Range for I.P.O.</Title>
<Body>
<![CDATA[
    <div class="html-content">GrubHub plans to sell more than seven million shares in an initial public offering at $20 to $22 a share. At the midpoint, that would value the company at more than $1.72 billion.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F24%2Fgrubhub-sets-price-range-for-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+GrubHub+Sets+Price+Range+for+I.P.O." 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%2F2014%2F03%2F24%2Fgrubhub-sets-price-range-for-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+GrubHub+Sets+Price+Range+for+I.P.O." 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%2F2014%2F03%2F24%2Fgrubhub-sets-price-range-for-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+GrubHub+Sets+Price+Range+for+I.P.O." 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%2F2014%2F03%2F24%2Fgrubhub-sets-price-range-for-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+GrubHub+Sets+Price+Range+for+I.P.O." 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%2F2014%2F03%2F24%2Fgrubhub-sets-price-range-for-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+GrubHub+Sets+Price+Range+for+I.P.O." 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/191801896417/u/0/f/640387/c/34625/s/388b653b/sc/30/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896417/u/0/f/640387/c/34625/s/388b653b/sc/30/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801896417/u/0/f/640387/c/34625/s/388b653b/sc/30/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896417/u/0/f/640387/c/34625/s/388b653b/sc/30/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801896417/u/0/f/640387/c/34625/s/388b653b/sc/30/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896417/u/0/f/640387/c/34625/s/388b653b/sc/30/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801896417/u/0/f/640387/c/34625/s/388b653b/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801896417/u/0/f/640387/c/34625/s/388b653b/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>GrubHub plans to sell more than seven million shares in an initial public offering at $20 to $22 a share. At the midpoint, that would value the company at more than $1.72 billion.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/388b653b/sc/30/l/0Ldealbook0Bnytimes0N0C20A140C0A30C240Cgrubhub0Esets0Eprice0Erange0Efor0Ei0Ep0Eo0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42773/guest@my.umbc.edu/9be76507dca0cb2f0f2bd1f3880b3a0d/api/pixel</TrackingUrl>
<Tag>citigroup-inc</Tag>
<Tag>citigroup-inc-c-nyse</Tag>
<Tag>cyclical-consumer-goods</Tag>
<Tag>goldman-sachs-group-inc</Tag>
<Tag>goldman-sachs-group-inc-gs-nyse</Tag>
<Tag>grubhub</Tag>
<Tag>i-p-o-offerings</Tag>
<Tag>initial-public-offerings</Tag>
<Tag>lee-thomas-h-partners</Tag>
<Tag>morgan-stanley</Tag>
<Tag>morgan-stanley-ms-nyse</Tag>
<Tag>new</Tag>
<Tag>private-equity</Tag>
<Tag>retail-leisure</Tag>
<Tag>technology</Tag>
<Tag>warburg-pincus</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>Mon, 24 Mar 2014 08:23:50 -0400</PostedAt>
<EditAt>Mon, 24 Mar 2014 10:27:28 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42771" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42771">
<Title>Prof. Marie desJardins is UMBC&#8217;s Presidential Teaching Professor for 2014-17</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div><a href="http://www.csee.umbc.edu/wp-content/uploads/2014/03/MarieDesJardins-6442.jpg" rel="nofollow external" class="bo"><img alt="" src="http://www.csee.umbc.edu/wp-content/uploads/2014/03/MarieDesJardins-64421.jpg" width="200" height="267" style="max-width: 100%; height: auto;"></a></div>
    <p>CSEE Professor <a href="http://www.csee.umbc.edu/people/faculty/marie-desjardins/" rel="nofollow external" class="bo">Marie desJardins</a> has been named as UMBC’s Presidential Teaching Professor for 2014-17. Dr. desJardins joined the UMBC faculty in 2001 after earning her Ph.D. in computer science from UC Berkeley and spending ten years at SRI International as a research scientist. She has made significant contributions to the fields of artificial intelligence and machine learning, published over 100 peer-reviewed papers, brought over six million dollars to UMBC as PI or co-PI in external grant funding, and held leadership positions in the top professional organizations in her field.</p>
    <p>Dr. desJardins is an outstanding teacher, earning praise from students in courses from freshman-level courses for non-majors to specialized graduate-level seminars. She was named one of UMBC’s “Professors Not to Miss” in 2011 and is one of the first cohort of Hrabowski Academic Innovation Fellows. She is also well known for mentoring students at all levels, having graduated ten Ph.D. and 22 M.S. students, mentored over 50 undergraduates in research and served on the dissertation and thesis committees of more than 30 other students. She was recently recognized for mentoring by the National Center for Women &amp; Information Technology, who selected her as one of four awardees of the <a href="http://www.csee.umbc.edu/2014/02/prof-marie-desjardins-receives-ncwit-undergraduate-research-mentoring-award/" rel="nofollow external" class="bo">2014 NCWIT Undergraduate Research Mentoring Award</a>.</p>
    <p>Within the department and university, Dr. desJardins’s commitment to teaching and student success goes far beyond the classroom. She has served as the computer science undergraduate program director and led an effort to redesign the introductory computing course to better serve new students. In addition to mentoring her own graduate students, she is the Faculty Advisor for the <a href="http://www.umbc.edu/advance/wise.html" rel="nofollow external" class="bo">Women in Science and Engineering</a> Graduate Association and a member of the <a href="http://www.cwit.umbc.edu/" rel="nofollow external" class="bo">Center for Women in Technology</a> Advisory Board. She is regularly invited to participate on panels, give presentations in the Honors Forum and other campus events, and to run workshops for graduate students and junior faculty.</p>
    <p>Outside of UMBC, Dr. desJardins has built an international reputation as an advocate for high-quality education, mentoring, and diversity at all levels of the profession. She has been chair, mentor, reviewer, and/or panelist of the AAAI/SIGART Doctoral Consortium for the last 14 years; this event has provided valuable feedback and mentoring to hundreds of computing graduate students during that time. She co-founded the AAAI <a href="http://www.aaai.org/Symposia/EAAI/eaai-symposia.php" rel="nofollow external" class="bo">Educational Advances in Artificial Intelligence</a> annual symposium. She regularly publishes articles on her research and innovations in computing education, including tools and techniques for classroom teaching, new courses, and analyses of the state of computer science education at the high school level.</p>
    <p>Dr. desJardins is also a nationally recognized leader in computer science education and has received multiple NSF awards to support her work in this area. She gives frequent presentations around the state and the country on high school computer science education and preparing a diverse population of students to succeed in computing careers. She is a founding member of the <a href="https://sites.google.com/site/cstamaryland/" rel="nofollow external" class="bo">Maryland chapter of the Computer Science Teachers Association</a>, and has organized several professional development workshops for high school teachers. Her NSF-funded <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=1160624" rel="nofollow external" class="bo">CE21-Maryland</a> (Computing Education for the 21st Century) grant explored the landscape of high school CS education in Maryland, culminating in a statewide summit for educators, administrators, and community members that was held at UMBC in May 2013. A recent <a href="http://nsf.gov/awardsearch/showAward?AWD_ID=1339265" rel="nofollow external" class="bo">NSF CE-21 grant</a> will result in curriculum creation and professional development for 100 Maryland high school teachers, focused on the new CS Principles course that is scheduled to become a new AP offering in 2016. Other funded grants in the educational arena include her Hrabowski Innovation Fund award to create the ACTIVE Center, an <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=1140589" rel="nofollow external" class="bo">NSF TUES award</a> that is developing a new freshman-level computing course, an <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=1154300" rel="nofollow external" class="bo">NSF T-SITE grant to</a> build a community of transfer scholars in IT/engineering, as well as multiple smaller awards to run workshops and support graduate student development.</p>
    <p>We congratulate Professor desJardins for her selection as Presidential Teaching Professor and look forward to the <a href="http://facultystaffawards.umbc.edu/" rel="nofollow external" class="bo">Presidential Faculty and Staff Awards ceremony</a> on Wednesday, April 2 in the University Center Ballroom. Not only is she an outstanding and dedicated classroom teacher, her contributions to research, teaching, mentoring, and educational innovations have been broad and sustained.</p>
    </div>
]]>
</Body>
<Summary>CSEE Professor Marie desJardins has been named as UMBC’s Presidential Teaching Professor for 2014-17. Dr. desJardins joined the UMBC faculty in 2001 after earning her Ph.D. in computer science...</Summary>
<Website>http://www.csee.umbc.edu/2014/03/prof-marie-desjardins-is-umbcs-presidential-teaching-professor-for-2014-17/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=prof-marie-desjardins-is-umbcs-presidential-teaching-professor-for-2014-17</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42771/guest@my.umbc.edu/92cb842ad5f8e553e1ea85114b8c639d/api/pixel</TrackingUrl>
<Tag>csee</Tag>
<Tag>faculty-and-staff</Tag>
<Tag>news</Tag>
<Group token="csee">Computer Science and Electrical Engineering</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/csee</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/original.png?1314043393</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/large.png?1314043393</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/medium.png?1314043393</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/small.png?1314043393</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxsmall.png?1314043393</AvatarUrl>
<Sponsor>Computer Science and Electrical Engineering</Sponsor>
<PawCount>3</PawCount>
<CommentCount>1</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 08:15:06 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43885" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43885">
<Title>Prof. Marie desJardins is UMBC&#8217;s Presidential Teaching Professor for 2014-17</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div><a href="http://www.csee.umbc.edu/wp-content/uploads/2014/03/MarieDesJardins-6442.jpg" rel="nofollow external" class="bo"><img alt="" src="http://www.csee.umbc.edu/wp-content/uploads/2014/03/MarieDesJardins-64421.jpg" width="200" height="267" style="max-width: 100%; height: auto;"></a></div>
    <p>CSEE Professor <a href="http://www.csee.umbc.edu/people/faculty/marie-desjardins/" rel="nofollow external" class="bo">Marie desJardins</a> has been named as UMBC’s Presidential Teaching Professor for 2014-17. Dr. desJardins joined the UMBC faculty in 2001 after earning her Ph.D. in computer science from UC Berkeley and spending ten years at SRI International as a research scientist. She has made significant contributions to the fields of artificial intelligence and machine learning, published over 100 peer-reviewed papers, brought over six million dollars to UMBC as PI or co-PI in external grant funding, and held leadership positions in the top professional organizations in her field.</p>
    <p>Dr. desJardins is an outstanding teacher, earning praise from students in courses from freshman-level courses for non-majors to specialized graduate-level seminars. She was named one of UMBC’s “Professors Not to Miss” in 2011 and is one of the first cohort of Hrabowski Academic Innovation Fellows. She is also well known for mentoring students at all levels, having graduated ten Ph.D. and 22 M.S. students, mentored over 50 undergraduates in research and served on the dissertation and thesis committees of more than 30 other students. She was recently recognized for mentoring by the National Center for Women &amp; Information Technology, who selected her as one of four awardees of the <a href="http://www.csee.umbc.edu/2014/02/prof-marie-desjardins-receives-ncwit-undergraduate-research-mentoring-award/" rel="nofollow external" class="bo">2014 NCWIT Undergraduate Research Mentoring Award</a>.</p>
    <p>Within the department and university, Dr. desJardins’s commitment to teaching and student success goes far beyond the classroom. She has served as the computer science undergraduate program director and led an effort to redesign the introductory computing course to better serve new students. In addition to mentoring her own graduate students, she is the Faculty Advisor for the <a href="http://www.umbc.edu/advance/wise.html" rel="nofollow external" class="bo">Women in Science and Engineering</a> Graduate Association and a member of the <a href="http://www.cwit.umbc.edu/" rel="nofollow external" class="bo">Center for Women in Technology</a> Advisory Board. She is regularly invited to participate on panels, give presentations in the Honors Forum and other campus events, and to run workshops for graduate students and junior faculty.</p>
    <p>Outside of UMBC, Dr. desJardins has built an international reputation as an advocate for high-quality education, mentoring, and diversity at all levels of the profession. She has been chair, mentor, reviewer, and/or panelist of the AAAI/SIGART Doctoral Consortium for the last 14 years; this event has provided valuable feedback and mentoring to hundreds of computing graduate students during that time. She co-founded the AAAI <a href="http://www.aaai.org/Symposia/EAAI/eaai-symposia.php" rel="nofollow external" class="bo">Educational Advances in Artificial Intelligence</a> annual symposium. She regularly publishes articles on her research and innovations in computing education, including tools and techniques for classroom teaching, new courses, and analyses of the state of computer science education at the high school level.</p>
    <p>Dr. desJardins is also a nationally recognized leader in computer science education and has received multiple NSF awards to support her work in this area. She gives frequent presentations around the state and the country on high school computer science education and preparing a diverse population of students to succeed in computing careers. She is a founding member of the <a href="https://sites.google.com/site/cstamaryland/" rel="nofollow external" class="bo">Maryland chapter of the Computer Science Teachers Association</a>, and has organized several professional development workshops for high school teachers. Her NSF-funded <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=1160624" rel="nofollow external" class="bo">CE21-Maryland</a> (Computing Education for the 21st Century) grant explored the landscape of high school CS education in Maryland, culminating in a statewide summit for educators, administrators, and community members that was held at UMBC in May 2013. A recent <a href="http://nsf.gov/awardsearch/showAward?AWD_ID=1339265" rel="nofollow external" class="bo">NSF CE-21 grant</a> will result in curriculum creation and professional development for 100 Maryland high school teachers, focused on the new CS Principles course that is scheduled to become a new AP offering in 2016. Other funded grants in the educational arena include her Hrabowski Innovation Fund award to create the ACTIVE Center, an <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=1140589" rel="nofollow external" class="bo">NSF TUES award</a> that is developing a new freshman-level computing course, an <a href="http://www.nsf.gov/awardsearch/showAward?AWD_ID=1154300" rel="nofollow external" class="bo">NSF T-SITE grant to</a> build a community of transfer scholars in IT/engineering, as well as multiple smaller awards to run workshops and support graduate student development.</p>
    <p>We congratulate Professor desJardins for her selection as Presidential Teaching Professor and look forward to the <a href="http://facultystaffawards.umbc.edu/" rel="nofollow external" class="bo">Presidential Faculty and Staff Awards ceremony</a> on Wednesday, April 2 in the University Center Ballroom. Not only is she an outstanding and dedicated classroom teacher, her contributions to research, teaching, mentoring, and educational innovations have been broad and sustained.</p>
    </div>
]]>
</Body>
<Summary>CSEE Professor Marie desJardins has been named as UMBC’s Presidential Teaching Professor for 2014-17. Dr. desJardins joined the UMBC faculty in 2001 after earning her Ph.D. in computer science...</Summary>
<Website>http://www.csee.umbc.edu/2014/03/prof-marie-desjardins-is-umbcs-presidential-teaching-professor-for-2014-17/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43885/guest@my.umbc.edu/75650796ee47e1d3fbfbffbc21ec7383/api/pixel</TrackingUrl>
<Tag>csee</Tag>
<Tag>faculty-and-staff</Tag>
<Tag>news</Tag>
<Group token="csee">Computer Science and Electrical Engineering</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/csee</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/original.png?1314043393</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/large.png?1314043393</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/medium.png?1314043393</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/small.png?1314043393</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxsmall.png?1314043393</AvatarUrl>
<Sponsor>Computer Science and Electrical Engineering</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 24 Mar 2014 08:15:06 -0400</PostedAt>
</NewsItem>

</News>
