Community Member Profile
- Profile: /members/3371-Phillip-Senn.htm
- URL: http://www.PhillipSenn.com
- Comments: 43
- Points: 450
Recent Blog Comments By Phillip Senn
-
Referencing ColdFusion Query Columns In A Loop Using Both Array And Dot Notation
Posted on Jun 5, 2013 at 10:16 AM
Hmmm. I've never had to use serializeQueryByColumns before - that's new to me. I put param name="url.returnformat", default="json"; param name="url.queryformat", default="column"; at the top of my... read more »
-
Referencing ColdFusion Query Columns In A Loop Using Both Array And Dot Notation
Posted on Jun 4, 2013 at 11:06 AM
I think this is a great blog post. I've been programming in ColdFusion for years and have not used the "for ( i = 1" method at all I don't think. That's the preferred method for looping in JavaScript because "for each" is frowned upon. Now, recently, I started a p... read more »
-
My Approach To Building AngularJS Directives That Bind To JavaScript Events
Posted on May 28, 2013 at 2:12 PM
https://hellojs.backliftapp.com/ is insane. It's a collection of examples for Javascript libraries including Angular. But get this: you click on which one you want and it builds it into your dropbox folder (w... read more »
-
Ask Ben: Query Loop Inside CFScript Tags
Posted on May 22, 2013 at 12:44 PM
In cf10, if you call a function that has: local.result = {}; local.result.msg = ""; local.svc = new query(); local.svc.setSQL("SELECT * FROM..."); local.obj = local.svc.execute(); local.result.qry = local.obj... read more »
-
The UX Of Prototyping: Low-Fidelity Is The New High-Fidelity
Posted on May 14, 2013 at 2:33 PM
For our wireframing, I grabbed a copy of my "jQuery Mobile First Look" book off the bookshelf and said something like "These are the things that are available." So there wasn't any real wireframing per se, it was just referring to the jQuery Mobile website and book to se... read more »
-
The UX Of Prototyping: Low-Fidelity Is The New High-Fidelity
Posted on May 10, 2013 at 12:20 PM
Having an email subscription would be nice as well. I have ifttt.com send me an email whenever you post something because I never remember to pull up an RSS reader, but I do read email.... read more »
-
Understanding CSS Transitions And Class Timing
Posted on Mar 19, 2013 at 10:45 AM
Here's how I load jQuery: <cfscript> function Print(X) { WriteOutput(X & Chr(13) & Chr(10)); } param name="request.js.jQuery" default="1"; if (request.js.jQuery) {
- read more »
-
Refactoring My Safari SQLite Local Database Example
Posted on Mar 12, 2013 at 2:30 AM
In 2010, you said that you couldn't get openDatabaseSync to work in Safari, but is that still true? Do you think it might work with web workers in 2013?... read more »
-
Posting JSON Data To The ColdFusion Server Using jQuery
Posted on Feb 16, 2013 at 2:12 PM
Thanks Ben for bringing this post back up again! I decided to pick apart the return value in API.cfm and it proved to be illuminating. I hope if I wrap this in a code block it will format correctly: <cfset HTTPRequestData = GetHTTPRequestData()> &... read more »
-
Ask Ben: Query Loop Inside CFScript Tags
Posted on Jun 29, 2012 at 7:32 PM
Looks like: while (qry.next()) { qry.myFieldName[qry.currentRow] } works as well.... read more »
-
jQuery Events: MouseOver / MouseOut vs. MouseEnter / MouseLeave
Posted on Feb 8, 2012 at 1:08 PM
I found this page while reading "jQuery Compressed" on my Kindle.... read more »
-
jQuery Can Provide Queue-Based Promise Objects
Posted on Jan 5, 2012 at 2:26 PM
I'm going to try to use this method with executeSql commands. "After you're done dropping the table, create the table". "After you're done creating the table, insert into the table". read more »
-
Accepting PCI-Compliant Payments Without A Merchant Account Using Stripe And ColdFusion
Posted on Dec 12, 2011 at 2:09 PM
They have examples in curl, ruby, python, php & java. Do you want to give them your example?... read more »
-
Accepting PCI-Compliant Payments Without A Merchant Account Using Stripe And ColdFusion
Posted on Dec 11, 2011 at 8:35 PM
Oh! I see what it is! In ColdFusion, I changed response["success"] to response.success! Ack!... read more »
-
Accepting PCI-Compliant Payments Without A Merchant Account Using Stripe And ColdFusion
Posted on Dec 11, 2011 at 8:34 PM
Ben, I've spent some time this weekend copy/pasting your code. I learned a lot! 1. I'm getting response.SUCCESS instead of response.success in validation.done. 2. I think I'd like to use input id="creditCard" instead of input class="creditCard" because that a... read more »
-
Realtime Messaging And Synchronization With NowJS And Node.js
Posted on Nov 7, 2011 at 9:51 PM
It never went past the "joining room" for the 2nd chrome window. That's ok - I've got plenty of other technology I've got to learn without adding node to the list.... read more »
-
Realtime Messaging And Synchronization With NowJS And Node.js
Posted on Nov 7, 2011 at 9:07 PM
Thanks Guilherme! I tried logging into the same session on two different Chrome screens and the second screen never got past the initialization.... read more »
-
ColdFusion ORM: A Guide To Developing Applications Using ColdFusion ORM By John Whish
Posted on Nov 1, 2011 at 10:02 AM
Thanks Ben! I think for the price of going to a conference, one could buy every ColdFusion book that's currently in print.... read more »
-
The Most Interesting Man Alive On ColdFusion
Posted on Oct 7, 2011 at 11:19 PM
Null plus the most interesting man alive equals the most interesting man alive.... read more »
-
Decoding Morse Code With JavaScript
Posted on Oct 7, 2011 at 10:59 AM
I asked for someone to write an audio morse code generator here: http://codegolf.stackexchange.com/questions/2618/morse-code-generator-in-sound Code Golf is a sit... read more »



