<?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>Nexus451</title>
	<atom:link href="http://www.nexus451.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nexus451.com/blog</link>
	<description></description>
	<lastBuildDate>Thu, 21 Jul 2011 18:42:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Nexus451 + 2</title>
		<link>http://www.nexus451.com/blog/client-news/nexus451-customer-management-team-web-development-people/</link>
		<comments>http://www.nexus451.com/blog/client-news/nexus451-customer-management-team-web-development-people/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 15:12:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Nexus451 News]]></category>
		<category><![CDATA[Vacancies]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[Business Processes]]></category>
		<category><![CDATA[crm development]]></category>
		<category><![CDATA[Customer Management]]></category>
		<category><![CDATA[Nexus451]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=454</guid>
		<description><![CDATA[It’s been a busy few months at Nexus451. We’ve taken on two new people to help us grow as a company, so that we can continue to provide the professional web development service our clients expect. With more and more &#8230; <a href="http://www.nexus451.com/blog/client-news/nexus451-customer-management-team-web-development-people/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It’s been a busy few months at Nexus451. We’ve taken on two new people to help us grow as a company, so that we can continue to provide the professional web development service our clients expect. With more and more businesses looking to web IT, to build effective on-demand CRM systems and web-based business applications, Nexus451 has gained a reputation for providing our clients with integrated cloud solutions which give them easy access to better business intelligence. With this growth of business in Ireland, the UK, and farther afield, we have had to expand our team and we are excited by the opportunities we&#8217;ve been presented with.</p>
<p><span id="more-454"></span>Darren Jarvis has joined us as our Key Account Manager. With over 15 years experience in the IT industry, working for companies such as Gateway, Sitel, and Shared Access, amongst others, Darren brings a huge amount of technical infrastructure know-how and customer management expertise to Nexus451. Darren has extensive experience across a number of IT roles, from Project Management Support to Business Systems Analysis and Project Planning.</p>
<p>Darren’s role within Nexus451, as Key Account Manager, will enable him to work with clients to gather and define their Web IT requirements. He can also advise our clients on Business Processes, web and mobile technologies, IT systems and applications, and how to utilise their data to extract valuable, relevant, and insightful business intelligence.</p>
<p>We have also brought David O’Dwyer into the Nexus451 team. David studied Computing &amp; Information Technology at the Blanchardstown Institute of Technology, and we’re delighted to be able to find another high calibre developer from the locality. We look forward to having David work with us as he embarks on his career in IT, and hopefully he won’t be the new guy for too long.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/client-news/nexus451-customer-management-team-web-development-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beating The Schema Into Submission</title>
		<link>http://www.nexus451.com/blog/articles/beating-the-schema-into-submission/</link>
		<comments>http://www.nexus451.com/blog/articles/beating-the-schema-into-submission/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 10:40:52 +0000</pubDate>
		<dc:creator>David Gillen</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Web Design & Development]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[BigDave]]></category>
		<category><![CDATA[Nexus451]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[SOAP]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=433</guid>
		<description><![CDATA[Being a web development company quite often we end up working with various APIs. Some of these are relatively simple, but many involve sending and receiving messages in XML format.  This in itself is not too much of a problem, &#8230; <a href="http://www.nexus451.com/blog/articles/beating-the-schema-into-submission/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Being a web development company quite often we end up working with various APIs. Some of these are relatively simple, but many involve sending and receiving messages in XML format.  This in itself is not too much of a problem, PHP comes with many tools to handle XML. And to be honest, most of the time the XML messages are simple and straight forward enough that integration is a breeze. And with these simpler integrations it is rare to find an XML Schema to define the messages being sent back and forth.</p>
<p><span id="more-433"></span></p>
<p>However, recently work started on an integration with a SOAP based API which involved about 20 different requests. Each request was a block of XML contained within a SOAP envolop and defined by it&#8217;s own schema; and many of the schemas had upwards of 1000 lines defining the structure of the XML payloads.</p>
<p>To communicate with the API we needed to build up an object with properties matching the XML nodes, send that to the SOAP client, and it would handle the mapping to XML.</p>
<pre>---------------------------------------
$client = new Zend_Soap_Client();
$params-&gt;node1-&gt;node2_1 = 'foo';
$params-&gt;node1-&gt;node2_2 = 'bar';
$client-&gt;methodName($params);
---------------------------------------</pre>
<p>Would result in XML similar the following being sent</p>
<pre>---------------------------------------
&lt;params&gt;
    &lt;node1&gt;
        &lt;node2_1&gt;foo&lt;/node2_1&gt;
        &lt;node2_2&gt;bar&lt;/node2_2&gt;
    &lt;/node1&gt;
&lt;/params&gt;
---------------------------------------</pre>
<p>This was fine as a proof of concept for communicating with the API. Not the prettiest by any means, but we were communicating</p>
<p>A second iteration of the code we started looking at doing it along the lines of</p>
<pre>---------------------------------------
$node1 = new stdClass();
$node1 -&gt;node2_1 = 'foo'
$params = new stdclass();
$params-&gt;node1 = $node1;
---------------------------------------</pre>
<p>I liked this in that it felt cleaner, everything was being defined, and there were no E_STRICT messages appearing (If you aren&#8217;t using E_STRICT with your PHP you should be). I still wasn&#8217;t happy though. Ideally $node1 should be of a properly defined type, not just stdClass. So I was looking at creating a class for each non-leaf node in the XML tree. For the first API call we were looking at that would have amounted to about 80 different classes I would have to create, by hand.</p>
<p>While I certainly could have jumped in and written all those classes, I knew there had to be an easier way. Why couldn&#8217;t I just parse the XML schema and generate all the different classes? A few hours later I had a basic script which was generating code along the lines of the following</p>
<pre>---------------------------------------
class node1type
{
    var $node2_1;
    var $node2_2;
    public __construct(
        $node2_1 = null,
        $node2_2 = null
    )
    {
        $this-&gt;node2_1 = $node2_1;
        $this-&gt;node2_2 = $node2_2;
    }
}
---------------------------------------</pre>
<p>This was a good start; and it allowed me to now do something along the lines of the following, and my code was becoming a lot more developer friendly to read.</p>
<pre>---------------------------------------
$params-&gt;node1 =
    new node1type('val1', 'val2');
---------------------------------------</pre>
<p>Following on from this I added the following features to the script</p>
<ul>
<li>Validation of parameters based on minOccurs and maxOccurs attributes in the schema</li>
<li>Handling of arrays of objects where maxOccurs &gt; 1</li>
<li>Type checking against objects passed in</li>
<li>Validation of integers, decimals and strings</li>
<li>Doc comments on the constructor for when your IDE supports that kind of thing</li>
<li>Generated code should not generate any errors (there will be line length warnings) when checking against the PEAR coding standard with PHP Codesniffer.</li>
</ul>
<p>The end result is a tool which in seconds generates a list of classes which I know work; and when are on my include path, my IDE will give me type hints when I am creating instances of them. There is not full support for the XML schema spec, and some things could be handled a little differently, but it works for all schemas I need it to work on, and the generated code has already, and will in the future save us a lot of development time. I hope it can be of use to others too.</p>
<p>The code is released under the GPL and is available at <a title="XSD2PHP" href="https://github.com/davidgillen/XSD2PHP" target="_blank">https://github.com/davidgillen/XSD2PHP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/articles/beating-the-schema-into-submission/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Salesforce &amp; PHP Developers Wanted</title>
		<link>http://www.nexus451.com/blog/vacancies/salesforce-php-developers-wanted/</link>
		<comments>http://www.nexus451.com/blog/vacancies/salesforce-php-developers-wanted/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 17:37:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vacancies]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[vacancy]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=337</guid>
		<description><![CDATA[Over the last 6 months Nexus451 has grown its client base to include companies like: Ulster bank, RTE, CPL and SAT-7 amongst others. With existing clients also committing to large ongoing projects we are now looking to recruit PHP and &#8230; <a href="http://www.nexus451.com/blog/vacancies/salesforce-php-developers-wanted/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the last 6 months Nexus451 has grown its client base to include companies like: Ulster bank, RTE, CPL and SAT-7 amongst others. With existing clients also committing to large ongoing projects we are now looking to recruit PHP and Salesforce developers, at both junior and senior level.</p>
<p><span id="more-337"></span>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>PHP Developer Experience (</strong><em><strong>minimum</strong></em><strong>):</strong><br />
PHP | SQL | JS | Web Services | Drupal (desirable) | Zend Qualification (desirable)</p>
<p><a title="PHP Developer Job Vacancy" href="http://www.nexus451.com/landing-php-developers.php" target="_self">Register your interest</a> for the position of PHP Developer</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>Salesforce Developer Experience (<em>minimum</em>):<br />
</strong>Dev 401 Cert | Dev 501 Cert | ADM 201 Cert | 2 Years Salesforce Development Experience | PHP/Salesforce Integration Experience (desirable) | APEX | Visual Force | JAVA Experience (desirable)</p>
<div>
<div>
<p><a title="Salesforce Job Vacancy" href="http://www.nexus451.com/landing-salesforce-developers.php" target="_self">Register your interest</a> for the position of Salesforce Developer</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/vacancies/salesforce-php-developers-wanted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Business Process Management TRIQS</title>
		<link>http://www.nexus451.com/blog/articles/business-process-management-triqs/</link>
		<comments>http://www.nexus451.com/blog/articles/business-process-management-triqs/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 14:09:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[business process]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[sales]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[sme]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=416</guid>
		<description><![CDATA[All business has one prime objective: to sell what it has for more than it cost to produce. All other objectives, no matter how large or small, depend on the ability to create a sustainable cash-flow and build a stable &#8230; <a href="http://www.nexus451.com/blog/articles/business-process-management-triqs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>All business has one prime objective: to sell what it has for more than it cost to produce. All other objectives, no matter how large or small, depend on the ability to create a sustainable cash-flow and build a stable business environment. Of course, there are plenty of other variables that can impact on cash-flow but the greater the wedge you can drive between these two variables – sales/costs – the greater the potential return should be.</p>
<p>When times are tough, and everyone is working under pressure, getting your business strategy just right can be tortuous and riddled with the potential for error. Taking time out from fire-fighting day to day battles may seem like a luxury, but if you can keep a calm, objective head and examine your business processes thoroughly you will usually find room for improvement.</p>
<p><span id="more-416"></span>Managing your business processes simply means making sure that everything works as efficiently as possible, so that actual costs carry the least amount of wastefulness. Inefficiencies cost businesses a huge amount of time, wasted time that bring item cost and sale price closer than they need necessarily be. Lowering prices should be a last resort, and doing so without addressing existing business processes is a truly desperate measure.</p>
<p><span><strong>T is for Tasks:</strong><br />
</span>All business is based on ’<em>Tasks</em>‘, all those things that must be done to enable the process of selling: replying to an email; taking orders; restocking inventory; writing a business plan; tracking productivity; managing accounts; designing a widget; running a marketing campaign; managing customer relationships; paying bills; etc. Just about everything you do that happens in a place of work, that you and your employees are paid to do, is a <em>Task</em>.</p>
<p><span><strong>R is for Requirements:<br />
</strong>Every <em>Task</em> is built on a set of <em>Requirements</em>, those procedures that must happen in order to complete a <em>Task</em>; things don’t just need to get get done, they need to be done in a way that’s most cost-effective. In order to achieve that any <em>Requirements</em> must not just be wholly subscribed to, they must be carried out by those most capable of doing so with as little interference as possible.</span></p>
<p><span><strong>I is for Issues:<br />
</strong>Anything that gets in the way of a <em>Task</em> being completed is an <em>Issue</em>. Unresolved <em>Issues</em> are the leaks in the system, the constant drip of money disappearing from businesses. Identifying <em>Issues</em> is critical to achieving business process efficiencies, associated cost savings, and building a lean, smooth-running operation. Without knowing the deep-rooted source of a concern, and how it relates to other business processes, you may end up creating problems elsewhere if you act rashly.</span></p>
<p><span><strong>Q is for Questions:<br />
</strong>Once you’ve identified any business process <em>Issues</em> you have to ask <em>Questions</em>: Is it necessary to carry out the <em>Task</em> in this way? Are its <em>Requirements</em> too impractical to carry out quickly?  Are there too many dependencies and variables associated with a <em>Task</em> or its <em>Requirements</em>? Is there a better way? Are any <em>Requirements</em> redundant? Can processes be automated? If not, why not? Everything about how you do business must be questioned regularly, and not just when times are tough.</span></p>
<p><span><em><strong>S is for Solutions:<br />
</strong>Solutions</em> to <em>Issues</em> can come out of the blue, and from any direction, but you have to be looking for them and receptive to all ideas; dismissing possibile <em>Solutions</em> simply because they don’t fit existing thinking is counter-productive; there are far too many examples in business of companies not seeing the potential in new ways of doing things and then having their market share decline. One thing is for certain: if you&#8217;re not looking for them you won&#8217;t see them, no matter where they come from.</span></p>
<p><span><strong>Conclusion:<br />
</strong>If you don’t think there are ways to improve your business processes, creating cost efficiencies even when things are going well, then it’s likely you aren’t looking hard enough. Business that don’t evolve become complacent and flounder, those that grow and become stronger are the ones always looking to improve and adapt to changing market needs.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/articles/business-process-management-triqs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office Space: It&#8217;s In The Cloud</title>
		<link>http://www.nexus451.com/blog/client-news/office-space-cloud-computing-development/</link>
		<comments>http://www.nexus451.com/blog/client-news/office-space-cloud-computing-development/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:14:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[Nexus451 News]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[Cloud Services]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Office Space]]></category>
		<category><![CDATA[Small Business]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=409</guid>
		<description><![CDATA[Nexus451 has launched Office Space, a new website to help small businesses find out more about select Cloud Services and the choices available. With all the coverage the Cloud is getting it is still a muddled message for a lot &#8230; <a href="http://www.nexus451.com/blog/client-news/office-space-cloud-computing-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Nexus451 has launched <a title="Office Space Cloud Services" href="http://www.officespace.ie/" target="_blank">Office Space</a>, a new website to help small businesses find out more about select Cloud Services and the choices available. With all the coverage the Cloud is getting it is still a muddled message for a lot of people, and if businesses don&#8217;t understand the message then it&#8217;s impossible for them to see the benefits and advantages. Our objective is to make it as simple as possible for small businesses to see what&#8217;s possible in the Cloud, so they can make informed decisions about how to manage their IT requirements in a way that&#8217;s cost-efficient, productive and accessible.</p>
<p><span id="more-409"></span></p>
<p>Over the coming weeks and months we&#8217;ll be adding more information to the site, and more products and services to the listings. Initially we&#8217;ll be concentrating on those products we know very well, Google &amp; Salesforce, and highlighting the various Apps available on those platforms. We&#8217;ll keep users informed about news and service offerings from these two Cloud giants, as well as those third parties whose applications catch our eye. We hope the knowledge, and expertise, we&#8217;ve built up over the last 5 years in these areas will help small business owners when they look to enhance their IT.</p>
<p>We&#8217;ll also be showcasing work we&#8217;ve done, giving insight into how to make the most from your online business; from website design and usability through to customer management and building efficient business processes. If you&#8217;ve any queries or suggestions for what you&#8217;d like to see on <a title="Office Space Cloud Computing For Small Businesses" href="http://www.officespace.ie/" target="_blank">Office Space</a> just drop us a line.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/client-news/office-space-cloud-computing-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design: A Business Strategy For Online Profit</title>
		<link>http://www.nexus451.com/blog/articles/design-a-business-strategy-for-online-profit/</link>
		<comments>http://www.nexus451.com/blog/articles/design-a-business-strategy-for-online-profit/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 23:15:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Web Design & Development]]></category>
		<category><![CDATA[branding]]></category>
		<category><![CDATA[business strategy]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=400</guid>
		<description><![CDATA[Is professional web design seen as an important part of growing your business, or is it something that just gets tacked on to the marketing budget? Professional, creative web design isn’t just about pretty pictures and a few nicely shaped buttons, &#8230; <a href="http://www.nexus451.com/blog/articles/design-a-business-strategy-for-online-profit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
<p>Is professional web design seen as an important part of growing your business, or is it something that just gets tacked on to the marketing budget?</p>
<p>Professional, creative web design isn’t just about pretty pictures and a few nicely shaped buttons, it’s about defining your brand and how it functions in an online environment  - for your business, and its customers, good design is about how people interact with your brand in a way that creates a positive user experience.</p>
<p><span id="more-400"></span>Putting a business website together isn’t something that should be done on a whim; it takes effort, time and resources to be effective in any competitive space and the web is no different.  Professional web design is calculated, strategic, and must have a defined set of marketing requirements if it&#8217;s to be successful. Every element of a site &#8211; from content management to business intelligence and analysis, from product/service offerings to ordering processing and fulfillment, from search engine optimisation to social media integration  - must reinforce the idea of brand excellence.</p>
<p><em>“…research also found a higher intensity of design activity among rapidly growing businesses, who were six times more likely than static ones to see design as integral to their operation.”</em><br />
<a title="Design Council UK" href="http://www.designcouncil.org.uk/" target="_blank"> Design Council UK</a></p>
<p>With the rapidly growing connectedness of the internet &#8211; social media, smart mobile devices, location based services (LBS) and augmented reality (AR) &#8211; user experience design has to adapt so that businesses can engage with their customers in a way that is consistent.</p>
<p>Professional design is about creating desirable, functional solutions which command market share. Good web design, in conjunction with a well thought out brand strategy which has the user experience as it&#8217;s core, makes business processes accessible, intuitive and profitable. How seriously businesses take design and manage their brand strategy, if they even have one, will determine how successful they become at engaging consumers and growing brand loyalty.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/articles/design-a-business-strategy-for-online-profit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Client: Ulster Bank – Salesforce CRM Development</title>
		<link>http://www.nexus451.com/blog/client-news/salesforce_crm_development_ulster_bank_rbs/</link>
		<comments>http://www.nexus451.com/blog/client-news/salesforce_crm_development_ulster_bank_rbs/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 11:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Nexus451 News]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[banking]]></category>
		<category><![CDATA[crm development]]></category>
		<category><![CDATA[financial sector]]></category>
		<category><![CDATA[rbs]]></category>
		<category><![CDATA[ulster bank]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=331</guid>
		<description><![CDATA[Nexus451 is pleased to have been approved as an Official Supplier to the Ulster Bank Group, Ulster Bank is a subsidiary of the RBS Group. Nexus451 will primarily be working on a number of Salesforce CRM related projects. We are &#8230; <a href="http://www.nexus451.com/blog/client-news/salesforce_crm_development_ulster_bank_rbs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Nexus451 is pleased to have been approved as an Official Supplier to the Ulster Bank Group, Ulster Bank is a subsidiary of the RBS Group.</p>
<p>Nexus451 will primarily be working on a number of Salesforce CRM related projects. We are delighted that our knowledge and expertise in the implementation of complex Salesforce CRM solutions &#8211; data integration and automated business process development &#8211; has been recognised once again by one of Ireland&#8217;s largest business brands.</p>
<p><span id="more-331"></span>Ulster Bank is a leading retail and commercial bank in Northern Ireland and the Republic of Ireland. It provides a comprehensive range of financial services through both its Retail markets division, which has a network of branches and operates in the personal and Bancassurance sectors, and its Corporate Markets division which provides services to business customers, corporates and institutional markets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/client-news/salesforce_crm_development_ulster_bank_rbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Client: Sat-7 &#8211; Audience Relationship CRM System</title>
		<link>http://www.nexus451.com/blog/client-news/sat7-salesforce-crm-development/</link>
		<comments>http://www.nexus451.com/blog/client-news/sat7-salesforce-crm-development/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 11:54:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Nexus451 News]]></category>
		<category><![CDATA[Salesforce]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[crm]]></category>
		<category><![CDATA[crm development]]></category>
		<category><![CDATA[data integration]]></category>
		<category><![CDATA[SaaS]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=319</guid>
		<description><![CDATA[Sat-7, a TV station based in Cyprus, has contracted Nexus451 to develop a specification for their Audience Relationship System utilising the Salesforce.com CRM platform. This business system will be designed from the ground up,  providing a structured environment within which the fragmented nature of &#8230; <a href="http://www.nexus451.com/blog/client-news/sat7-salesforce-crm-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sat-7, a TV station based in Cyprus, has contracted Nexus451 to develop a specification for their Audience Relationship System utilising the Salesforce.com CRM platform. This business system will be designed from the ground up,  providing a structured environment within which the fragmented nature of audience interaction across all media &#8211; including social media &#8211; can be consolidated and utilised more efficiently by Sat-7.</p>
<p><span id="more-319"></span>Such a system will allow Sat-7 to allocate in-house resources more effectively: speeding up response times to audience interactions and enhancing the customer experience; creating a centralised information eco-system for accurate data usage based on defined user role types; business intelligence and analysis of audience and media segmentation, marketing campaigns, general feedback, etc; automated generation of reports; appropriate event based alerts and triggers sent via an integrated SMS service where necessary.</p>
<p><strong>About Sat-7:</strong> <a href="http://www.sat7.org">www.sat7.org<br />
</a>Since 1996, SAT-7 has worked in the Middle East and North Africa to give local churches a satellite TV platform to educate and encourage their communities, combat misconceptions about the Christian Faith in the region, work inter-denominationally, and foster bridges of understanding with the much larger non-Christian majority. SAT-7 broadcasts in Arabic, Farsi and Turkish and it’s channels have annual total viewership scientifically estimated to be 15 million people. Approximately 80% of the programmes shown on the multi-channel network are developed by local people, created in their own languages to ensure that the channel is culturally sensitive and relevant</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/client-news/sat7-salesforce-crm-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple SEO Tips &#124; 4 &#124; Competitor Analysis &amp; Business Intelligence SEO</title>
		<link>http://www.nexus451.com/blog/seo/simple-seo-tips-4-competitors-analysis-marketing-business-intelligence/</link>
		<comments>http://www.nexus451.com/blog/seo/simple-seo-tips-4-competitors-analysis-marketing-business-intelligence/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 14:36:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[brand awareness]]></category>
		<category><![CDATA[business intelligence]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[strategy]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=304</guid>
		<description><![CDATA[Now that you&#8217;ve organised your website and made it public &#8211; stuffed with nutritious and organic search engine friendly keywords and strung it out for consumption like a particularly fat goat on a rope &#8211; you&#8217;d be utterly wrong in &#8230; <a href="http://www.nexus451.com/blog/seo/simple-seo-tips-4-competitors-analysis-marketing-business-intelligence/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Now that you&#8217;ve organised your website and made it public &#8211; stuffed with nutritious and organic search engine friendly keywords and strung it out for consumption like a particularly fat goat on a rope &#8211; you&#8217;d be utterly wrong in thinking all you have to do is sit back and wait. There&#8217;s no one stopping you doing that but it is rather a kind of hopeful, apathetic, and downright lazy-minded approach; you may well get a sniff of attention every so often but you really need to keep an eye on how your website is doing on a weekly basis. You have to remember, always, that you&#8217;re not the only business looking for business or search engine ranking. Your competitors are dangling their bits out in the wind too, and you need to keep an beady eye on what the mutts are doing: analyse their approach, their content, their keywords, their marketing strategy and look for their weaknesses so you can exploit them. Their customers and clients are your customers and clients &#8211; they just need to be given the opportunity to be wowed by your drop-dead gorgeous business-minded brilliance.</p>
<p><span id="more-304"></span><strong>Competitors</strong><br />
Your business competitors are pretty much there for the taking (as always with these things it&#8217;s just a matter of timing), especially if they&#8217;re offering services and/or products to customers which are perceived as unsatisfactory: too expensive, too slow, too dumb, or just plain faulty and ugly. A competitor who isn&#8217;t always playing at the top of their game risks everything by becoming complacent, taking clients for granted and assuming they have no reason to look for an alternative. Like most things there&#8217;s nearly always an alternative, it&#8217;s just a matter of when it becomes more attractive than present circumstances dictate.</p>
<p>A good place to start looking for business opportunities is your competitors websites. Once you understand the business terrain they&#8217;ve defined for themselves you can start to work within that environment, improving on it to suit your own requirements. By strategically positioning your own company, through business intelligence gathering, you should be well placed to pick up and look after any of your competitors customers who&#8217;ve been left a bit isolated. If you can persuade a few to give you a chance &#8211; and successfully deliver on expectations &#8211; then you create the kind of positive customer relationship that breeds awareness, and a momentum that can be showcased to attract others.</p>
<p><strong>Analysis</strong><br />
Their are plenty of ways to get insights into how your business is doing online in terms of content, keywords and search engine positioning. It&#8217;s just as easy to get similar insights into how your competitors are doing, all it takes is time and effort. Or money. It&#8217;s easy enough to find an SEO Expert and start throwing money at things, but why not see how far you can get on your own first &#8211; you&#8217;ll save money and gain an understanding of your own online approach to business.</p>
<p>Understanding where your competitors are positioning themselves, and what approach they&#8217;re taking in building up their online brand awareness, is key to understanding where your business needs to be better. All it comes down to is asking the questions that provide the best SEO business intelligence for analysis. What does their website say about them? What keywords are they targeting? How are they utilised on their site? Does their site look professional and structurally well thought out? Is it comprehensive in terms of its content? Is the content engaging and original, or unimaginative and dull? Is it updated regularly with fresh content? Do all the pages get updated, or just the blog, news, products sections? Has the site been recently redesigned? Is there a mobile version? Do they engage with social media? Do they have a newsletter? Is there a unified approach to how the brand works across its various implementations? Do they link to various partners, clients, customers? Do partners and clients talk about them online? Who are their customers? How often do your competitors appear in news item searches? What for? Do they take part in online discussions? If so, then about what? And a thousand other questions that you need to ask to understand how the optimisation game is to be played, the strategies that should be considered and the results that need to be measured against.</p>
<p>Or you could just take a punt on setting up various online efforts because everyone else seems to be at them. Whatever.</p>
<p><strong>Business Intelligence SEO</strong><br />
SEO is purely a targeting device &#8211; optimising your content so that it&#8217;s positioned to make the maximum impression within search engines. Once you&#8217;ve defined the online search results environment your competitor likes to inhabit you can use Business Intelligence SEO techniques to pinpoint where your business is going to engage with them. If you&#8217;ve done the necessary information gathering on competing businesses, as well as your own, you can readily create the sort of content, and context, that maximises exposure in the keyword searches you want to target. How much effort you bring to bear on your SEO venture depends on your own resources and strategies &#8211; do you want to challenge head on, or is it better to try a different angle of approach, or even have multiple fronts going simultaneously?</p>
<p>Intelligent, strategic search engine optimisation is an ongoing discipline that needs to be carried out reasonably regularly. You need to analyse not just how your own site is doing, weekly, monthly, but how your business competitors are adapting to any threat you may pose.</p>
<p>What information can you gather for ongoing analysis, and how should you manage your time and resources to maintain the momentum you need to thrive? Doing SEO work every two years when you update your tired old site is of little benefit to anyone, but it&#8217;s better than none. Expecting to get to the top of the search engines for little or no effort is just deluded, others are far more committed to their cause and have been doing it for far longer. But, it can be done, over time, and for relatively little expense if you&#8217;re prepared to do the work yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/seo/simple-seo-tips-4-competitors-analysis-marketing-business-intelligence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Web Design, Professional Web Development</title>
		<link>http://www.nexus451.com/blog/articles/creative-web-design-professional-web-development/</link>
		<comments>http://www.nexus451.com/blog/articles/creative-web-design-professional-web-development/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 14:08:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Web Design & Development]]></category>
		<category><![CDATA[brand awareness]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[website development]]></category>

		<guid isPermaLink="false">http://www.nexus451.com/blog/?p=268</guid>
		<description><![CDATA[Why is design an important part of growing your business? Because creative web design isn&#8217;t just about pretty graphics and a few nicely shaped buttons, it&#8217;s about defining not just how things look but how they work. Design isn&#8217;t something &#8230; <a href="http://www.nexus451.com/blog/articles/creative-web-design-professional-web-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Why is design an important part of growing your business?</p>
<p>Because creative web design isn&#8217;t just about pretty graphics and a few nicely shaped buttons, it&#8217;s about defining not just how things look but how they work. Design isn&#8217;t something that&#8217;s done on a whim; it&#8217;s calculated, strategic and must serve a purpose in a way that each element functions as part of the whole. Good design always has an objective, a well thought out reason that fulfills a functional requirement.</p>
<p>Professional web development no longer just means building websites that work on stand-alone monitors and their browsers, it means recognising that there&#8217;s multiple platforms, environments, networks, devices, operating systems, and ways of distributing information that must be considered. Now, more than ever, having a coherent design strategy that is integral to the running of a business is a necessity.</p>
<p><span id="more-268"></span>&#8220;&#8230;research also found a higher intensity of design activity among rapidly growing businesses, who were six times more likely than static ones to see design as integral to their operation.&#8221; <em>Design Council UK</em></p>
<p>With more and more devices, of all shapes and sizes, connecting to online businesses it&#8217;s become increasingly apparent that how they present themselves to consumers is hugely important. How seriously businesses take their design strategy, if they even have one, will determine how successful they become at engaging consumers and retaining their loyalty.</p>
<p>Businesses that delegate design matters to juniors, and empower them to make decisions that affect their company, will no doubt suffer &#8211; especially if there&#8217;s no accountability, analysis or record of the impact of those decisions.</p>
<p>These days, with the huge variety of ways to interact within the same space as customers, it&#8217;s simply too easy to get distracted by possibilities and look busy while standing still. Instead of doing one thing well, before moving on to the next challenge, too many companies seem to be fragmenting their efforts and diluting their brand across too many platforms with no methodology to what they&#8217;re doing.</p>
<p>Design is not about implementing the latest sugar-rushed clip-art impulse, any pixel-monkey can do that. Creating brand awareness is not about tweeting drivel and business intelligence is certainly not about counting the number of followers you have on Facebook.</p>
<p>While it can be argued about how much value there is in social networks for companies, there is no argument that the core of any online business is its own website. Creative web design and professional web development is about making things work better, it&#8217;s about having a plan and building on it. It&#8217;s about bringing customers into your own environment and making them believe in it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nexus451.com/blog/articles/creative-web-design-professional-web-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

