RE: CFThread Memory Issues sending emails

2011-05-20 Thread Edward Chanter

Sounds about right, I'm currently working on a way to have things split into
chunks of 10k :)

Thanks anyway!

 -Original Message-
 I've found that all sends of email to large lists has to be done in
batches.
 CFMail doesn't really handle massive lists very well.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344741
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFThread Memory Issues sending emails

2011-05-20 Thread Edward Chanter

Here's a question for the gurus; if I split a 50k mass email into chunks of
10k could I thread each chunk and have 5 threads running simultaneously
sending 10k emails each?

Has anyone tried this?

 -Original Message-
 From: Edward Chanter [mailto:firew...@cc.uk.com]
 Sent: 20 May 2011 09:10
 To: cf-talk
 Subject: RE: CFThread Memory Issues sending emails
 
 
 Sounds about right, I'm currently working on a way to have things split
into
 chunks of 10k :)
 
 Thanks anyway!
 
  -Original Message-
  I've found that all sends of email to large lists has to be done in
 batches.
  CFMail doesn't really handle massive lists very well.
 
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344742
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFchart / currency

2011-05-20 Thread Raymond Camden

Cool. So just FYI - what you saw with the pie chart was kinda
expected. I should have warned you first. My XML was for one type.

Either way - it's interesting that you could also fixed this via JRE
locale. Do you mind adding this tip to my blog post as a comment? For
folks on a shared system, my solution will work best, but if you
control the server, yours may be better. (But if you need to support
lots of languages, you probably need to use the XML way.)

On Fri, May 20, 2011 at 12:14 AM, Jenny Gavin-Wear
jenn...@fasttrackonline.co.uk wrote:

 Feeling smug .. lol

 Changed the JRE locale in CF admin

  -Duser.language=en -Duser.region=GB

 Works as it should now :)


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344743
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scoping

2011-05-20 Thread Aaron Rouse

I know people who have horrible code readability and been in the same teams
for 5-10 years.  I have worked with a lot of different teams over the years
and most of them the readability of the code appeared to be way down on
their lists of things to be done.  They quite often would state otherwise
but when going through the code itself, their statements did not align up
with what they actually did.

On Thu, May 19, 2011 at 8:11 PM, Matt Robertson websitema...@gmail.comwrote:


 is at least as important as the former.  And anyone blowing off code
 readability is going to be on the street looking for a job on a
 different team.

 --
 --m@Robertson--
 Janitor, The Robertson Team
 mysecretbase.com

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344744
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Problem with enctype=multipart/form-data and some browsers - SOLVED

2011-05-20 Thread Al Musella, DPM

You got it!
It was the missing name on the submit button.

It always worked on ff4 - it was ff3 where it didn't work.
I accidentally removed the table tag when cutting out the 
nonessential parts of the form -

thanks!


At 01:30 AM 5/20/2011, Azadi Saryev wrote:

2 shots in the dark (since it does work in my FF4):

1) malformed html: you seem to be missing the opening table tag

2) try giving your submit button a proper name

[both issues above are from inspecting source of your test page]

i definitely remember FF having all sorts of fits with invalid html
(missing tags, improper tag nesting, etc) - so see if the above helps.

Azadi

On 20/05/2011 01:13 , Al Musella, DPM wrote:
  Hi
 I have an urgent problem..
 
  I created a website for a fundraising event that is going on all
  month.. one function is to create fundraising teams, where people can
  create a team and upload a photo.
  I wrote the code, tested it on the current version of chrome and
  firefox and it worked perfectly.
 
  However, on version 3.6.13 of firefox and IE, when you submit the
  form, it returns a blank page and the team doesn't get created so the
  action page isn't running...
 
  I set up a test page with the minimal required stuff:
 
  http://walktoendbraintumors.org/testform.cfm
 
  Here is the contents of that page:
 
 
 
  form action=testform2.cfm method=post 
 enctype=multipart/form-data
   tr
   tdnbsp;Upload Photo/td
tdnbsp;input type=file name=teamphoto size=50/td
  /tr
  tr
td colspan=2 align=centernbsp;
  input type=submit name= value=Create Team!
  /td
  /tr
   /table
 
 
  /form
  and here is testform2.cfm
 
  Success!
cfset destination = c:\temp
   cffile accept=image/jpeg,image/png,image/gif action=upload
  destination=#destination# filefield=teamphoto
  nameConflict=makeunique result=upload
 
 
  What am I doing wrong?
 
 
 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344745
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: RegEx Question

2011-05-20 Thread Peter Boughton

Not only can you do it with jQuery, you /should/ do it with jQuery (or equiv).

Regex is not built for HTML parsing, and there are many reasons why it wont 
work correctly when you try. Rather than worry about numerous edge cases, use a 
tool designed for the job from the start.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344746
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scoping

2011-05-20 Thread Pete Jordan

Dave Watts wrote:
 This is a mistake, unless you've actually decompiled CF or used JVM
 instrumentation to verify this. It's easy to jump from interface (what
 you interact with) to a conclusion about implementation (how it works
 under the covers) but you really don't have enough evidence to do that
 (and if you did that, I'm pretty confident that you'd be wrong about
 this speculation, for reasons I'll explain shortly). What we call
 scopes are just another kind of namespace. Their only job is to
 control where and when we can refer to specific variables that they
 contain.
   

Since I have it lying around, have a link:
http://www.skydancer.org.uk/namespaces.cfm

It's incomplete, and constructed way back in CF7, but I'd expect that
it's pretty much unchanged in CF8 and CF9.

-- 
Regards,

Pete Jordan
Horus Web Engineering Ltd
http://www.webhorus.net/
phone: +44 1482 446471
mobile: +44 7973 725120


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344747
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Re: scoping

2011-05-20 Thread Aaron Rouse

I have no reason for it but this is the one thing I tend to never prefix a
scope before when referencing.  I often think about it but just never have
adjusted my ways.  So if I have cfquery name=qryGetData ... I do not do
cfoutput#Variables.qryGetData.ColumnName#/cfoutput instead I do
cfoutput#qryGetData.ColumnName#/cfoutput  I like to think of myself as a
scoping Nazi but this one case I slack on.

On Thu, May 19, 2011 at 10:29 AM, Steve 'Cutter' Blades 
cold.fus...@cutterscrossing.com wrote:


 (BTW,
 you should also scope query names). .

 Steve 'Cutter' Blades
 Adobe Community Professional
 Adobe Certified Expert
 Advanced Macromedia ColdFusion MX 7 Developer
 
 http://blog.cutterscrossing.com


 Co-Author Learning Ext JS 3.2 Packt Publishing 2010

 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

 The best way to predict the future is to help create it


-- 
Aaron Rouse
http://www.happyhacker.com/


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344748
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Raymond Camden

I think I can probably end this conversation right now.

The absolute BEST JavaScript Framework/Library/selfwritten code is...

whatever allows you to get the job down in the most efficient, easy to
maintain manner, and the one that addresses the needs of the users.

It just so happens that for a -majority- of folks, that's jQuery, but
there's also folks who like Ext and Prototype.

Seriously though - I use jQuery cuz I get crap done. End of story. ;)

On Thu, May 19, 2011 at 7:12 PM, Andrew Scott andr...@andyscott.id.au wrote:

 Andrei, I want to point your attention to your comment.

  I am calling MY Web-site, I know EXACTLY what to expect


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344749
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFchart / currency

2011-05-20 Thread Jenny Gavin-Wear

sure thing, will do ..


-Original Message-
From: Raymond Camden [mailto:rcam...@gmail.com]
Sent: 20 May 2011 12:55
To: cf-talk
Subject: Re: CFchart / currency



Cool. So just FYI - what you saw with the pie chart was kinda
expected. I should have warned you first. My XML was for one type.

Either way - it's interesting that you could also fixed this via JRE
locale. Do you mind adding this tip to my blog post as a comment? For
folks on a shared system, my solution will work best, but if you
control the server, yours may be better. (But if you need to support
lots of languages, you probably need to use the XML way.)

On Fri, May 20, 2011 at 12:14 AM, Jenny Gavin-Wear
jenn...@fasttrackonline.co.uk wrote:

 Feeling smug .. lol

 Changed the JRE locale in CF admin

  -Duser.language=en -Duser.region=GB

 Works as it should now :)




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344750
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: AntiSpammy vs http://www.cflib.org/udf.cfm/safetext for preventing XSS

2011-05-20 Thread Pete Freitag

Hi Brook,

I think it would be difficult to get AntiSamy to ignore the google
analytics script, and not other scripts.  You can pass regex into
Anitsamy for attribute validation, but I don't think you can match a
global pattern in the policy file. I think the best approach in your
situation is to strip out the analytics code before sending it to
AntiSamy for validation as you suggested.


--
Pete Freitag - Adobe Community Professional
http://foundeo.com/ - ColdFusion Consulting  Products
http://petefreitag.com/ - My Blog
http://hackmycf.com - Is your ColdFusion Server Secure?




On Thu, May 19, 2011 at 11:44 PM, Brook Davies cft...@logiforms.com wrote:

 Hi Andrew,

 But consider a CMS or 'landing page creator' that allows users to create
 their own landing pages - and insert their own google analytics code. So I
 would need to be able to tell antiSamy that I want to allow a specific
 script...

 A google search didn't turn up anything. I guess I could use a regex to find
 it, strip it out, then run AntiSammy, then put the GA code back in...

 Brook


 -Original Message-
 From: Andrew Scott [mailto:andr...@andyscott.id.au]
 Sent: May-19-11 4:56 PM
 To: cf-talk
 Subject: RE: AntiSpammy vs http://www.cflib.org/udf.cfm/safetext for
 preventing XSS


 Anti Samy is brilliant, the way this is used is as a HTML string cleaner.

 What that means is that you define which configuration type you want, there
 are predefined configs like Slashdot to name but one. These configs are
 fully configurable to the HTML Elements. SlashDot config is what SlashDot
 itself uses to clean any user input from their site, that contains HTML
 inputs.

 Now as for your question, it doesn't clean the HTML that is first being
 server or generated by your Application. It cleans any text or string input,
 by passing it through the library, and then getting back a sanitized version
 that you can then do with.

 So that means your GA will still work because that came from the page
 itself, and you would not want to use GA in what people enter in your text
 boxes and text areas.

 Hope that helps.


 Regards,
 Andrew Scott
 http://www.andyscott.id.au/



 -Original Message-
 From: Brook Davies [mailto:cft...@logiforms.com]
 Sent: Friday, 20 May 2011 1:09 AM
 To: cf-talk
 Subject: AntiSpammy vs http://www.cflib.org/udf.cfm/safetext for
 preventing XSS


 Hi Guys,



 I'm currently using the safeText UDF
 (http://www.cflib.org/udf.cfm/safetext)
 to clean user submitted content, both HTML fragments and full HTML
 documents.  Based on some reading over at
 http://www.petefreitag.com/item/760.cfm , I am considering using
 AntiSammy instead.  What I want to know is:



 1.       What are your experiences with this?

 2.       I need to be able to allow explicitly allow some script tags -
 like
 the google analytics code. Is this possible with AntiSammy?

 3.       I'm gonna test this some more on my end, but I am guessing that
 there would be substantially more overhead in instaniating and
 invoking
 the
 antiSpammy java classes and scanning 100 elements than there would
 calling an application scoped UDF method. Does that sound right? I'm
 gonna (time
 permitting) test this today.



 Just thought I would post this (maybe someone who's not knee deep in
 'ColdFusion and Ajax Choices' nonsense) and see if anyone had any
 experience with it before I jump in..



 Brook




 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344751
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion and AJAX choices

2011-05-20 Thread Rick Faircloth

Oh, come on, Ray!  Don't become a diplomat now!
Continue the good fight!  jQuery! jQuery! jQuery!

Really, though.  I like it because it gave me,
a non-Javascript (none at all!) programmer, a way
to get into the JS game that I could understand with
no background.  I do incorporate regular JS when needed, now.
(Not much, however...)

But, Ray is right.  We all come to languages with different
experience that leans us in one direction or another, which
determines our decision-making in the end.

To quote a famous philosopher, Can't we just all get along! :oP

But, Rick! That's no fun!  We need to have a list for
Cage-Match Programming much like iStockphoto has for graphic artists.
Both discussion and coding solutions between the two parties
is acceptable.  Everyone comments on the match,
but only two at a time compete. Everyone learns new programming
techniques, any language is acceptable in the challenges. (Except PHP.
Remember, we don't do drugs in the CF community...)
The community votes on the solutions and most votes wins.

Bring on the Cage-Match Programming!  Only one will survive!

Fight! Fight! Fight!

Rick


-Original Message-
From: Raymond Camden [mailto:rcam...@gmail.com] 
Sent: Friday, May 20, 2011 9:44 AM
To: cf-talk
Subject: Re: ColdFusion and AJAX choices


I think I can probably end this conversation right now.

The absolute BEST JavaScript Framework/Library/selfwritten code is...

whatever allows you to get the job down in the most efficient, easy to
maintain manner, and the one that addresses the needs of the users.

It just so happens that for a -majority- of folks, that's jQuery, but
there's also folks who like Ext and Prototype.

Seriously though - I use jQuery cuz I get crap done. End of story. ;)

On Thu, May 19, 2011 at 7:12 PM, Andrew Scott andr...@andyscott.id.au
wrote:

 Andrei, I want to point your attention to your comment.

  I am calling MY Web-site, I know EXACTLY what to expect




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344752
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scoping

2011-05-20 Thread Dave Watts

 Co-Author Learning Ext JS 3.2 Packt Publishing 2010
 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

Oh, by the way Steve, I like your Ext JS book. Are you doing a revision for 4?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344753
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfhttp response with non-english characters gets cut off

2011-05-20 Thread morgan l

I agree that the encoding is the likely culprit, but we're calling a 3rd
party service and can't control what they're sending us. Their response to
our inquiry was that they are sending utf-8 encoded responses.

Outside of calling this 3rd party service, I've been unable to duplicate the
problem, so I don't have a link I can post.

Thanks for the ideas, suggestions and trains of thought, everyone. Looks
like we're stuck with our inelegant try-catch solution. I was hoping to
squeeze quite a bit more efficiency out of this.

On Thu, May 19, 2011 at 11:54 AM, Andrei Kondrashev adiab...@cs.com wrote:


 Andrei, one of my coworkers had much the same thought. The headers are
 reporting utf-8, and I've created a test document containing an omega
 character I've saved as plain text utf-8 encoded and it still truncates.

 Just created a text file that contains the entire Greek alphabet plus crazy
 Scandinavian characters using Character Map and save it locally in UTF-8
 (notepad).  Everything works, as it should be.  I am 99% sure that your
 problem relates to charset encoding/decoding.  I have CF8 here.

 If you post an actual URL that causes a truncation, it could help.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344754
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Claude Schnéegans

 So you agree with an incorrect assesment of the size of jQuery? It's
31KB minimized, not 300k.

230k to be more accurate, and about 9000 lines of code in only one file.
The minimized version is 90k and still equivalent to 9000 lines of code to be 
compiled.
Again, if one just needs some Ajax facilities, this is like Gross Bertha.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344755
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Claude Schnéegans

 Perhaps, you could build something like this, but in reality it is much 
 better to have 3 or 4 DIFFERENT cars for different purposes.

Or even only ONE if you have only one purpose!

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344756
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion and AJAX choices

2011-05-20 Thread Andrew Scott

Hey you might get crap done but I get useful code done and very quickly too.
But it is never crap with ExtJS!!!

No seriously that is also why I made the comment too, if it gets the job
done and quickly then it is a useful tool.


Regards,
Andrew Scott
http://www.andyscott.id.au/


 -Original Message-
 From: Raymond Camden [mailto:rcam...@gmail.com]
 Sent: Friday, 20 May 2011 11:44 PM
 To: cf-talk
 Subject: Re: ColdFusion and AJAX choices
 
 
 I think I can probably end this conversation right now.
 
 The absolute BEST JavaScript Framework/Library/selfwritten code is...
 
 whatever allows you to get the job down in the most efficient, easy to
 maintain manner, and the one that addresses the needs of the users.
 
 It just so happens that for a -majority- of folks, that's jQuery, but
there's also
 folks who like Ext and Prototype.
 
 Seriously though - I use jQuery cuz I get crap done. End of story. ;)
 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344757
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scoping

2011-05-20 Thread Steve 'Cutter' Blades

Thanks Dave! I'm glad you liked it.

Please, call me Cutter. I had to start adding the rest of my name to my 
signature block, a few years back, because the product team didn't know 
who Steve Blades was every time I applied for ACP;)

Packt has asked me to write the book for v4 on my own (I wrote the final 
chapters of both previous books), and I'm working on an outline now so 
we can finalize the contract. Looking at a completely different style 
with this book. Still covering the core concepts, but also writing it as 
a step-by-step tutorial, building a small application along the way. 
Going to be a lot of work, but should also be a lot of fun.

Steve 'Cutter' Blades
Adobe Community Professional
Adobe Certified Expert
Advanced Macromedia ColdFusion MX 7 Developer

http://blog.cutterscrossing.com


Co-Author Learning Ext JS 3.2 Packt Publishing 2010
https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book

The best way to predict the future is to help create it


On 5/20/2011 9:57 AM, Dave Watts wrote:
 Co-Author Learning Ext JS 3.2 Packt Publishing 2010
 https://www.packtpub.com/learning-ext-js-3-2-for-building-dynamic-desktop-style-user-interfaces/book
 Oh, by the way Steve, I like your Ext JS book. Are you doing a revision for 4?

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 http://training.figleaf.com/

 Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
 GSA Schedule, and provides the highest caliber vendor-authorized
 instruction at our training centers, online, or onsite.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344758
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


HOF Site

2011-05-20 Thread Steve Milburn

Just an alert to those who maintain the HOF site (Michael?) - It looks
like it's been hacked.  Anyone else seeing something unexpected when
view the main page?  I can navigate to directly to some other pages
fine, but the front page (www.houseoffusion.com) has been compromised.

Steve

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344759
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: HOF Site

2011-05-20 Thread Paul Giesenhagen

Yup ... I'm seeing it


-Original Message-
From: Steve Milburn [mailto:scmilb...@gmail.com] 
Sent: Friday, May 20, 2011 10:20 AM
To: cf-talk
Subject: HOF Site


Just an alert to those who maintain the HOF site (Michael?) - It looks like 
it's been hacked.  Anyone else seeing something unexpected when view the main 
page?  I can navigate to directly to some other pages fine, but the front page 
(www.houseoffusion.com) has been compromised.

Steve



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344760
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Ken Hammond

Looks normal to me.
 

-Original Message-
From: Steve Milburn scmilb...@gmail.com
To: cf-talk cf-talk@houseoffusion.com
Date: Fri, 20 May 2011 11:20:21 -0400
Subject: HOF Site


Just an alert to those who maintain the HOF site (Michael?) - It looks
like it's been hacked.  Anyone else seeing something unexpected when
view the main page?  I can navigate to directly to some other pages
fine, but the front page (www.houseoffusion.com) has been compromised.

Steve



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344761
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: HOF Site

2011-05-20 Thread Ken Hammond

Unless you mean the advertising.
 

-Original Message-
From: Paul Giesenhagen p...@quilldesign.com
To: cf-talk cf-talk@houseoffusion.com
Date: Fri, 20 May 2011 10:32:50 -0500
Subject: RE: HOF Site


Yup ... I'm seeing it


-Original Message-
From: Steve Milburn [mailto:scmilb...@gmail.com] 
Sent: Friday, May 20, 2011 10:20 AM
To: cf-talk
Subject: HOF Site


Just an alert to those who maintain the HOF site (Michael?) - It looks like 
it's been hacked.  Anyone else seeing something unexpected when view the 
main page?  I can navigate to directly to some other pages fine, but the 
front page (www.houseoffusion.com) has been compromised.

Steve





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344762
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Dorioo

Looks normal to me now. But 2 minutes ago, I saw a white page with a
sentence about contacting someone.

- Gabriel

On Fri, May 20, 2011 at 11:26 AM, Ken Hammond khamm...@saleminc.com wrote:


 Looks normal to me.


 -Original Message-
 From: Steve Milburn scmilb...@gmail.com
 To: cf-talk cf-talk@houseoffusion.com
 Date: Fri, 20 May 2011 11:20:21 -0400
 Subject: HOF Site


 Just an alert to those who maintain the HOF site (Michael?) - It looks
 like it's been hacked.  Anyone else seeing something unexpected when
 view the main page?  I can navigate to directly to some other pages
 fine, but the front page (www.houseoffusion.com) has been compromised.

 Steve



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344763
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Wil Genovese

He must have fixed it already.  I was the hack a few minutes ago.



Wil Genovese
Sr. Web Application Developer/
Systems Administrator
CF Webtools
www.cfwebtools.com

wilg...@trunkful.com
www.trunkful.com

On May 20, 2011, at 10:26 AM, Ken Hammond wrote:

 
 Looks normal to me.
 
 
 -Original Message-
 From: Steve Milburn scmilb...@gmail.com
 To: cf-talk cf-talk@houseoffusion.com
 Date: Fri, 20 May 2011 11:20:21 -0400
 Subject: HOF Site
 
 
 Just an alert to those who maintain the HOF site (Michael?) - It looks
 like it's been hacked.  Anyone else seeing something unexpected when
 view the main page?  I can navigate to directly to some other pages
 fine, but the front page (www.houseoffusion.com) has been compromised.
 
 Steve
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344764
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Michael Dinowitz

The story is as follows:
Someone got on the box a month or two back and added their own Google
Adsense code to my pages. When I found it, I reported it to Google and
removed the code. The person who put the code there has been attacking me
again and again while asking me to get his Adsense account reinstated. He's
been on the box a few times in the last hour, stopping services, changing
pages, etc. He doesn't seem to realize that this is unacceptable behavior.


On Fri, May 20, 2011 at 11:20 AM, Steve Milburn scmilb...@gmail.com wrote:


 Just an alert to those who maintain the HOF site (Michael?) - It looks
 like it's been hacked.  Anyone else seeing something unexpected when
 view the main page?  I can navigate to directly to some other pages
 fine, but the front page (www.houseoffusion.com) has been compromised.

 Steve

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344765
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Claude Schnéegans

 Why reinvent the wheel over and over

Please explain why writing code BEFORE the equivalent exists in some open 
source library is REinventing the wheel.

Example:
When I first looked for a good online editor I could find no one able to clean 
up MS Word crap.
So I designed my own, about 10 years ago.
Then came FCKeditor. It has a MSWord paste function, but it was optional and 
must be selected by the user.
C'mon which user will do it and even know that MSWord code needs to be 
cleaned?
So Why should I switch for FCKEditor?

By the time, I had developped a way styles could be selected in the editor 
using clear natural language names instead of class names. FCK editor did'nt 
have it, so I kept my own editor.

Now FCK editor offers the same possibility, but still no way to force MSWord 
clean up transparently on every cut'n paste operation.
At least it didn't the last time I had a look at it.
So I'm still using my own online editor, and I'm still 100% happy with it.

Ah, and last but not the least, my editor is 100% integrated in my CMS ie: it 
can generate links to internal pages of the user's site by names of logical 
elements instead of having to cut'n paste the actual url.
Again, this functionality may exists in some more recent stuff, but I can't 
spend all my time looking for something that will do the same thing I've been 
using for years and I'm happy with.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344766
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Carl Von Stetten

What are you seeing?  It looks OK to me.
Carl

On 5/20/2011 8:20 AM, Steve Milburn wrote:
 Just an alert to those who maintain the HOF site (Michael?) - It looks
 like it's been hacked.  Anyone else seeing something unexpected when
 view the main page?  I can navigate to directly to some other pages
 fine, but the front page (www.houseoffusion.com) has been compromised.

 Steve

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344767
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread John M Bliss

Again, unless you're developing for the two oldest and slowest computers on
the 'Net, 90k and 9000 lines of code is *nothing* and/or cached.

And you get all of the stuff that's been pointed out in this thread:

- a standard way of handling things so that, if you get hit by a bus and
your replacement knows jquery, (s)he'll have no troubles stepping in
- more-or-less guaranteed cross-browser compatibility
- functions to do much more than some Ajax facilities when your page/app
grows
- hundreds of plugins and jqueryui for when your page/app grows
- etc

On Fri, May 20, 2011 at 10:05 AM,  wrote:


  So you agree with an incorrect assesment of the size of jQuery? It's
 31KB minimized, not 300k.

 230k to be more accurate, and about 9000 lines of code in only one file.
 The minimized version is 90k and still equivalent to 9000 lines of code to
 be compiled.
 Again, if one just needs some Ajax facilities, this is like Gross Bertha.


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344768
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Gerald Guido

Out of curiosity, how does all this help the OP solve his/her problem?
Shouldn't this discussion be moved to a more appropriate venue?

Curious-G!

On Fri, May 20, 2011 at 11:31 AM,  wrote:


  Why reinvent the wheel over and over

 Please explain why writing code BEFORE the equivalent exists in some open
 source library is REinventing the wheel.

 Example:
 When I first looked for a good online editor I could find no one able to
 clean up MS Word crap.
 So I designed my own, about 10 years ago.
 Then came FCKeditor. It has a MSWord paste function, but it was optional
 and must be selected by the user.
 C'mon which user will do it and even know that MSWord code needs to be
 cleaned?
 So Why should I switch for FCKEditor?

 By the time, I had developped a way styles could be selected in the editor
 using clear natural language names instead of class names. FCK editor did'nt
 have it, so I kept my own editor.

 Now FCK editor offers the same possibility, but still no way to force
 MSWord clean up transparently on every cut'n paste operation.
 At least it didn't the last time I had a look at it.
 So I'm still using my own online editor, and I'm still 100% happy with it.

 Ah, and last but not the least, my editor is 100% integrated in my CMS ie:
 it can generate links to internal pages of the user's site by names of
 logical elements instead of having to cut'n paste the actual url.
 Again, this functionality may exists in some more recent stuff, but I can't
 spend all my time looking for something that will do the same thing I've
 been using for years and I'm happy with.


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344769
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scoping

2011-05-20 Thread Matt Robertson

On Fri, May 20, 2011 at 4:54 AM, Aaron Rouse aaron.ro...@gmail.com wrote:

 I know people who have horrible code readability and been in the same teams
 for 5-10 years.

Granted.  I should have said 'my' team.  If they're working for me
they get educated quick or they're gone.

-- 
--m@Robertson--
Janitor, The Robertson Team
mysecretbase.com

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344770
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Michael Grant

That's an interesting anecdote, however I don't see how it relates to the
topic at hand.

When I build new apps I don't use my old pre jQuery codebase anymore. I've
updated to use jQuery (or equiv). Why? Because it's more flexible,
upgradeable, backward compatible and scalable. And for me that's enough.

I also no longer use my Commodore 64 or wear acid washed jeans.



On Fri, May 20, 2011 at 11:31 AM,  wrote:


  Why reinvent the wheel over and over

 Please explain why writing code BEFORE the equivalent exists in some open
 source library is REinventing the wheel.

 Example:
 When I first looked for a good online editor I could find no one able to
 clean up MS Word crap.
 So I designed my own, about 10 years ago.
 Then came FCKeditor. It has a MSWord paste function, but it was optional
 and must be selected by the user.
 C'mon which user will do it and even know that MSWord code needs to be
 cleaned?
 So Why should I switch for FCKEditor?

 By the time, I had developped a way styles could be selected in the editor
 using clear natural language names instead of class names. FCK editor did'nt
 have it, so I kept my own editor.

 Now FCK editor offers the same possibility, but still no way to force
 MSWord clean up transparently on every cut'n paste operation.
 At least it didn't the last time I had a look at it.
 So I'm still using my own online editor, and I'm still 100% happy with it.

 Ah, and last but not the least, my editor is 100% integrated in my CMS ie:
 it can generate links to internal pages of the user's site by names of
 logical elements instead of having to cut'n paste the actual url.
 Again, this functionality may exists in some more recent stuff, but I can't
 spend all my time looking for something that will do the same thing I've
 been using for years and I'm happy with.


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344771
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Michael Grant

I think it's likely very helpful for the OP to decide which AJAX solution to
employ. This discussion is showing him two sides to the js framework story
which will help him make his own informed decision.


On Fri, May 20, 2011 at 11:39 AM, Gerald Guido gerald.gu...@gmail.comwrote:


 Out of curiosity, how does all this help the OP solve his/her problem?
 Shouldn't this discussion be moved to a more appropriate venue?

 Curious-G!

 On Fri, May 20, 2011 at 11:31 AM,  wrote:

 
   Why reinvent the wheel over and over
 
  Please explain why writing code BEFORE the equivalent exists in some open
  source library is REinventing the wheel.
 
  Example:
  When I first looked for a good online editor I could find no one able to
  clean up MS Word crap.
  So I designed my own, about 10 years ago.
  Then came FCKeditor. It has a MSWord paste function, but it was optional
  and must be selected by the user.
  C'mon which user will do it and even know that MSWord code needs to be
  cleaned?
  So Why should I switch for FCKEditor?
 
  By the time, I had developped a way styles could be selected in the
 editor
  using clear natural language names instead of class names. FCK editor
 did'nt
  have it, so I kept my own editor.
 
  Now FCK editor offers the same possibility, but still no way to force
  MSWord clean up transparently on every cut'n paste operation.
  At least it didn't the last time I had a look at it.
  So I'm still using my own online editor, and I'm still 100% happy with
 it.
 
  Ah, and last but not the least, my editor is 100% integrated in my CMS
 ie:
  it can generate links to internal pages of the user's site by names of
  logical elements instead of having to cut'n paste the actual url.
  Again, this functionality may exists in some more recent stuff, but I
 can't
  spend all my time looking for something that will do the same thing I've
  been using for years and I'm happy with.
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344772
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Google Picasaweb API

2011-05-20 Thread CF Expert

I wrote a wrapper for picasa that you can use as the basis for your app.

Http://Picasacfc.Riaforge.org

On May 17, 2011, at 7:30 PM, Guru wrote:



this is cool..

Was diging the api docs and couldn't find how to get the photo by photoID 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344773
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion and AJAX choices

2011-05-20 Thread Rick Faircloth

The Production jQuery core is 31KB, minified and gzipped,
according to the jQuery site, itself.

So, it would seem, the only correct number to reference
in regards to jQuery production core code is 31KB.

All other numbers are irrelevant.


-Original Message-
From: Claude Schnéegans schneeg...@internetique.com
[mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?=
=?ISO-8859-1?Q?ue.com=3E?=] 
Sent: Friday, May 20, 2011 11:06 AM
To: cf-talk
Subject: Re: ColdFusion and AJAX choices


 So you agree with an incorrect assesment of the size of jQuery? It's
31KB minimized, not 300k.

230k to be more accurate, and about 9000 lines of code in only one file.
The minimized version is 90k and still equivalent to 9000 lines of code to
be compiled.
Again, if one just needs some Ajax facilities, this is like Gross Bertha.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344774
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion and AJAX choices

2011-05-20 Thread Rick Faircloth

Michael, I'm still using my Radio Shack Color Computer with 4K of RAM,
an audio cassette tape for data storage and no monitor,
which cost me $525 in 1982.

Perhaps I would be more productive if I upgraded to 16K of RAM? :o)


-Original Message-
From: Michael Grant [mailto:mgr...@modus.bz] 
Sent: Friday, May 20, 2011 12:02 PM
To: cf-talk
Subject: Re: ColdFusion and AJAX choices


That's an interesting anecdote, however I don't see how it relates to the
topic at hand.

When I build new apps I don't use my old pre jQuery codebase anymore. I've
updated to use jQuery (or equiv). Why? Because it's more flexible,
upgradeable, backward compatible and scalable. And for me that's enough.

I also no longer use my Commodore 64 or wear acid washed jeans.



On Fri, May 20, 2011 at 11:31 AM,  wrote:


  Why reinvent the wheel over and over

 Please explain why writing code BEFORE the equivalent exists in some open
 source library is REinventing the wheel.

 Example:
 When I first looked for a good online editor I could find no one able to
 clean up MS Word crap.
 So I designed my own, about 10 years ago.
 Then came FCKeditor. It has a MSWord paste function, but it was optional
 and must be selected by the user.
 C'mon which user will do it and even know that MSWord code needs to be
 cleaned?
 So Why should I switch for FCKEditor?

 By the time, I had developped a way styles could be selected in the editor
 using clear natural language names instead of class names. FCK editor
did'nt
 have it, so I kept my own editor.

 Now FCK editor offers the same possibility, but still no way to force
 MSWord clean up transparently on every cut'n paste operation.
 At least it didn't the last time I had a look at it.
 So I'm still using my own online editor, and I'm still 100% happy with it.

 Ah, and last but not the least, my editor is 100% integrated in my CMS ie:
 it can generate links to internal pages of the user's site by names of
 logical elements instead of having to cut'n paste the actual url.
 Again, this functionality may exists in some more recent stuff, but I
can't
 spend all my time looking for something that will do the same thing I've
 been using for years and I'm happy with.


 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344775
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Matt Quackenbush

On Fri, May 20, 2011 at 11:17 AM, Rick Faircloth wrote:


 Michael, I'm still using my Radio Shack Color Computer with 4K of RAM,
 an audio cassette tape for data storage and no monitor,
 which cost me $525 in 1982.

 Perhaps I would be more productive if I upgraded to 16K of RAM? :o)



But he's no longer on CF5, by God!  :D


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344776
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Claude Schnéegans

 That's an interesting anecdote, however I don't see how it relates to the
topic at hand.

It does in the sense If you are capable of developing your own tools, it could 
be a better and more efficient solution.
If you're not, then use some other's.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344777
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Claude Schnéegans

 But he's no longer on CF5

He was on CF4.5! ;-)

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344778
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Claude Schnéegans

 The Production jQuery core is 31KB, minified and gzipped,

This is for the packed version, but it must be unpacked before it is used 
on client side, which requires non-trivial client-side processing time 
according to the same official jQuery site.
The minimized uncompressed version is exactly 91 342 bytes.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344779
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Matt Quackenbush

Geez.  Can this thread die already?

Claude  *

On Fri, May 20, 2011 at 11:40 AM,  wrote:


  The Production jQuery core is 31KB, minified and gzipped,

 This is for the packed version, but it must be unpacked before it is
 used on client side, which requires non-trivial client-side processing
 time according to the same official jQuery site.
 The minimized uncompressed version is exactly 91 342 bytes.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344780
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Claude Schnéegans

 90k and 9000 lines of code is *nothing*

It may be nothing, but if all you need is access to Ajax facilities, it is 
still 900 times bigger than necessary.
And since I started developing applications, I obey this fundamental principle:
NEVER USE CODE 900 TIMES BIGGER THAN NECESSARY.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344781
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion and AJAX choices

2011-05-20 Thread Rick Faircloth

That's true, Matt! (But I was on 4.5 until I jumped
straight to 8! :o)

It's been brutal having to write the BASIC code that would
allow me to run ColdFusion 8!

-Original Message-
From: Matt Quackenbush [mailto:quackfu...@gmail.com] 
Sent: Friday, May 20, 2011 12:32 PM
To: cf-talk
Subject: Re: ColdFusion and AJAX choices


On Fri, May 20, 2011 at 11:17 AM, Rick Faircloth wrote:


 Michael, I'm still using my Radio Shack Color Computer with 4K of RAM,
 an audio cassette tape for data storage and no monitor,
 which cost me $525 in 1982.

 Perhaps I would be more productive if I upgraded to 16K of RAM? :o)



But he's no longer on CF5, by God!  :D




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344782
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: ColdFusion and AJAX choices

2011-05-20 Thread Rick Faircloth

Good memory, Claude!

-Original Message-
From: Claude Schnéegans schneeg...@internetique.com
[mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?=
=?ISO-8859-1?Q?ue.com=3E?=] 
Sent: Friday, May 20, 2011 12:36 PM
To: cf-talk
Subject: Re: ColdFusion and AJAX choices


 But he's no longer on CF5

He was on CF4.5! ;-)



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344783
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Michael Grant

Wait... you know who this is?




On Fri, May 20, 2011 at 11:30 AM, Michael Dinowitz 
mdino...@houseoffusion.com wrote:


 The story is as follows:
 Someone got on the box a month or two back and added their own Google
 Adsense code to my pages. When I found it, I reported it to Google and
 removed the code. The person who put the code there has been attacking me
 again and again while asking me to get his Adsense account reinstated. He's
 been on the box a few times in the last hour, stopping services, changing
 pages, etc. He doesn't seem to realize that this is unacceptable behavior.


 On Fri, May 20, 2011 at 11:20 AM, Steve Milburn scmilb...@gmail.com
 wrote:

 
  Just an alert to those who maintain the HOF site (Michael?) - It looks
  like it's been hacked.  Anyone else seeing something unexpected when
  view the main page?  I can navigate to directly to some other pages
  fine, but the front page (www.houseoffusion.com) has been compromised.
 
  Steve
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344784
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Phillip Vector

Tell us who it is Mike. We will all block his IP from any sites we
build (Just kidding. I know that's a bad way to ID a user).

On Fri, May 20, 2011 at 1:21 PM, Michael Grant mgr...@modus.bz wrote:

 Wait... you know who this is?




 On Fri, May 20, 2011 at 11:30 AM, Michael Dinowitz 
 mdino...@houseoffusion.com wrote:


 The story is as follows:
 Someone got on the box a month or two back and added their own Google
 Adsense code to my pages. When I found it, I reported it to Google and
 removed the code. The person who put the code there has been attacking me
 again and again while asking me to get his Adsense account reinstated. He's
 been on the box a few times in the last hour, stopping services, changing
 pages, etc. He doesn't seem to realize that this is unacceptable behavior.


 On Fri, May 20, 2011 at 11:20 AM, Steve Milburn scmilb...@gmail.com
 wrote:

 
  Just an alert to those who maintain the HOF site (Michael?) - It looks
  like it's been hacked.  Anyone else seeing something unexpected when
  view the main page?  I can navigate to directly to some other pages
  fine, but the front page (www.houseoffusion.com) has been compromised.
 
  Steve
 
 



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344785
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Michael Grant

I'm capable. You're capable. Most of us are capable. I just don't see a
point to it. I'm also capable of grinding my own flour, but why bother when
I can just buy a bag?


On Fri, May 20, 2011 at 12:34 PM,  wrote:


  That's an interesting anecdote, however I don't see how it relates to
 the
 topic at hand.

 It does in the sense If you are capable of developing your own tools, it
 could be a better and more efficient solution.
 If you're not, then use some other's.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344786
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: ColdFusion and AJAX choices

2011-05-20 Thread Mark Drew

I guess all you want is to make on croissant and you have to buy a whole bag of 
flour. 

Then again, you might want to make pizza later on or maybe some tasty bread! 

Oh dear, this analogy has made me hungry. 

It reminds me EXACTLY of the Frameworks arguments that always crop up. 

MD


On 20 May 2011, at 18:24, Michael Grant wrote:

 
 I'm capable. You're capable. Most of us are capable. I just don't see a
 point to it. I'm also capable of grinding my own flour, but why bother when
 I can just buy a bag?
 
 
 On Fri, May 20, 2011 at 12:34 PM,  wrote:
 
 
 That's an interesting anecdote, however I don't see how it relates to
 the
 topic at hand.
 
 It does in the sense If you are capable of developing your own tools, it
 could be a better and more efficient solution.
 If you're not, then use some other's.
 
 
 
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344787
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


generating hmac-sha1 signatures w/ coldfusion

2011-05-20 Thread Jeff Gladnick

I've scoured google for hours now and cannot seem to find what I am looking for.

I am trying to build a library to connect to Yahoo's API and import contacts 
via their REST API using oAuth.

I have the oAuth authentication done and working, but the final step, making 
the API request won't seem to work no matter what I do.

1) This is how yahoo says I must make API calls:
http://developer.yahoo.com/oauth/guide/oauth-make-request.html

The problem is is requires me to generate an hmac-sha1 signature, and I am 
unsure of how to go about doing this, or what variables must be used to 
construct it?  

Can anyone explain this to me? 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344788
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfhttp response with non-english characters gets cut off

2011-05-20 Thread Andrei Kondrashev

I think, you gave up too early.  This is how I would do this.

Version 1.
Use another tool to get the stuff from the server.  Not a browser or cfhttp.
It must be able to save your stream, as an unchanged byte stream without any
conversion to a disk file.  So the number in the Content-Length would exactly
the same, as the length of the file.  Don't want to advertise anything on this 
list.
You can easily find such tools.  After that you can conduct clean experiments
using cffile.  Obviously, this must be the case, when cfhttp truncates
the data.

stPos=1
cfloop
- Use ASC() to find the first character with the code above 127, starting from 
stPos.
   cfloop
  - Go to some Web-site that has utf-8 table (like Wikipedia) and look 
whether this
is a valid escape character.  If not, break - it is not valid utf-8 
stream.  Report
error to your provider.
-  Get the code of the next character. See, if this is an escape or data 
char.
Consult the table above.  Break with utf-8 error, as before, if sequence
is not valid.
 - End this loop, if a data char was read.  Continue, if an escape char was 
read.
/cfloop
utf-8 sequence is valid.  Modify stPos to set it after the valid sequence.
Continue.
/cfloop
utf-8 stream is valid.  Report error here and to Adobe.

Version 2
Enforce some 8-bit encoding in your cfhttp call, like iso-8859-1.
Save result in a file using cffile with the same charset.  This suppose
to produce unchanged 8-bit stream, but I am not 100% sure (depends
on what exactly CFHTTP is doing).  Repeat process above.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344789
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: generating hmac-sha1 signatures w/ coldfusion

2011-05-20 Thread Dorioo

I haven't worked with the Yahoo API but I have worked with other APIs that
required a hmac-sha1 signature and this function was invaluable. You'll
likely need it as some point.

http://www.coldfusiondeveloper.com.au/go/note/2008/01/18/hmac-sha1-using-java/

- Gabriel

On Fri, May 20, 2011 at 1:33 PM, Jeff Gladnick jeff.gladn...@gmail.comwrote:


 I've scoured google for hours now and cannot seem to find what I am looking
 for.

 I am trying to build a library to connect to Yahoo's API and import
 contacts via their REST API using oAuth.

 I have the oAuth authentication done and working, but the final step,
 making the API request won't seem to work no matter what I do.

 1) This is how yahoo says I must make API calls:
 http://developer.yahoo.com/oauth/guide/oauth-make-request.html

 The problem is is requires me to generate an hmac-sha1 signature, and I am
 unsure of how to go about doing this, or what variables must be used to
 construct it?

 Can anyone explain this to me?

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344790
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: generating hmac-sha1 signatures w/ coldfusion

2011-05-20 Thread Jeff Gladnick

@Gabriel:

I am using that.  For the signmessage I am passing in something that looks 
similar to this:

POSThttps%3A%2F%2Fapi.login.yahoo.com%2Foauth%2Fv2%2Fget_request_token
oauth_consumer_key%3Ddj0yJmk9YmxIanRLOGQybWFCJmQ9WVdrOUxWbFBVMWRUTmpRbWNHbzlNQ1o1UFRFLSZzPWNvbnN1bWVyc2VjcmV0Jng9YTc-
%26oauth_nonce%3DJsZywH
%26oauth_signature_method%3DHMAC-SHA1
%26oauth_timestamp%3D1221089876
%26oauth_version%3D1.0
%26xoauth_lang_pref%3Den-us

for the signkey, i pass in:
cfset signkey = #consumerSecret#%26#session.oauth_token_secret# /

It gives me back gobbly-gook when i pass that into the hmac encrypt function:
�.є{3l���Ӵ�NoH�9�


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344791
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: generating hmac-sha1 signatures w/ coldfusion

2011-05-20 Thread Jeff Gladnick

code I am currently using:
http://pastebin.com/pJK3m6SW 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344792
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: generating hmac-sha1 signatures w/ coldfusion

2011-05-20 Thread Jeff Gladnick

Might be getting close with this code:

http://pastebin.com/uwbkGCVP

Now its producing reasonable characters at least, using slightly different 
hmac-sha1 function. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344793
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: generating hmac-sha1 signatures w/ coldfusion

2011-05-20 Thread Dorioo

True. In my code, using the original function on that page, I take the
calculation from the function and do this to it to create a readable string:

toBase64(digest, hex)

where digest is the code created by the function.

- Gabriel

On Fri, May 20, 2011 at 2:22 PM, Jeff Gladnick jeff.gladn...@gmail.comwrote:


 Might be getting close with this code:

 http://pastebin.com/uwbkGCVP

 Now its producing reasonable characters at least, using slightly different
 hmac-sha1 function.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344794
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: generating hmac-sha1 signatures w/ coldfusion

2011-05-20 Thread Jeff Gladnick

I'm so close...

Latest code
http://pastebin.com/iJxYGJeL

error returned:
Please provide valid credentials. OAuth oauth_problem=parameter_rejected: 
oauth_signature

I must be constructing my signature wrong but I can seem to figure it out :( 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344795
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: scoping

2011-05-20 Thread Judah McAuley

On Fri, May 20, 2011 at 8:47 AM, Matt Robertson websitema...@gmail.com wrote:

 On Fri, May 20, 2011 at 4:54 AM, Aaron Rouse aaron.ro...@gmail.com wrote:

 I know people who have horrible code readability and been in the same teams
 for 5-10 years.

 Granted.  I should have said 'my' team.  If they're working for me
 they get educated quick or they're gone.


Code readability is a bit of a personal preference though. I have a
friend/co-worker who writes very terse code and does a lot of things
like nested use of the ternary operator three levels deep and closures
within closures. I can read it fine but a lot of other people find it
terribly unreadable. It is nicely indented and structured and such but
not what a lot of people would consider readable.

Standards a good thing though on any team.

Jud

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344796
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Russ Michaels

You need to change all your passwords and block remote access to the server
to only your IP address.
Unless he has installed a trjoan or other backdoor.

On Fri, May 20, 2011 at 6:24 PM, Phillip Vector
vec...@mostdeadlygame.comwrote:


 Tell us who it is Mike. We will all block his IP from any sites we
 build (Just kidding. I know that's a bad way to ID a user).

 On Fri, May 20, 2011 at 1:21 PM, Michael Grant mgr...@modus.bz wrote:
 
  Wait... you know who this is?
 
 
 
 
  On Fri, May 20, 2011 at 11:30 AM, Michael Dinowitz 
  mdino...@houseoffusion.com wrote:
 
 
  The story is as follows:
  Someone got on the box a month or two back and added their own Google
  Adsense code to my pages. When I found it, I reported it to Google and
  removed the code. The person who put the code there has been attacking
 me
  again and again while asking me to get his Adsense account reinstated.
 He's
  been on the box a few times in the last hour, stopping services,
 changing
  pages, etc. He doesn't seem to realize that this is unacceptable
 behavior.
 
 
  On Fri, May 20, 2011 at 11:20 AM, Steve Milburn scmilb...@gmail.com
  wrote:
 
  
   Just an alert to those who maintain the HOF site (Michael?) - It looks
   like it's been hacked.  Anyone else seeing something unexpected when
   view the main page?  I can navigate to directly to some other pages
   fine, but the front page (www.houseoffusion.com) has been
 compromised.
  
   Steve
  
  
 
 
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344797
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Raymond Camden

As someone who has been on receiving end of help from the community,
I'd love to be able to help take someone down. Tell us so we can fight
back.

On Fri, May 20, 2011 at 3:08 PM, Russ Michaels r...@michaels.me.uk wrote:

 You need to change all your passwords and block remote access to the server
 to only your IP address.
 Unless he has installed a trjoan or other backdoor.

 On Fri, May 20, 2011 at 6:24 PM, Phillip Vector
 vec...@mostdeadlygame.comwrote:


 Tell us who it is Mike. We will all block his IP from any sites we
 build (Just kidding. I know that's a bad way to ID a user).

 On Fri, May 20, 2011 at 1:21 PM, Michael Grant mgr...@modus.bz wrote:
 
  Wait... you know who this is?


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344798
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Russ Michaels

well if Michael can get the guy's IP address, then he can do a RDNS lookup
and find out who his ISP is and report him both to his ISP and to the
authorities. they will then be able to track him down.
The very fact he has use dhis own google ads account and then asked Michael
to get it reinstated proves he is clearly not a clever hacker, just an
idiot.


On Fri, May 20, 2011 at 9:28 PM, Raymond Camden rcam...@gmail.com wrote:


 As someone who has been on receiving end of help from the community,
 I'd love to be able to help take someone down. Tell us so we can fight
 back.

 On Fri, May 20, 2011 at 3:08 PM, Russ Michaels r...@michaels.me.uk
 wrote:
 
  You need to change all your passwords and block remote access to the
 server
  to only your IP address.
  Unless he has installed a trjoan or other backdoor.
 
  On Fri, May 20, 2011 at 6:24 PM, Phillip Vector
  vec...@mostdeadlygame.comwrote:
 
 
  Tell us who it is Mike. We will all block his IP from any sites we
  build (Just kidding. I know that's a bad way to ID a user).
 
  On Fri, May 20, 2011 at 1:21 PM, Michael Grant mgr...@modus.bz wrote:
  
   Wait... you know who this is?
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344799
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Michael Dinowitz

Yes and no. It's the same guy who used the hole in Galleon to hack into HoF
and Forta.com last year. At least he's using the same code. I found pieces
of it in files around the site, though he didn't get access through CF this
time (that I could see).

While I have his adsense ID, Google will not give me any information as to
who he is, where, or anything else. I do know that the IP used to run some
of the scripts traces to China and his communications with me are definitely
the result of a translation program. If I dedicated the time to it I could
get a better idea of who he is and what else he's done but it's currently
not worth the time and effort on my part.

Now if someone wants to sponsor me to investigate further... :)


As an aside, tracing the IP that he used to access some of his scripts
landed me in China (again).

On Fri, May 20, 2011 at 1:21 PM, Michael Grant mgr...@modus.bz wrote:


 Wait... you know who this is?




 On Fri, May 20, 2011 at 11:30 AM, Michael Dinowitz 
 mdino...@houseoffusion.com wrote:

 
  The story is as follows:
  Someone got on the box a month or two back and added their own Google
  Adsense code to my pages. When I found it, I reported it to Google and
  removed the code. The person who put the code there has been attacking me
  again and again while asking me to get his Adsense account reinstated.
 He's
  been on the box a few times in the last hour, stopping services, changing
  pages, etc. He doesn't seem to realize that this is unacceptable
 behavior.
 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344800
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Raymond Camden

You know it's a guy - got a name?

On Fri, May 20, 2011 at 4:57 PM, Michael Dinowitz
mdino...@houseoffusion.com wrote:

 Yes and no. It's the same guy who used the hole in Galleon to hack into HoF
 and Forta.com last year. At least he's using the same code. I found pieces
 of it in files around the site, though he didn't get access through CF this
 time (that I could see).

 While I have his adsense ID, Google will not give me any information as to
 who he is, where, or anything else. I do know that the IP used to run some
 of the scripts traces to China and his communications with me are definitely
 the result of a translation program. If I dedicated the time to it I could
 get a better idea of who he is and what else he's done but it's currently
 not worth the time and effort on my part.

 Now if someone wants to sponsor me to investigate further... :)



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344801
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: HOF Site

2011-05-20 Thread Dan Baughman

Heh, out for blood?

On Fri, May 20, 2011 at 7:45 PM, Raymond Camden rcam...@gmail.com wrote:


 You know it's a guy - got a name?

 On Fri, May 20, 2011 at 4:57 PM, Michael Dinowitz
 mdino...@houseoffusion.com wrote:
 
  Yes and no. It's the same guy who used the hole in Galleon to hack into
 HoF
  and Forta.com last year. At least he's using the same code. I found
 pieces
  of it in files around the site, though he didn't get access through CF
 this
  time (that I could see).
 
  While I have his adsense ID, Google will not give me any information as
 to
  who he is, where, or anything else. I do know that the IP used to run
 some
  of the scripts traces to China and his communications with me are
 definitely
  the result of a translation program. If I dedicated the time to it I
 could
  get a better idea of who he is and what else he's done but it's currently
  not worth the time and effort on my part.
 
  Now if someone wants to sponsor me to investigate further... :)
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:344802
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF Developer Position in Atlanta, GA

2011-05-20 Thread Marcy Cuevas

A growing international company offering solutions for educational
technology, has an immediate need for a ColdFusion Developer with the
ability and experience to transition to .NET in 6-8 months.  The
ColdFusion/.NET Developer will assist in the full life cycle of various
web-based applications.  This includes development of business requirements
and program specs; database design and implementation; creation and
maintenance of database and web applications; the ability to develop,
execute, and analyze test plans; as well as being able to develop in a RAD
environment while taking ownership of various processes and procedures.


This is a permanent position and the salary is $70-$95k depending on
experience.





*Job Requirements *

*Minimum Requirements*:

· Minimum 4 years technical expertise in web applications
development using ColdFusion/C#.net. Strong knowledge of ColdFusion
including session  client management, CF modules, CF components, user
defined functions, custom tags, file manipulation, CFStoredProc, Query of
Query (QoQ).

· Experience coding in C#, ASP.NET, Visual Studio.NET.

· Solid understanding of Web/CF administration setup and
optimization.

· Strong working knowledge of SQL Server with proficiency in
performance tuning, writing stored procedures, scripts for data
import/export.

· Strong understanding of RDBMS concepts and the ability to
multi-task.
· Working experience in CFMX, C#.net, ASP.net, Visual Studio, Visual
Source safe, HTML, JavaScript


Please contact Marcy Cuevas at 678-778-7106 or marc...@gmail.com with
interest and for more details.

Thanks!
Marcy Cu

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4475
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-jobs-talk/unsubscribe.cfm