<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
    <channel>
        <description>ContentBox RSS Feed</description>
        <link>https://www.codersrevolution.com</link>
        <title>Blog RSS Feed by ContentBox</title>
        <copyright>Ortus Solutions, Corp (www.ortussolutions.com)</copyright>
        <docs>http://www.rssboard.org/rss-specification</docs>
        <generator>FeedGenerator</generator>
        <lastBuildDate>Tue, 28 Apr 2026 04:37:37 GMT</lastBuildDate>
        <pubDate>Tue, 28 Apr 2026 04:37:37 GMT</pubDate>
        <item>
            <title>CFClient: What's Your (Geolocation) Vector, Victor? </title>
            <description>In mylast postI played with the Media API to add sounds effects to the Roll The Ball game and made an Adobe CF Soundboard. Today I'll be showing my work with theGeolocation API. I wish I had some more time to do something more useful, but theCF mobile contestis drawing to a close tonight and I this will be the last feature I have time to put in.&#13;
</description>
            <link>https://www.codersrevolution.com/blog/cfclient-whats-your-geolocation-vector-victor</link>
            <pubDate>Fri, 16 Jan 2015 01:48:00 GMT</pubDate>
            <author>brad@ortussolutions.com (Brad Wood)</author>
            <category>CFClient</category>
            <category>ColdFusion</category>
            <category>ColdFusion Builder</category>
            <category>JavaScript</category>
            <category>Mobile</category>
            <guid isPermaLink="false">https://www.codersrevolution.com/blog/cfclient-whats-your-geolocation-vector-victor</guid>
        </item>
        <item>
            <title>CFClient: Sounding Off And Mozzarella Sticks</title>
            <description>PreviouslyI played with theAccelerometer APImake a "roll the ball" labyrinth game. While I found the accelerometer API easy to implement, myexperimentswith theMedia APIproved less fruitful. For a while I was afraid I would be unable to show anything at all, but after aconsiderableamount offiddling (and Googling), I was able to get it working. &#13;
&#13;
The Media API contains function for capturing audio and video as well playing back audio. The first thing I did was add some fun soundeffectstomy "roll the ball" game. And secondly, I made an Adobe ColdFusion Sound Board. But first, I had to get it working.&#13;
</description>
            <link>https://www.codersrevolution.com/blog/cfclient-sounding-off-and-mozzarella-sticks</link>
            <pubDate>Wed, 14 Jan 2015 08:19:00 GMT</pubDate>
            <author>brad@ortussolutions.com (Brad Wood)</author>
            <category>CFClient</category>
            <category>ColdFusion Builder</category>
            <category>Mobile</category>
            <guid isPermaLink="false">https://www.codersrevolution.com/blog/cfclient-sounding-off-and-mozzarella-sticks</guid>
        </item>
        <item>
            <title>CFClient: Tuning Up The Accelerometer Gets Things "Rolling"</title>
            <description>In mylast post, I tackled two APIs--notificationsandcontacts. Even though I wasn't able to fully explore the contacts, I managed to get things working without too much troubles.  I'm occasionally hitting some weird parsing issues in CFBuilder or underlying JavaScript errors I can't explain but "rearranging" my code will usually make it go away (more on this later). I'll try to go back and put in tickets for these after the fact, but I'm always reticent to shout "BUG!" in a crowded theater when I'm not 100% I'm doing it right.&#13;
&#13;
Accelerometer&#13;
&#13;
Well, let's get right to it. Today I played withthe accelerometer APIwhich is incredibly simple in terms of the API's surface area, but rather deep in applications.&#13;
</description>
            <link>https://www.codersrevolution.com/blog/cfclient-tuning-up-the-accelerometer-gets-things-rolling</link>
            <pubDate>Tue, 13 Jan 2015 05:48:00 GMT</pubDate>
            <author>brad@ortussolutions.com (Brad Wood)</author>
            <category>CFClient</category>
            <category>ColdFusion</category>
            <category>ColdFusion Builder</category>
            <category>Mobile</category>
            <guid isPermaLink="false">https://www.codersrevolution.com/blog/cfclient-tuning-up-the-accelerometer-gets-things-rolling</guid>
        </item>
        <item>
            <title>CFClient: We Have Contact, Let's Notify!</title>
            <description>Mylast entrywas a little light on theclient APIsand mostly spent (unsuccessfully) wrestling my HTML markup around. So, to make up for it, I've implemented 2 different client APIs. That's right, two for the price of one! The first wasnotificationswhich was pretty straightforward, followed bycontactswhich is kind of complicated-- well, let's just say "involved".&#13;
&#13;
You may notice in the screenshots that the app is no longer full screen. I didn't care for that so I found thefullscreenpreferenceunder the project's PhoneGap properties and set it tofalse. This setting does not appear to be stored anywhere in the web root though, so if you check out the code into a mobile project of your own you'll probably have to set it yourself too.&#13;
</description>
            <link>https://www.codersrevolution.com/blog/cfclient-we-have-contact-lets-notify</link>
            <pubDate>Sun, 11 Jan 2015 09:28:00 GMT</pubDate>
            <author>brad@ortussolutions.com (Brad Wood)</author>
            <category>CFClient</category>
            <category>ColdFusion</category>
            <category>JavaScript</category>
            <category>Mobile</category>
            <guid isPermaLink="false">https://www.codersrevolution.com/blog/cfclient-we-have-contact-lets-notify</guid>
        </item>
        <item>
            <title>CFClient: The Agony &amp; The Ecstasy -- Making It Purty</title>
            <description>In mylast entry, I discussed my decision to create a "CFClient Sampler" app that would simultaneously allow me to play witheach mobile client API, all the while providing the community with some nature of blog-based documentary on my attempt. With a solid proof of concept under my belt (and onGitHub) I pushed forward with two goals in mind this time:&#13;
&#13;
&#13;
	Pick another API to play with&#13;
	Figure out some organization for the code before it got out of hand&#13;
	Ok, I guess there was a third goal too: Make it not so ugly.&#13;
&#13;
&#13;
I'll start with the last one, which was to make the app not look like a middle schooler banging something out with Microsoft FrontPage. Quite frankly, I suck at UI stuff. I'm a "function over form" guy and I'm quite happy architecting the back end of an application far far away from the perils of CSS, responsive layouts, and viewports.  For this I used my phone-a-friend and dialed upjQuery Mobile. JQM has been around for a while and it doesn't make web pages that very unique (kind of like the BootStrap cookie cutter sites) but it's stupid simple to setup and covers every major navigation, button, control, and layout concern I'll be detailing with. &#13;
</description>
            <link>https://www.codersrevolution.com/blog/cfclient-the-agony-the-ecstasy-making-it-purty</link>
            <pubDate>Fri, 09 Jan 2015 10:32:00 GMT</pubDate>
            <author>brad@ortussolutions.com (Brad Wood)</author>
            <category>CFClient</category>
            <category>ColdFusion</category>
            <category>ColdFusion Builder</category>
            <category>JQuery</category>
            <category>Mobile</category>
            <guid isPermaLink="false">https://www.codersrevolution.com/blog/cfclient-the-agony-the-ecstasy-making-it-purty</guid>
        </item>
        <item>
            <title>My CFClient Proof Of Concept and GapDebug</title>
            <description>So, in myfirst entryI discussed that I'm trying my hand at CFClient, mostly drawn to the idea ofwinning a $1000 gift card from Adobe. Previously I followed Ram'sYouTube videosandarticleson setting up a Mobile project in ColdFusion Builder, installing his sample app, compiling that app viaAdobe's cloud-based PhoneGap server, and installing it.&#13;
&#13;
This venture was met with mixed success. The PhoneGap shell app which allows one to test without needing to recompile after EVERY code change fell flat out of the gate for me. I'm still waiting to hear back from Adobe on that. I was able to compile and run the sample app, but couldn't get the file APIs to work. I've sort of given up on that for now-- there's just not enough time to keep banging my head on that wall for the time being.&#13;
</description>
            <link>https://www.codersrevolution.com/blog/my-cfclient-proof-of-concept-and-gapdebug</link>
            <pubDate>Wed, 07 Jan 2015 21:18:00 GMT</pubDate>
            <author>brad@ortussolutions.com (Brad Wood)</author>
            <category>CFClient</category>
            <category>ColdFusion</category>
            <category>ColdFusion Builder</category>
            <guid isPermaLink="false">https://www.codersrevolution.com/blog/my-cfclient-proof-of-concept-and-gapdebug</guid>
        </item>
        <item>
            <title>My First Foray Into CFClient</title>
            <description>This didn't start as a blog entry. I originally typed it up as an E-mail toAnit Kumar, Adobe's rockstar support guy whooffered to help me on Twitter. See, I'm trying to build a mobile app using ColdFusion 11 mobile technology to have a chance at winning the$1,000 prize from Adobe's little contest. If you didn't know about it, please forget about it-- I don't want any more competition :)&#13;
&#13;
So after several hours of fiddling yesterday, I got a lot of the workflow understood and working but still have some major hang ups and questions. After I finished typing this E-mail to Anit, I thought to myself, "Self, why not make this conversation public so everyone can benifit from it?" There's precious little information about CFClient out there already and some people likeAdam C has already expressed interestin hearing my experiences-- not that I expect to sell him on CFClient or anything :) &#13;
&#13;
This is a little rambly and I apologize for that. I'll try to blog some more organized thoughts after I get this all working. So, without further ado... Anit, please reply here if you can just so everyone can benefit from the answers-- even if it means I'm a numbskull and did it all wrong.&#13;
</description>
            <link>https://www.codersrevolution.com/blog/my-first-forray-into-cfclient</link>
            <pubDate>Sat, 03 Jan 2015 01:10:00 GMT</pubDate>
            <author>brad@ortussolutions.com (Brad Wood)</author>
            <category>CFClient</category>
            <category>ColdFusion</category>
            <category>ColdFusion Builder</category>
            <category>Mobile</category>
            <guid isPermaLink="false">https://www.codersrevolution.com/blog/my-first-forray-into-cfclient</guid>
        </item>
    </channel>
</rss>

