<?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>EVOKNOW, Inc.</title>
	<atom:link href="http://www.evoknow.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.evoknow.com</link>
	<description>Trusted Web Experts @ Your Service</description>
	<lastBuildDate>Tue, 19 Jul 2011 23:55:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Open Source Tools We Know</title>
		<link>http://www.evoknow.com/open-source-tools-we-know</link>
		<comments>http://www.evoknow.com/open-source-tools-we-know#comments</comments>
		<pubDate>Fri, 29 Apr 2011 15:34:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2900</guid>
		<description><![CDATA[Development Tools Yii Framework for PHP5 We develop in Yii to take advantage of its lightweight, MVC-based PHP5-only codebase. JQuery Framework for JavaScripts We prefer to use JQuery as a JavaScript framework for all our projects. Git Version Control We use git version control for all our projects.]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>E-commerce</h2>
<h3>Zen Cart</h3>
<p>We have extensive expertise in customizing, tuning, securing and even hosting Zen Cart based  e-commerce systems.</p>
<h3>CyberSource / Authorize.Net</h3>
<p>We have extensive SOAP API knowledge of CyberSource and Authorize.net for credit card processing services.</p>
<h3>Trustwave PCI Compliance Suite</h3>
<p>We have extensive expertise in maintaining PCI compliance for e-commerce systems using Trustwave Suite of Tools.</p>
<h3>Sphinx Search</h3>
<p>We can improve your in-site product / page search results using a true search engine like Sphinx.<br />
</div>
<div class="one_half last">
<h2>General Business Tools</h2>
<h3>WordPress</h3>
<p>We have extensive knowledge of WordPress blogging platform and can customize it to your needs. We also know how to write plugins.</p>
<h3>ActiveCollab</h3>
<p>We use ActiveCollab as a ticketing tool and can customize it using its API to interact with outside systems</p>
</div><div class="clear"></div>
<h2>Development Tools</h2>
<h3>Yii Framework for PHP5</h3>
<p>We develop in Yii to take advantage of its lightweight, MVC-based PHP5-only codebase.</p>
<h3>JQuery Framework for JavaScripts</h3>
<p>We  prefer to use JQuery as a JavaScript framework for  all our projects.</p>
<h3>Git Version Control</h3>
<p>We use git version control for all our projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/open-source-tools-we-know/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and MySQL Best Practices</title>
		<link>http://www.evoknow.com/php-and-mysql-best-practices</link>
		<comments>http://www.evoknow.com/php-and-mysql-best-practices#comments</comments>
		<pubDate>Fri, 29 Apr 2011 04:03:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2864</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>Code Formatting &#038; Care</h2>
<h3>No [TAB] Characters Anywhere!</h3>
<p>Use three-space indentation. </p>
<h3>Curly Braces Live Alone</h3>
<p>Each curly brace &#8212; { or } &#8212; needs to be in a line of its own!</p>
<h3>Insert a SPACE between Operator and Operand</h3>
<p>Don&#8217;t be cheap, use SPACE generously between operator and operands. </p>
<h3>Think Verb for Each Method Name</h3>
<p>Each method name should contain a verb.</p>
<h3>Spell Check Your Code Comments</h3>
<p>Use command line speller like aspell to spell check your code/comment.</p>
</div>
<div class="one_half last">
<h2>Code Quality</h2>
<h3>Keep Methods Short &#038; Readable</h3>
<p>If your method exceeds more than two pages (> 150 lines), rethink your algorithm!</p>
<h3>Use Yii Migration Concept for Database Changes</h3>
<p>Use Yii data migration concept for keeping track of database changes. </p>
<h3>Submit Each Meaningful Change to Git</h3>
<p>Push every meaningful single changes to git instead of pushing a bunch of changes at a time. </p>
</div><div class="clear"></div>
<div class="one_half">
<h2>Database Conventions</h2>
<h3>Table name is a singular word</h3>
<p>Use singular form of a word for a table name.</p>
<h3>Use lowercase for Table and Column Names</h3>
<p>Write table and column (field) names using lower case letters.</p>
<h3>Use tableA_tableB name for relation tables</h3>
<p>Create relation (link) tables by combining two table names using a underscore character.</p>
</div>
<div class="one_half last">
<h2>Database Performance &#038; Security</h2>
<h3>Index Conservatively</h3>
<p>Don&#8217;t index fields that you do not use frequently in your query where clauses.</p>
<h3>Avoid TEXT/BLOB in Frequently Used Tables</h3>
<p>These data types and even VARCHAR can cause performance issues in frequently used tables.</p>
<h3>Partition Large Tables</h3>
<p>Use horizontal table partition schema to improve performance for large tables. </p>
<h3>Limit Database Privileges</h3>
<p>Do not make your app&#8217;s database user privilege equal to root unless it must need such privileges.</p>
</div><div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/php-and-mysql-best-practices/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Programmer</title>
		<link>http://www.evoknow.com/php-programmer</link>
		<comments>http://www.evoknow.com/php-programmer#comments</comments>
		<pubDate>Fri, 29 Apr 2011 03:41:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2848</guid>
		<description><![CDATA[Exception is Not the Norm Of course, there is always an exception to every scenario. We wanted to acknowledge that there are very rare cases where a single PHP programmer has successfully built a decent size application because of unreliable attention to details and virtually at total sacrifice of personal life style. So we wanted to tell you that if [...]]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>What a PHP Programmer CAN do</h2>
<h3>Promise You Unrealistic Deadlines</h2>
<p>Most one-man shop PHP programmers do not have the decipline or experience to turn a bunch of code and database into a production-ready system. A typical PHP programmer did not go to a great computer science school or have an world-class experience spanning over decade on Web technologies.  </p>
</div><br />
<div class="one_half last">
<h2>What a PHP Programmer CANNOT do</h2>
<h3>Run Parallel Tasks</h2>
<p>A one-man PHP programmer cannot simultaneously work on multiple tasks by definition. So tasks that can be often run in parallel such as User Interface (UI) design, database design, QA planning, etc. are never done in a time saving manner or hardly ever done the right way.</p>
</div><div class="clear"></div></p>
<h2>Exception is Not the Norm</h2>
<p>Of course, there is always an exception to every scenario. We wanted to acknowledge that there are very rare cases where a single PHP programmer has successfully built a decent size application because of unreliable attention to details and virtually at total sacrifice of personal life style.  So we wanted to tell you that if you are so lucky to have such a PHP programmer in the know and working for you, GOOD LUCK!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/php-programmer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Partner With Us?</title>
		<link>http://www.evoknow.com/why-partner-with-evoknow</link>
		<comments>http://www.evoknow.com/why-partner-with-evoknow#comments</comments>
		<pubDate>Thu, 28 Apr 2011 05:46:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2813</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>+ Virtual CTO Service</h2>
<p>When you choose EVOKNOW as your Web development partner, you don&#8217;t just get a bunch of engineers who write code and maintain your  Web applications and databases. You get our virtual CTO service which includes:</p>
<ul>
<li>
<h3>Overall Web strategy for your company</h3>
</li>
<li>
<h3>Technology Guidance for your Web portfolio</h3>
</li>
</ul>
<p>Many of the small and medium size businesses that we deal with do not usually have a CTO in house. This means there is no in-house expertise to drive a technology vision for the company with any reliable level of expertise, insights and experiences. Can you imagine hiring a CTO that has the experience to run technical teams, drive technology visions for multi-million dollar companies, do technical do diligence in technology merger and acquisition deals? Such a pair of shoe would cost anywh</p>
<p>Our virtual CTO service includes access to our expert resources to help you make informed and best decisions regarding all your online efforts involving: Web applications, presence, reputation, performance and security.<br />
</div>
<div class="one_half last">
<h2>+ Agile Development Process</h2>
<p>Once we taken on your new or existing Web development efforts, we will create a comprehensive &#8220;Product Backlog&#8221; of all the features that you want to develop.</p>
<p>We will then complete them in two to four week long &#8220;sprints&#8221;.  Each sprint deliver a usable list of features that both you and our QA team can test and sign off. By incrementally building your features into a fully functional product we are able to accommodate an aggressive  yet realistic time-to-market deadline vs one that is pulled out of a magician&#8217;s hat. In other words, if your project is divided into ten sprints and seven of them are on-time, you know you have a fairly well established track record for time-to-completion for your entire project.</p>
<p>Also, unlike other approaches, an agile sprint based process allows us to accommodate changes &#8212; changes are welcome in the agile development process. As change requests are put on the Product Backlog and gets done in follow-up sprints. Everyone is clear about what is added to the Product Backlog and what impact it has in the time line of a the entire project. So no expectation mismatch creeps in in the middle of the project.<br />
</div><div class="clear"></div>
<div class="one_half">
<h2>+ High Caliber Expertise</h2>
<p>TBW<br />
</div>
<div class="one_half last">
<h2>-</h2>
</div><div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/why-partner-with-evoknow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer</title>
		<link>http://www.evoknow.com/web-developer</link>
		<comments>http://www.evoknow.com/web-developer#comments</comments>
		<pubDate>Thu, 07 Apr 2011 03:55:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2803</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>Looking for a Web Developer? Are You Sure?</h2>
<ul class="a_points">
<li><strong>Didn&#8217;t your last Web developer run out of steam?</strong></li>
<li><strong>Is your project overwhelming your current Web developer?</strong></li>
<li><strong>Tired of semi-professional Web developer?</strong></li>
<li><strong>Market opportunities fading away because of technology issues?</strong></li>
<li><strong>Want a reasonably priced fixed-cost retainer for your Web site?</strong></li>
</ul>
<p><table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/phone.png"></td>
<td style="vertical-align: middle !important;"><h2>&nbsp;Call (916) 920.4730</h2></td></tr>
</table>
<br />
<table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/email2.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="/contact-us">&nbsp;Send a Message</a></h2></td></tr>
</table></p>
</div>
<div class="one_half last">
<h2>How Can We Help?</h2>
<ul class="b_points">
<li><strong>Take over any incomplete Web development project</strong></li>
<li><strong>Resolve performance issues &#038; security risks</strong></li>
<li><strong>Perform on-going bug fixes and feature upgrades</strong></li>
<li><strong>Rewrite code for performance and scalability</strong></li>
<li><strong>Help you build a scalable Web site</strong></li>
</ul>
</div><div class="clear"></div>
<div class="clear"></div>
<div id="my_slides_black_white"></div>
<script type="text/javascript" src="/tools/ppt/jquery-ui.min.js" ></script>
<script type="text/javascript" src="/tools/ppt/evoknow_slides.js" ></script>
<script type="text/javascript" src="/assets/ppt/php-programming.js" ></script>
<div class="side_notes2"></p>
<h2>Our Not So &#8220;Fine Print&#8221;</h2>
<p>Here are some important &#8220;fine print&#8221; that we wanted to let you know in plain English:</p>
<ul class="c_points">
<li> Minimum project size: you must have an established budget for Web development &#038; maintenance</li>
<li> We prefer a fixed-cost relationship over an hourly &#8220;consultant&#8221; rate.</li>
<li> We do not work with any company that degrades other human beings in any way</li>
<li> We do not work with outside consultants: all our engineers are in-house staff members</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/web-developer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ecommerce Experts</title>
		<link>http://www.evoknow.com/ecommerce-experts</link>
		<comments>http://www.evoknow.com/ecommerce-experts#comments</comments>
		<pubDate>Mon, 04 Apr 2011 19:50:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2786</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>Need Professional E-commerce Experts?</h2>
<ul class="a_points">
<li><strong>Are you still making pricing decisions manually?</strong></li>
<li><strong>Are you still using database query  to let users search products on-site?</strong></li>
<li><strong>Are you still manually managing sales channels?</strong></li>
<li><strong>Market opportunities fading away because of technology issues?</strong></li>
<li><strong>Want a reasonably priced fixed-cost retainer for your e-commerce site?</strong></li>
</ul>
<p><table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/phone.png"></td>
<td style="vertical-align: middle !important;"><h2>&nbsp;Call (916) 920.4730</h2></td></tr>
</table>
<br />
<table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/email2.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="/contact-us">&nbsp;Send a Message</a></h2></td></tr>
</table></p>
</div>
<div class="one_half last">
<h2>How Can We Help?</h2>
<ul class="b_points">
<li><strong>Help you optimize your pricing using custom decision support tools</strong></li>
<li><strong>Help your customers find products using real search technology</strong></li>
<li><strong>Resolve performance issues &#038; security risks</strong></li>
<li><strong>Perform on-going bug fixes and feature upgrades</strong></li>
<li><strong>Rewrite code for performance and scalability</strong></li>
</ul>
</div><div class="clear"></div>
<div class="clear"></div>
<div id="my_slides_black_white"></div>
<script type="text/javascript" src="/tools/ppt/jquery-ui.min.js" ></script>
<script type="text/javascript" src="/tools/ppt/evoknow_slides.js" ></script>
<script type="text/javascript" src="/assets/ppt/php-programming.js" ></script>
<div class="side_notes2"></p>
<h2>Our Not So &#8220;Fine Print&#8221;</h2>
<p>Here are some important &#8220;fine print&#8221; that we wanted to let you know in plain English:</p>
<ul class="c_points">
<li> You must have a budget established Web development &#038; maintenance</li>
<li> We prefer a fixed-cost relationship over an hourly &#8220;consultant&#8221; rate. Our <i>minimum</i> retainer is $5K/month</li>
<li> We do not work with any company that degrades other human beings in any way</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/ecommerce-experts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developers</title>
		<link>http://www.evoknow.com/web-developers</link>
		<comments>http://www.evoknow.com/web-developers#comments</comments>
		<pubDate>Sat, 02 Apr 2011 15:53:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2772</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>Need Professional Web Developers?</h2>
<ul class="a_points">
<li><strong>Is your current team failing to deliver on time?</strong></li>
<li><strong>Is your project overwhelming your current team?</strong></li>
<li><strong>Tired of semi-professional Web developers?</strong></li>
<li><strong>Market opportunities fading away because of technology issues?</strong></li>
<li><strong>Want a reasonably priced fixed-cost retainer for your Web site?</strong></li>
</ul>
<p><table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/phone.png"></td>
<td style="vertical-align: middle !important;"><h2>&nbsp;Call (916) 920.4730</h2></td></tr>
</table>
<br />
<table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/email2.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="/contact-us">&nbsp;Send a Message</a></h2></td></tr>
</table></p>
</div>
<div class="one_half last">
<h2>How Can We Help?</h2>
<ul class="b_points">
<li><strong>Take over any incomplete Web development project</strong></li>
<li><strong>Resolve performance issues &#038; security risks</strong></li>
<li><strong>Perform on-going bug fixes and feature upgrades</strong></li>
<li><strong>Rewrite code for performance and scalability</strong></li>
<li><strong>Help you build a scalable Web site</strong></li>
</ul>
</div><div class="clear"></div>
<div class="clear"></div>
<div id="my_slides_black_white"></div>
<script type="text/javascript" src="/tools/ppt/jquery-ui.min.js" ></script>
<script type="text/javascript" src="/tools/ppt/evoknow_slides.js" ></script>
<script type="text/javascript" src="/assets/ppt/php-programming.js" ></script>
<div class="side_notes2"></p>
<h2>Our Not So &#8220;Fine Print&#8221;</h2>
<p>Here are some important &#8220;fine print&#8221; that we wanted to let you know in plain English:</p>
<ul class="c_points">
<li> Minimum project size: you must have an established budget for Web development &#038; maintenance</li>
<li> We prefer a fixed-cost relationship over an hourly &#8220;consultant&#8221; rate</li>
<li> We do not work with any company that degrades other human beings in any way</li>
<li> We do not work with outside consultants: all our engineers are in-house staff members</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/web-developers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When We Are Not a Good Fit For You</title>
		<link>http://www.evoknow.com/when-we-are-not-a-good-fit-for-you</link>
		<comments>http://www.evoknow.com/when-we-are-not-a-good-fit-for-you#comments</comments>
		<pubDate>Fri, 04 Mar 2011 01:26:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com/?page_id=2736</guid>
		<description><![CDATA[EXTERNAL RESOURCES BE AWARE THAT WE ARE NOT ENDORSING ANY OF THE FOLLOWING SERVICES. WE DO NO HAVE ANY AFFILIATE OR ANY OTHER KIND OF RELATIONSHIP WITH THEM. EXPLORE THEM AT YOUR OWN RISK. Magento eCommerce Platforms provide the scalability, flexibility and features for business growth. Magento provides feature-rich eCommerce platforms that offer merchants complete flexibility and control over the [...]]]></description>
			<content:encoded><![CDATA[<h2>EXTERNAL RESOURCES</h2>
<p><strong>BE AWARE THAT WE ARE NOT ENDORSING ANY OF THE FOLLOWING SERVICES. WE DO NO HAVE ANY AFFILIATE OR ANY OTHER KIND OF RELATIONSHIP WITH THEM. EXPLORE THEM AT YOUR OWN RISK.</strong></p>
<table border=0 cellpadding="3">
<tr>
<td style="width: 300px;"><img src="http://www.magentocommerce.com/images/uploads/Magento-EPG-150.jpg"></td>
<td>Magento eCommerce Platforms provide the scalability, flexibility and features for business growth. Magento provides feature-rich eCommerce platforms that offer merchants complete flexibility and control over the presentation, content, and functionality of their online channel.<br />
<br />
<a href="http://www.magentocommerce.com/" rel="nofollow"><br />
<h3>Checkout Magento</h3>
<p></a>
</td>
</tr>
</table>
<table border=0 cellpadding="3">
<tr>
<td style="width: 300px;"><img src="http://www.zen-cart.com/includes/templates/zc2010/images/zen-cart-logo.png"></td>
<td>Zen Cart is arguably the most popular open source PHP/MySQL based e-commerce platform with a very large install base around the world. If you are a startup or a small business that wants to put together an online store independently without spending tens of thousands of dollars on Internet consultants and Web programmers, you can consider Zen Cart as your entry-level e-commerce system.<br />
</p>
<p><a href="http://www.zen-cart.com/" rel="nofollow"><br />
<h3>Checkout ZenCart</h3>
<p></a>
</td>
</tr>
</table>
<div class="one_half">
<h3>Services</h3>
<ul class="c_list">
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
</ul>
</div>
<div class="one_half last">
<h3>Others</h3>
<ul class="c_list">
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
<li><a rel="nofollow" href="http://www.odesk.com/contractors/title/PHP">odesk.com</a>
</ul>
</div><div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/when-we-are-not-a-good-fit-for-you/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our PHP / MySQL Web Development Expertise</title>
		<link>http://www.evoknow.com/php-mysql-web-development-expertise</link>
		<comments>http://www.evoknow.com/php-mysql-web-development-expertise#comments</comments>
		<pubDate>Thu, 20 Jan 2011 01:17:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>PHP Expertise</h2>
<p>We have standardized our new development efforts using the Yii Framework. We found Yii to have the right performance and clean core code base to be our framework of choice. This does not mean we do not like other frameworks to various degrees, its just our choice of tool at this time.  </p>
<ul class="c_points">
<li><strong>Framework</strong> &#8211; Yii framework <a target=_new href="http://www.yiiframework.com/performance/"><img src="/assets/icons/orange/png/16/Info.png" style="vertical-align: middle" title="Compare Yii with other frameworks"></a></li>
<li><strong>PHP5</strong> &#8211; Object Oriented Programming (OOP)</li>
<li><strong>Design Pattern</strong> &#8211; Model-View-Controller (MVC)</li>
<li><strong>Design Pattern</strong> &#8211; Active Records</li>
</ul>
<p>Our 10+ years of experience shows that most PHP projects done by a single developer or a small team do not start out with any framework, which is often the cause of many redundant code and confusion.  We start every new project with Yii to introduce software life-cycle concepts and processes to the project from day-one!</p>
<h3>Common Projects:</h3>
<ul class="c_points">
<li><strong>Code Rewrites for Performance</strong> &#8211; yes</li>
<li><strong>E-commerce Web Site</strong> &#8211; yes</li>
<li><strong>Complex Web Apps </strong> &#8211; yes</li>
<li><strong>Memcache Performance Upgrade </strong> &#8211; yes</li>
<li><strong>Zen Cart Migration</strong> &#8211; yes</li>
<li><strong>WordPress Customization</strong> &#8211; yes </li>
<li><strong>WordPress Plugin Development</strong> &#8211; yes </li>
<li><strong>PHP4 to PHP5 Migration</strong> &#8211; yes </li>
</ul>
</div>
<div class="one_half last"><br />
<div class="side_notes3"><br />
<img src="/assets/books/mjk_secure_php.png"><br />
We wrote our own framework when we wrote this book a few years back. Now a days PHP frameworks are abundant.  We wrote this book  and wrote fifty different applications to prove that it is better to write code using a single clean framework than the spaghetti code that were (and unfortunately still is) so common in the PHP developer community.<br />
</div><br />
<span style="float: right"><table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/blog64.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="http://yiihacker.com">&nbsp;yiihacker.com</a></h2></td></tr>
</table></span></p>
</div><div class="clear"></div>
<div class="one_half">
<h2>MySQL Expertise</h2>
<p>We tune and tweak MySQL databases for performance using various techniques including: query caching, read/write I/O splitting, replication, etc. We also use various storage engines such as InnoDB, MEMORY, MERGE and the good old default MYISAM intelligently to maximize performance and thus responsiveness of a MySQL database.</p>
<ul class="c_points">
<li><strong>Transactions</strong> &#8211; using InnoDB storage engine</li>
<li><strong>Caching</strong> &#8211; using MEMORY storage engine</li>
<li><strong>I/O Splitting</strong> &#8211; using MERGE storage engine</li>
<li><strong>Replication</strong> &#8211; binary log based replication</li>
<li><strong>Triggers</strong> &#8211; high performance automation</li>
</ul>
<p>However, often it is the poorly developed SQL queries that are the bottlenecks in a Web application. By rewriting the queries and including in-memory caching technology such as memcache to reduce read requests from the database, we can significantly speed up the database performance, which truly enhances the end-user experience of your Web site.</p>
<h3>Common Projects:</h3>
<ul class="c_points">
<li><strong>Design</strong> &#8211; relational database design</li>
<li><strong>Performance Tuning</strong> &#8211; configuration, replication, etc.</li>
<li><strong>Query Tuning</strong> &#8211; query rewriting</li>
<li><strong>Data Mining</strong> &#8211; custom decision support apps</li>
</ul>
</div>
<div class="one_half last"><br />
<img src="/assets/books/mjk_professional-red-hat-enterprise-linux-3.png"></p>
<p><table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/blog64.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="http://mysqlhacker.com">&nbsp;mysqlhacker.com</a></h2></td></tr>
</table></p>
</div><div class="clear"></div>
<div class="one_half">
<h2>Apache Expertise</h2>
<p>We use hardware load balancing, direct-routes, and Apache and Apache-derivative servers to host high-performance Web sites ranging from  e-commerce sites, ad networks, cable-channel Web sites, etc. </p>
<p>When working with Apache and similar Web server solutions, we focus on performance and security.</p>
<ul class="c_points">
<li><strong>High Performance</strong> &#8211;  Millions of Hits / Day</li>
<li><strong>Security Audit</strong> &#8211; PCI Compliant</li>
</ul>
<h3>Common Projects:</h3>
<ul class="c_points">
<li><strong>Load Balancing</strong> &#8211;  hardware load balancing</li>
<li><strong>Security Audit</strong> &#8211; PCI compliance risks</li>
<li><strong>Benchmarking</strong> &#8211; Measuring request/second </li>
</ul>
</div>
<div class="one_half last"><br />
<img src="/assets/books/mjk_apache-server-2-bible.png"></p>
<p><table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/blog64.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="http://apachehacker.com">&nbsp;apachehacker.com</a></h2></td></tr>
</table><br />
</div><div class="clear"></div>
<div class="one_half">
<h2>Linux Expertise</h2>
<ul class="c_points">
<li><strong>Distribution</strong> &#8211; CentOS &#038; Red Hat Enterprise</li>
</ul>
<h3>Common Projects:</h3>
<ul class="c_points">
<li><strong>Web Hosting</strong> &#8211; Dedicated Web Servers </li>
<li><strong>MySQL Hosting</strong> &#8211; Dedicated MySQL Servers</li>
</ul>
</div><br />
<div class="one_half last"><br />
<img src="/assets/books/mjk_red-hat-linux-8-server.png"><br />
<table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/blog64.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="http://centoshacker.com">&nbsp;centoshacker.com</a></h2></td></tr>
</table><br />
</div><div class="clear"></div><br />
<div class="one_half">
<h2>JavaScript Expertise</h2>
<ul class="c_points">
<li><strong>Framework</strong> &#8211; JQuery</li>
</ul>
</div>
<div class="one_half last">
<p><img src="/assets/books/mjk_cgi-primer-plus.png"></p>
<p><table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/blog64.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="http://javascripthacker.com">&nbsp;javascripthacker.com</a></h2></td></tr>
</table><br />
</div><div class="clear"></div>
<div class="one_half">
<h2>XHTML/CSS/HTML5 Expertise</h2>
</div>
<div class="one_half last"><br />
<table border=0><tr>
<td style="vertical-align: middle !important;"><img src="/assets/icons/blog64.png"></td>
<td style="vertical-align: middle !important;"><h2><a href="http://uihacker.com">&nbsp;uihacker.com</a></h2></td></tr>
</table><br />
</div><div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/php-mysql-web-development-expertise/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Company &#8211; Peace of Mind Service Plan II</title>
		<link>http://www.evoknow.com/small-company-peace-of-mind-service-plan-ii</link>
		<comments>http://www.evoknow.com/small-company-peace-of-mind-service-plan-ii#comments</comments>
		<pubDate>Wed, 19 Jan 2011 19:27:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://www.evoknow.com</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="one_half">
<h2>What is a Peace of Mind Service Plan?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<h2>How much does it cost?</h2>
<p>Recurring Fees: $5000.00/month<br />
Setup Fees: $3000.00</p>
<h2>Is This Plan For Your Company?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<h2>What is Your Commitment?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<h2>What&#8217;s Catch?</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</div>
<div class="one_half last">
<h2>What&#8217;s Covered?</h2>
<ul class="c_points">
<li><strong> Ongoing Web development </strong> &#8211; yes </li>
<li><strong> Dedicated Web server hosting</strong> &#8211; yes </li>
<li><strong> PCI Compliance</strong> &#8211; yes </li>
</ul>
<h2>What Kind of Server / Bandwidth?</h2>
<p>This package includes one web server and one dedicated MySQL database server. Both have similar hardware specifications as listed below:</p>
<ul class="c_points">
<li><strong> CPU</strong> &#8211; quad core Intel processor </li>
<li><strong> RAM </strong> &#8211; 16 GB or more </li>
<li><strong> DISK</strong> &#8211; 100 GB RAID-1 SAS @ 15K RPM </li>
<li><strong> Bandwidth</strong> &#8211; 20 Mbps &#8211; Burstable to 100 Mbps </li>
</ul>
<h2>Who Will Work on Your  Project?</h2>
<ul class="c_points">
<li><strong> Project Manager</strong> &#8211; has 10+ years of experience </li>
<li><strong> Development Team </strong> &#8211; a three-person  team</li>
<li><strong> Response Time</strong> &#8211; Same business day</li>
</ul>
<p><div class="side_notes3"></p>
<h2>Getting Started</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.<br />
</div><br />
<br />
<span style="padding-top:5px; float:left;"><a style="font-weight: bold;" href="/small-company-peace-of-mind-service-plan"><table><tr><td style=="vertical-align:middle;"><img src="/assets/icons/link2.png" align="left" style="padding-right: 5px;"></td><td style="vertical-align: middle;"">Smaller Plan starting @ $3K/mon</td></tr></table></a></span>
<br />
<div class="clear"></div><br />
<span style="padding-top:5px; float:left;"><a style="font-weight: bold;" href="/mid-size-company-peace-of-mind-service-plan-iii"><table><tr><td style=="vertical-align:middle;"><img src="/assets/icons/link2.png" align="left" style="padding-right: 5px;"></td><td style="vertical-align: middle;"">Larger Plan Starting @ $10K/mon</td></tr></table></a></span>
</p>
</div><div class="clear"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.evoknow.com/small-company-peace-of-mind-service-plan-ii/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

