RE: Fixing a small piece of code

2009-08-18 Thread WebSite CFTalk

What about a jQuery based gallery?

This is nice:
http://pupunzi.wordpress.com/2009/02/28/mbgallery/

Demopage:
http://www.open-lab.com/mb.ideas/index.html#mbGallery

Helge


-Original Message-
From: Toby King [mailto:ptansw...@gmail.com] 
Sent: 18. august 2009 07:41
To: cf-talk
Subject: Re: Fixing a small piece of code


The site www.yengtanfloraldesigner.com.au is starting to look better (well the 
galleries can now be selected.

Just wondering how you would recommend improving the way the galleries are 
displayed - I'm thinking probably keep the drop down list available (somehow 
show the selection made - somehow highlight this selection) but have the drop 
down list still there so that a person can make another selection if required.

I think it could be done not sure exactly how yet.

What do you think?

Any ideas on how this can be done would be very much appreciated.






You had no action or method on your form  Try this:


CFIF IsDefined(form.submit)
  cfinclude template=inc_photo_gallery.cfm
  cfelse
  cfquery name=qGetGallery  datasource=#request.db_dsn#
username=#request.db_login# password=#request.db_pwd#
  SELECT  *
  FROMgalleries
  /cfquery
  form action=gallery.cfm method=post name=photogallery
id=photogallery
select name=GalleryID
  option value=Please Select an Image Gallery selectedPlease
Select an Image Gallery/option
  cfoutput query=qGetGallery
option
value=#qGetGallery.GalleryID##qGetGallery.galleryname#/option
  /cfoutput
/select
br /
br /
input type=submit name=submit value=Display Gallery
  /form
/cfif

cfquery name=qgetpics datasource=#request.db_dsn#
username=#request.db_login# password=#request.db_pwd#
   select *
   from photoadmin
   cfif isdefined(form.galleryid
   where galleryid = #form.galleryid# and onweb = '1'
   cfelse
   where onweb = '1'
   /cfif
/cfquery

p
div class=gallery
cfoutput query=qgetpics
a href=data/images/#pic_large# rel=lightbox[sample] title=Yeng
Tan Floral designimg src=data/thumbnails/#pic_thumbnail#
border=0 //a/cfoutput
!--[if lte IE 6]script src=engine/js/pngfix_vlb.js
type=text/javascript/script![endif]--
/div 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325516
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Fixing a small piece of code

2009-08-18 Thread Azadi Saryev

how about showing a thumbnail for each gallery (linked to gallery page)
instead of a drop-down list? that will be more visually appealing, and
requires only one click instead of 2. you can make it even more
interesting with displaying a random thumbnail each page visit...

you can leave the drop-down list in specific gallery page(s), so users
can jump directly to another gallery instead of going back to galleries
thumbnails page.

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/


On 18/08/2009 13:41, Toby King wrote:
 
 The site www.yengtanfloraldesigner.com.au is starting to look better (well 
 the galleries can now be selected.
 
 Just wondering how you would recommend improving the way the galleries are 
 displayed - I'm thinking probably keep the drop down list available (somehow 
 show the selection made - somehow highlight this selection) but have the drop 
 down list still there so that a person can make another selection if required.
 
 I think it could be done not sure exactly how yet.
 
 What do you think?
 
 Any ideas on how this can be done would be very much appreciated.
 
 
 
 
 
 
 You had no action or method on your form  Try this:


 CFIF IsDefined(form.submit)
  cfinclude template=inc_photo_gallery.cfm
  cfelse
  cfquery name=qGetGallery  datasource=#request.db_dsn#
 username=#request.db_login# password=#request.db_pwd#
  SELECT  *
  FROMgalleries
  /cfquery
  form action=gallery.cfm method=post name=photogallery
 id=photogallery
select name=GalleryID
  option value=Please Select an Image Gallery selectedPlease
 Select an Image Gallery/option
  cfoutput query=qGetGallery
option
 value=#qGetGallery.GalleryID##qGetGallery.galleryname#/option
  /cfoutput
/select
br /
br /
input type=submit name=submit value=Display Gallery
  /form
 /cfif

 cfquery name=qgetpics datasource=#request.db_dsn#
 username=#request.db_login# password=#request.db_pwd#
   select *
   from photoadmin
   cfif isdefined(form.galleryid
   where galleryid = #form.galleryid# and onweb = '1'
   cfelse
   where onweb = '1'
   /cfif
 /cfquery

 p
 div class=gallery
 cfoutput query=qgetpics
 a href=data/images/#pic_large# rel=lightbox[sample] title=Yeng
 Tan Floral designimg src=data/thumbnails/#pic_thumbnail#
 border=0 //a/cfoutput
 !--[if lte IE 6]script src=engine/js/pngfix_vlb.js
 type=text/javascript/script![endif]--
 /div 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325517
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFDOCUMENT SRC= and Dynamic HTML

2009-08-18 Thread Peter Boughton

I found a GPLv3 HTML-PDF converter with JS support:

http://code.google.com/p/wkhtmltopdf/

Only done a few tests so far, but it looks interesting! 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325518
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF and date Time DB Problems

2009-08-18 Thread Ian Vaughan

Hi

I am trying to insert the current date and time into an Oracle db using
the following

cfqueryparam cfsqltype=cf_sql_varchar value=#LSDateFormat(Now(),
dd-mmm-)# #LSTimeFormat(Now())#


But  I am getting the following coldfusion error from the database?


Error Executing Database Query.  
[Macromedia][Oracle JDBC Driver][Oracle]ORA-01830: date format picture
ends before converting entire input string  

Any ideas on what's going wrong?


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325519
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFAjax not playing well with javaScript.

2009-08-18 Thread Dave Watts

 http://lmgtfy.com/?...

That's just wrong.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325520
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF and date Time DB Problems

2009-08-18 Thread James Holmes

Is the column a date or a varchar - because you're using a varchar cfsqltype.

I usually use the Oracle to_date() function to insert a date/time.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2009/8/18 Ian Vaughan i.vaug...@neath-porttalbot.gov.uk:

 Hi

 I am trying to insert the current date and time into an Oracle db using
 the following

 cfqueryparam cfsqltype=cf_sql_varchar value=#LSDateFormat(Now(),
 dd-mmm-)# #LSTimeFormat(Now())#


 But  I am getting the following coldfusion error from the database?


 Error Executing Database Query.
 [Macromedia][Oracle JDBC Driver][Oracle]ORA-01830: date format picture
 ends before converting entire input string

 Any ideas on what's going wrong?


 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325521
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF and date Time DB Problems

2009-08-18 Thread Stephen Weyrick

Is the column a date or a varchar - because you're using a varchar cfsqltype.

I usually use the Oracle to_date() function to insert a date/time.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/


I use MS SQL Server, but I think you could use something like this.  
cfqueryparam value=#now()# CFSQLType=cf_sql_timestamp /

If this doesn't work, try this...
cfqueryparam value=#CreateODBCTime(now())# CFSQLType=cf_sql_timestamp / 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325522
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfajax with and javascript - not playing well together

2009-08-18 Thread Tony Bentley

You can always try using jquery $(div).load('template.cfm') which is 
lightweight and usually does not interfere with flash JS libs. 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325523
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF and date Time DB Problems

2009-08-18 Thread James Holmes

Of course on Oracle the easiest way to insert the current time and
date is to insert SYSDATE (if the CF server and the Oracle server
agree on the current time, anyway).

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

2009/8/18 Stephen  Weyrick sweyr...@gmail.com:

Is the column a date or a varchar - because you're using a varchar cfsqltype.

I usually use the Oracle to_date() function to insert a date/time.

mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/


 I use MS SQL Server, but I think you could use something like this.
 cfqueryparam value=#now()# CFSQLType=cf_sql_timestamp /

 If this doesn't work, try this...
 cfqueryparam value=#CreateODBCTime(now())# CFSQLType=cf_sql_timestamp /

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325524
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Macromedia Dreamweaver Tab Key

2009-08-18 Thread vidya yegnaraman

Hi,
Can anybody let me know the shortcut to globally search for any tab keys used 
for spacing or indentation in coldfusion pages in macromedia dreamweaver?

Also, please let me know how to set the tab key to a specific no of spacing?

Thanks 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325525
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Macromedia Dreamweaver Tab Key

2009-08-18 Thread Azadi Saryev

1) this is a ColdFusion list, not Dreamweaver list
2) you didn't even say which OS you are running DW on - the
shortcuts/keys are OS-specific
3) in DW CS4 on Windows (and iirc the same in earlier Win versions):
a) press Ctrl+F to open Find/Replace dialog, select where to search
(Find in), click inside Find textbox and press Ctrl+Tab, click Find
All button
b) press Ctrl+U to bring up Preferences dialog, click Code Format in
the left-side list, edit Tab size value



Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/


On 19/08/2009 00:18, vidya yegnaraman wrote:
 
 Hi,
 Can anybody let me know the shortcut to globally search for any tab keys used 
 for spacing or indentation in coldfusion pages in macromedia dreamweaver?
 
 Also, please let me know how to set the tab key to a specific no of spacing?
 
 Thanks 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325526
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


returning all table records ColdBox ColdSpring via an object?

2009-08-18 Thread Glyn Jackson

Confused about how I would go about returning all records from a table from my 
DAO?

this is how I would return a record with an ID (see below), however when 
returning all records needed for a cfloop i am not sure.

handler
 variables.adminUsersService.getUserByID(userBean); -- access service pass in 
my populated object

then to use it in my page
Welcome: #getPlugin(ioc).getBean(adminUsersService).getCurrentUser()#



my options are...

1)forget the bean as it only holds a set of data and have the service layer 
access the DAO and return a query, however downside cannot use getters!

2) use the object somehow to keep populating the data I need i.e. pass it in 
the server layer, server layer accesses the DAO passing in object, object is 
retuned populated object. --- not sure how to loop the data in a hander to 
keep population it until done? 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325527
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Macromedia Dreamweaver Tab Key

2009-08-18 Thread David McGuigan

Vidya:
After you pull up the find and replace panel, you're going to want to copy
and paste a tab from your source code into the find pane. If you hit the tab
key from within it it'll just transfer the focus to the replace pane. To
replace the code in all of your files in the application change the Find in
dropdown to folder and browse to the root in your application before
processing the replace ( by clicking replace all ).

Azadi:
Don't be an ass. Dreamweaver is one of the primarily used ColdFusion-capable
IDEs on the market.

2. Making an itemized list, some of the items of which are ornery, baseless
chastisements of someone asking a perfectly legitimate question on a mailing
list meant to answer users' questions, makes you a stone cold DBA ( douche
bag alert ). I guess go ahead and try to change yourself pretty quickly,
thanks bud.



On Tue, Aug 18, 2009 at 10:54 AM, Azadi Saryev az...@sabai-dee.com wrote:


 1) this is a ColdFusion list, not Dreamweaver list
 2) you didn't even say which OS you are running DW on - the
 shortcuts/keys are OS-specific
 3) in DW CS4 on Windows (and iirc the same in earlier Win versions):
 a) press Ctrl+F to open Find/Replace dialog, select where to search
 (Find in), click inside Find textbox and press Ctrl+Tab, click Find
 All button
 b) press Ctrl+U to bring up Preferences dialog, click Code Format in
 the left-side list, edit Tab size value



 Azadi Saryev
 Sabai-dee.com
 http://www.sabai-dee.com/


 On 19/08/2009 00:18, vidya yegnaraman wrote:
 
  Hi,
  Can anybody let me know the shortcut to globally search for any tab keys
 used for spacing or indentation in coldfusion pages in macromedia
 dreamweaver?
 
  Also, please let me know how to set the tab key to a specific no of
 spacing?
 
  Thanks
 
 

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325528
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFAjax not playing well with javaScript.

2009-08-18 Thread Rick Root

On Tue, Aug 18, 2009 at 11:09 AM, Dave Wattsdwa...@figleaf.com wrote:

 http://lmgtfy.com/?...

 That's just wrong.


And yet much friendlier than

http://www.justfuckinggoogleit.com

-- 
Rick Root
New Brian Vander Ark Album, songs in the music player and cool behind
the scenes video at www.myspace.com/brianvanderark

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325529
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF and date Time DB Problems

2009-08-18 Thread Rick Root

On Tue, Aug 18, 2009 at 11:42 AM, Stephen  Weyricksweyr...@gmail.com wrote:

 If this doesn't work, try this...
 cfqueryparam value=#CreateODBCTime(now())# CFSQLType=cf_sql_timestamp /

I'm pretty sure the createODBCDate() function (and like functions) are
only necessary when you're NOT using cfqueryparam.
-- 
Rick Root
New Brian Vander Ark Album, songs in the music player and cool behind
the scenes video at www.myspace.com/brianvanderark

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325530
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Macromedia Dreamweaver Tab Key

2009-08-18 Thread Azadi Saryev

PS: make sure you _do not_ have Ignore whitespace checkbox selected in
the Find  Replace dialog when you are searching for tabs.

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/


On 19/08/2009 00:54, Azadi Saryev wrote:
 a) press Ctrl+F to open Find/Replace dialog, select where to search
 (Find in), click inside Find textbox and press Ctrl+Tab, click Find
 All button
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325531
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Inserting NULL between characers using CFFILE

2009-08-18 Thread Jason Neidert

Here's a good one, maybe the answer is simple.

 

I'm pulling a JPEG as HEX data eg. ('ffd8ffe00...') from a remote system.

 

I am already converting the hex values back to their corresponding ASCII
values.

 

Everything works fine except for the original parts that have a HEX value of
'00'

 

When I use chr(0) it returns nothing and so I am missing all the NULL parts
of the JPEG and it won't display.

 

Does anyone know how to get CFFILE to insert NULL chars into a file?

 

 

 

 

 

Jason Neidert
_

 http://www.steelfusion.com/ steelFusion_emailFooter

jason.neid...@steelfusion.com

p: 715.302.4495

f: 715.842.4907

 

 




~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325532
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: returning all table records ColdBox ColdSpring via an object?

2009-08-18 Thread Kevan Stannard

Hi Glyn, couple of options:
1) If you only need a query, then just return a query. Not ideal, not OO,
breaks encapsulation, but does not suffer performance or memory issues.

2) Use an iterating business object which is just like a bean with getters
but also has a next() function to move to the next record of data. Your
entire query recordset is stored inside the bean and maintains a pointer
internally to the current row, but from the outside it just looks like a
normal bean. Great for display listings, cannot be used if you need to store
individual beans for separate usage later. Have a look at
http://www.pbell.com/index.cfm/IBO

I'd go with a query unless you have a particular reason not to.


2009/8/19 Glyn Jackson glyn.jack...@newebia.co.uk


 Confused about how I would go about returning all records from a table from
 my DAO?

 this is how I would return a record with an ID (see below), however when
 returning all records needed for a cfloop i am not sure.

 handler
  variables.adminUsersService.getUserByID(userBean); -- access service pass
 in my populated object

 then to use it in my page
 Welcome: #getPlugin(ioc).getBean(adminUsersService).getCurrentUser()#



 my options are...

 1)forget the bean as it only holds a set of data and have the service layer
 access the DAO and return a query, however downside cannot use getters!

 2) use the object somehow to keep populating the data I need i.e. pass it
 in the server layer, server layer accesses the DAO passing in object, object
 is retuned populated object. --- not sure how to loop the data in a hander
 to keep population it until done?

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325533
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Inserting NULL between characers using CFFILE

2009-08-18 Thread Leigh

 Does anyone know how to get CFFILE to insert NULL chars
 into a file?

I have not tried it with cffile specifically, but here is one way to create a 
null character

http://www.coldfusiondeveloper.com.au/go/blog/2007/05/06/null-character/




  


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325534
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Inserting NULL between characers using CFFILE

2009-08-18 Thread Rick Root

On Tue, Aug 18, 2009 at 5:07 PM, Leighcfsearch...@yahoo.com wrote:

 Does anyone know how to get CFFILE to insert NULL chars
 into a file?

You could also try #javacast(null,)# in CFMX7 or later.

-- 
Rick Root
New Brian Vander Ark Album, songs in the music player and cool behind
the scenes video at www.myspace.com/brianvanderark

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325535
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Backlash against telecommuting..

2009-08-18 Thread Scott Stewart

I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so I've
been trying to grab what I can get in the contract market. (There are other
factors that prevent me from moving)

Last year at this time there were a lot of telecommuting positions
available, they seem to have dried up. Is there a backlash forming against
telecommuting?

 

--
Scott Stewart
ColdFusion Developer
4405 Oakshyre Way
Raleigh, NC 27616
(h) 919.874.6229 (c) 703.220.2835

 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4249
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Backlash against telecommuting..

2009-08-18 Thread Phillip Vector

I've noticed that allot of employers seem to be shying away from
telecommuting even when presented with reasons why they shouldn't.

Just my personal viewpoint though.

On Tue, Aug 18, 2009 at 11:31 AM, Scott
Stewartsstwebwo...@bellsouth.net wrote:

 I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so I've
 been trying to grab what I can get in the contract market. (There are other
 factors that prevent me from moving)

 Last year at this time there were a lot of telecommuting positions
 available, they seem to have dried up. Is there a backlash forming against
 telecommuting?



 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835





 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4250
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Backlash against telecommuting..

2009-08-18 Thread Duane

Could be that if given the choice employeers are looking for inhouse.

Duane


- Original Message - 
From: Phillip Vector vec...@mostdeadlygame.com
To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
Sent: Tuesday, August 18, 2009 3:31 PM
Subject: Re: Backlash against telecommuting..



 I've noticed that allot of employers seem to be shying away from
 telecommuting even when presented with reasons why they shouldn't.

 Just my personal viewpoint though.

 On Tue, Aug 18, 2009 at 11:31 AM, Scott
 Stewartsstwebwo...@bellsouth.net wrote:

 I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so 
 I've
 been trying to grab what I can get in the contract market. (There are 
 other
 factors that prevent me from moving)

 Last year at this time there were a lot of telecommuting positions
 available, they seem to have dried up. Is there a backlash forming 
 against
 telecommuting?



 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835







 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4251
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


RE: Backlash against telecommuting..

2009-08-18 Thread Scott Stewart

I think it runs deeper than that, it seems as though employers won't even
consider it..

--
Scott Stewart
ColdFusion Developer
4405 Oakshyre Way
Raleigh, NC 27616
(h) 919.874.6229 (c) 703.220.2835

-Original Message-
From: Duane [mailto:du...@cfexperts.com] 
Sent: Tuesday, August 18, 2009 3:00 PM
To: cf-jobs-talk
Subject: Re: Backlash against telecommuting..


Could be that if given the choice employeers are looking for inhouse.

Duane


- Original Message - 
From: Phillip Vector vec...@mostdeadlygame.com
To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
Sent: Tuesday, August 18, 2009 3:31 PM
Subject: Re: Backlash against telecommuting..



 I've noticed that allot of employers seem to be shying away from
 telecommuting even when presented with reasons why they shouldn't.

 Just my personal viewpoint though.

 On Tue, Aug 18, 2009 at 11:31 AM, Scott
 Stewartsstwebwo...@bellsouth.net wrote:

 I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so 
 I've
 been trying to grab what I can get in the contract market. (There are 
 other
 factors that prevent me from moving)

 Last year at this time there were a lot of telecommuting positions
 available, they seem to have dried up. Is there a backlash forming 
 against
 telecommuting?



 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835







 



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4252
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


RE: Backlash against telecommuting..

2009-08-18 Thread Rich Baker

Trust and control issues 

-Original Message-
From: Scott Stewart [mailto:sstwebwo...@bellsouth.net] 
Sent: Tuesday, August 18, 2009 3:03 PM
To: cf-jobs-talk
Subject: RE: Backlash against telecommuting..


I think it runs deeper than that, it seems as though employers won't
even
consider it..

--
Scott Stewart
ColdFusion Developer
4405 Oakshyre Way
Raleigh, NC 27616
(h) 919.874.6229 (c) 703.220.2835

-Original Message-
From: Duane [mailto:du...@cfexperts.com] 
Sent: Tuesday, August 18, 2009 3:00 PM
To: cf-jobs-talk
Subject: Re: Backlash against telecommuting..


Could be that if given the choice employeers are looking for inhouse.

Duane


- Original Message - 
From: Phillip Vector vec...@mostdeadlygame.com
To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
Sent: Tuesday, August 18, 2009 3:31 PM
Subject: Re: Backlash against telecommuting..



 I've noticed that allot of employers seem to be shying away from
 telecommuting even when presented with reasons why they shouldn't.

 Just my personal viewpoint though.

 On Tue, Aug 18, 2009 at 11:31 AM, Scott
 Stewartsstwebwo...@bellsouth.net wrote:

 I'm in Raleigh, NC. There's not a lot of ColdFusion work down here,
so 
 I've
 been trying to grab what I can get in the contract market. (There are

 other
 factors that prevent me from moving)

 Last year at this time there were a lot of telecommuting positions
 available, they seem to have dried up. Is there a backlash forming 
 against
 telecommuting?



 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835







 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4253
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


RE: Backlash against telecommuting..

2009-08-18 Thread Rick

Its control They want to see you and be assured that you are working.  I
have a lot of clients that have been burned and will not go down that road
again.  Also they are seeing more quality in house candidates then the last
year or so. 

Rick Kleinschmidt 
President 
 RightFitStaffing 
 
 
Offices Orlando, Clermont 
352-243-1295 or 407-234-9847
-Original Message-
From: Scott Stewart [mailto:sstwebwo...@bellsouth.net] 
Sent: Tuesday, August 18, 2009 3:03 PM
To: cf-jobs-talk
Subject: RE: Backlash against telecommuting..


I think it runs deeper than that, it seems as though employers won't even
consider it..

--
Scott Stewart
ColdFusion Developer
4405 Oakshyre Way
Raleigh, NC 27616
(h) 919.874.6229 (c) 703.220.2835

-Original Message-
From: Duane [mailto:du...@cfexperts.com] 
Sent: Tuesday, August 18, 2009 3:00 PM
To: cf-jobs-talk
Subject: Re: Backlash against telecommuting..


Could be that if given the choice employeers are looking for inhouse.

Duane


- Original Message - 
From: Phillip Vector vec...@mostdeadlygame.com
To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
Sent: Tuesday, August 18, 2009 3:31 PM
Subject: Re: Backlash against telecommuting..



 I've noticed that allot of employers seem to be shying away from
 telecommuting even when presented with reasons why they shouldn't.

 Just my personal viewpoint though.

 On Tue, Aug 18, 2009 at 11:31 AM, Scott
 Stewartsstwebwo...@bellsouth.net wrote:

 I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so 
 I've
 been trying to grab what I can get in the contract market. (There are 
 other
 factors that prevent me from moving)

 Last year at this time there were a lot of telecommuting positions
 available, they seem to have dried up. Is there a backlash forming 
 against
 telecommuting?



 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835







 





~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4254
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


RE: Backlash against telecommuting..

2009-08-18 Thread Bryan Stevenson

Simple economics

When the economy is doing well and skilled labour is hard to
findemployers consider ALL options that may get them the quality
staff they need.

When the economy is doing poorly, employers can be picky and get what
THEY want.

It's not rocket science when you think about it ;-)

Cheers
-  

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.


On Tue, 2009-08-18 at 15:09 -0400, Rick wrote:
 Its control They want to see you and be assured that you are working.  I
 have a lot of clients that have been burned and will not go down that road
 again.  Also they are seeing more quality in house candidates then the last
 year or so. 
 
 Rick Kleinschmidt 
 President 
  RightFitStaffing 
  
 
 Offices Orlando, Clermont 
 352-243-1295 or 407-234-9847
 -Original Message-
 From: Scott Stewart [mailto:sstwebwo...@bellsouth.net] 
 Sent: Tuesday, August 18, 2009 3:03 PM
 To: cf-jobs-talk
 Subject: RE: Backlash against telecommuting..
 
 
 I think it runs deeper than that, it seems as though employers won't even
 consider it..
 
 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835
 
 -Original Message-
 From: Duane [mailto:du...@cfexperts.com] 
 Sent: Tuesday, August 18, 2009 3:00 PM
 To: cf-jobs-talk
 Subject: Re: Backlash against telecommuting..
 
 
 Could be that if given the choice employeers are looking for inhouse.
 
 Duane
 
 
 - Original Message - 
 From: Phillip Vector vec...@mostdeadlygame.com
 To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
 Sent: Tuesday, August 18, 2009 3:31 PM
 Subject: Re: Backlash against telecommuting..
 
 
 
  I've noticed that allot of employers seem to be shying away from
  telecommuting even when presented with reasons why they shouldn't.
 
  Just my personal viewpoint though.
 
  On Tue, Aug 18, 2009 at 11:31 AM, Scott
  Stewartsstwebwo...@bellsouth.net wrote:
 
  I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so 
  I've
  been trying to grab what I can get in the contract market. (There are 
  other
  factors that prevent me from moving)
 
  Last year at this time there were a lot of telecommuting positions
  available, they seem to have dried up. Is there a backlash forming 
  against
  telecommuting?
 
 
 
  --
  Scott Stewart
  ColdFusion Developer
  4405 Oakshyre Way
  Raleigh, NC 27616
  (h) 919.874.6229 (c) 703.220.2835
 
 
 
 
 
 
 
  
 
 
 
 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4255
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Backlash against telecommuting..

2009-08-18 Thread Justin Edwards

There are a lot of positives that come from working on site as well.
 Especially if you have a niche business and the programmers see how the
business operates and are able to see things that will help efficiency.  Our
company has flown in developers many times for meetings, we do a mixture of
in house and telecommuters.

On Tue, Aug 18, 2009 at 12:09 PM, Rick r...@rightfitstaffing.com wrote:


 Its control They want to see you and be assured that you are working.  I
 have a lot of clients that have been burned and will not go down that road
 again.  Also they are seeing more quality in house candidates then the last
 year or so.

 Rick Kleinschmidt
 President
  RightFitStaffing


 Offices Orlando, Clermont
 352-243-1295 or 407-234-9847
 -Original Message-
 From: Scott Stewart [mailto:sstwebwo...@bellsouth.net]
 Sent: Tuesday, August 18, 2009 3:03 PM
 To: cf-jobs-talk
 Subject: RE: Backlash against telecommuting..


 I think it runs deeper than that, it seems as though employers won't even
 consider it..

 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835

 -Original Message-
 From: Duane [mailto:du...@cfexperts.com]
 Sent: Tuesday, August 18, 2009 3:00 PM
 To: cf-jobs-talk
 Subject: Re: Backlash against telecommuting..


 Could be that if given the choice employeers are looking for inhouse.

 Duane


 - Original Message -
 From: Phillip Vector vec...@mostdeadlygame.com
 To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
 Sent: Tuesday, August 18, 2009 3:31 PM
 Subject: Re: Backlash against telecommuting..


 
  I've noticed that allot of employers seem to be shying away from
  telecommuting even when presented with reasons why they shouldn't.
 
  Just my personal viewpoint though.
 
  On Tue, Aug 18, 2009 at 11:31 AM, Scott
  Stewartsstwebwo...@bellsouth.net wrote:
 
  I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so
  I've
  been trying to grab what I can get in the contract market. (There are
  other
  factors that prevent me from moving)
 
  Last year at this time there were a lot of telecommuting positions
  available, they seem to have dried up. Is there a backlash forming
  against
  telecommuting?
 
 
 
  --
  Scott Stewart
  ColdFusion Developer
  4405 Oakshyre Way
  Raleigh, NC 27616
  (h) 919.874.6229 (c) 703.220.2835
 
 
 
 
 
 
 
 





 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4256
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11


Re: Backlash against telecommuting..

2009-08-18 Thread Duane

I know im gonna get crucified here but I dont consider telecomutting here as 
an option unless I have no choice. If given the option I always opt for the 
inhouse developer. For me its not anything to do with control, its a work 
environment thing. Personally its, just much easier to build a cohesive team 
this way.



- Original Message - 
From: Rick r...@rightfitstaffing.com
To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
Sent: Tuesday, August 18, 2009 4:09 PM
Subject: RE: Backlash against telecommuting..



 Its control They want to see you and be assured that you are working.  I
 have a lot of clients that have been burned and will not go down that road
 again.  Also they are seeing more quality in house candidates then the 
 last
 year or so.

 Rick Kleinschmidt
 President
 RightFitStaffing


 Offices Orlando, Clermont
 352-243-1295 or 407-234-9847
 -Original Message-
 From: Scott Stewart [mailto:sstwebwo...@bellsouth.net]
 Sent: Tuesday, August 18, 2009 3:03 PM
 To: cf-jobs-talk
 Subject: RE: Backlash against telecommuting..


 I think it runs deeper than that, it seems as though employers won't even
 consider it..

 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835

 -Original Message-
 From: Duane [mailto:du...@cfexperts.com]
 Sent: Tuesday, August 18, 2009 3:00 PM
 To: cf-jobs-talk
 Subject: Re: Backlash against telecommuting..


 Could be that if given the choice employeers are looking for inhouse.

 Duane


 - Original Message - 
 From: Phillip Vector vec...@mostdeadlygame.com
 To: cf-jobs-talk cf-jobs-talk@houseoffusion.com
 Sent: Tuesday, August 18, 2009 3:31 PM
 Subject: Re: Backlash against telecommuting..



 I've noticed that allot of employers seem to be shying away from
 telecommuting even when presented with reasons why they shouldn't.

 Just my personal viewpoint though.

 On Tue, Aug 18, 2009 at 11:31 AM, Scott
 Stewartsstwebwo...@bellsouth.net wrote:

 I'm in Raleigh, NC. There's not a lot of ColdFusion work down here, so
 I've
 been trying to grab what I can get in the contract market. (There are
 other
 factors that prevent me from moving)

 Last year at this time there were a lot of telecommuting positions
 available, they seem to have dried up. Is there a backlash forming
 against
 telecommuting?



 --
 Scott Stewart
 ColdFusion Developer
 4405 Oakshyre Way
 Raleigh, NC 27616
 (h) 919.874.6229 (c) 703.220.2835













 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-jobs-talk/message.cfm/messageid:4257
Subscription: http://www.houseoffusion.com/groups/cf-jobs-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11