Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I have been doing web development using PHP and Python for years. Recently, I started to program in ColdFusion without any frameworks. To me it seems very messy so far, I mean very thing mixed together, no MVC (missed Django a lot).
I am not sure is there any light-weighted framework for ColdFusion. Otherwise, any suggestions on good practices when doing ColdFusion programming?
You may find these links helpful:-
Univ. of Maryland ColdFusion Programming Standards
and SBA ColdFusion Programming Standards and
http://www.adobe.com/devnet/coldfusion.html
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I personally can't think of one, but I sincerely want to hear from anyone who thinks Adobe ColdFusion is still worth the money.
Yes. ColdFusion is a currently actively supported product, and Railo - currently - is not.
However the Lucee fork of Railo is seeing active support at the moment, so you should probably at the very least migrate to Lucee.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Can anyone list what are the frameworks available in perl and what are used for testing and for tool development. I had lot of confusion on it. The answer would help me a lot. Thanks in advance.
These are some Perl web framework:
Mojolicious
Perl Dancer
Catalyst
For more information read this: Which Perl web framework should I use
See the Comparison of Perl web application frameworks
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I'm looking for some cool report generators from Junit results, I used maven surefire but it's so poor, I need charts graphs and so on.
You could run your builds with Jenkins (www.jenkins-ci.org). Jenkins is easy to setup and it creates pretty diagrams and browsable reports from your JUnit results.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
What are the advantages of C++ over the others languages in working with videodata and videodevices (developing object detection program). Thank you.
for object detection, you could use python, matlab, java and c++. You have to use c++ if you need substantially speed improvement (C++ is the fastest in most of the cases). You could also use OpenCv easily with c++ for face and object detection.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Is it starting from WSDL or from coding?
I believe what you are asking is what is better: bottom up (coding first) vs top down (wsdl first).
There are many, many articles on the topic, so you can do a quick google search. This looks like a good article I found by searching.
It is depends on requirement and feasibilty.But mostly in case of service provider,first we write the code then generate the wsdl and publish it..When consumer wants to consumes the service then ,they generate the client code from wsdl and invoke the services....That how most application works......