<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>DevelopmentNow</title>
  <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/" />
  <link rel="self" href="http://www.developmentnow.com/blog/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2010-03-08T17:00:07.8045-08:00</updated>
  <author>
    <name>Ben Strackany</name>
  </author>
  <subtitle>Development Tips for .NET, ASP, IIS, VB, SQL, Flash, and more</subtitle>
  <id>http://www.developmentnow.com/blog/</id>
  <generator uri="http://www.dasblog.net" version="2.0.7180.0">DasBlog</generator>
  <entry>
    <title>A New Business App Store for Google?</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/A+New+Business+App+Store+For+Google.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,09e4a02f-4e23-4aa3-878a-640ec44038c9.aspx</id>
    <published>2010-03-08T17:00:07.804-08:00</published>
    <updated>2010-03-08T17:00:07.8045-08:00</updated>
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <div align="left">Several publications and blog sites including The Wall Street Journal
have reported that Google intends to launch a new App store specializing in the sale
of business software sometime this month.  Although Google already has a marketplace
for Google Apps as well as Apps for Android devices, this addition could help them
to compete with Microsoft and Apples’ App stores.<br /><br />
While the App ecosystem is heavily populated, such a marketplace could give developers
a new outlet for promoting and selling their Apps, and one that is more specific to
business needs.  Although a spokesperson for Google commented that there is “nothing
to announce at this time,” the abundance of rumors would suggest otherwise. 
In the meantime, developers continue awaiting the announcement of the innovative business
App store from “disaster-proof” Google.<br /></div>
        <p>
        </p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=09e4a02f-4e23-4aa3-878a-640ec44038c9" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Convert Arrays to Objects in PHP</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/Convert+Arrays+To+Objects+In+PHP.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,778c0422-9e8e-48de-b979-85678789d3b3.aspx</id>
    <published>2009-09-19T11:09:56.171875-07:00</published>
    <updated>2009-09-19T11:09:56.171875-07:00</updated>
    <category term="PHP" label="PHP" scheme="http://www.developmentnow.com/blog/CategoryView,category,PHP.aspx" />
    <content type="html">&lt;p&gt;
We recently needed to convert a complex array structure to an object-based one in
PHP. We started off with &lt;a href="http://forum.weblivehelp.net/web-development/php-convert-array-object-and-vice-versa-t2.html#p8" target="_blank"&gt;Marcel's
array2object function&lt;/a&gt; but realized that we only wanted to "objectify" associative
arrays, and leave non-associative arrays to as arrays. So here's the final function,
using &lt;a href="http://us3.php.net/manual/en/function.is-array.php#41179" target="_blank"&gt;vhermecz's
function&lt;/a&gt; to detect associative arrays:
&lt;/p&gt;
&lt;pre&gt;

function array2object($data) {
   if (!is_array($data)) return $data;
   $is_assoc = is_assoc($data);

   $object = new stdClass();

   if (count($data) == 0) return $data;

   if (is_array($data) &amp;&amp; count($data) &gt; 0) {
      foreach ($data as $name=&gt;$value) {
         if ($name !== '') {
            $object-&gt;$name = array2object($value);
            $data[$name] = array2object($value);
         }
      }

   }
   if ($is_assoc)
        return $object;
   else
        return $data;
}


function is_assoc($var) {
    return is_array($var) &amp;&amp; array_keys($var)!==range(0,sizeof($var)-1);
}

&lt;/pre&gt;
&lt;p&gt;
&lt;img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=778c0422-9e8e-48de-b979-85678789d3b3" /&gt;</content>
  </entry>
  <entry>
    <title>Social Contact Widget Launch for WikiWorldBook</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/Social+Contact+Widget+Launch+For+WikiWorldBook.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,0acf5863-b607-4dfa-a58c-a55009ebb4ae.aspx</id>
    <published>2009-09-17T10:27:59.406-07:00</published>
    <updated>2009-09-19T10:27:59.40625-07:00</updated>
    <category term="News" label="News" scheme="http://www.developmentnow.com/blog/CategoryView,category,News.aspx" />
    <category term="SocialNetworks" label="SocialNetworks" scheme="http://www.developmentnow.com/blog/CategoryView,category,SocialNetworks.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img src="http://beta.wikiworldbook.com/php/protectsite/wwb_logo_protect.jpg" />
        </p>
        <p>
          <a href="http://wikiworldbook.com" target="_blank">WikiWorldBook</a>, the global address
book, launched a social contact widget today allowing users to bring all their social
networking profiles and email into a single button. Privacy controls and anti-spam
features let you be found on the web on your terms, without spammers. 
</p>
        <p>
We've put a good amount of work into the button, and are proud to have WikiWorldBook
as one of our clients. If you're looking for a better way to let friends or strangers
find and contact you, take WikiWorldBook's button for a spin.
</p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=0acf5863-b607-4dfa-a58c-a55009ebb4ae" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Infocore Mobile Site Launch</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/Infocore+Mobile+Site+Launch.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,98a4ee83-2fda-4c7e-83f1-d1c5bb7f58a0.aspx</id>
    <published>2009-09-07T10:46:29.64-07:00</published>
    <updated>2009-09-19T10:46:29.640625-07:00</updated>
    <category term="mobile" label="mobile" scheme="http://www.developmentnow.com/blog/CategoryView,category,mobile.aspx" />
    <category term="News" label="News" scheme="http://www.developmentnow.com/blog/CategoryView,category,News.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img src="http://m.infocore.com/images/mobile-logo.png" />
        </p>
        <p>
We recntly built <a href="http://infocore.com" target="_blank">Infocore</a> a mobile
version of their site, complete with mobile device detection and a multi-use mobile
template that is not only attractive on the latest devices, but degrades gracefully
for older or smaller handhelds.
</p>
        <p>
It was a fun project and we're glad that Infocore chose us for their new mobile presence
on the web.
</p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=98a4ee83-2fda-4c7e-83f1-d1c5bb7f58a0" />
      </div>
    </content>
  </entry>
  <entry>
    <title>LibMob Updated</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/LibMob+Updated.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,b4ec9efc-5ba2-4996-94a4-f5078186ac96.aspx</id>
    <published>2009-08-19T11:00:52.328-07:00</published>
    <updated>2009-09-19T11:10:22.03125-07:00</updated>
    <category term="mobile" label="mobile" scheme="http://www.developmentnow.com/blog/CategoryView,category,mobile.aspx" />
    <category term="News" label="News" scheme="http://www.developmentnow.com/blog/CategoryView,category,News.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img src="http://libmob.com/images/libmob-logo.gif" />
        </p>
        <p>
          <a href="http://libmob.com" target="_blank">LibMob</a>, the mobile book research solution,
is back in business after a revamped mobile template and updated back end.
</p>
        <p>
Amazon changed their product APIs recently, forcing us to swap in latest PEAR's <a target="_blank" href="http://pear.php.net/package/Services_Amazon/">Services_Amazon</a> class
and write a custom wrapper to integrate it into the existing LibMob engine.
</p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=b4ec9efc-5ba2-4996-94a4-f5078186ac96" />
      </div>
    </content>
  </entry>
  <entry>
    <title>WikiWorldBook Gets a Huge Facelift</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/WikiWorldBook+Gets+A+Huge+Facelift.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,7d8ec5c8-54df-4a05-becd-b2b996331411.aspx</id>
    <published>2009-08-17T11:13:36.875-07:00</published>
    <updated>2009-09-19T11:13:36.875-07:00</updated>
    <category term="News" label="News" scheme="http://www.developmentnow.com/blog/CategoryView,category,News.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img src="http://beta.wikiworldbook.com/php/protectsite/wwb_logo_protect.jpg" />
        </p>
        <p>
          <a href="http://wikiworldbook.com" target="_blank">WikiWorldBook</a>, the global address
book, got a huge facelift recently. Seriously huge. It's sporting a cleaner, better,
slicker, more user-friendly interface, and is faster to boot. Big thanks to <a href="http://www.obox-design.com" target="_blank">Obox
Design</a> for their design chops, and kudos to the DevNow team for all their hard
code-slinging work!
</p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=7d8ec5c8-54df-4a05-becd-b2b996331411" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Style Circle Launch -- Social Network for Brides</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/Style+Circle+Launch+Social+Network+For+Brides.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,6838633d-480b-4f07-844d-d004dbd98751.aspx</id>
    <published>2009-08-01T10:43:10.281-07:00</published>
    <updated>2009-09-19T10:43:10.28125-07:00</updated>
    <category term="News" label="News" scheme="http://www.developmentnow.com/blog/CategoryView,category,News.aspx" />
    <category term="SocialNetworks" label="SocialNetworks" scheme="http://www.developmentnow.com/blog/CategoryView,category,SocialNetworks.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img src="http://circle.stylemepretty.com/wp-content/plugins/buddypress/bp-themes/buddypress-home/images/bof-theme/logo-solo.png" />
        </p>
        <p>
We're proud to announce the launch of a new social network for brides -- <a href="http://circle.stylemepretty.com" target="_blank">Style
Circle</a>. It's a social network built for our client <a href="http://stylemepretty.com" target="_blank">Style
Me Pretty</a>, allowing brides, wedding planners, vendors, and wedding enthusiasts
around the globe to learn, plan, share, and socialize. 
</p>
        <p>
It's built using BuddyPress and WordPress-MU, and a lot of work was done to make sure
the user experience was not only friendly, but pretty. Plus, it features a very cool
Inspiration Board Builder tool, allowing users to assemble thousands of professional-quality
wedding-related images into boards and collages for their own exploration and inspiration.
</p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=6838633d-480b-4f07-844d-d004dbd98751" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Citizenship Map Silverlight Application Launches</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/Citizenship+Map+Silverlight+Application+Launches.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,d1934d31-46e4-468d-9988-8e9fdff979e4.aspx</id>
    <published>2009-04-23T18:34:26.187-07:00</published>
    <updated>2009-09-19T18:34:26.1875-07:00</updated>
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.developmentnow.com/blog/CategoryView,category,ASP.NET.aspx" />
    <category term="News" label="News" scheme="http://www.developmentnow.com/blog/CategoryView,category,News.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img border="0" src="http://www.developmentnow.com/blog/content/binary/mslogo1_thumb.jpg" />
        </p>
        <p>
The Microsoft Local Impact map launched this week. It's an interactive rich UI application
allowing users to click and drill down in a world map to see demographics, technical
statistics, and stories of Microsoft and technology impact around the globe.
</p>
        <p>
Big kudos (and judos?) to <a href="http://stimulant.io">Stimulant</a> for handling
the RUI aspects, allowing the DevNow team to focus on web services, business logic,
data mapping, and deployment.
</p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=d1934d31-46e4-468d-9988-8e9fdff979e4" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Use Twitter to find friends and learn more about people</title>
    <link rel="alternate" type="text/html" href="http://www.developmentnow.com/blog/Use+Twitter+To+Find+Friends+And+Learn+More+About+People.aspx" />
    <id>http://www.developmentnow.com/blog/PermaLink,guid,17e8105e-50a9-4e78-ad26-69611251a3a0.aspx</id>
    <published>2009-03-01T10:37:00.5-08:00</published>
    <updated>2009-09-19T10:37:18.046875-07:00</updated>
    <category term="News" label="News" scheme="http://www.developmentnow.com/blog/CategoryView,category,News.aspx" />
    <category term="SocialNetworks" label="SocialNetworks" scheme="http://www.developmentnow.com/blog/CategoryView,category,SocialNetworks.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img border="0" src="http://www.developmentnow.com/blog/content/binary/twitter-logo.jpg" />
        </p>
        <p>
          <img src="http://beta.wikiworldbook.com/php/protectsite/wwb_logo_protect.jpg" />
        </p>
        <p>
You can now find old friends and learn more about people using Twitter using the new
Twitter FreeSearch Bot we built for <a href="http://wikiworldbook.com">WikiWorldBook</a>.
To use it, just follow <a href="http://twitter.com/freesearch">@freesearch</a> and
send either a reply or a direct message to freesearch followed by the name of the
person you want to know more about.
</p>
        <p>
e.g. @freesearch Barak Obama
</p>
        <p>
You'll then get back a tweet with information about that person's social network profiles
around the web, powered by the people search engine at WikiWorldBook.
</p>
        <img width="0" height="0" src="http://www.developmentnow.com/blog/aggbug.ashx?id=17e8105e-50a9-4e78-ad26-69611251a3a0" />
      </div>
    </content>
  </entry>
</feed>