<?xml version="1.0"?>
<News hasArchived="true" page="7585" pageCount="10794" pageSize="10" timestamp="Tue, 08 Sep 2026 07:32:25 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7585&amp;range=2">
<NewsItem contentIssues="true" id="43959" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43959">
<Title>Full Text Search in Rails</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <img src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/279/posts/20638/final_image/full-text-search-finished-project.jpg" alt="Final product image" style="max-width: 100%; height: auto;">What You'll Be Creating<h2>Introduction</h2>
    <p>Searching records is a common requirement in web applications. There is usually a requirement to allow users to quickly access the data they want from large records. While it is possible to do this using simple SQL queries, sometimes it is more efficient to use a search engine.</p>
    <p>Solr is a popular search platform from the Apache Lucene project. Its major features include powerful full-text search, hit highlighting, faceted search, near real-time indexing, dynamic clustering, database integration, rich document handling, and geospatial search. In this tutorial, we'll be looking at performing full text search using Sunspot, which is a library that enables integration of Solr in ruby applications.<br></p>
    <h2>Project Setup</h2>
    <p>I've created a simple app on <a href="https://github.com/echessa/sunspot_example" rel="nofollow external" class="bo">Github</a> which I'll be using here instead of starting with a new project. The app shows a list of products with their name, image, price and description. I have included some seed data so you can run <code>rake db:seed</code> if you don't want to input the data your self. The application uses Paperclip for image attachments and since I use image resizing, ImageMagick will need to be installed on your system. You'll also require the Java runtime installed on your machine to proceed with the tutorial.</p>
    <p>The image below shows the application. The search form at the top does nothing at the moment, but we will enable a user to search through the products and get results based on not just the product name, but also on its description.</p>
    <img alt="" src="https://s3.amazonaws.com/cms-assets.tutsplus.com/uploads/users/279/posts/20638/image/full-text-search-starter-project.jpg" style="max-width: 100%; height: auto;"><h2>Searching</h2>
    <p>We'll start off by including the Sunspot and Solr gems in our Gemfile. For development, we'll use the <code>sunspot_solr</code> gem that comes with a pre-packaged Solr distribution, therefore we won't need to install it separately.</p>
    <pre>gem 'sunspot_rails'&#x000A;    &#x000A;    group :development do&#x000A;        gem 'sunspot_solr'&#x000A;    end</pre>
    <p>Run <code>bundle install</code> and then run the following command to generate the Sunspot configuration file.</p>
    <pre>rails generate sunspot_rails:install</pre>
    <p>This creates the <code>/config/sunspot.yml</code> file which lets your app know where to find the Solr server.</p>
    <p>To set up the objects that you want indexed, add a searchable block to the objects. In the <a href="https://github.com/echessa/sunspot_example" rel="nofollow external" class="bo">starter project</a>, we have a Product model with name, price, description and photo fields. We will enable a full-text search to be done on the name and description fields. In <code>/models/product.rb</code> add:</p>
    <pre>searchable do&#x000A;        text :name, :description&#x000A;    end</pre>
    <p>Start the Solr server by running:</p>
    <pre>rake sunspot:solr:start</pre>
    <p>Sunspot indexes new records that you create, but if you already have some records in the database, run <code>rake sunspot:reindex</code> to have them indexed.</p>
    <p>We then add the code in the Products controller that will take the user's input and pass it to the search engine. In the code below, we call <code>search</code> on the Product model and pass in a block. We call the <code>fulltext</code> method in the block and pass in the query string that we want to be searched for. There are several methods we can use here to specify the search results we want. The search results are then assigned to <code>@products</code> which will be available to our view.</p>
    <pre>def index&#x000A;    	@query = Product.search do&#x000A;    	    fulltext params[:search]&#x000A;    	end&#x000A;    	@products = @query.results&#x000A;    end</pre>
    <p>Run the application and you should now be able to search through the available products. </p>
    <p>Solr will do a case insensitive search through the product names and descriptions using the word or phrase input. You can make one field hold more weight than the other to improve the relevancy of your search results. This is done with the <code>boost</code> method which is passed a value that determines the priority assigned to the different fields. The field with the highest value will carry more importance. </p>
    <p>In our application, we can specify the products which have the searched string in their name to be scored higher. We do this by making the following changes in <code>/models/product.rb</code>.</p>
    <pre>searchable do&#x000A;    	text :name, :boost =&gt; 2&#x000A;    	text :description&#x000A;    end</pre>
    <p>Reindex the records with <code>rake sunspot:reindex</code> and now the results with the searched term in the product name, will be placed higher than those with the term in the description. You can add more records to test this out.</p>
    <h3>Faceted Browsing</h3>
    <p>Faceted browsing is a way of navigating search data by way of various sets of associated attributes. For example, in our application, we can classify searches for products by price range and give counts of each range.</p>
    <p>First add price to the <code>searchable</code> method in <code>/models/product.rb</code></p>
    <pre>searchable do&#x000A;    	text :name, :boost =&gt; 2&#x000A;    	text :description&#x000A;    	double :price&#x000A;    end</pre>
    <p>Then call <code>facet</code> in the controller. The products will be faceted by the range of their price in intervals of $100.00. Here we assume that all products cost less than $500.</p>
    <pre>def index&#x000A;    	@query = Product.search do&#x000A;      		fulltext params[:search]&#x000A;    &#x000A;      		facet :price, :range =&gt; 0..500, :range_interval =&gt; 100&#x000A;      		with(:price, Range.new(*params[:price_range].split("..").map(&amp;:to_i))) if params[:price_range].present?&#x000A;    &#x000A;    	end&#x000A;    	@products = @query.results&#x000A;    end</pre>
    <p>In the view file, paste the following at the place you want to see the faceted results.</p>
    <pre>&lt;div class="row"&gt;&#x000A;      	&lt;h3&gt;Search Results&lt;/h3&gt;&#x000A;      	&lt;ul&gt;&#x000A;    		&lt;% for row in @query.facet(:price).rows %&gt;&#x000A;        		&lt;li&gt;&#x000A;          			&lt;% if params[:price_range].blank? %&gt;&#x000A;              			&lt;%= link_to row.value, :price_range =&gt; row.value, :search =&gt; params[:search] %&gt; (&lt;%= row.count %&gt;)&#x000A;          			&lt;% else %&gt;&#x000A;              			&lt;%= row.value %&gt; (&lt;%= link_to "X", :price_range =&gt; nil %&gt;)&#x000A;          			&lt;% end %&gt;&#x000A;        		&lt;/li&gt;&#x000A;    		&lt;% end %&gt;&#x000A;      	&lt;/ul&gt;&#x000A;    &lt;/div&gt;</pre>
    <p>Now when you search for a term, there will be a list of facets showing how many results are in each price range. In our example application, if you search for the word 'camera', you will see the following list.</p>
    <pre>100.0..200.0 (2)&#x000A;    200.0..300.0 (1)&#x000A;    300.0..400.0 (1)</pre>
    <p>Each item is a link and when clicked on, you will get a list of the products that meet your search term and that also fall into the price range you clicked on. </p>
    <p>The link passes the original search query and the chosen range to the index action. Since it passes the range as a string, we use <code>Range.new(*params[:price_range].split("..").map(&amp;:to_i))</code> to convert it back to a range. You could use conditional statements to output more user friendly links like <code>$100 - $199 (2)</code> instead of <code>100.0..200.0 (2)</code> but we won't get into that here.<br></p>
    <h3>Advanced Configurations</h3>
    <p>There are some further configurations you can do on Solr to customize how it works. In its default, Sunspot performs full-text search by dividing the search string into tokens based on whitespace and other delimiter characters using a smart tokenizer called the <code>StandardTokenizer</code>. Then the tokens are lower cased and the exact words are searched for.</p>
    <p>This might be okay at times, but you might also want to configure the search engine to allow for human error or to allow queries to be made that aren't too strict. For instance, you might want to provide some synonyms to the engine so that when the user doesn't enter the exact text that is in your records, they might still find similar results. An example of this, is that you might have an item labeled 'ipod' in your records. You may provide synonyms like 'iPod', 'i-pod' and 'i pod' to increase the odds of users finding the data.</p>
    <p>Another useful functionality you could add is stemming, which will allow Solr to match different words with the same root. For example, if the user entered 'run', they would get results with 'run' and 'running'. Or if they searched for 'walk', the results will include data that contains 'walk', 'walking', 'walked', and so on.</p>
    <p>Solr settings are found in <code>solr/conf/schema.xml</code> and that is the file to modify to change the server's configuration. This is out of the scope of this tutorial, but for more on this, check out the <a href="https://github.com/sunspot/sunspot/wiki/Advanced-Fulltext-Search-Configuration" rel="nofollow external" class="bo">advanced full-text config post</a> and the <a href="http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.SynonymFilterFactory" rel="nofollow external" class="bo">Solr wiki</a>.</p>
    <h2>Conclusion</h2>
    <p>Now to finish up, stop the Solr server by running:</p>
    <pre>rake sunspot:solr:stop</pre>
    <p>We have looked at how to use the Sunspot gem to utilize the Solr search engine in a Rails app. Besides the settings we have used, there are plenty more you can use to customize your search results. Be sure to check the <a href="https://github.com/sunspot/sunspot#sunspot" rel="nofollow external" class="bo">Readme file</a> for more options.<br></p>
    <p>Solr gives you the kind of searching capability that isn't easy to achieve with regular SQL queries. For simple apps, with a small amount of database records, SQL queries will do without much of a performance hit. But if you want something that is scalable, then it is worth looking into Solr or other available search engines.</p>
    </div>
]]>
</Body>
<Summary>What You'll Be Creating Introduction  Searching records is a common requirement in web applications. There is usually a requirement to allow users to quickly access the data they want from large...</Summary>
<Website>http://code.tutsplus.com/tutorials/full-text-search-in-rails--cms-20638</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43959/guest@my.umbc.edu/8f638606d3dc2d0ef69c49d11e45b880/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 28 Apr 2014 14:01:02 -0400</PostedAt>
<EditAt>Mon, 28 Apr 2014 14:01:02 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="43957" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43957">
<Title>How to Get Started in Research Workshop!</Title>
<Tagline>Friday, May 2nd at NOON, Sherman Hall 114</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Join us this Friday at noon for our "How to Great Started in Research Workshop" hosted by the Office of Undergraduate Education.  This is your chance to learn about several exciting research opportunities including the Undergraduate Research Award (URA), summer research, URCAD, travel funding and much more.  <div><br></div>
    <div>Sherman Hall 114, 12-12:50</div>
    </div>
]]>
</Body>
<Summary>Join us this Friday at noon for our "How to Great Started in Research Workshop" hosted by the Office of Undergraduate Education.  This is your chance to learn about several exciting research...</Summary>
<Website>http://www.umbc.edu/undergrad_ed/research/getting_started.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43957/guest@my.umbc.edu/07723ea7ce9d0602ba54d38f2c809e69/api/pixel</TrackingUrl>
<Tag>research</Tag>
<Group token="undergradresearch">Undergraduate Research</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/undergradresearch</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/original.jpg?1600355057</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/large.png?1600355057</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/medium.png?1600355057</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/small.png?1600355057</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxsmall.png?1600355057</AvatarUrl>
<Sponsor>Undergraduate Research</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/957/08f966f051116fbae0de3356816aac80/xxlarge.jpg?1398705640</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/957/08f966f051116fbae0de3356816aac80/xlarge.jpg?1398705640</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/043/957/08f966f051116fbae0de3356816aac80/large.jpg?1398705640</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/043/957/08f966f051116fbae0de3356816aac80/medium.jpg?1398705640</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/957/08f966f051116fbae0de3356816aac80/small.jpg?1398705640</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/957/08f966f051116fbae0de3356816aac80/xsmall.jpg?1398705640</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/043/957/08f966f051116fbae0de3356816aac80/xxsmall.jpg?1398705640</ThumbnailUrl>
<PawCount>12</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 28 Apr 2014 13:21:02 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43956" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43956">
<Title>NEW! Full-Time Jobs for CAHSS Students</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div><span>Below are just a few of the new internship positions posted to UMBCworks in the past week. Check them out today!</span></div>
    <div><br></div>
    <div>ID: 9264763 – Upper/Middle School English Teacher (Gerstell Academy)</div>
    <div><br></div>
    <div>ID: 9265485 – Graphic Designer (Illustria Designs)</div>
    <div><br></div>
    <div>ID: 9263109 – Jr. Online PR Specialist (WebpageFx)</div>
    <div><br></div>
    <div>ID: 9265488 – Health Policy Assistant (The National Academy of Social Insurance)</div>
    <div><br></div>
    <div>ID: 9264101 – Motion Graphic Artist (ICF International)</div>
    <div><br></div>
    <div><br></div>
    <div>To access these positions, login to your UMBCworks account (via the link in the Jobs &amp; Internships topic in myUMBC) and find details and application instructions as well as hundreds of other job postings! Please note you MUST have an approved resume and be released to apply to internships. To schedule an appointment, access our online system in UMBCworks or call 410-455-2216.</div>
    </div>
]]>
</Body>
<Summary>Below are just a few of the new internship positions posted to UMBCworks in the past week. Check them out today!     ID: 9264763 – Upper/Middle School English Teacher (Gerstell Academy)     ID:...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43956/guest@my.umbc.edu/21bbdaa98dccf74ff8aad3841a1ded3e/api/pixel</TrackingUrl>
<Group token="careers">Career Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/careers</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/original.jpg?1411655278</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/large.png?1411655278</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/medium.png?1411655278</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/small.png?1411655278</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxsmall.png?1411655278</AvatarUrl>
<Sponsor>Career Services Center</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/956/24b23168fdaa0d98e9119081cd4fdd3e/xxlarge.jpg?1398705568</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/043/956/24b23168fdaa0d98e9119081cd4fdd3e/xlarge.jpg?1398705568</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/956/24b23168fdaa0d98e9119081cd4fdd3e/large.jpg?1398705568</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/043/956/24b23168fdaa0d98e9119081cd4fdd3e/medium.jpg?1398705568</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/956/24b23168fdaa0d98e9119081cd4fdd3e/small.jpg?1398705568</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/956/24b23168fdaa0d98e9119081cd4fdd3e/xsmall.jpg?1398705568</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/956/24b23168fdaa0d98e9119081cd4fdd3e/xxsmall.jpg?1398705568</ThumbnailUrl>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 28 Apr 2014 13:20:03 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43953" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43953">
<Title>Potomac Photonics moves to bwtech@UMBC</Title>
<Tagline>Real Estate Weekly &#8211; 4/25/14 - The Daily Record</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h4>Real Estate Weekly – 4/25/14<br><em>The Daily Record</em><br>
    </h4>
    <p><br></p>
    <p><strong>Potomac Photonics moves to bwtech@UMBC</strong></p>
    <p>Potomac Photonics, a digital manufacturing firm specializing in micro technologies for the biotech and medical device industries, has relocated from Rockville to Catonsville in Baltimore County. The company’s headquarters, R&amp;D and digital fabrication production facilities are now in a 9,000-square-foot space at the bwtech@UMBC Research and Technology Park. Potomac Photonics uses lasers, 3D printing and other digital technologies to manufacture devices and parts at the molecular level for pharmaceutical testing, medical treatment and other uses. The company’s Potomac Digital Fabrication Center is the third university-related 3D fabrication lab in the county, joining the CCBC Fab Lab and Towson University Object Lab. The company currently employs 20 people, including engineers and technicians, and anticipates hiring additional workers at all levels.</p>
    <div>
    <br>Read more: <a href="http://thedailyrecord.com/2014/04/25/real-estate-weekly-42514/#ixzz30CYsNJ4t" rel="nofollow external" class="bo">http://thedailyrecord.com/2014/04/25/real-estate-weekly-42514/#ixzz30CYsNJ4t</a><br>
    </div>
    </div>
]]>
</Body>
<Summary>Real Estate Weekly – 4/25/14 The Daily Record      Potomac Photonics moves to bwtech@UMBC   Potomac Photonics, a digital manufacturing firm specializing in micro technologies for the biotech and...</Summary>
<Website>http://thedailyrecord.com/2014/04/25/real-estate-weekly-42514/#ixzz2zvejp5kg</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43953/guest@my.umbc.edu/cd43a2f26d010e7df4702016c4b5a5e3/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, 28 Apr 2014 13:05:56 -0400</PostedAt>
<EditAt>Mon, 28 Apr 2014 13:08:20 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="43952" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43952">
<Title>What Can You Do With Your Major?</Title>
<Tagline>Currently taking classes &amp; obtaining a degree...what's next?</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    
    <p><strong><u>What Can You Do With Your Major?</u></strong></p>
    
    <p><em>So you are taking classes and obtaining a degree but are you wondering
    what’s next? </em></p>
    
    <p>Well the Career Services has great resources to help you
    learn more about your major and career opportunities.</p>
    
    <p><strong>Major Sheets</strong> can
    help you look at some sample job titles within the various industries that
    match up to your degree</p>
    
    <p><strong>Links By Major </strong>provides
    you with websites and national organizations related to your major</p>
    
    <p><strong>Career Path</strong> can
    be used to view videos, suggested course selections and information on career
    paths that other UMBC students/alumni have taken; you will also find a sample
    resume for your major</p>
    
    <p><strong>The O*NET System </strong>is
    the nation’s primary source of occupational information. It can help you learn
    key attributes and characteristics of workers and occupations</p>
    
    <p>For more information, you can check out the following: </p>
    
    <p><a href="http://www.careers.umbc.edu/students/majorsheets/">http://www.careers.umbc.edu/students/majorsheets/</a></p>
    
    <p>or stop by Math/Psyc 212 to view our hard copy Career Resources,
    and/or schedule anappointment with a
    Career Specialist</p>
    
    <p><span> </span>We also suggest
    getting involved on campus and joining Academic and Departmental Clubs!</p>
    <p> <a href="http://osl.umbc.edu/orgs/">http://osl.umbc.edu/orgs/</a>
    </p>
    
    <p> </p>
    
    <p> </p>
    
    <p> </p>
    
    </div>
]]>
</Body>
<Summary>What Can You Do With Your Major?    So you are taking classes and obtaining a degree but are you wondering what’s next?     Well the Career Services has great resources to help you learn more...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43952/guest@my.umbc.edu/caff6446756e75ecce9eae32df6ecb07/api/pixel</TrackingUrl>
<Group token="careers">Career Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/careers</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/original.jpg?1411655278</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/large.png?1411655278</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/medium.png?1411655278</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/small.png?1411655278</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxsmall.png?1411655278</AvatarUrl>
<Sponsor>Career Services Center</Sponsor>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 28 Apr 2014 13:04:38 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43950" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43950">
<Title>As cyber attacks multiply, so do insurance policies</Title>
<Tagline>that cover damages - Zuly Gonzalez, CEO, LightPoint Security</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h4>As cyber attacks multiply, so do insurance policies that cover damages</h4>
                      <br>
              <div>
    <span>Ryan McDonald</span><br>Digital Producer- <em>Baltimore Business Journal</em><dl><dd>
                                
                  <br>
    </dd></dl>
          </div>
    
    
                    <p>In the wake of high-profile security breaches that have affected major companies and universities, a growing number of firms are pushing a relatively new product for businesses: cyber security insurance.</p>
    <p><span>American International Group</span> Inc. is the latest big name to  introduce a new offering. AIG this week announced it has started offering cyber security insurance to cover property damage and bodily injury.</p>
    <p>“More insurance companies are jumping on that bandwagon and starting to offer cyber insurance,” Zuly Gonzalez, CEO of Baltimore-based cyber firm Light Point Security said.</p>
    <p>The question for businesses is whether such policies are worth the money.</p>
    <br>Read more at <a href="http://www.bizjournals.com/baltimore/blog/cyberbizblog/2014/04/as-cyber-attacks-multiply-so-do-insurance-policies.html">http://www.bizjournals.com/baltimore/blog/cyberbizblog/2014/04/as-cyber-attacks-multiply-so-do-insurance-policies.html</a><br>
    </div>
]]>
</Body>
<Summary>As cyber attacks multiply, so do insurance policies that cover damages                                 Ryan McDonald Digital Producer- Baltimore Business Journal...</Summary>
<Website>http://www.bizjournals.com/baltimore/blog/cyberbizblog/2014/04/as-cyber-attacks-multiply-so-do-insurance-policies.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43950/guest@my.umbc.edu/416f28f1d7fdb9ab97c4891556aecea2/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, 28 Apr 2014 12:42:57 -0400</PostedAt>
<EditAt>Mon, 28 Apr 2014 12:44:24 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="43951" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43951">
<Title>Help Wanted: Women of Color Needed in Technology, Web Jobs</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h2>Women of Color Represent Fewer than 3 Percent of Employees in Technology Fields. Here’s How Some Successful Developers Are Changing That.</h2>
    <p>Smart cookie.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/04/poornima-vijayashanker-2.jpg" rel="nofollow external" class="bo"><img alt="Poornima Vijayashanker " src="http://blog.teamtreehouse.com/wp-content/uploads/2014/04/poornima-vijayashanker-2-225x300.jpg" width="225" height="300" style="max-width: 100%; height: auto;"></a><p>Poornima Vijayashanker</p>
    </div>
    <p>That’s the nickname kids called Poornima Vijayashanker in the first grade. Vijayashanker remembers being the only non-white kid in her class. But she stood out for another reason: She quickly became the best student, excelling in creative writing and math and routinely winning recognition during school awards ceremonies. The name stuck.</p>
    <p>“I liked that name. And from that point on, I cared less about my skin color and embraced being a smart cookie,” says Vijayashanker, 31, of Palo Alto, Calif. </p>
    <p>She taught herself to type at 10 on her mother’s typewriter. She took apart her first computer at 14. Her tech interests eventually led her to Duke University where she double-majored in electrical engineering and computer science.</p>
    <p>“Since I was accustomed to being different throughout my childhood, I wasn’t bothered when I stepped into my first class in engineering school and was surrounded by mostly male students,” she says.</p>
    <p><strong>Free trial on Treehouse:</strong> Do you want to learn web development and design? <a href="https://teamtreehouse.com/subscribe/plans?cid=2062&amp;utm_source=story-23364-women-color-technology-jobs&amp;trial=yes" rel="nofollow external" class="bo">Click here to try a free 14-day trial on Treehouse</a>.</p>
    <h2><strong>Enter the Femgineer</strong></h2>
    <p>After graduating in 2004, Vijayashanker moved to Silicon Valley and started her career as an R&amp;D engineer at Synopsys. It didn’t take long for Silicon Valley’s start-up environment to draw her in. She became a founding engineer at Mint.com where she became one of their first engineers and their only female engineer or “femgineer.”</p>
    <p><a href="http://press.kaptest.com/press-releases/to-support-diversity-in-technology-kaplan-test-prep-and-thoughtbot-announce-2000-scholarships-for-women-and-underrepresented-minority-participants-enrolling-in-metis-ruby-on-rails-bootcamp" rel="nofollow external" class="bo">Women comprise less than one-third</a> of all employees in the tech sector, according to Kaplan, an education company. Women contribute to just 1.2 percent of open source software.Being the only woman or woman of color engineer never dissuaded Vijayashanker from pursuing her career goals.</p>
    <p>“Too often we let what is different about us on the outside hold us back on the inside,” she says.</p>
    <p>While at Mint, she pursued creative writing and began writing on her <a href="http://www.femgineer.com" rel="nofollow external" class="bo">Femgineer</a> blog about engineering and entrepreneurship. After Intuit acquired Mint in 1999, her love for yoga led her to found <a href="http://www.bizeebee.com" rel="nofollow external" class="bo">BizeeBee</a>, which assists fitness businesses with customer management, and she works with private instructors and studios nationwide. Last year she transformed her Femgineer blog into a business.</p>
    <p>“Femgineer is an education company, which helps tech entrepreneurs and professionals build products and companies,” Vijayashanker says. “We have a few offerings: I run a monthly event series called the Femgineer Forum, I teach and mentor women online, men too, and we have some free resources like a YouTube channel full of talks and mini-courses and a free email course, which I run periodically.”</p>
    <p>Vijayashanker says at the time she entered the tech field, she didn’t think much about it being a male-dominated field. But over time she witnessed how it affected “the rate of innovation on teams, success in recruiting and retaining technical talent, and ultimately building companies.” But things are changing.</p>
    <p>“There is a great shift happening in tech now that didn’t exist 10 years ago when I was getting started,” Vijayashanker says. “That shift is the availability of resources like Treehouse that make it easy for anyone to learn how to code and other skills. Hence it doesn’t matter who you are, your background, or age, you just have to have the willingness to learn and become a smart cookie.”</p>
    <h2><strong>More Women of Color Needed in STEM</strong></h2>
    <p>Women held 200,000 of the 1.6 million engineering jobs in 2010. Hispanic women held 14,000 and black women 10,000, according to the <a href="http://www.nsf.gov/statistics/seind14/index.cfm/chapter-3" rel="nofollow external" class="bo">National Science Foundation</a>.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/04/TKellyLatest-2.jpg" rel="nofollow external" class="bo"><img alt="Tonicia Kelly " src="http://blog.teamtreehouse.com/wp-content/uploads/2014/04/TKellyLatest-2-269x300.jpg" width="269" height="300" style="max-width: 100%; height: auto;"></a><p>Tonicia Kelly</p>
    </div>
    <p>Tonicia Kelly credits her father, a programmer and analyst, for steering her toward STEM in her teen years. The senior user interface engineer from Atlanta focuses on client-side technologies, and over much of her career she’s been a backend and full-stack developer. She earned degrees in computer science and mathematics.</p>
    <p>“My education in STEM has afforded me the opportunity to work as a software engineer in both the public and private sectors for companies ranging from health care to network security,” Kelly says. “I have also spent 15 years doing freelance web design and development work while in college and as a side gig while working as a professional.”</p>
    <p>Only 4 percent of people in software development, application and systems jobs are African-Americans and 5 percent are Latino. Women of color <a href="http://press.kaptest.com/press-release/to-support-diversity-in-technology-kaplan-test-prep-and-thoughtbot-announce-2000-scholarships-for-women-and-underrepresented-minority-participants-enrolling-in-metis-ruby-on-rails-bootcamp" rel="nofollow external" class="bo">represent fewer than 3 percent</a> of employees in technology fields, Kaplan says.</p>
    <p>Kelly volunteers with <a href="http://www.blackgirlscode.com" rel="nofollow external" class="bo">Black Girls Code</a> in Atlanta and took part most recently in its “Build a mobile app in a day” event at Spelman College.</p>
    <p>To women who show an interest in STEM, she advises they “remain steadfast” at learning and growing in their chosen discipline. She says women should never shy away from reinventing themselves to stay relevant in their field or in transitioning to another STEM-related career and to always keep current with changes in the technology world to maximize opportunities.</p>
    <p>“If you have no technical background, I think the only way to get started is to dive in. Be hungry and ambitious and you will be successful!” Kelly says.</p>
    <h2><strong>No Tech Experience, No Problem</strong></h2>
    <p>You don’t need to be an engineer to be in tech. John Jay High School speech teacher Andrea Mancillas-Cabañas of San Antonio, Texas, learned how to build her first mobile app called <a href="https://itunes.apple.com/us/app/brides-xv-rio-grande-valley/id516459587?mt=8" rel="nofollow external" class="bo">Brides &amp; XV</a>. It took her eight months.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/04/Andrea-Cabanas-2.jpg" rel="nofollow external" class="bo"><img alt="Andrea Mancillas-Cabañas " src="http://blog.teamtreehouse.com/wp-content/uploads/2014/04/Andrea-Cabanas-2-239x300.jpg" width="239" height="300" style="max-width: 100%; height: auto;"></a><p>Andrea Mancillas-Cabañas</p>
    </div>
    <p>“I created the app to fill a need for people planning weddings and quinceañeras in the Rio Grande Valley,” Mancillas-Cabañas says. “I was planning my own wedding, and I realized that there were wedding apps for large cities; however, the Rio Grande Valley area didn’t have a wedding app available to quickly find and contact a vendor. I created it to make the wedding planning process easier for this demographic area.”</p>
    <p>Mancillas-Cabañas has since begun working on a website for a fitness group that she started called <a href="http://fitmommysa.blogspot.com/" rel="nofollow external" class="bo">Fit Moms &amp; Moms-to-Be</a>. She plans to expand the blog to a social media website for moms nationwide to connect with other moms who value fitness and health. Rather than hire a website designer, she is developing the website herself. She said her coding experience with mobile app development gave her the confidence to tackle tech-related endeavors on her own and helped her save money, too.</p>
    <p>“I didn’t realize that knowledge of coding, and not being fearful to learn coding, would help me so much with my interests,” Mancillas-Cabañas says.</p>
    <p>She has even taught her own students to code and mentored two students who created an app for their high school. She recently met with the district’s technology and communications departments to obtain approval for the app, expected some time in May.</p>
    <p>“My students truly believed in creating an app for John Jay High School, just as I believed in creating my Brides &amp; XV mobile app,” Mancillas-Cabañas says. “If more students, minorities or not, were given technology-related projects in which they have an interest, then we might have more minorities in the technology field.”</p>
    <p>The post <a href="http://blog.teamtreehouse.com/help-wanted-women-color-needed-technology-web-jobs" rel="nofollow external" class="bo">Help Wanted: Women of Color Needed in Technology, Web Jobs</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>Women of Color Represent Fewer than 3 Percent of Employees in Technology Fields. Here’s How Some Successful Developers Are Changing That.   Smart cookie.    Poornima Vijayashanker    That’s the...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/8ktB10yk7cE/help-wanted-women-color-needed-technology-web-jobs</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43951/guest@my.umbc.edu/fad89e6cb21971dfde061c3e70797fe7/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>business</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>features</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Tag>web-industry</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, 28 Apr 2014 12:28:56 -0400</PostedAt>
<EditAt>Mon, 28 Apr 2014 12:28:56 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="43949" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43949">
<Title>Curtis Menyuk receives IEEE Photonics Society Award</Title>
<Tagline>Received William Streifer Scientific Achievement Award</Tagline>
<Body>
<![CDATA[
    <div class="html-content"><p><strong>Curtis Menyuk</strong> (Professor of Computer Science and Electrical Engineering) recently received the IEEE Photonics Society William Streifer Scientific Achievement Award. The award is given to recognize an exceptional single scientific contribution which has had a significant impact in the field of lasers and electro-optics in the past 10 years. The award is given for a relatively recent, single contribution, which has had a major impact on the Photonics Society research community. It may be given to an individual or a group for a single contribution of significant work in the field. Menyuk received the award, “For seminal advances in the fundamental understanding and mitigation of polarization effects in high-performance optical fiber communication systems.” <br><br>Menyuk received the B.S. and M.S. degrees from MIT in 1976 and the Ph.D. from UCLA in 1981. He has worked as a research associate at the University of Maryland, College Park and at Science Applications International Corporation in McLean, VA. In 1986 he became an Associate Professor in the Department of Electrical Engineering at the University of Maryland Baltimore County, and he was the founding member of this department. In 1993, he was promoted to Professor. He was on partial leave from UMBC from Fall, 1996 until Fall, 2002. From 1996 – 2001, he worked part-time for the Department of Defense, co-directing the Optical Networking program at the DoD Laboratory for Telecommunications Sciences in Adelphi, MD from 1999 – 2001. In 2001 – 2002, he was Chief Scientist at PhotonEx Corporation. In 2008 – 2009, he was a JILA Visiting Fellow at the University of Colorado. For the last 25 years, his primary research area has been theoretical and computational studies of lasers, nonlinear optics, and fiber optic communications. He has authored or co-authored more than 230 archival journal publications as well as numerous other publications and presentations, and he is a co-inventor of 5 patents. He has also edited three books. The equations and algorithms that he and his research group at UMBC have developed to model optical fiber systems are used extensively in the telecommunications and photonics industry. He is a member of the Society for Industrial and Applied Mathematics. He is a fellow of the American Physical Society, the Optical Society of America, and the IEEE. He is a former UMBC Presidential Research Professor.<br></p></div>
]]>
</Body>
<Summary>Curtis Menyuk (Professor of Computer Science and Electrical Engineering) recently received the IEEE Photonics Society William Streifer Scientific Achievement Award. The award is given to recognize...</Summary>
<Website>http://umbcinsights.wordpress.com/2014/04/22/curtis-menyuk-william-streifer-scientific-achievement-award-coeit/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43949/guest@my.umbc.edu/292e43702db729e557bb63fcfda6faa7/api/pixel</TrackingUrl>
<Group token="retired-95">College of Engineering and Information Technology</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-95</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xsmall.png?1496851664</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/original.jpg?1496851664</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xxlarge.png?1496851664</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xlarge.png?1496851664</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/large.png?1496851664</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/medium.png?1496851664</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/small.png?1496851664</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xsmall.png?1496851664</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xxsmall.png?1496851664</AvatarUrl>
<Sponsor>College of Engineering and Information Technology</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 28 Apr 2014 11:37:45 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43948" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43948">
<Title>UMBC scientists receive Maryland Innovation grant from TEDCO</Title>
<Tagline>to advance bioremediation of PCB-contaminated sediments</Tagline>
<Body>
<![CDATA[
    <div class="html-content"><p>Professor Kevin Sowers, Professor of Marine Biotechnology at the Institute of Marine and Environmental Technology (IMET), and <strong>Professor Upal Ghosh</strong>, at the University of Maryland Baltimore County, have received a $100,000 grant from the Maryland Innovation Initiative (MII). The grant will fund research to that will ameliorate the environmental harms of PCB’s. The program is an initiative of the Technology Council of Maryland (TEDCO) created in 1998 to spur commercialization of scientific research in Maryland as part of the state’s efforts to foster economic development through academic research.<br><br>Sowers is a global leader in environmental science and has pioneered a method that uses activated carbon pellets seeded with microorganisms that degrade the concentration of polychlorinated biphenyls (PCBs) in sediments. In recent laboratory experiments, the cultures Sowers created resulted in over 80% reduction in the PCB mass after treatment.<br><br>“Our hope is that this method for treating PCB’s will have a tangible impact in restoring previously degraded areas – both on land and in bodies of water,” says Sowers. “PCB’s have long been a harmful and largely intransigent pollutant and our work is intended to address serious health impacts these chemicals have on people, animals and the environment.”<br><br>Sowers is collaborating in this work with <strong>Upal Ghosh</strong>, a professor at the Department of Chemical, Biochemical, and Environmental Engineering at UMBC. “The magnitude of PCB sediment contamination and associated water quality problems in the United States is reflected in more than 3,200 state and local advisories that have warned the public about of the health impacts of consuming contaminated fish. These warnings cover 24% of total river miles throughout the United States,” Ghosh says. “The advisories include 100% of the Great Lakes and 35% of all other lakes nationwide.” PCBs are frequently reported as the leading contaminants at impacted sites. Current remediation technologies are expensive, destructive to environmentally sensitive areas, and difficult to coordinate with local activities. The technology proposed by Sowers and Ghosh addresses existing challenges and is especially suitable for environmentally sensitive sites such as wetlands and difficult-to-reach areas under-pier structures in contaminated harbors. This technology advances an in-situ remediation approach using activated carbon that has been recently developed by Ghosh and commercialized through a startup company Sediment Solutions.<br><br>The Maryland Innovation Initiative (MII) was created as a partnership between the State of Maryland and five Maryland academic research institutions (Johns Hopkins University, Morgan State University, University of Maryland College Park, University of Maryland Baltimore and University of Maryland Baltimore County.) The program is designed to promote commercialization of research conducted between and among the partnership universities and it leverages each institution’s unique strengths.<br><br>“The MII program is critically important to our partner universities and the citizens of Maryland,” noted Russell Hill, IMET Director, “because it facilitates the transformation of basic science into practical and far-reaching applications. We are grateful for TEDCO’s support and foresight in addressing this important environmental issue and are proud of the excellent research being done by Dr. Sowers and Dr. Ghosh.”<br><br><strong>TEDCO<br><br></strong>The Maryland State Legislature created TEDCO in 1998 to facilitate the transfer and commercialization of technology from Maryland’s research universities and federal labs into the marketplace and to assist in the creation and growth of technology-based businesses in all regions of the State. TEDCO is an independent organization that strives to be Maryland’s leading source for entrepreneurial business assistance and seed funding for the development of startup companies in Maryland’s innovation economy.<br><br><strong>INSTITUTE OF MARINE AND ENVIRONMENTAL TECHNOLOGY<br><br></strong>Located in Baltimore’s Inner Harbor, the Institute of Marine and Environmental Technology is a strategic alliance involving scientists at the University of Maryland Center for Environmental Science, the University of Maryland Baltimore and the University of Maryland Baltimore County. Scientists are engaged in cutting-edge research in microbiology, molecular genetic analysis and biotechnology, using marine resources to develop new drug therapies, alternative energy and other innovations to improve public health and economic opportunities. IMET also contributes to sustainable marine aquaculture and fisheries in the Chesapeake Bay and other marine ecosystems.</p></div>
]]>
</Body>
<Summary>Professor Kevin Sowers, Professor of Marine Biotechnology at the Institute of Marine and Environmental Technology (IMET), and Professor Upal Ghosh, at the University of Maryland Baltimore County,...</Summary>
<Website>http://umbcinsights.wordpress.com/2014/04/23/umbc-scientists-receive-maryland-innovation-grant-from-tedco-to-advance-bioremediation-of-pcb-contaminated-sediments/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43948/guest@my.umbc.edu/71441f45c134fce2bc2e5397f14df3ab/api/pixel</TrackingUrl>
<Group token="retired-95">College of Engineering and Information Technology</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-95</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xsmall.png?1496851664</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/original.jpg?1496851664</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xxlarge.png?1496851664</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xlarge.png?1496851664</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/large.png?1496851664</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/medium.png?1496851664</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/small.png?1496851664</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xsmall.png?1496851664</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xxsmall.png?1496851664</AvatarUrl>
<Sponsor>College of Engineering and Information Technology</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 28 Apr 2014 11:32:56 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43947" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43947">
<Title>Marie desJardins Named American Council on Education Fellow</Title>
<Body>
<![CDATA[
    <div class="html-content">Marie desJardins, computer science and electrical engineering, has been selected as a participant in the American Council on Education’s (ACE) Fellows Program. desJardins was one of just 31 faculty and administrators chosen from across the United States this year.<br><br>The ACE Fellows Program is the premier program for “identifying and preparing the next generation of senior leadership for the nation’s colleges and universities.” More than 300 past ACE fellows have served as chief executive officers of colleges or universities and over 1,300 have served as provosts, vice presidents and deans.<br><br>During the year-long program, desJardins will work with the president and senior officials at a host institution, while also completing a project of pressing interest to UMBC. <br><br>Click <a href="http://www.acenet.edu/news-room/Pages/ACE-Names-31-Faculty-and-Administrators-to-Fellows-Program.aspx" rel="nofollow external" class="bo"><u>here</u></a> to read more about the ACE Fellows Program and <a href="https://www.acenet.edu/news-room/Pages/ACE-Fellows-Class-of-2014-15.aspx?utm_source=WhatCounts+Publicaster+Edition&amp;utm_medium=email&amp;utm_campaign=ACE+Names+31+Faculty+and+Administrators+to+Fellows+Program+&amp;utm_content=found+here" rel="nofollow external" class="bo"><u>here</u></a> to see the full list of fellows.</div>
]]>
</Body>
<Summary>Marie desJardins, computer science and electrical engineering, has been selected as a participant in the American Council on Education’s (ACE) Fellows Program. desJardins was one of just 31...</Summary>
<Website>http://umbcinsights.wordpress.com/2014/04/23/marie-desjardins-csee-named-an-american-council-on-education-fellow/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43947/guest@my.umbc.edu/66b03ec949fa88ac64f10c712b056086/api/pixel</TrackingUrl>
<Group token="retired-95">College of Engineering and Information Technology</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-95</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xsmall.png?1496851664</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/original.jpg?1496851664</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xxlarge.png?1496851664</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xlarge.png?1496851664</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/large.png?1496851664</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/medium.png?1496851664</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/small.png?1496851664</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xsmall.png?1496851664</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/095/c2a784a6cda726ef5f845e9192adb64b/xxsmall.png?1496851664</AvatarUrl>
<Sponsor>College of Engineering and Information Technology</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 28 Apr 2014 11:29:06 -0400</PostedAt>
</NewsItem>

</News>
