<?xml version="1.0"?>
<News hasArchived="true" page="8242" pageCount="10733" pageSize="10" timestamp="Mon, 27 Jul 2026 00:00:13 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8242">
<NewsItem contentIssues="true" id="36352" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36352">
<Title>New Relic &amp; JMeter &#8211; Perfect Performance Testing</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <a href="http://rss.buysellads.com/click.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=34978&amp;c=1902045942" rel="nofollow external" class="bo"><img src="http://rss.buysellads.com/img.php?z=1260013&amp;k=d754f1e9ba63a736ba8ff5ece958f7dd&amp;a=34978&amp;c=1902045942" alt="" style="max-width: 100%; height: auto;"></a><p>Following on from the great introductory articles featured recently on Nettuts+, this article looks to show how you can take New Relic to the next level. As a performance monitoring tool New Relic is fantastic, but what about performance <em>testing</em>, before you go live. That’s where JMeter comes in to play. In this tutorial, you will see how we can stress test our application under realistic load, and combine the output of JMeter and New Relic to give you confidence in your applications performance, before releasing into a production environment.</p>
    <p> </p>
    <p> Why wait until deployment to see how your application is going to fare against real world traffic.  If there is a bottleneck in your code that degrades the user experience, do you really want that to go live? What if we could find these bottlenecks early, improve performance and deliver a great application to our end users the first time, <em>and</em> maintain that going forward with regular benchmarking.  JMeter and New Relic together can give you this perfect performance testing suite.</p>
    <hr>
    <h2>Demo Application</h2>
    <p> Before we can begin using New Relic and JMeter we need a simple app to do some performance testing on! So, lets write a simple Ruby Sinatra app that has a service we can test. I won’t go into the creation of this application too much, as you can read up on Sinatra in other articles on Nettuts+.</p>
    <p> The application will be faked a little, to allow us to see some interesting results along the lines of what we may see in various applications. We will write a service that takes an id, and depending on that id will return a value either straight away or with a delay. This will show us what can happen if requests are handled quickly or slowly and the impact this has on your apps overall performance as many users make requests.</p>
    <p> Here is the code that defines the services:</p>
    <pre>             require 'sinatra'&#x000A;                 require 'puma'&#x000A;                 require 'newrelic_rpm'&#x000A;    &#x000A;                 module Example&#x000A;                 class App &lt; Sinatra::Base&#x000A;                 get '/example/:id' do |id|&#x000A;                 result = id&#x000A;                 if id == '1'&#x000A;                 result = "This is our id: #{id}"&#x000A;                 end&#x000A;                 if id == '2'&#x000A;                 sleep 3&#x000A;                 result = "We waited for id: #{id}"&#x000A;                 end&#x000A;                 result&#x000A;                 end&#x000A;                 end&#x000A;                 end&#x000A;    </pre>
    <p> As you can see this is clearly a contrived example, but the idea is that we have some fast responding services and one with a slight delay. We can now use this app and start to write our performance testing plan in JMeter. Lets first get JMeter installed on our machine.</p>
    <hr>
    <h2>Hooking Into New Relic</h2>
    <p>Getting your application reporting to New Relic is a very simple process.  New Relic support Ruby, Python, PHP, Java and other platforms, featuring easy to follow guides for all.  In the case of Ruby an Sinatra, it is literally a four step process:</p>
    <ul>
    <li>Add the ‘newrelic_rpm’ gem to your GemFile and ‘bundle install’.</li>
    <li>In your main ‘app.rb’ where we defined the service route above, add a “require ‘newrelic_rpm’” line.</li>
    <li>Download the ‘newrelic.ini’ file from your account in New Relic and place in a config folder in your app.<br> (Ensuring Monitor Mode is set to ‘true’ for Development if running locally.)</li>
    <li>Rackup your application and see it listed in New Relic!</li>
    </ul>
    <p> Once you have follow these simple steps, you should start to see some data coming through to New Relic as you hit your app with some traffic. You’ll know it’s working when the app is listed and turns green.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/newrelic-screen-1.png" alt="newrelic-screen-1" width="600" height="420" style="max-width: 100%; height: auto;"><br> <p> For the sake of completeness, I will just list a brief overview of the main view New Relic provides for your applications. The design on New Relic is mainly to monitor applications that are in production environments with live traffic.  The overview screen provides an at a glance look at the current status of your application and how it is responding to customers requests.</p>
    <p> The screen can be broken down as follows:</p>
    <ol>
    <li>
    <strong>Response Time</strong> – this is the average response time of calls across your application.</li>
    <li>
    <strong>Apdex</strong> – New Relics metric for customer experience.  A score more towards 1 indicates the vast majority of user’s<br> requests are falling within a reasonable time. The apdex can be useful for alerting when it falls below as set number.</li>
    <li>
    <strong>Throughput</strong> – the requests per minute (RPM) being made to your application.</li>
    <li>
    <strong>Web Transactions</strong> – the different routes being accessed in your application. These are ordered by the most time consuming requests.</li>
    <li>
    <strong>Error rate</strong> – the percentage of requests causing an error.  You can click through and debug individual errors here.</li>
    </ol>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/newrelic-screen-2.png" alt="newrelic-screen-2" width="600" height="316" style="max-width: 100%; height: auto;"><br> <hr>
    <h2>What Is JMeter?</h2>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-logo.jpg" alt="jmeter-logo" width="460" height="180" style="max-width: 100%; height: auto;"><br> <p><a href="http://jmeter.apache.org" rel="nofollow external" class="bo">JMeter</a> is a Java application that allows you to build up test plans that can stress test your application. You can set everything from the amount of simultaneous users of the service, to the amount of requests they make a second. You can even ramp up the requests to see how your app deals with changing load, just as it could in real world deployment.</p>
    <p> As part of this tutorial, I will show the basics of getting a test plan running against your applications, but with a wealth of plugins and documentation there are plenty of tools to handle any kind of performance testing you may need.</p>
    <hr>
    <h2>Installation and Usage</h2>
    <p>Installation is fairly straightforward and here we will list instructions for Mac and Linux.</p>
    <h3>Mac OS X</h3>
    <p>On a Mac JMeter can be installed very easily via <a href="http://brew.sh" rel="nofollow external" class="bo">Brew</a>. Once you have Brew try the<br> following command:</p>
    <pre>        brew install jmeter&#x000A;    </pre>
    <h3>Linux</h3>
    <p>On a Linux machine, simply <a href="http://jmeter.apache.org/download_jmeter.cgi" rel="nofollow external" class="bo">download</a> from the JMeter downloads page. Then, simply follow the instructions provided.</p>
    <h3>All Platforms</h3>
    <p> Once you have the main JMeter package, we also need to install the standard set of plugins. We will be making use of one plugin in particular later on, therefore we need to add these in to be able to use it. The standard plugin set can be obtained from this link: <a href="http://jmeter-plugins.org/downloads/file/JMeterPlugins-1.0.0.zip" rel="nofollow external" class="bo">http://jmeter-plugins.org/downloads/file/JMeterPlugins-1.0.0.zip</a> Once downloaded extract into the JMeter package which is located at: “/usr/local/Cellar/jmeter/” on a Mac, and wherever you installed it to on Linux.</p>
    <hr>
    <h2>Analysis In New Relic – First We Need a JMeter Test Plan!</h2>
    <p>So now we have JMeter installed and our simple application, let’s test this app and see how it behaves. When you fire up JMeter you will get this screen:</p>
    <p> Now, let’s set the base URL for our requests. Right click on <strong>“Test Plan”</strong> in the left pane, and choose <strong>‘Add -&gt; Config Element -&gt; HTTP Request Default’</strong>. We can now enter our base URL in here like so.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-2.png" alt="jmeter-screen-2" width="600" height="381" style="max-width: 100%; height: auto;"><br> <p> We can now add the amount of threads or “users” of our system. To do this right click on <strong>“Test Plan”</strong> again and choose <strong>‘Add -&gt; Threads (Users) -&gt; Thread Group’</strong>. We can then enter the users, in this case 20. Make sure to choose the loop count forever option, as this will allow us to control the time and number of requests via a plugin later.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-3.png" alt="jmeter-screen-3" width="600" height="381" style="max-width: 100%; height: auto;"><br> <p> Once we have the the thread group we can now define the requests we want to make to our application that we are going to performance test. To do this we will add “HTTP Request” to our “Test Plan”. This can found by right clicking on the <strong>“Thread Group”</strong> and choosing <strong>“Add -&gt; Sampler -&gt; HTTP Request”</strong>. We can then define the request to make in the pane as below.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-4.png" alt="jmeter-screen-4" width="600" height="380" style="max-width: 100%; height: auto;"><br> <p> You can see how we dont need to define the base URL, as we did that earlier on and instead just need to add the path for the request. In this case the path is to our ‘example/1′ response. You will also notice I have gone ahead and added the other two requests along with the result and graphing panes, which we will use to analyse the results of the tests. By now you should of got the hang of adding elements and they can be easily found in the menu from their names. The main two of interest are the “Throughput Shaping Timer” and the “Composite Graph”.</p>
    <p> The Shaping Timer enables us to map how we want the requests to be made to our application over time. For example, we can configure one request per second for 60 seconds, and then ramp up to five requests a second for 60 seconds and see the effect this has on our response times. Let’s take a look how we configure that in the Shaping Timer pane.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-5.png" alt="jmeter-screen-5" width="600" height="380" style="max-width: 100%; height: auto;"><br> <p> So, by going in and adding each row, you can define the amount of request to make and for how long it should do this for. We can then view our results using the “Composite Graph”, which shows the transactions made per second against the response time of our requests. This requires minimal configuration, simply adding the two graphs we will combine, then in the settings for the composite graph, add in the graphs we require like so:</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-6.png" alt="jmeter-screen-6" width="600" height="381" style="max-width: 100%; height: auto;"><br> <p> That’s it! We can now run our test plan and start seeing some results. Hit play towards the top of the screen and then click on the composite graph. It will start to ploy out the results as they come in and you can get a picture of how your application is responding. Let’s look at our results.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-7.png" alt="jmeter-screen-7" width="600" height="381" style="max-width: 100%; height: auto;"><br> <p> We can clearly see the jump in requests at one minute has a fairly sizeable impact on our application. For the first minute the requests are stable at one per second and give response times of around two/three ms. However, when we increase to five, the response times increase slightly hitting five and five m/s. Obviously these are very quick response times in the real world, but we are just showing here how we can increase the load and see the affect, if any, this will have.</p>
    <p> Let’s compare these results with the service that has a delay of three seconds. How will that cope with the increase in load? To switch to example two, right click on example one and choose toggle. This will disable that request, then do a toggle on example two and that will enable it. Be sure to click the <strong>“Clear All”</strong> (Sweeping brush) icon at the top to clear the last run’s results, then hit play.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-8.png" alt="jmeter-screen-8" width="600" height="381" style="max-width: 100%; height: auto;"><br> <p> Even with the three second delay, the server managed the requests quite well and we see much the same in the way of results for this service. Only a few millisecond increase as the requests increase. With such a simple service, this is to be expected.</p>
    <hr>
    <h2>New Relic Analytics</h2>
    <p> The real power now comes with combining this data with New Relic. We could for example, set JMeter to run for half an hour with different variations of load and then use New Relic to analyse the results and use its drill down functionality to look for bottlenecks in the application. These can then be fine tuned, increasing your performance before delivering to your customers.</p>
    <p> Again, I won’t go into the setup of New Relic as this is covered in other recent articles on Nettuts+ (See <a href="http://net.tutsplus.com/tutorials/getting-started-with-newrelic-in-30-minutes/" rel="nofollow external" class="bo">here</a>). But once your application is connected, it’s simply a case of generating the load through JMeter and logging into New Relic to see the results. For this run, I have set up the Shaping Timer to run our load for 30 minutes ramping up the requests from five to 10 and then 15 per second. This should give us some reasonable traffic to look at in New Relic.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-9.png" alt="jmeter-screen-9" width="600" height="379" style="max-width: 100%; height: auto;"><br> <p> Once the JMeter test has run, we can take a look into New Relic which we can now see has stat on the traffic following through the app.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-10.png" alt="jmeter-screen-10" width="600" height="301" style="max-width: 100%; height: auto;"><br> <p> This clearly shows the ramping up of the requests, at its peak hitting around 400 request per minute (RPM) and the response times remaining stable at three seconds. We can delve deeper into the stats and look into the transaction we are making. If we click through to the Web Transactions view, we can see the analysis New Relic has done on just this part of the application. If the code that handled the request had more layers to it, such as methods to call other systems to get data before presenting back to the user, we would see more of a breakdown.</p>
    <p>For example, on the left it shows we spent 100% of the request time, in that call. If we had multiple stage such as a call to a database, we may see a high percentage there and we would know to optimise the query to the database to increase performance.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-11.png" alt="jmeter-screen-11" width="600" height="352" style="max-width: 100%; height: auto;"><br> <p> New Relic also provides a great reporting view on your applications data, called Scalability.  This report can be really useful to monitor your applications ability to handle increasing load.  The graph shows your response time against the requests per minute, and you can clearly see if there is any degradation in the response time as they increase.  This is great tool and one you should refer to often both in performance testing like this, but also in your performance monitoring of your production application.</p>
    <p> In our example below, it is clear that the application is capable of maintaining a three second response time even as the RPM increases.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-12.png" alt="jmeter-screen-12" width="600" height="348" style="max-width: 100%; height: auto;"><br> <p> New Relic also provides another view, that of Capacity.  This allows us to look at how much of the available resources our application is making use of.  It indicates to the developer whether the number of instances serving your application is enough to handle the kind of load you are getting. This is vital to ensure you are not running near capacity and have the ability to handle any spikes in traffic that may occur outside your normal traffic flow. New Relic summarise the page well, next to the analysis of our application here, which we can see is fairing well even on this single instance.</p>  <img src="http://cdn.tutsplus.com/net.tutsplus.com/uploads/2013/09/jmeter-screen-13.png" alt="jmeter-screen-13" width="600" height="352" style="max-width: 100%; height: auto;"><br> <hr>
    <h2>Conclusion</h2>
    <p> The aim of this tutorial was to show you how to quickly setup JMeter testing plans for your application, so you can test drive the performance of your application before delivering to your customers.  This approach can be used in new projects, ensuring the application you are going to deliver is ready for real world traffic.  It can also be used on legacy applications, giving you a baseline performance indicator so that as you make changes going forward you can see whether your application’s performance is improving or decreasing.</p>
    <p>By leveraging the great tools provided by New Relic, you can both monitor your application online in real time, but also take its toolset and apply it to your own offline analysis. This will give you, the developer, confidence in your product both as it is being developed and when it is released to the wild.</p>
    </div>
]]>
</Body>
<Summary>Following on from the great introductory articles featured recently on Nettuts+, this article looks to show how you can take New Relic to the next level. As a performance monitoring tool New Relic...</Summary>
<Website>http://feedproxy.google.com/~r/nettuts/~3/QRu7agBvaPs/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36352/guest@my.umbc.edu/6d40e8f40c2af97d9120ec004de78451/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>new-relic</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tools-and-tips</Tag>
<Tag>tutorials</Tag>
<Tag>wed</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 11:13:41 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 11:13:41 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36350" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36350">
<Title>UMBC Internship</Title>
<Tagline>Sustainability Outreach and Communications Intern</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong><span>Sustainability Outreach and Communications Intern:</span></strong></p>
    <p><span> </span></p>
    <p><span>Intern will report to Sustainability Coordinator. The position will be 8 hours per week. Hours may vary to accommodate meetings, events, and interviews. Additional tasks may be assigned. Intern must demonstrate evidence of interest and background in sustainability and must feel comfortable reaching out to professionals, peers, and faculty. Intern must be a current UMBC student. Please submit a cover letter detailing: 1) why this position interests you 2) what related skills and experiences you possess 3) any other groups, activities, jobs or time commitments you are currently engaged in by September 26<span>th</span>.</span></p>
    <p><span> </span></p>
    <p><span>The sustainability outreach and communications intern will assist in developing communication outreach around the following topics in coordination with staff, groups, and committees on campus:</span></p>
    <p><span><br></span></p>
    <p><span>Sustainability Related Accomplishments and Champions</span></p>
    <p><span>Energy Conservation Efforts</span></p>
    <p><span>Transportation</span></p>
    <p><span>Research and Education</span></p>
    <p><span>Recycling, Waste, and Compost</span></p>
    <p><span><br></span></p>
    <p><span>Search job number 9260919 in UMBC</span><em>works.</em></p>
    </div>
]]>
</Body>
<Summary>Sustainability Outreach and Communications Intern:     Intern will report to Sustainability Coordinator. The position will be 8 hours per week. Hours may vary to accommodate meetings, events, and...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36350/guest@my.umbc.edu/20864dff9c5b3346fc75204b440e3a44/api/pixel</TrackingUrl>
<Group token="shriver">The Shriver Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/shriver</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/original.jpg?1441293069</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xlarge.png?1441293069</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/large.png?1441293069</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/medium.png?1441293069</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/small.png?1441293069</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xsmall.png?1441293069</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/008/0bfad113286cf6b1bc6dedbdbfc7e5ef/xxsmall.png?1441293069</AvatarUrl>
<Sponsor>Intern, Co-op, Research &amp; Service-Learning</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 11:09:10 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36347" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36347">
<Title>PepsiCo is recruiting graduating seniors!</Title>
<Tagline>A Career in Sales</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p>PepsiCo. will be hosting an invite only recruiting event at
    their local Pepsi facility on Wednesday, October 9, 2013. The event is geared
    towards students with interest/experience in sales.  PepsiCo. is considering students with December
    2013/May 2014/August 2014 graduation dates.</p>
    
    <p><span>For more detailed information and to apply search job number
    9260710 in UMBC</span><em>works</em><span>.</span></p>
    <p>Why PepsiCo?</p>
    <p>PepsiCo offers the world's largest portfolio of billion-dollar food and beverage brands, including 22 different product lines that generate more than $1 billion in annual retail sales each. Our main businesses -- Quaker, Tropicana, Gatorade, Frito-Lay, and Pepsi Cola – also make hundreds of other enjoyable foods and beverages that are respected household names throughout the world. With net revenues of approximately $65 billion, PepsiCo's people are united by our unique commitment to sustainable growth by investing in a healthier future for people and our planet, which we believe also, means a more successful future for PepsiCo. We call this commitment Performance with Purpose: PepsiCo's promise to provide a wide range of foods and beverages for local tastes; to find innovative ways to minimize our impact on the environment, including conserving energy and water usage, and reducing packaging volume; to provide a great workplace for our associates; and to respect, support and invest in the local communities where we operate.</p>
    <p></p>
    
    </div>
]]>
</Body>
<Summary>PepsiCo. will be hosting an invite only recruiting event at their local Pepsi facility on Wednesday, October 9, 2013. The event is geared towards students with interest/experience in sales. ...</Summary>
<AttachmentKind>Document</AttachmentKind>
<AttachmentUrl>https://assets3-my.umbc.edu/system/shared/attachments/cb012d241c8c8cfee0f954b524eb1579/6a66d7ce/news/000/036/347/dc2ff5f1be7effb525b145bed225e336/PAB Sales FT.docx?1380553630</AttachmentUrl>
<Attachments>
<Attachment kind="Document" url="https://my3.my.umbc.edu/posts/36347/attachments/11240"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36347/guest@my.umbc.edu/bc0ad596f57370686a749e43700d450a/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://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/347/4dd3479a7d8a13e22518a22202f4da7b/xxlarge.jpg?1380551961</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/347/4dd3479a7d8a13e22518a22202f4da7b/xlarge.jpg?1380551961</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/347/4dd3479a7d8a13e22518a22202f4da7b/large.jpg?1380551961</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/347/4dd3479a7d8a13e22518a22202f4da7b/medium.jpg?1380551961</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/347/4dd3479a7d8a13e22518a22202f4da7b/small.jpg?1380551961</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/347/4dd3479a7d8a13e22518a22202f4da7b/xsmall.jpg?1380551961</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/347/4dd3479a7d8a13e22518a22202f4da7b/xxsmall.jpg?1380551961</ThumbnailUrl>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 11:05:14 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 11:07:15 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36346" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36346">
<Title>Northrop Grumman, bwtech@UMBC Graduate First Three Companies</Title>
<Tagline>From Cync Program</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h5>Northrop Grumman, bwtech@UMBC Graduate First Three Companies From Cyber Cync Program</h5>
    			<p>2013-09-27T12:00:00-0700<br></p>
    <p>BALTIMORE – Sept. 27, 2013 – Northrop Grumman Corporation (NYSE:NOC) and the University of Maryland, Baltimore County's Research Park Corporation - also known as bwtech@UMBC - hosted a ceremony today for the first graduating class of the Cyber Cync Program: AccelerEyes, Five Directions and Oculis Labs.
        </p>
    <div>
    <div>
    <p>The event also marked the expansion of bwtech@UMBC's Cyber Incubator program, a sign of the program's success and the positive economic impact both initiatives are making on the region.</p>
        <p>Highlighting the event, which was held at bwtech@UMBC Research and Technology Park, were remarks by Kathy Warden, corporate vice president and president, Northrop Grumman Information Systems; Dr. Freeman Hrabowski, president, UMBC; and Kevin Kamenetz, Baltimore County Executive.</p>
        <p>"We're proud to be a part of this endeavor and congratulate the Cync companies," said Warden. "When seeking the most innovative approaches to mitigating the cyber threat, academia and small business bring unique insights to a cyber leader like Northrop Grumman. This partnership with UMBC and the Cync companies is generating the type of game-changing technologies that keep us ahead in the cyber battle, while helping us to cultivate tomorrow's cyber workforce."</p>
        <p>"The graduation of the first three companies from this program demonstrates the potential of university and corporate partnerships to grow Maryland's economy and support young businesses," Hrabowski said. "UMBC's research park is playing an increasing role in developing the cybersecurity sector in Maryland, and we couldn't have a better partner in that work than Northrop Grumman."</p>
        <p>The Cync program, founded in March 2011, is an innovative partnership between Northrop Grumman and bwtech@UMBC that focuses on commercializing technology to protect the nation from a growing range of cyber threats. The Northrop Grumman Cync Program builds on bwtech@UMBC's successful business-incubation framework by offering a "scholarship program" for small businesses with the most promising cybersecurity ideas. Participants in the program draw on UMBC's research expertise and Northrop Grumman resources to develop tools that will secure and protect our nation's networks.</p>
        <p>Participants also cut the ribbon on a 3,353 square-foot expansion of the bwtech@UMBC Cyber Incubator. The new space, called the CyberHive, will include five incubator labs, two shared offices, a conference room, coffee bar, kitchen and coworking space. In total, there are 48 cybersecurity companies in the bwtech@UMBC community making it the largest cluster of early-stage cybersecurity companies at a university-affiliated research park in the nation.</p>
        <p>Sen. Barbara Mikulski and Rep. Elijah E. Cummings, made the following comments regarding today's event:</p>
        <p>"Maryland is the global epicenter of cyber security, leading the way in finding cyber tech solutions that make our country safer and preparing our cyber warriors for jobs that make our economy stronger," said Mikulski. "Because of Maryland's incredible federal assets, dynamic private sector and academic institutions, America's cyber defense starts in Maryland. The partnership between institutions like UMBC and Northrop Grumman for the Cyber Cync Program is so important for Maryland and the country. It builds the cyber workforce and makes sure that our students are ready to fill the jobs of today and the jobs of tomorrow."</p>
        <p>"I am thrilled to see the success of the Cyber Cync Program, demonstrated by the first round of graduates celebrated today, and the expansion of UMBC's Cyber Incubator," said Cummings. "As technology's role in society continues to grow, the cybersecurity problems we face will only become more difficult. Innovative partnerships like Cync play a critical role in ensuring we are able to find solutions to those problems now, and in the future."</p>
        <p>
        <strong>AccelerEyes</strong></p>
        <p>
        <a href="http://www.accelereyes.com/" rel="nofollow external" class="bo">http://www.accelereyes.com/</a></p>
        <p>AccelerEyes develops and markets fast, simple GPU software 
    (graphical processor unit.) A GPU is a separate processor that drives 
    the screen on a computer. Developers that use their software are able to
     take advantage of the power of the GPU. AccelerEyes has thousands of 
    customers in over 40 countries around the globe. These customers come 
    from a wide range of industries, including defense and intelligence, 
    life science, oil and gas, finance, manufacturing, media, and others, 
    and have found success accelerating numerous application types, 
    including math and numerical algorithms, image processing, signal 
    processing, statistics, optimization, and more.</p>
        <p>
        <strong>Five Directions</strong></p>
        <p>Five Directions, Inc. is a veteran owned small business focusing 
    on advanced information security research and development. Five 
    Directions focuses on developing and deploying technology for commercial
     and government customers to automatically detect, identify damage, and 
    eradicate advanced cyber-threats.</p>
        <p>
        <strong>Oculis Labs</strong></p>
        <p>
        <a href="http://www.oculislabs.com/" rel="nofollow external" class="bo">http://www.oculislabs.com/</a></p>
        <p>Computer displays are the most overlooked security vulnerability 
    in the world today. Oculis Labs was founded in 2007 to address that 
    problem. The data is digital, so the protection should be digital too. 
    Oculis Labs has built security software that protects data in use on the
     computer display.</p>
        <p>
        <strong>About Northrop Grumman and the University System of Maryland</strong></p>
        <p>Northrop Grumman has a longstanding relationship with the 
    university system of Maryland. In addition to the Cync program with 
    UMBC, The Northrop Grumman Foundation supports the UMBC 
        <a href="http://cybersecurity.umbc.edu/cyberscholars/" rel="nofollow external" class="bo">CyberScholars</a>
     program, an initiative that aims to build a pipeline of qualified cyber
     pros with special emphasis on increasing the number of women and 
    underrepresented minorities. The company is also funding an initiative 
    at the University of Maryland College Park, to establish the 
        <a href="http://www.aces.umd.edu/" rel="nofollow external" class="bo">Advanced Cybersecurity Experience for Students</a> program, the nation's first undergraduate honors program in cybersecurity, which opened this week.</p>
        <p>
        <strong>About bwtech@UMBC</strong></p>
        <p>
        <strong>bwtech@UMBC</strong>, 
        <a rel="nofollow external" class="bo">www.bwtechumbc.com</a>
     is a 71-acre research and technology community at the University of 
    Maryland, Baltimore County (UMBC). With over 500,000 square feet of 
    office and laboratory space, it is home to more than 115 technology and 
    life sciences companies and research groups at all stages of 
    development. bwtech@UMBC offers collaboration with university faculty 
    and students and enjoys a strategic and convenient location, close to 
    downtown Baltimore, BWI Thurgood Marshall Airport, and Washington, D.C. 
    Its annual economic impact on the state is estimated to be over $300 
    million.</p>
        <p>
        <strong>About Northrop Grumman</strong></p>
        <p>Northrop Grumman is a leading global security company providing 
    innovative systems, products and solutions in unmanned systems, cyber, 
    C4ISR, and logistics and modernization to government and commercial 
    customers worldwide. Please visit 
        <a href="http://www.northropgrumman.com/" rel="nofollow external" class="bo">www.northropgrumman.com</a> for more information.</p>
    <p>CONTACT:<br>Marynoele Benson<br>Northrop Grumman Corporation<br>703-556-1651<br><a href="mailto:marynoele.benson@ngc.com">marynoele.benson@ngc.com</a></p>
    <p>Nicole Ruediger<br>University of Maryland, Baltimore County<br>410-455-5791<br><a href="mailto:nruedige@umbc.edu">nruedige@umbc.edu</a>
        </p>
      
    </div>
    			</div>
    </div>
]]>
</Body>
<Summary>Northrop Grumman, bwtech@UMBC Graduate First Three Companies From Cyber Cync Program      2013-09-27T12:00:00-0700   BALTIMORE – Sept. 27, 2013 – Northrop Grumman Corporation (NYSE:NOC) and the...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36346/guest@my.umbc.edu/dd29e019e07380068e0e931384513eea/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, 30 Sep 2013 10:38:47 -0400</PostedAt>
<EditAt>Tue, 05 Nov 2013 20:03:08 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36345" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36345">
<Title>Maryland&#8217;s Light Point Security</Title>
<Tagline>a Wall Street Journal startup finalist</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div>
    
    				 
    		<div>
    												<h4>Maryland’s Light Point Security, a Wall Street Journal startup finalist</h4>	
    										<div>
    									<span><a href="http://mdbiznews.choosemaryland.org/author/ekimball/" title="Emily Kimball" rel="nofollow external" class="bo">Emily Kimball</a> — </span>
    													<span>September 26, 2013</span><br> <br>
    </div>
    </div>
    </div>
    <a href="http://lightpointsecurity.com/" rel="nofollow external" class="bo">Light Point Security</a> is a rising star in the <a href="http://projects.wsj.com/soty/" rel="nofollow external" class="bo">Wall Street Journal’s Startup of the Year </a>contest and documentary series.<br><br>
    <p>Out of more than 500 hopeful startups across the United States, the Baltimore-based malware protection company survived the third elimination round to reach the final five, the Wall Street Journal announced on Thursday morning.</p>
    <p>One of the judges, Wall Street Journal editor Andy Regal, commented in a video, “I’ve been harping all along about my interest in finding CEOs in this documentary series who can really communicate what their business is and we’ve had challenges with that at times, but I think the team at Light Point Security, they do it so quickly and so simply.”</p>
    <p>Light Point Security has been featured in several videos since the start of the contest, with co-founders Zuly Gonzalez and Beau Adkins speaking about their experiences working at the National Security Agency, balancing work and family and navigating social media promotion.</p>
    <p>The company has gained national attention for its innovative method of protecting computers and networks from malicious online files and spying. Their software allows users to browse the internet from a virtual machine in the cloud, running on Light Point Security’s computers rather than their own.</p>
    <p>Light Point Security plans to participate as a featured speaker in the <a href="http://mdbiznews.choosemaryland.org/2013/08/28/10-reasons-not-to-miss-cybermaryland-2013/" rel="nofollow external" class="bo">CyberMaryland 2013 conference</a> in October. The company was also an <a href="http://mdbiznews.choosemaryland.org/2013/03/05/investmaryland-challenge-qa-with-light-point-security/" rel="nofollow external" class="bo">InvestMaryland Challenge finalist</a> last spring and has won accolades in several national and regional contests and rankings.</p>
    </div>
]]>
</Body>
<Summary>Maryland’s Light Point Security, a Wall Street Journal startup finalist                        Emily Kimball —               September 26, 2013      Light Point Security is a rising star in the...</Summary>
<Website>http://mdbiznews.choosemaryland.org/2013/09/26/marylands-light-point-security-a-wall-street-journal-startup-finalist/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36345/guest@my.umbc.edu/73e55d137463379a444139a3d1f1554e/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, 30 Sep 2013 10:34:19 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 10:36:59 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36344" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36344">
<Title>Hot Seat: 'How Are You Going to Compete?'</Title>
<Tagline>WSJ Startup of the Year</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h5>Hot Seat: 'How Are You Going to Compete?'</h5>
    						<div>
    							Former NSA employees and Light Point Security co-founders Zuly 
    Gonzalez and Beau Adkins wade through a barrage of tough questions from 
    Singularity University's Vivek Wadhwa. "How are you going to compete 
    when there are major, major players out there?" asks Wadhwa.<br><br>Watch the video here <a href="http://projects.wsj.com/soty/startup/light-point-security/hot-seat-how-are-you-going-to-compete">http://projects.wsj.com/soty/startup/light-point-security/hot-seat-how-are-you-going-to-compete</a><br>
    </div>
    </div>
]]>
</Body>
<Summary>Hot Seat: 'How Are You Going to Compete?'                 Former NSA employees and Light Point Security co-founders Zuly  Gonzalez and Beau Adkins wade through a barrage of tough questions from...</Summary>
<Website>http://projects.wsj.com/soty/startup/light-point-security/hot-seat-how-are-you-going-to-compete</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36344/guest@my.umbc.edu/089fa0605aeb360f586601844bc56768/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, 30 Sep 2013 10:32:03 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 10:32:17 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="36342" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36342">
<Title>Students Mentoring Students</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h5>by Stephen Bradley</h5>
    <div><br></div>
    <div>At a former industrial and then abandoned area in south Baltimore, local residents and schoolchildren (from Brooklyn, Curtis Bay, and Cherry Hill) can now connect with their natural environment and participate in environmental stewardship projects through the Masonville Cove Education Environmental Center. My UMBC students and I have been working with students at nearby Benjamin Franklin High School, creating art projects rooted in the community, including animated films documenting debris  found in the neighborhood near Masonville Cove ... <a href="http://umbcbreakingground.wordpress.com/2013/09/30/students-mentoring-students/" rel="nofollow external" class="bo">(continue reading)</a>
    </div>
    </div>
]]>
</Body>
<Summary>by Stephen Bradley     At a former industrial and then abandoned area in south Baltimore, local residents and schoolchildren (from Brooklyn, Curtis Bay, and Cherry Hill) can now connect with their...</Summary>
<Website>http://umbcbreakingground.wordpress.com/2013/09/30/students-mentoring-students/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36342/guest@my.umbc.edu/2e4f894e371a1218d9606d560424e94f/api/pixel</TrackingUrl>
<Group token="bg">UMBC BreakingGround</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bg</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xsmall.png?1360169927</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/original.png?1360169927</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xxlarge.png?1360169927</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xlarge.png?1360169927</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/large.png?1360169927</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/medium.png?1360169927</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/small.png?1360169927</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xsmall.png?1360169927</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xxsmall.png?1360169927</AvatarUrl>
<Sponsor>UMBC BreakingGround</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/342/6934d23e0a3adbf801dca440dde09fa3/xxlarge.jpg?1380551104</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/342/6934d23e0a3adbf801dca440dde09fa3/xlarge.jpg?1380551104</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/342/6934d23e0a3adbf801dca440dde09fa3/large.jpg?1380551104</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/342/6934d23e0a3adbf801dca440dde09fa3/medium.jpg?1380551104</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/342/6934d23e0a3adbf801dca440dde09fa3/small.jpg?1380551104</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/342/6934d23e0a3adbf801dca440dde09fa3/xsmall.jpg?1380551104</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/342/6934d23e0a3adbf801dca440dde09fa3/xxsmall.jpg?1380551104</ThumbnailUrl>
<PawCount>16</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 10:25:28 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="36343" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36343">
<Title>16 hot companies to watch</Title>
<Tagline>featuring KoolSpan, a Cync Program company</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <h3>16 hot companies to watch</h3>By John Moore<br>Sep 20, 2013<br><br><p>The to-do list seemingly never stops growing for federal IT managers. They must keep up with developments in mobile technology, comb through data for key information nuggets, and evaluate cloud computing options — to name just a few challenges.<br></p>
    <p>On top of that, they also need to find tools to help their agencies better manage technology assets and human resources in a time of budget constraints.</p>
    <p>FCW's annual list of companies to watch emphasizes products and services that address the government's key challenges. We chose the 16 companies based on a number of factors, including how well they were represented on contract vehicles, their ability to make strategic alliances with other companies and their efforts to reach out to the federal market. </p>
    
    <p><strong>Big data and analytics</strong></p>Big data, which has been on the federal radar for a while, is becoming almost mainstream. The technology is being put to more and more uses, with applications ranging from marketing to meteorology. Companies making moves into the federal big-data space include Sqrrl Data, Kognitio and Kapow Software.<br><br>Sqrrl Enterprise is a big-data platform for creating analytical applications. It runs on Apache Accumulo, a database developed by the National Security Agency and now an open-source project. Accumulo integrates with Hadoop, a software framework that enables organizations to process very large sets of data.<br><br>"We are seeing Accumulo adoption rapidly spread across the federal government," said Ely Kahn, Sqrrl's co-founder and vice president of business development.<br><br>He said Accumulo spread from NSA across the Defense Department, the intelligence community, and civilian agencies such as the departments of Homeland Security and Justice.<br><br>Kognitio, meanwhile, offers a big-data analytics platform that uses memory instead of disk space for storage. The company's technology debuted in the financial sector, but it is also carving a niche in the federal government. Kognitio and DMG Federal, an IT consulting firm with a specialty in business intelligence, joined forces earlier this year to provide cloud-based data analytics to federal agencies and other public-sector entities.<br><br>Kapow Software's area of emphasis is big-data integration. The company said agencies increasingly use its software for open-source intelligence tasks, such as gauging public sentiment and tracking illegal online sales of pharmaceuticals, and to provide critical infrastructure protection. The Department of Health and Human Services and other civilian agencies, meanwhile, tap Kapow Software to help them migrate content to new standardized or enterprise content management systems. <br><p><br></p>
    <p>Read more at <a href="http://fcw.com/articles/2013/09/20/16-companies-to-watch.aspx">http://fcw.com/articles/2013/09/20/16-companies-to-watch.aspx</a><br></p>
    <br>
    </div>
]]>
</Body>
<Summary>16 hot companies to watch By John Moore Sep 20, 2013   The to-do list seemingly never stops growing for federal IT managers. They must keep up with developments in mobile technology, comb through...</Summary>
<Website>http://fcw.com/articles/2013/09/20/16-companies-to-watch.aspx</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36343/guest@my.umbc.edu/55dbe49ad6f6429f61828e6a1e34ee34/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, 30 Sep 2013 10:25:09 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 10:30:14 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="36341" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36341">
<Title>New chip promises iPhone encryption</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h4>New chip promises iPhone encryption</h4>
    <h5><br></h5>
    <p><strong>Anika Torruella</strong> - IHS Jane's International Defence Review 
    		
    		</p>
    <div>
    <p>17 September 2013</p>
    <p><br></p>
    <p>US-based KoolSpan has developed what it claims as the first 
    hardware-based encryption system for Apple's iPhone, opening the door to
     increased adoption of the system for military users.</p>
    <p>The new chip is a self-contained, hardware-anchored, secure, 
    military-grade, FIPS 140-2-compliant encryption chip capable of 
    providing 256-bit Advanced Encryption Standard (AES) encryption for 
    voice, data, and short message service (SMS) transmissions.</p>
    <p>The 32-bit crypto ARM co-processor 'TrustChip' is designed around an 
    industry standard plug-in microSD chip with up to 2 GB of memory. The 
    chip fits into an iCaisse4X protective adapter sleeve known as 
    'TrustSleeve' built by DeviceFidelity, which also contains an ancillary 
    1200 mAh battery pack that provides between 12 to 13.5 hours (voice and 
    internet) of battery life in addition to the integral power source.</p>
    <p>Read more at <a href="http://www.janes.com/article/27137/new-chip-promises-iphone-encryption">http://www.janes.com/article/27137/new-chip-promises-iphone-encryption</a> (subscribers only article)<br></p>
    </div>
    </div>
]]>
</Body>
<Summary>New chip promises iPhone encryption     Anika Torruella - IHS Jane's International Defence Review          17 September 2013     US-based KoolSpan has developed what it claims as the first...</Summary>
<Website>http://www.janes.com/article/27137/new-chip-promises-iphone-encryption</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36341/guest@my.umbc.edu/bbc0f7a0944a55b5c5672b138fc19ef1/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, 30 Sep 2013 10:23:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="36340" important="false" status="posted" url="https://my3.my.umbc.edu/posts/36340">
<Title>On-campus Internship in Sustainability</Title>
<Tagline>Sustainability Outreach and Communications Intern</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong><span>Sustainability
    Outreach and Communications Intern:</span></strong></p>
    
    <p><span> </span></p>
    
    <p><span>Intern will report to
    Sustainability Coordinator. The position will be 8 hours per week. Hours may
    vary to accommodate meetings, events, and interviews. Additional tasks may be
    assigned. Intern must demonstrate evidence of interest and background in sustainability
    and must feel comfortable reaching out to professionals, peers, and faculty.
    Intern must be a current UMBC student. Please submit a cover letter detailing: 1)
    why this position interests you 2) what related skills and experiences you
    possess 3) any other groups, activities, jobs or time commitments you are
    currently engaged in by September 26<sup>th</sup>. </span></p>
    
    <p><span> </span></p>
    <p><span>The sustainability
    outreach and communications intern will assist in developing communication outreach
    around the following topics in coordination with staff, groups, and committees
    on campus:</span></p>
    <p><span><br></span></p>
    <p><span>Sustainability
    Related Accomplishments and Champions</span></p>
    <p><span>Energy
    Conservation Efforts</span></p>
    <p><span>Transportation</span></p>
    <p><span>Research
    and Education</span></p>
    <p><span>Recycling,
    Waste, and Compost</span></p>
    <p><span><br></span></p>
    <p><span>Search job number 9260919 in UMBC</span><em>works.</em></p>
    
    </div>
]]>
</Body>
<Summary>Sustainability Outreach and Communications Intern:         Intern will report to Sustainability Coordinator. The position will be 8 hours per week. Hours may vary to accommodate meetings, events,...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/36340/guest@my.umbc.edu/b582f2bb23dd2198f6ed5a6bc9b568ea/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://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/340/9c7660b8dc616c5d3392c0c1c14c2245/xxlarge.jpg?1380550694</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/340/9c7660b8dc616c5d3392c0c1c14c2245/xlarge.jpg?1380550694</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/036/340/9c7660b8dc616c5d3392c0c1c14c2245/large.jpg?1380550694</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/340/9c7660b8dc616c5d3392c0c1c14c2245/medium.jpg?1380550694</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/036/340/9c7660b8dc616c5d3392c0c1c14c2245/small.jpg?1380550694</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/036/340/9c7660b8dc616c5d3392c0c1c14c2245/xsmall.jpg?1380550694</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/036/340/9c7660b8dc616c5d3392c0c1c14c2245/xxsmall.jpg?1380550694</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 30 Sep 2013 10:18:24 -0400</PostedAt>
<EditAt>Mon, 30 Sep 2013 15:18:58 -0400</EditAt>
</NewsItem>

</News>
