<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Scoop App</title>
	<atom:link href="http://www.scoopapponline.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scoopapponline.com</link>
	<description>Mobile, Visual, Fast Issue Capture &#38; Collaboration</description>
	<lastBuildDate>Sat, 19 May 2012 15:29:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Native vs. Browser Mobile Apps: Pros &amp; Cons</title>
		<link>http://www.scoopapponline.com/native-vs-browser-based-mobile-apps-pros-cons/</link>
		<comments>http://www.scoopapponline.com/native-vs-browser-based-mobile-apps-pros-cons/#comments</comments>
		<pubDate>Wed, 09 May 2012 22:24:01 +0000</pubDate>
		<dc:creator>bsardary</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mobile Apps]]></category>
		<category><![CDATA[Scoop Blog Posts]]></category>

		<guid isPermaLink="false">http://www.scoopapponline.com/?p=3186</guid>
		<description><![CDATA[In case you have not heard it already there is a great debate these days in the mobile development community over the the so-called native vs. browser-based approaches to building mobile apps.  There is a good deal of hype on both sides of the fence each with its own fervent supporters. It is crucial to [...]]]></description>
			<content:encoded><![CDATA[<p>In case you have not heard it already there is a great debate these days in the mobile development community over the the so-called native vs. browser-based approaches to building mobile apps.  There is a good deal of hype on both sides of the fence each with its own fervent supporters. It is crucial to cut through this noise and choose an approach based on the specifics of your app, business environment and so forth.  In this post we first provide a short primer and then a simple set of guidelines to help inform your decision.</p>
<p><a href="http://www.scoopapponline.com/native-vs-browser-based-mobile-apps-pros-cons/native-vs-browser-html5-app/" rel="attachment wp-att-3223"><img class="aligncenter size-full wp-image-3223" title="Native-vs-browser-html5-app" src="http://www.scoopapponline.com/wp-content/uploads/Native-vs-browser-html5-app.png" alt="" width="700" height="471" /></a></p>
<h2>A Quick Primer</h2>
<p>First let’s quickly review the two pure avenues available to us when developing a new mobile app:</p>
<ol>
<li><strong>Developing a Native Mobile App</strong>:  in this approach we develop the app similar to the way native Windows or Mac OS software applications are developed.  This typically means that we write code in a language supported by the target platform (e.g., Objective C for Apple iOS) and we use the specific software development kits (SDKs) for the target platform (e.g., Android SDK published by Google)  Once such a native app is developed, it is distributed via the platform vendor’s own app store or third-party app stores in some cases.  In either case, the end user must download and install a native app which resides and executes on the given mobile device.</li>
<li><strong>Developing a Mobile Browser App</strong>: these types of apps are in essence developed using the same tools and techniques used as good ole’ regular websites and web apps.  The app is accessed on the mobile browser and is designed and optimized to work with the constraints of these browsers.   With the increasing popularity of the HTML-5 standard, mobile browser apps are providing functionality that in many instances rivals that of native apps (see recent LinkedIn iPad app as an example)   Consider for instance that with the HTML-5 apps can now cache portions of user data on the mobile device and provide offline access to this data when no cellular connection is available, a type of functionality that used to be exclusive domain of native apps.</li>
</ol>
<h2>Pros and Cons</h2>
<p>So how are native mobile apps better or worse than their browser brethren?  Here’s a quick list of pros and cons:</p>
<p><span style="color: #003366;"><strong>Native Mobile App </strong></span><span style="color: #808000;"><strong><em>Pros:</em></strong></span></p>
<ul>
<li>Better application performance;</li>
<li>More attractive interfaces (less generic);</li>
</ul>
<p><span style="color: #003366;"><strong>Native Mobile App </strong></span><span style="color: #808080;"><strong><em><span style="color: #993300;">Cons</span>:</em></strong></span></p>
<ul>
<li>Need to install software on device (added step for users);</li>
<li>Need to develop for each platform separately; duplicates development, QA and upgrade efforts (big con for app developers)</li>
</ul>
<p><span style="color: #333300;"><strong>Mobile Browser App </strong></span><span style="color: #808000;"><strong><em>Pros:</em></strong></span></p>
<ul>
<li>No software to install or upgrade; always access the latest version the moment it is updated on the server.</li>
<li>From the developer perspective: write once deploy on many platforms.  It is worth noting that this is not always the case.  For instance if the app in question needs to take advantage of not-commonly-used functions on a given platform then most likely it will need to be deployed as a native or at least a hybrid application.   As an example think of an app that needs to capture users’ complex gestures on the device touch interface and couple this with input from the device accelerometer to rotate 3D drawings on the screen.  Such an app would almost definitely need to be developed as a native app.</li>
</ul>
<p><span style="color: #808080;"><strong><span style="color: #333300;">Mobile Browser App </span><em><span style="color: #993300;">Cons</span>:</em></strong></span></p>
<ul>
<li>Relatively lower performance.  A mobile browser app may for instance experience more delays when loading  a list of items or pictures than  a native app.</li>
</ul>
<ul>
<li>More generic user interface/experience: native apps provide designers with maximum control over the look, feel and behavior of screens with the design adapted to the specific platform and its capabilities.   Given the need for cross-compatibility with various mobile browsers, mobile browser apps are limited to more of a standard, generic experience consisting of standard list elements, picture boxes and other standard controls.</li>
</ul>
<h2>Split the Difference</h2>
<p>A third option that makes sense in many cases today is to develop a <strong>hybrid app</strong>.  Hybrid apps let developers strike a balance between the pros and cons of the above ‘pure’  approaches.   Although a hybrid app still needs to be installed and updated on the user device, it provides the opportunity to access more nimble functionality i.e., get access to the ‘bare metal’ on each given platform.  For many less demanding or common screens of the app, hybrid apps take advantage of HTML pages that essentially act like a web page except that they are displayed and integrated with the rest of the app.</p>
<h2>Guidelines to Inform Your Decision</h2>
<p>In summary, the choice of how you build an app (i.e., pure native, pure browser or hybrid) is largely dependent on the nature of the app being developed.  The chart below visualizes how such a decision is affected by various factors.</p>
<ul>
<li>Importance of Performance/Speed -&gt;  High (go native)   |  Low (go browser)</li>
<li>Importance of Unique User Interfaces -&gt;  High (go native)   |  Low (go browser)</li>
<li>Users Ability to Install and Update App -&gt;  High (go native)   |  Low (go browser)</li>
<li>Need to Access Deep Native Functionality -&gt;  High (go native)   |  Low (go browser)</li>
<li>Number of Platforms on Which App Must Work -&gt;  High (go browser)   |  Low (go native)</li>
</ul>
<p><strong>Please let us hear your thoughts and feedback via the comment section below.</strong></p>
<hr />
<p><em><strong>About the Author:</strong> <a title="Babak Sardary" href="http://www.scoopapponline.com/about-scoop/our-team/">Babak Sardary</a> is a veteran of field engineering and founder of Trusterra Technologies. Trusterra develops the <a title="Scoop Software Platform" href="http://www.scoopapponline.com">Scoop™ mobile software platform</a> helping thousands of users in distributed teams record, alert, collaborate and resolve issues across field and office.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scoopapponline.com/native-vs-browser-based-mobile-apps-pros-cons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enhance the Problem Solving Capacity of Your Team</title>
		<link>http://www.scoopapponline.com/improve-field-problem-solving/</link>
		<comments>http://www.scoopapponline.com/improve-field-problem-solving/#comments</comments>
		<pubDate>Tue, 01 May 2012 18:29:58 +0000</pubDate>
		<dc:creator>bsardary</dc:creator>
				<category><![CDATA[Issue Resolution]]></category>
		<category><![CDATA[Problem Solving]]></category>
		<category><![CDATA[Scoop Blog Posts]]></category>

		<guid isPermaLink="false">http://www.scoopapponline.com/?p=3027</guid>
		<description><![CDATA[John started work with Greenleaf Press Co. last month as a field support tech. So far he likes his new position and gets along well with the rest of the crew.  His only real complaint so far would be the uneasy feeling that he just doesn&#8217;t have the depth of training he would like, when [...]]]></description>
			<content:encoded><![CDATA[<p>John started work with Greenleaf Press Co. last month as a field support tech. So far he likes his new position and gets along well with the rest of the crew.  His only real complaint so far would be the uneasy feeling that he just doesn&#8217;t have the depth of training he would like, when it comes to Greenleaf&#8217;s machines. These are complex printing presses and the even though he has gone through the 6-week technician training, there is just too much detail to keep in one&#8217;s head.  He is musing about this on his drive back from the last service call when he gets dispatched to a major customer plant.  There has been a stoppage in the middle of a newsprint cycle.  He walks into the plant and is quickly guided over to the ailing machine.  John opens the control cabinet and notices several warning lights flashing.  He tries a few basic routines he has picked up to restart the machine but no luck!  Time is ticking and with only 3 hours left to the print deadline John’s got to come up with a solution and fast!</p>
<p><img class="aligncenter size-full wp-image-3041" title="worker_troubleshooting_field_problem" src="http://www.scoopapponline.com/wp-content/uploads/worker_troubleshooting_field_problem.jpg" alt="" width="700" height="467" /></p>
<p>John may not be a real person but this kind of scenario <em>is</em> and by no means unique to industrial machinery.  It happens thousands of times a day across a variety of industries: a construction project manager notices a structure is not built to spec, a refinery field engineer notices a major deficiency during a walk-through, an HVAC installer is puzzled by the plumbing configuration at a new job site&#8230;</p>
<p>The fact is everyday field workers come across issue and situations that need to be decided and solved quickly often under time pressure and often when these folks are isolated from the rest of their team.  In the absence of quality and timely advice from their peers, seniors and managers, workers can make poor quality decisions that adversely affect customer and project outcomes or worse yet result in serious safety incidents.</p>
<p>So for someone like John what determines the decision to get help or to go solo?</p>
<p>The factors may seem complex and dependent on the specifics of each case but in my experience they can be categorized into three categories:</p>
<ul>
<li><strong>Availability</strong>: if I decide to get help, what are my chances of engaging the right resources?</li>
<li><strong>Speed</strong>: if I can reach the right people, how fast can I explain the problem &amp; get a solution?</li>
<li><strong>Perception</strong>: if I reach out to get help, how would I be perceived by my colleagues and management?</li>
</ul>
<p>These factors are affected by the choice of tools and technologies available in the given organization but also by the type of culture that governs interactions.</p>
<p>Below are a number of practices to use to help promote an efficient and healthy collaboration atmosphere focused on efficient problem solving:</p>
<ol>
<li><strong>Formulated Judgement:</strong> a culture that recognizes and balances the value of taking initiative with the importance of recognizing when one is over one’s head on a given issue is key. However the culture without clear guidelines is not enough.  Establish guidelines (ideally written) and train your people to recognize the signs to make a call one way or the other. In one of my past companies we came up with a score-based system including checklists.</li>
<li><strong>Recognize Goals <em>and</em> Assists:</strong> when a customer issue is resolved or an ingenious solution to a tough project issue is proposed, make sure you explicitly ask for and recognize not just the lead but also the contributors.</li>
<li><strong>Select the Right Tool</strong>: the importance of using the right IT tools cannot be overemphasized.  In a distributed team environment you have people and issues strewn across work sites, offices and time zones.  A nerve system is needed to connect people and make them <em>available</em> to one another.  Once you establish availability, the communication platform needs to take into account the unique needs and pressures of people working in the field.</li>
</ol>
<p>For a description of the attributes of such a nerve system have a look at my previous post titled: <a title="Field Team Coordination Can Be Simple" href="http://www.scoopapponline.com/how-to-coordinate-field-project-teams/" target="_blank">Field Team Coordination Can Be Simple</a></p>
<p><strong>Please let us hear your thoughts and feedback via the comment section below.</strong></p>
<hr />
<p><em><strong>About the Author:</strong> <a title="Babak Sardary" href="http://www.scoopapponline.com/about-scoop/our-team/">Babak Sardary</a> is a veteran of field engineering and founder of Trusterra Technologies. Trusterra develops the <a title="Scoop Software Platform" href="http://www.scoopapponline.com">Scoop™ mobile software platform</a> helping thousands of users in distributed teams record, alert, collaborate and resolve issues across field and office.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scoopapponline.com/improve-field-problem-solving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Field Team Coordination Can Be Simple</title>
		<link>http://www.scoopapponline.com/how-to-coordinate-field-project-teams/</link>
		<comments>http://www.scoopapponline.com/how-to-coordinate-field-project-teams/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 22:29:25 +0000</pubDate>
		<dc:creator>bsardary</dc:creator>
				<category><![CDATA[Scoop Blog Posts]]></category>
		<category><![CDATA[Team Coordination]]></category>

		<guid isPermaLink="false">http://www.scoopapponline.com/?p=2961</guid>
		<description><![CDATA[Imagine a large team of engineers, technicians, field workers, vendors and clients strewn across a wide metropolitan area working on a highway project.  Or a similar team building and integrating a complex multi-module oil refining facility. When it comes to distributed teams, coordination takes on a whole new  dimension. It becomes an even more interesting [...]]]></description>
			<content:encoded><![CDATA[<p>Imagine a large team of engineers, technicians, field workers, vendors and clients strewn across a wide metropolitan area working on a highway project.  Or a similar team building and integrating a complex multi-module oil refining facility.</p>
<p>When it comes to distributed teams, coordination takes on a whole new  dimension. It becomes an even more interesting problem for teams dealing with field work on machines, equipment, structures and other physical things&#8211;subject matter that is not easy to transport, email, ship and show to others.</p>
<p><img class="aligncenter size-full wp-image-2964" title="field-project-coordination" src="http://www.scoopapponline.com/wp-content/uploads/field-project-coordination.jpg" alt="" width="700" height="465" /></p>
<p>Coordinating the work of these individuals is no mean feat.  For even a medium sized infrastructure project it can easily take a platoon of project managers, coordinators, field inspectors and others to just keep the data on issues and work progress mildly up to date.  The sad part is that after all this effort, the vast majority of the data collected simply gets archived at the project office, never seeing the light of day and finding its way to the actual people who would benefit from it.</p>
<p>Legacy methods of team coordination (paper-based, manual processes) are a huge drain on  resources and leave numerous opportunities for waste, delays and mistakes.   At the root of their shortcomings is a common element: they fail to remove the barriers in space and time between the information in the field and the people who need them most.  Without timely access to pertinent  information field workers cannot send / receive the often small yet significant signals (input, advice or support) needed for others to make decisions, resolve issues and in  general move the project ahead.  These effects are cumulative and therefore a great deal of success and  failure of field projects depends on removing these barriers and achieving a fully-coordinated team (you see when you get rid of time and space  differences between team members and what each of them knows you achieve coordination)</p>
<p>Sounds  simple enough right?  Well in fact it is simple as long as the right tools and approaches are  employed.</p>
<p><strong>To achieve real time team coordination in the field, the collaboration tool you use must possess these attributes:</strong></p>
<ol>
<li><strong>Must be designed for and aligned (religiously) with mobile worker needs:</strong> because field people work differently and face different pressures than those sitting in an air-conditioned office with a big monitor and full-sized keyboard.</li>
<li><strong>Must be issue-centric to provide self-organization of information:</strong> because email and phone and excel sheets create mucho chaos and it is a full time job to coral them.</li>
<li><strong>Must allow for asynchronous even offline communication and contribution</strong> (work-shifting): because our schedules are harder to mesh each day and because we&#8217;d rather finish up tending to those pesky issues on the plane ride back from the field (rather than watching <a title="Made 2011's Worst Movies List" href="http://www.imdb.com/title/tt1305591/" target="_blank">Mars Needs Moms</a> and drinking a lukewarm beer)  That way we can have more family/personal time when we land.</li>
<li><strong>Must allow for symmetric communication across organizations:</strong>  Because we increasingly work with colleagues across other organizations and a system that takes 2 requisition forms and 3 signatures to give an outside contractor access just won&#8217;t be practical.</li>
</ol>
<p>So you see, the tools we use don&#8217;t need be complicated with a million features and charts and graphs that trip us over.  They just need to observe some basic philosophies.</p>
<p>This focus on human-friendly communication and simplicity forms the basis of our Scoop platform.  Check out the <a title="Scoop Feature Tour" href="http://www.scoopapponline.com/scoop-tour/">Scoop tour</a> for more information or simply <a title="Scoop 30-Day Free Trial" href="http://www.scoopapponline.com/plans/">start your free trial</a>.</p>
<p><strong>Please let us hear your thoughts and feedback via the comment section below.</strong></p>
<hr />
<p><em><strong>About the Author:</strong>  <a title="Babak Sardary" href="http://www.scoopapponline.com/about-scoop/our-team/">Babak Sardary</a> is a veteran of field engineering and founder of Trusterra Technologies.  Trusterra develops the <a title="Scoop Software Platform" href="http://www.scoopapponline.com">Scoop™ mobile software platform</a> helping thousands of users in distributed teams record, alert, collaborate and resolve issues across field and office.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scoopapponline.com/how-to-coordinate-field-project-teams/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Practices to Save Money and Grief in the Field</title>
		<link>http://www.scoopapponline.com/ways-to-reduce-downtime-in-the-field/</link>
		<comments>http://www.scoopapponline.com/ways-to-reduce-downtime-in-the-field/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 20:01:36 +0000</pubDate>
		<dc:creator>bsardary</dc:creator>
				<category><![CDATA[Issue Resolution]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Reduce Downtime]]></category>
		<category><![CDATA[Scoop Blog Posts]]></category>

		<guid isPermaLink="false">http://www.scoopapponline.com/?p=2701</guid>
		<description><![CDATA[Let&#8217;s face it.  Downtime in the field is atrociously expensive. All manner of business owners from construction, to survey firms to system integrators spend a ton of time on saving a few thousand dollars per year on equipment, office supplies, services etc. etc. only to lose it by the bucketful over delays, mistakes and downtime [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s face it.  Downtime in the field is atrociously expensive. All manner of business owners from construction, to survey firms to system integrators spend a ton of time on saving a few thousand dollars per year on equipment, office supplies, services etc. etc. only to lose it by the bucketful over delays, mistakes and downtime in the field.  Just think of the cost of all those people and equipment sitting idle waiting for someone to make a decision or figure out how to solve a problem. Last Friday afternoon we were chatting about this here at the office and so of course someone broke out the spreadsheet and started crunching the numbers based on our the experience around the table. So here&#8217;s the thing, what we found shocked even us!&#8230;</p>
<p><img class="aligncenter size-full wp-image-2956" title="workers-install-equipment-in-field" src="http://www.scoopapponline.com/wp-content/uploads/workers-install-equipment-in-field.jpg" alt="" width="700" height="525" /></p>
<p>&nbsp;</p>
<p>Basically the calculations showed that a field team of 30 could save over $1M/year if they follow some pretty basic communication practices.  I plan to flesh this out more and and post it in a future blog entry but for now here are the practices we compiled to effect this whopping savings:</p>
<p>1. Ensure issues are reported when they happen (not 2 hours later, not 2 days later)<br />
2. Have the report be accompanied with a complete description (hint: a phone call/email is not enough)<br />
3. Get the right people for that issue or decision involved from the get-go.<br />
4. Find a central place for discussion and keep all data for future reference (it&#8217;ll happen again)<br />
5. Make it possible for people to contribute to the solution on their own time (meetings are not very productive &amp; don&#8217;t produce the best solutions when it comes to this sort of thing)</p>
<p>Please let us hear your thoughts and feedback via the comment section below.</p>
<hr />
<p><em><strong>About the Author:</strong>  Babak Sardary is a veteran of field engineering and founder of Trusterra Technologies.  Trusterra develops the <a title="Scoop Software Platform" href="http://www.scoopapponline.com">Scoop™ mobile software platform</a> helping thousands of users in distributed teams record, alert, collaborate and resolve issues across field and office.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.scoopapponline.com/ways-to-reduce-downtime-in-the-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Page</title>
		<link>http://www.scoopapponline.com/home-page-post-2/</link>
		<comments>http://www.scoopapponline.com/home-page-post-2/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 14:38:13 +0000</pubDate>
		<dc:creator>bsardary</dc:creator>
				<category><![CDATA[homepg_featured_post]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[homepage]]></category>

		<guid isPermaLink="false">http://blog.scoopapponline.com/?p=1354</guid>
		<description><![CDATA[Why Scoop Tour Pricing Blog Quickstart About Help Babak Sardary(CEO) Describesand DemosScoop Solve Field Issues Faster Use Scoop to record, alert &#038; resolve field issues PLUS keep all information organized for reference &#038; analysis. Or Take the Tour Reduce FieldDowntime 65% Close the gap between issues &#038; thepeople who know how to solve them. Cut [...]]]></description>
			<content:encoded><![CDATA[<p><meta name="google-site-verification" content="GNyF9zJvWJq_9KhUIjKm2EIsbk3CUqKo2lL5H27M6Mc" /></p>
<div class="home-content">
<div class="home-blue-menu">
<ul class="home-left-menu">
<li>
<div class="home-left-menu-separator"><a href="/reasons-to-use-scoop-mobile-collaboration/">Why Scoop</a> </div>
</li>
<li>
<div class="home-left-menu-separator"><a href="/scoop-tour/">Tour</a></div>
</li>
<li>
<div class="home-left-menu-separator"><a href="/plans/">Pricing</a></div>
</li>
<li>
<div class="home-left-menu-separator"><a href="/blog/">Blog</a></div>
</li>
</ul>
<p>					<a href="https://inside.scoopapponline.com/account/logon/"></p>
<div class="white-login-button"></div>
<p>					</a></p>
<ul class="home-right-menu">
<li><a href="/quick-start/">Quickstart</a></li>
<li><a href="/about-scoop/">About</a></li>
<li><a href="/support/">Help</a></li>
</ul></div>
<p><!-- end menu --></p>
<div class="home-main-blue-area">
<div class="available-everywhere">
					</div>
<div class="scoop-connects-entire-team"></div>
<p><a class="" href="http://vimeo.com/38537257"   rel="prettyPhoto"></p>
<div class="scoop-demo-video"  style="">
Babak Sardary<br />(CEO) Describes<br />and Demos<br />Scoop
</div>
<p></a></p>
<div class="home-big-heading">
						Solve Field<br/> Issues Faster
					</div>
<div class="home-med-heading">
						Use Scoop to record, alert &#038;<br /> resolve field issues <b>PLUS</b> keep<br /> all information organized for<br /> reference &#038; analysis.
					</div>
<div>
<div class="left"><a class="large-green-button" href="/plans"></a></div>
<div class="left whiteText"> Or <a class="whitelink" href="/scoop-tour/">Take the Tour</a></div>
</div>
</div>
<p> <!-- end main blue area --></p>
<div class="home-main-scoop-benefits">
<div class="scoop-benefits-section-holder">
<div class="scoop-benefits-reduce-field-time scoop-benefits-section">
        Reduce Field<br />Downtime 65%
    </div>
<div class="scoop-benefits-description">Close the gap between issues &#038; the<br />people who know how to solve them.</div>
</p></div>
<div class="scoop-benefits-section-holder">
<div class="scoop-benefits-cut-travel-costs scoop-benefits-section">
        Cut Field Travel<br />Costs 50%
    </div>
<div class="scoop-benefits-description">Eliminate unnecessary travel by beaming<br />issues to the people, not people to the field.</div>
</p></div>
<div class="scoop-benefits-section-holder">
<div class="scoop-benefits-boost-team-response scoop-benefits-section">
        Boost Team<br />Response 20X
    </div>
<div class="scoop-benefits-description">Communicate in real time on issues &#038;<br />opportunities, empower an agile team.</div>
</p></div>
</div>
<div class="main-testimonials">
<div class="testimonials-box">
<div class="pic-collect-share-data">
						</div>
<div class="testimonials-quote">
							&#8220;Excellent application to collect and share field data&#8230;&#8221;
						</div>
<div class="testimonials-person">
							Soheil Sahraei | Cellular Network Designer
						</div>
</p></div>
<div class="testimonials-box testimonials-box-second">
<div class="pic-invaluable-for-field-worker">
						</div>
<div class="testimonials-quote">
							&#8220;Invaluable technical assistance for solo field workers&#8230;&#8221;
						</div>
<div class="testimonials-person">
							Edna Soleman | Engineering Manager
						</div>
</p></div>
<div class="testimonials-box testimonials-box-second">
<div class="pic-connect-to-your-team">
						</div>
<div class="testimonials-quote">
							&#8220;Managing remote <br/> field projects has<br/> never been easier&#8230;&#8221;
						</div>
<div class="testimonials-person">
							Ed Harris | Construction Project Manager
						</div>
</p></div>
<div class="clear">
                    </div>
</p></div>
<p style="margin:0; padding:0;">
<div class="clear">
					</div>
<div class="tour-or-signup-panel"><a href="/scoop-tour/" class="take-tour-button"></a><span class="tour-signup-panel-text ">~ Or ~</span><a href="/plans" class="panel-try-button"></a></div>
<div class="main-how-scoop-works">
<div class="how-scoop-works-left">
<div class="how-scoop-works-box1">
<div class="how-scoop-works-heading-green">
							Scoop Works&#8230;
						</div>
<div class="pic-scoop-works-for-all">
						</div>
<div class="scoop-works-text1">
						No matter your role in the team, Scoop empowers you to do things faster, better and smarter.
						</div>
</p></div>
<div class="how-scoop-works-box1">
						&nbsp;
					</div>
<div class="clear">
					</div>
<div class="how-scoop-works-box-project-lead">
<div class="how-scoop-works-heading">
							Project Manager, Team Lead
						</div>
<div class="scoop-works-text2">
						Connect the team via central list of issues. Make fast, but fully informed decisions.
						</div>
</p></div>
<div class="how-scoop-works-box-field-inspector">
<div class="how-scoop-works-heading">
							Field Inspector, Auditor
						</div>
<div class="scoop-works-text2">
						Easily capture &#038; upload field data.  Your work is done when you get back!
						</div>
</p></div>
<div class="clear">
					</div>
<div class="how-scoop-works-box-field-engineer">
<div class="how-scoop-works-heading">
							Field Engineer, Technician
						</div>
<div class="scoop-works-text2">
						Engage remote experts, put a team together from your phone, solve issues in record time.
						</div>
</p></div>
<div class="how-scoop-works-box-product-manager">
<div class="how-scoop-works-heading">
							Product Manager, Designer
						</div>
<div class="scoop-works-text2">
						Rapid mobile workspace, describe ideas &#038; get brainstorming with the aid of rich media.
						</div>
</p></div>
<div class="clear">
					</div>
<div class="how-scoop-works-box-sales-pro">
<div class="how-scoop-works-heading">
							Sales Professional
						</div>
<div class="scoop-works-text2">
						Rapidly relay field details to back office, get cost &#038; feasibility input, respond &#038; capture.
						</div>
</p></div>
<div class="how-scoop-works-box-owner">
<div class="how-scoop-works-heading">
							Owner, Senior Manager
						</div>
<div class="scoop-works-text2">
						Access the latest issues and updates via laptop, tablet or smartphone anywhere.
						</div>
</p></div>
</p></div>
<div class="how-scoop-works-right">
<div class="amazing-support-panel">
<div class="support-separator"></div>
<div class="pic-support-testimonials1">
						</div>
<div class="text-support-testimonials">
						Scoop team has always come through with rapid support, highly recommended!
						</div>
<div class="clear">
						</div>
<div class="support-separator"></div>
<div class="pic-support-testimonials2">
						</div>
<div class="text-support-testimonials">
						This has been our best experience with new technology ever. Kudos to the team for the GREAT software &#038; super responsive support. Keep up the great work!
						</div>
</p></div>
<div class="clear">
					</div>
<div class="safe-secure-panel">
<div class="safe-secure-panel-separator"></div>
<div class="safe-secure-text1">
							We take integrity &#038; security of your data very seriously:
						</div>
<div class="safe-secure-text2">
							Secure 256-bit SSL Data Transmission
						</div>
<div class="safe-secure-text2">
							Firewall Protection
						</div>
<div class="safe-secure-text2">
							Role Based Access
						</div>
<div class="safe-secure-text2">
							Nightly Data Backups
						</div>
</p></div>
</p></div>
<div class="clear"></div>
</div>
<div class="tour-or-signup-panel"><a href="/scoop-tour/" class="take-tour-button"></a><span class="tour-signup-panel-text ">~ Or ~</span><a href="/plans" class="panel-try-button"></a></div>
<div class="home-main-scoop-fast-easy">
<div class="icon-scoop-fast-easy"></div>
<div class="scoop-fast-easy-heading-holder1">
<div class="scoop-fast-easy-heading1">
        Record, Alert, Resolve<br />In Under 60 Seconds!
    </div>
<div class="scoop-fast-easy-text1">
        A Field Worker Records an<br />Issue, Selects a Team &#038; Work<br />on a Well-Informed Solution Is<br />Underway-<i>in less than 60s.</i>
    </div>
</p></div>
<div class="scoop-fast-easy-heading-holder2">
<div class="scoop-fast-easy-heading2">
        Scoop is Easy to<br />Sign Up, Install &#038; Use</p></div>
<div class="scoop-fast-easy-text2">
        <b>On Web:</b> <a class="underlined-link" href="/plans"> Sign up and Try Scoop Today</a>
    </div>
<div class="scoop-fast-easy-text2">
        <b>App Stores:</b> search for &#8220;<i><span class="green-text">scoop trusterra</span></i>&#8220;<br />to download and install mobile app.
    </div>
</p></div>
</div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.scoopapponline.com/home-page-post-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.scoopapponline.com/1346/</link>
		<comments>http://www.scoopapponline.com/1346/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 23:31:45 +0000</pubDate>
		<dc:creator>bsardary</dc:creator>
				<category><![CDATA[homepg_box_bottleft]]></category>

		<guid isPermaLink="false">http://blog.scoopapponline.com/?p=1346</guid>
		<description><![CDATA[WHAT ARE WE UP TO NOW Mission Update Here&#8217;s a quick selection of most recent Scoop developments to bring you up to date: Scoop Android App After several months of intense development we are getting very close to releasing the Scoop Android App. sign up for automatic alerts Scoop Labs: Intelligent Search Trusterra has partnered [...]]]></description>
			<content:encoded><![CDATA[<h2>WHAT ARE WE UP TO NOW</h2>
<h3><a href="#">Mission Update</a></h3>
<p>Here&#8217;s a quick selection of most recent Scoop developments to bring you up to date:</p>
<ul>
<li>
Scoop Android App</p>
<div class="myunbolderclass">After several months of intense development we are getting very close to releasing the Scoop Android App.<br />
<a href="#">sign up for automatic alerts</a><br />

</div>
<li>
Scoop Labs: Intelligent Search</p>
<div class="myunbolderclass">Trusterra has partnered with researchers at Simon Fraser University to develop intelligent algorithms that sift through content you generate to make it easier for you to search and find comments and media related to issues easier and faster<br />
<a href="#">read full press release</a><br />

</div>
</li>
]]></content:encoded>
			<wfw:commentRss>http://www.scoopapponline.com/1346/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

