<?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>Apax Software</title>
	<atom:link href="http://www.apaxsoftware.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.apaxsoftware.com</link>
	<description>Lexington KY &#124; Mobile, Web and Application Development</description>
	<lastBuildDate>Thu, 17 May 2012 15:15:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Grabbing Images JavaScript and Node.js</title>
		<link>http://www.apaxsoftware.com/2012/05/grabbing-images-javascript-and-node-js/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=grabbing-images-javascript-and-node-js</link>
		<comments>http://www.apaxsoftware.com/2012/05/grabbing-images-javascript-and-node-js/#comments</comments>
		<pubDate>Thu, 17 May 2012 14:37:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apax Blog]]></category>

		<guid isPermaLink="false">http://www.apaxsoftware.com/?p=873</guid>
		<description><![CDATA[<p>Today, I needed to create a quick script that pulled the weather condition icons from Yahoo.  Scripts like thess are generally easy to implement but I was amazed out how simple and straightforward it was with Node.js. This script is fairly simple.  It makes an HTTP request and saves the results to a file.  It&#8217;s [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Today, I needed to create a quick script that pulled the weather condition icons from Yahoo.  Scripts like thess are generally easy to implement but I was amazed out how simple and straightforward it was with <a href="http://nodejs.org/" target="_blank">Node.js</a>.</p>
<p>This script is fairly simple.  It makes an HTTP request and saves the results to a file.  It&#8217;s so simple in fact that the actual process of grabbing the file and saving it takes 1 line of code.</p>
<p>I used <a href="https://github.com/mikeal/request" target="_blank">Mikeal Rogers&#8217; request module</a> to make the HTTP request.  Just run <pre class="crayon-plain-tag">npm install request</pre> to get the module. The request returns a readable stream object, which is awesome because Node lets you<a href="http://nodejs.org/api/stream.html#stream_stream_pipe_destination_options" target="_blank"> pipe a readable stream to a writable stream</a>.  Piping the streams together means the source and destination streams are kept in sync, and it even closes the writable stream for you, so there is no need to handle any callbacks yourself.  Just add in a for loop to make all the requests and you are done!  49 images grabbed in 7 lines of code, not bad.</p>
<p>Anyway, the code!</p>
<pre class="crayon-plain-tag">var request = require('request');
var fs = require('fs');

for (var x = 0; x &amp;lt;= 48; x++) {
    request('http://l.yimg.com/a/i/us/nws/weather/gr/' + x + 'd.png')
        .pipe(fs.createWriteStream('weather-icons/' + x + '.png'));
}</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2012/05/grabbing-images-javascript-and-node-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Common Javascript Mistakes: Dude, Where&#8217;s my var?</title>
		<link>http://www.apaxsoftware.com/2012/05/common-javascript-mistakes-dont-forget-your-var/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=common-javascript-mistakes-dont-forget-your-var</link>
		<comments>http://www.apaxsoftware.com/2012/05/common-javascript-mistakes-dont-forget-your-var/#comments</comments>
		<pubDate>Mon, 07 May 2012 18:51:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apax Blog]]></category>

		<guid isPermaLink="false">http://www.apaxsoftware.com/?p=852</guid>
		<description><![CDATA[<p>Javascript has a nasty habit of wanting to make your variables global and I see it lead to problems all the time. In php, if you do something like: If you do the same thing in javascript you get: You may look at that and think &#8220;but I created  in function foo, shouldn&#8217;t it be [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Javascript has a nasty habit of wanting to make your variables global and I see it lead to problems all the time. In php, if you do something like:</p>
<pre class="crayon-plain-tag">function foo () { 
  $test = 'Hello'; 
}

foo();
echo $test; // outputs: ''</pre>
<p>If you do the same thing in javascript you get:</p>
<pre class="crayon-plain-tag">function foo () { 
  test = 'Hello';
} 

foo();
console.log(test); // outputs: 'Hello'</pre>
<p>You may look at that and think &#8220;but I created<pre class="crayon-plain-tag">test</pre>  in function foo, shouldn&#8217;t it be scoped to that function?&#8221; And the answer would be no. This is where the keyword var comes in.</p>
<p><span id="more-852"></span></p>
<p>If I do the same thing as above but declare test using the keyword var you get:</p>
<pre class="crayon-plain-tag">function foo () { 
  var test = 'Hello'; 
}

foo();
console.log(test) // ReferenceError: testing is not defined</pre>
<p>&nbsp;</p>
<p>In javascript if you declare a variable using<pre class="crayon-plain-tag">var</pre>, like the example above, the variable is scoped to the function. If you do not use var, the variable becomes a property of the global object, which in the case of the browser is<pre class="crayon-plain-tag">window</pre>. After the first example, I could have done:</p>
<pre class="crayon-plain-tag">console.log(window.test); //outputs: 'Hello'</pre>
<p>Using<pre class="crayon-plain-tag">var</pre>to declare your variables is one of the most basic things in javascript, but many people do not do it correctly, and it can lead to some nasty bugs. Forget to do it with a fairly common variable name in one script and you end up clobbering a variable in another script where someone else made the same mistake.</p>
<p>Unless you have a really good reason to declare a global variable always declare your variables with var and save yourself the headache.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2012/05/common-javascript-mistakes-dont-forget-your-var/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Break Down of Popular CMS Website Platforms</title>
		<link>http://www.apaxsoftware.com/2012/02/the-break-down-of-popular-cms-website-platforms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-break-down-of-popular-cms-website-platforms</link>
		<comments>http://www.apaxsoftware.com/2012/02/the-break-down-of-popular-cms-website-platforms/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 23:01:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apax Blog]]></category>

		<guid isPermaLink="false">http://www.apaxsoftware.com/?p=570</guid>
		<description><![CDATA[<p>It may seem easy to build a website based on what it looks like when you type in an address, but what’s going on behind the scenes can make a huge difference in which Content Management System (CMS) you choose to use to develop a website. The three most common CMS tools at the time [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p dir="ltr">It may seem easy to build a website based on what it looks like when you type in an address, but what’s going on behind the scenes can make a huge difference in which Content Management System (CMS) you choose to use to develop a website.</p>
<p><span style="color: #000000;"><br />The three most common CMS tools at the time this post was written are <a title="Wordpress" href="http://www.wordpress.org" target="_blank">WordPress</a>, <a title="Joomla" href="http://www.joomla.org" target="_blank">Joomla</a>, and <a title="Drupal" href="http://drupal.org" target="_blank">Drupal</a>. All are cross-platform operating systems written in PHP and each has pros and cons. This article will explain the differences between them.<br /><br />WordPress is a free and open source blogging tool that has a plug-in architecture and template system. WordPress is currently the most popular CMS tool.  As of August 2011 WordPress manages 22% of all new websites.<br /><br />Joomla is a free and open source CMS publishing tool for the Internet. It includes features like page caching, RSS feeds, news flashes, blogs, and polls. Between 2007 and 2011 Joomla had been downloaded 23 million times and as of November last year has more than 8,600 free and commercial extensions available.<br /><br />Drupal is a free and open source CMS that is used as a back-end system for at least 1.5% of all websites worldwide. Websites that use Drupal range from personal blogs to corporate, political and government sites. As of this month, more than 9,500 free community contributed add-ons are available that can customize the behavior and performance of sites run through Drupal.<br /><br />This article will assess the pros and cons to each CMS tool&#8230;<br /></span></p>
<p><span style="color: #000000;"><strong>Let’s start with set up.</strong><br /><br />WordPress definitely has the easiest set up / configuration and offers the lowest learning curve for web developers when paired with a user friendly development interface from gantry-framework.org. The only setting that WordPress requires is database information. It installs everything else for you and has all the basic site settings configured. The user can start customizing the website as well as posting on the blog portion of the website as soon as they sign up for an account.<br /><br />Joomla is very similar to setting up WordPress but has options for more advanced settings. A novice may find the advance settings of Joomla confusing.<br /><br />Drupal is the most difficult to set up because it requires a lot of third party modules to be installed for basic functionality of a website, and permissions to be configured. Many of the simple features that are offered by WordPress and Joomla are missing and a novice developer would have a very difficult time getting started.<br /><br /><strong>User interface</strong><br /><br />WordPress has the easiest interface to use because it hides a lot of the more advanced features of a CMS so that novice users can easily understand the basics. The more advanced settings of Joomla offers a good mix of easy use and advanced features without being too confusing but would require a more advanced developer to fully understand how to optimize the features for content publishing. Drupal’s admin interface is more complicated and is best for advanced users or those who have had training for the interface. It automatically displays the most advanced settings, which can be confusing for novice users.<br /><br /><strong>Plug-ins</strong><br /><br />Plugins allow for extra functionality that isn’t already included in the CMS tool. Plug-ins are usually free ware and open sourced so they can be modified or adapted to the user’s preferences.<br /><br />Best News / Image Rotator Plugins that can easily be themed: Joomla<br /><br />(See Awesome Inc  Site for Example &#8211; www.awesomeinc.org) Rockettheme.com provides a lot of free as well as paid extensions, which add great functionality to Joomla when displaying different types of content.<br /><br />Best for Custom Content: Drupal provides functionality for having extra fields in custom content types, these content types can be used in several ways, image rotators, a way to display real estate property profiles, and much more.<br /><br />Best for IT Managed Websites: Drupal<br /><br />It is very easy to customize the core functionality to work exactly how the client wants. Unlike other CMS tools Drupal does not hide functionality from the user.<br /><br />Best Built In Permissions: Joomla/Drupal<br /><br />WordPress requires permissions plugins to be installed in order to edit permissions on users, content, etc. Joomla / Drupal have these permissions functions built in.<br /><br />Worst Built in Permissions: WordPress<br /><br />Joomla and WordPress have the easiest template to CMS conversion and are both currently supported by the Rockettheme.com’s gantry-framework, which allows developers to easily go from design template to CMS by using mostly CSS and limited HTML and PHP development.<br /><br />For developers the easiest project transition is with Joomla and WordPress because if a company uses the Gantry-Framework the development process is standardized allowing for developers to take over a project without much time needed for knowledge transfer.<br /><br />Drupal has the most configuration options because it doesn’t hold back any of the advanced features of the configuration of a website, allowing for optimal customizability. WordPress offers the least amount of customizable configuration options because it only shows the most necessary options for running a basic site.  Joomla has a mid amount configuration options.<br /><br />For multi-site installs WordPress and Drupal are the best options because they allow for multiple themed sits to use one core install of the CMS tool. This allows the site manager to update the core and plug-ins with ease as they update on each site.<br /><br />Your level of skill with development and the amount of customizing you’d like on your website will be defining factors in which CMS option you choose. The information above should be a good starting point for the decision. For more information please visit the sites below.<br /><br /></span></p>
<p dir="ltr"><span style="color: #000000;"><a href="http://www.wordpress.org/"><span style="color: #000000;">www.wordpress.org<br /></span></a><a href="http://www.drupal.org/"><span style="color: #000000;">www.drupal.org<br /></span></a><a href="http://www.joomla.org/"><span style="color: #000000;">www.joomla.org</span></a></span></p>
<p dir="ltr"><span style="color: #000000;"><a href="http://www.gantry-framework.org/"><span style="color: #000000;">www.gantry-framework.org</span></a></span></p>
<p dir="ltr"><span style="color: #000000;"><a href="http://www.rockettheme.com/"><span style="color: #000000;">www.rockettheme.com</span></a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2012/02/the-break-down-of-popular-cms-website-platforms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iJonze</title>
		<link>http://www.apaxsoftware.com/2011/11/ijonze/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ijonze</link>
		<comments>http://www.apaxsoftware.com/2011/11/ijonze/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 16:58:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://apax2011.apaxdev.com/?p=346</guid>
		<description><![CDATA[<p>iJonze is a mobile solution that connects you to deals, discounts, and happenings in Kentucky. Apax developed identical iPhone and Android apps for iJonze. Apax developed the app to use the mobile phone’s GPS system to link the user’s location to surrounding deals, discounts, and happenings. iJonze is unique because the user is able to [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>iJonze is a mobile solution that connects you to deals, discounts, and happenings in Kentucky. Apax developed identical iPhone and Android apps for iJonze.</p>
<p>Apax developed the app to use the mobile phone’s GPS system to link the user’s location to surrounding deals, discounts, and happenings. iJonze is unique because the user is able to search for existing deals and also request deals from participating companies.</p>
<p>&nbsp;</p>
<p>View in the <strong><a href="http://itunes.apple.com/us/app/ijonze/id426364190?mt=8">Apple App Store</a></strong> :</p>
<p><a href="http://itunes.apple.com/us/app/ijonze/id426364190?mt=8"><img src="http://www.apaxsoftware.com/pics/button_viewthisinappstore.jpg" alt="" /></a></p>
<p>View at the <strong><a href="https://market.android.com/details?id=com.ijonze.apaxsoftware&amp;feature=search_result">Android Market</a></strong> :</p>
<p><a href="https://market.android.com/details?id=com.ijonze.apaxsoftware&amp;feature=search_result"><img src="http://www.apaxsoftware.com/pics/button_viewthisinandroidmarket.jpg" alt="" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2011/11/ijonze/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alltech</title>
		<link>http://www.apaxsoftware.com/2011/11/alltech/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=alltech</link>
		<comments>http://www.apaxsoftware.com/2011/11/alltech/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 16:53:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://apax2011.apaxdev.com/?p=341</guid>
		<description><![CDATA[<p>The Alltech apps allow users t o view commodity prices, health issues relating to pigs, and local weather reports. Apax developed identical iPhone, Android, and Blackberry apps for Alltech. The apps are integrated with a SharePoint database to provide up-to-date health care information related to raising pigs. The apps also link to web views of [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>The Alltech apps allow users t o view commodity prices, health issues relating to pigs, and local weather reports. Apax developed identical iPhone, Android, and Blackberry apps for Alltech.</p>
<p>The apps are integrated with a SharePoint database to provide up-to-date health care information related to raising pigs. The apps also link to web views of 3rd party websites for both the commodity prices and local weather reports.</p>
<p>&nbsp;</p>
<p>View at the <strong><a href="http://itunes.apple.com/us/app/alltech/id437765064?mt=8">Apple App Store</a></strong> : <a href="http://itunes.apple.com/us/app/alltech/id437765064?mt=8"><img src="http://www.apaxsoftware.com/pics/button_viewthisinappstore.jpg" alt="" /></a></p>
<p>View in the <strong><a href="https://market.android.com/details?id=com.alltech.apaxsoftware&amp;feature=search_result">Android Market</a></strong> : <a href="https://market.android.com/details?id=com.alltech.apaxsoftware&amp;feature=search_result"><img src="http://www.apaxsoftware.com/pics/button_viewthisinandroidmarket.jpg" alt="" /></a></p>
<p>View in the <strong><a href="http://appworld.blackberry.com/webstore/content/53705?lang=en">Blackberry App World</a></strong> : <a href="http://appworld.blackberry.com/webstore/content/53705?lang=en"><img src="http://www.apaxsoftware.com/pics/button_viewthisinblackberry.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2011/11/alltech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OuiBox/OuiWrite</title>
		<link>http://www.apaxsoftware.com/2011/11/ouiboxouiwrite/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ouiboxouiwrite</link>
		<comments>http://www.apaxsoftware.com/2011/11/ouiboxouiwrite/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 16:47:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://apax2011.apaxdev.com/?p=339</guid>
		<description><![CDATA[<p>OuiBox is a social network app that is similar to Facebook. Apax Software developed this social network to allow users to connect with friends through messages, posts, pictures, music or videos. OuiWrite is an app that can format papers, resumes, letters or bibliographies. OuiWrite can also link writing to its original source and cite text [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p>OuiBox is a social network app that is similar to Facebook. Apax Software developed this social network to allow users to connect with friends through messages, posts, pictures, music or videos.</p>
<p>OuiWrite is an app that can format papers, resumes, letters or bibliographies. OuiWrite can also link writing to its original source and cite text for the user. Apax Software created 2 brains, one that performs a macro analysis of writing profiles and preferences of all OuiWrite users to deliver better results, and a second that performs a micro analysis delivering information from the Internet based on their unique writing type.</p>
<p>Through the use of powerful Javascript code and a mix of jQuery, APAX was able to add interactivity and breath new visual life into the home page and internal page templates of this site.</p>
<p>View <strong><a href="http://itunes.apple.com/us/app/ouiwrite/id399561032?mt=8">OuiWrite</a></strong> in the App Store :</p>
<p><a href="http://itunes.apple.com/us/app/ouiwrite/id399561032?mt=8"><img src="http://www.apaxsoftware.com/pics/button_viewthisinappstore.jpg" alt="" /></a></p>
<p> View <strong><a href="http://itunes.apple.com/us/app/ouibox/id417973647?mt=8">OuiBox</a></strong> in the App Store :</p>
<p> <a href="http://itunes.apple.com/us/app/ouibox/id417973647?mt=8"><img src="http://www.apaxsoftware.com/pics/button_viewthisinappstore.jpg" alt="" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2011/11/ouiboxouiwrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Downtown Lexington Corp</title>
		<link>http://www.apaxsoftware.com/2011/11/downtown-lexington-corp-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=downtown-lexington-corp-2</link>
		<comments>http://www.apaxsoftware.com/2011/11/downtown-lexington-corp-2/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 16:21:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project Spotlight]]></category>

		<guid isPermaLink="false">http://apax2011.apaxdev.com/?p=337</guid>
		<description><![CDATA[<p>One of Lexington&#8217;s premiere groups hadn&#8217;t had a website makeover in years! So they called on the amazing design services at APAX software for help. Through the use of powerful Javascript code and a mix of jQuery, APAX was able to add interactivity and breath new visual life into the home page and internal page [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://apax2011.apaxdev.com/?attachment_id=327" rel="attachment wp-att-327"><img class="size-medium wp-image-327 aligncenter" title="DLC" src="http://apax2011.apaxdev.com/wp-content/uploads/2011/11/DLC-300x174.jpg" alt="" width="300" height="174" /></a>One of Lexington&#8217;s premiere groups hadn&#8217;t had a website makeover in years! So they called on the amazing design services at APAX software for help. Through the use of powerful Javascript code and a mix of jQuery, APAX was able to add interactivity and breath new visual life into the home page and internal page templates of the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2011/11/downtown-lexington-corp-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UK Gluck Equine Research Center iPad App</title>
		<link>http://www.apaxsoftware.com/2011/11/uk-sga/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=uk-sga</link>
		<comments>http://www.apaxsoftware.com/2011/11/uk-sga/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 11:45:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project Spotlight]]></category>

		<guid isPermaLink="false">http://apax2011.apaxdev.com/?p=333</guid>
		<description><![CDATA[<p>The University of Kentucky Gluck Equine Research Center Horohov lab wanted an iPad app to help facilitate with their data collection process. The lab regularly conducts medical examinations of horses and needed an easy way to input this data into a database via an iPad. Apax Software created a database back-end and iPad app front [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apaxsoftware.com/?attachment_id=471" rel="attachment wp-att-471"><img class="size-medium wp-image-471 aligncenter" title="home-spotlight-gluck" src="http://apax2011.apaxdev.com/wp-content/uploads/2011/11/home-spotlight-gluck-197x300.jpg" alt="" width="197" height="300" /></a>The University of Kentucky Gluck Equine Research Center Horohov lab wanted an iPad app to help facilitate with their data collection process. The lab regularly conducts medical examinations of horses and needed an easy way to input this data into a database via an iPad.</p>
<p>Apax Software created a database back-end and iPad app front end for UK Gluck Equine Research Center. Apax implemented a database model, including configurable studies/forms/subjects, for their back-end. Apax then configured studies, forms, and subjects for the user side of the app.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2011/11/uk-sga/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>By Kids For Kids</title>
		<link>http://www.apaxsoftware.com/2011/11/by-kids-for-kids/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=by-kids-for-kids</link>
		<comments>http://www.apaxsoftware.com/2011/11/by-kids-for-kids/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 11:45:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project Spotlight]]></category>

		<guid isPermaLink="false">http://apax2011.apaxdev.com/?p=329</guid>
		<description><![CDATA[<p>BKFK is an agency that encourages kid-driven innovation by creating contests for kid inventions. Their website allows kids to enter these contests by completing and submitting entry forms. APAX Software integrated multiple competition web application engines. These engines included administrative competition setup process, registration and member profiles, permissions system, idea submissions, judging processes, reports, data [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apaxsoftware.com/2011/11/by-kids-for-kids/bkfk/" rel="attachment wp-att-330"><img class="aligncenter size-medium wp-image-330" title="BKFK" src="http://apax2011.apaxdev.com/wp-content/uploads/2011/11/BKFK-300x222.jpg" alt="" width="300" height="222" /></a>BKFK is an agency that encourages kid-driven innovation by creating contests for kid inventions. Their website allows kids to enter these contests by completing and submitting entry forms. APAX Software integrated multiple competition web application engines. These engines included administrative competition setup process, registration and member profiles, permissions system, idea submissions, judging processes, reports, data purge, and they allow micro-site integration.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2011/11/by-kids-for-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OuiBox &amp; OuiWrite App</title>
		<link>http://www.apaxsoftware.com/2011/11/downtown-lexington-corp/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=downtown-lexington-corp</link>
		<comments>http://www.apaxsoftware.com/2011/11/downtown-lexington-corp/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 11:42:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Project Spotlight]]></category>

		<guid isPermaLink="false">http://apax2011.apaxdev.com/?p=326</guid>
		<description><![CDATA[<p>OuiBox is a social network app that is similar to Facebook. Apax Software developed this social network to allow users to connect with friends through messages, posts, pictures, music or videos. OuiWrite is an app that can format papers, resumes, letters or bibliographies. OuiWrite can also link writing to its original source and cite text [...]</p>
 ]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.apaxsoftware.com/2011/11/downtown-lexington-corp/home-spotlight-ouibox/" rel="attachment wp-att-467"><img class="aligncenter" src="http://www.apaxsoftware.com/pics/pic-showcase-mobile-oui.jpg" alt="" width="120" height="182" /></a>OuiBox is a social network app that is similar to Facebook. Apax Software developed this social network to allow users to connect with friends through messages, posts, pictures, music or videos.</p>
<p><span id="more-326"></span></p>
<p>OuiWrite is an app that can format papers, resumes, letters or bibliographies. OuiWrite can also link writing to its original source and cite text for the user. Apax Software created 2 brains, one that performs a macro analysis of writing profiles and preferences of all OuiWrite users to deliver better results, and a second that performs a micro analysis delivering information from the Internet based on their unique writing type.</p>
<p>Through the use of powerful Javascript code and a mix of jQuery, APAX was able to add interactivity and breath new visual life into the home page and internal page templates of this site.</p>
<table>
<tbody>
<tr>
<td align="right" nowrap="nowrap">
<p>View <strong><a title="OuiWrite" href="http://itunes.apple.com/us/app/ouiwrite/id399561032?mt=8" target="_blank">OuiWrite</a></strong> in the App Store :</p></td>
<td><a href="http://itunes.apple.com/us/app/ouiwrite/id399561032?mt=8" target="_blank"><img src="http://www.apaxsoftware.com/pics/button_viewthisinappstore.jpg" alt="" /></a></td>
</tr>
<tr>
<td align="right" nowrap="nowrap">
<p>View <strong><a title="OuiBox" href="http://itunes.apple.com/us/app/ouibox/id417973647?mt=8" target="_blank">OuiBox</a></strong> in the App Store :</p></td>
<td><a href="http://itunes.apple.com/us/app/ouibox/id417973647?mt=8" target="_blank"><img src="http://www.apaxsoftware.com/pics/button_viewthisinappstore.jpg" alt="" /></a></td>
</tr>
</tbody></table>
]]></content:encoded>
			<wfw:commentRss>http://www.apaxsoftware.com/2011/11/downtown-lexington-corp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

