[cfaussie] ColdFusion Developer Full-time Position (Melbourne or Gold Coast)

2011-06-07 Thread Phil Rasmussen
ColdFusion Developer Full-time Position (Melbourne or Gold Coast
offices)

Tusk Agency requires a mid/senior ColdFusion Developer to be based on
the Gold Coast, Melbourne or we will consider a remote position for
the right candidate. Reporting to the Technical Director, the
successful applicant will be an experienced developer, with a true
passion for analysis, programming and maintenance.

Core Skills:

Ability to program and develop web applications in Cold Fusion MX
(versions 8 and above)
Excellent knowledge of SQL Server 2005/2008, IIS6/7
Excellent HTML/CSS/XML/Javascript skills a must with JQuery skills
desired.

Essential Attributes:

Excellent written and verbal English
Highly self-motivated
Genuine love of programming and digital work
An attitude towards continual improvement and learning
Impeccable communication, presentation and team skills. You’ll be
working with other programmers, producers, account managers and
clients.
The successful candidate must be dynamic and motivated with a positive
attitude and the ability to work well under pressure and meet
deadlines. This is a full-time position with an immediate start
available.
Please forward your CV/portfolio to j...@tuskagency.com.
* No recruitment agencies, please

http://www.tuskagency.com/studio/careers/coldfusion-developer--full-or-part-time/

Cheers
Phil

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[cfaussie] Your opinion - .NET and Java Certifications in Sydney

2011-06-07 Thread Hitesh
Hi All,

I am someone who has 10 yrs of experience into Web Development area,
mainly CF. I don't mind to get free and useful advise of my cfaussie
colleagues. A 2.5 yrs back I was migrated from India to Sydney. After
working this much time I have realized there is a need to do something
different  better to advance my professional career here in Sydney
going forward.

If I am not wrong but seeing number of jobs on different job-boards
(Seek, CareerOne etc..) over the period of time in Sydney IT field
there is a potential market for .NET and Java IT professionals. Is
this correct?

Now, I am keen to acquire some professional training  certification
on .NET 4.0 Web Application Development OR Java EE 6?

I have few questions now.

1) What will be a good move? .NET or Java?

2) Do you think go and get training  certification via professional
center (seek learning, oracle university etc..) is a good idea?

3) Just buy some books and CDs...do self study and give exams?

Please advise if you can.
I shall be thankful for your time that can help someone like me.

Thanks - Hitesh

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] Your opinion - .NET and Java Certifications in Sydney

2011-06-07 Thread ColdGen Internet Solutions
16 years July ColdFusion (now built on Java) and not looking back.

That's just me.

Peter Tilbrook
Managing Director, ColdGen Internet Solutions
Professional Adobe ColdFusion 9 Application Development
President, ACT and Region ColdFusion Users Group
PO Box 2247
Queanbeyan, NSW, 2620
AUSTRALIA

Tel: +61-2-6284-2727
Mob: +61-2-0457-449-016

Email Address: pe...@coldgen.com
WWW: http://www.coldgen.com/

ABN: 80 826 226 128



On 7 June 2011 21:49, Hitesh hiteshpatel1...@gmail.com wrote:
 Hi All,

 I am someone who has 10 yrs of experience into Web Development area,
 mainly CF. I don't mind to get free and useful advise of my cfaussie
 colleagues. A 2.5 yrs back I was migrated from India to Sydney. After
 working this much time I have realized there is a need to do something
 different  better to advance my professional career here in Sydney
 going forward.

 If I am not wrong but seeing number of jobs on different job-boards
 (Seek, CareerOne etc..) over the period of time in Sydney IT field
 there is a potential market for .NET and Java IT professionals. Is
 this correct?

 Now, I am keen to acquire some professional training  certification
 on .NET 4.0 Web Application Development OR Java EE 6?

 I have few questions now.

 1) What will be a good move? .NET or Java?

 2) Do you think go and get training  certification via professional
 center (seek learning, oracle university etc..) is a good idea?

 3) Just buy some books and CDs...do self study and give exams?

 Please advise if you can.
 I shall be thankful for your time that can help someone like me.

 Thanks - Hitesh

 --
 You received this message because you are subscribed to the Google Groups 
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to 
 cfaussie+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/cfaussie?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[cfaussie] Catching cfcomponent extends errors

2011-06-07 Thread AJ Dyka
Hi All,

I've done some searching and haven't found any answers yet so I
figured I'd throw the question out here and see what comes back :)

I have an Application.cfc in an app which I want to extend another
which is accessed via a mapping like so:

cfcomponent output=false extends=mapping.ParentApplication

My issue is when the mapping doesn't exist it fails which is fine but
I want to catch the error and handle it rather than just dump the
error to the screen.

I can't try/catch around the outside of the component and onError
doesn't get invoked because the Application can't be initialised so I
think I'm stuck ... any ideas?

Thanks.

A.J.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] Catching cfcomponent extends errors

2011-06-07 Thread Kai Koenig
Have you tried putting cferror tags in various places, for instance 
onApplicationStart or so?

Cheers
Kai

 
 
 I've done some searching and haven't found any answers yet so I
 figured I'd throw the question out here and see what comes back :)
 
 I have an Application.cfc in an app which I want to extend another
 which is accessed via a mapping like so:
 
 cfcomponent output=false extends=mapping.ParentApplication
 
 My issue is when the mapping doesn't exist it fails which is fine but
 I want to catch the error and handle it rather than just dump the
 error to the screen.
 
 I can't try/catch around the outside of the component and onError
 doesn't get invoked because the Application can't be initialised so I
 think I'm stuck ... any ideas?






-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] Catching cfcomponent extends errors

2011-06-07 Thread Mark Mandel
cferror ?

Go old school :D

Mark

On Wed, Jun 8, 2011 at 10:07 AM, AJ Dyka ajd...@learnosity.com wrote:

 Hi All,

 I've done some searching and haven't found any answers yet so I
 figured I'd throw the question out here and see what comes back :)

 I have an Application.cfc in an app which I want to extend another
 which is accessed via a mapping like so:

 cfcomponent output=false extends=mapping.ParentApplication

 My issue is when the mapping doesn't exist it fails which is fine but
 I want to catch the error and handle it rather than just dump the
 error to the screen.

 I can't try/catch around the outside of the component and onError
 doesn't get invoked because the Application can't be initialised so I
 think I'm stuck ... any ideas?

 Thanks.

 A.J.

 --
 You received this message because you are subscribed to the Google Groups
 cfaussie group.
 To post to this group, send email to cfaussie@googlegroups.com.
 To unsubscribe from this group, send email to
 cfaussie+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/cfaussie?hl=en.




-- 
E: mark.man...@gmail.com
T: http://www.twitter.com/neurotic
W: www.compoundtheory.com

cf.Objective(ANZ) - Nov 17, 18 - Melbourne Australia
http://www.cfobjective.com.au

Hands-on ColdFusion ORM Training
www.ColdFusionOrmTraining.com

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



Re: [cfaussie] Catching cfcomponent extends errors

2011-06-07 Thread Sean Corfield
This is a *compile-time* error so no code is executing at the time the
compiler hits that error. It's why you cannot use per-application
mappings here - it's the very first piece of code the compiler sees
and until it has compiled it, there's no code to run - and therefore
nothing executed that can possibly trap the error.

In other words, you cannot catch this error.

On Tue, Jun 7, 2011 at 5:07 PM, AJ Dyka ajd...@learnosity.com wrote:
 I've done some searching and haven't found any answers yet so I
 figured I'd throw the question out here and see what comes back :)

 I have an Application.cfc in an app which I want to extend another
 which is accessed via a mapping like so:

 cfcomponent output=false extends=mapping.ParentApplication

 My issue is when the mapping doesn't exist it fails which is fine but
 I want to catch the error and handle it rather than just dump the
 error to the screen.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[cfaussie] Re: Catching cfcomponent extends errors

2011-06-07 Thread AJ Dyka
Not what I was hoping for :-/ Oh well ...

I think that restructuring the relationship between by CFCs will be
the only solution but it's not something I'm willing to think about at
the moment!

Thanks anyway :)

On Jun 8, 10:30 am, Sean Corfield seancorfi...@gmail.com wrote:
 This is a *compile-time* error so no code is executing at the time the
 compiler hits that error. It's why you cannot use per-application
 mappings here - it's the very first piece of code the compiler sees
 and until it has compiled it, there's no code to run - and therefore
 nothing executed that can possibly trap the error.

 In other words, you cannot catch this error.







 On Tue, Jun 7, 2011 at 5:07 PM, AJ Dyka ajd...@learnosity.com wrote:
  I've done some searching and haven't found any answers yet so I
  figured I'd throw the question out here and see what comes back :)

  I have an Application.cfc in an app which I want to extend another
  which is accessed via a mapping like so:

  cfcomponent output=false extends=mapping.ParentApplication

  My issue is when the mapping doesn't exist it fails which is fine but
  I want to catch the error and handle it rather than just dump the
  error to the screen.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.



[cfaussie] Re: Catching cfcomponent extends errors

2011-06-07 Thread AJ Dyka
True, however I want to fix the mapping not just hide the error ...
perhaps I can write my own error template which checks the mappings
and fixes them if they're missing? That could work for me ...

On Jun 8, 11:05 am, MrBuzzy mrbu...@gmail.com wrote:
 But using a global error handler will enable you to not show the error 
 on-screen.

-- 
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com.
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en.