The online ColdFusion / CFML community website
The online ColdFusion community website. Getting CFML developers together
Started by Anis Mouki in Coldfusion in General Sep 20, 2011. 0 Replies 0 Likes
Started by Ipee in Coldfusion in General. Last reply by Jon Briccetti Sep 20, 2011. 1 Reply 0 Likes
Started by Christian Adusu-Donkor in Coldfusion in General Jun 26, 2011. 0 Replies 0 Likes
Posted by PROVEER CONSULTING Ltd on August 22, 2011 at 8:15pm 0 Comments 0 Likes
My client in South West London seeks a developer to join their established team designers and producers. Their industry is New Media Digital Marketing. Agency environment.
You will have strong front end skills- tech such as Html5, css. Usability.
For further information please email to Andy@proveer-consulting.com
vacancy number PC00101AR
Posted by Jim Priest on August 15, 2011 at 7:25pm 0 Comments 0 Likes
We've published the NCDevCon schedule!
NCDevCon is a 2 day, 40 session web and mobile development conference in Raleigh, NC. For $60 you get access to all 40 sessions and hands on classes. Your conference fee also includes lunch and a snazzy conference T-Shirt. Learn more at ncdevcon.com
Space is very limited so…
Posted by PROVEER CONSULTING Ltd on August 3, 2011 at 9:15am 0 Comments 0 Likes
Web Designer and Developer, 25k Brecon, Powys - PC0099AR
My client an e-commerce business and one of Wales most successful…
ContinuePosted by PROVEER CONSULTING Ltd on August 3, 2011 at 8:31am 0 Comments 0 Likes
Next up in our OpenCF Summit speaker interviews: Mike Henke!
Mike has worked with ColdFusion since 1999 for several companies. Mike co-hosts with Ryan Stille the ColdFusion Show, a ColdFusion-related podcast, featuring news and discussion about the latest topics in the CFML community.
Mike blogs at http://henke.ws
OpenCF Summit: Hey Mike! So tell us about yourself.
Mike: I am an advocate of Eclipse, Source Control, Mylyn, Github, and anything to make developing ColdFusion more productive and easier. My main focus currently is learning Git, Ruby on Rails, and ColdFusion on Wheels. I am an Adobe Community Professional. I have spoken at several user groups and enjoy talking to people about ColdFusion.
OpenCF Summit: What does your development environment look like?
Mike: Windows, IIS, Adobe ColdFusion, SQL Server, ColdFusion On Wheels, Blueprint, JQuery
Sass, Ruby, Coffeescript.
OpenCF Summit: What is your experience with Open Source Software? Where do you see OSS going?
Mike: I have contributed to open sources projects like MXUnit. I also like to throw ideas and projects on github for people to use. I see OSS as a critical solution along side proprietary software in most businesses.
OpenCF Summit: Where do you think CFML is heading these days? How would you characterize the state of the CFML community?
Mike: I think CFML is heading to re-establish itself as equal to other dynamic languages. We need to adopt ideas from other communities and refocus ours on what makes CFML great. I think the state of CFML community is good and looking for new leaders to step in as other leaders move on.
OpenCF Summit: Why are you excited about OpenCF Summit?
Mike: Yes, it was a great, valuable time last year. It is a friendly, smart, fun group. Every attendee and speaker was very approachable.
OpenCF Summit: One last question: could you tell us a little about what you'll be speaking on?
Mike: I'll be helping Curt Gratz with Git/Github session along with discussing CFML in 100 minutes and Cloudy with a Chance of Tests to everyone interested in these projects.
Come talk shop with Mike at OpenCF Summit February 24-26, 2012 and watch this space for more speaker interviews!
A couple of weeks ago, I posted about running a competition to be in my CFML Mythbusters competition, well the competition is now over and it's time to choose the winners
Before choosing them, I thought I would post the code I am using to choose them and the process, so to be nice and transparent.
First off, everyone could post multiple times and this went into a Google Docs spreadsheet, so they could have multiple entries. Since I could see how many entries there were, for example 1-20, this is easy.
I decided to create an array (because they are much sexier than lists), each position with the number of the entry. Then randomise those positions and then simply choose positions 1,2,3 and 4 from their positions in their array
So here is the code (not including the form, since I am pretty sure you know how to make a form.):
<cfscript>
aEntries = [];
loop from="#FORM.from#" to="#FORM.to#" index="e"{
ArrayAppend(aEntries,e);
}
collection = CreateObject("java", "java.util.Collections");
collection.shuffle(aEntries);
</cfscript>
<cfoutput>
<ol>
<li>First Place: #aEntries[1]#</li>
<li>Second Places: #aEntries[2]# and #aEntries[3]#</li>
<li>Third Place: #aEntries[4]#</li>
</ol>
</cfoutput>
Did you spot the Java class? Yep! The java.util.Collections class is really handy for manipulating Arrays in different ways, and of course, since (in Railo at least) an Array can be used by the Collections it is perfect.
So what do you think? Is this a fair way to select some random people?
© 2012 Created by Nick Tong.