HOWTO make feedback on website improvement [closed] - plugins

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
In order to improve my website I was thinking to implement an ad-hoc component to provide feedback on tech or product developments that user would like to have, put to a vote this improvement.
Examples:
https://www.dropbox.com/votebox/all
https://xamarin.uservoice.com/forums/145075-xamarin-component-ideas
http://visualstudio.uservoice.com/forums/121579-visual-studio/filters/top
There is products (preferably open source) to implement this or should I develop an ad-hoc component?

Non-Commercial (Open Source)
Django Voice (Python; BSD Simplified)
All Our Ideas (Ruby; Modified BSD)
IdeaTorrent (defunct)
Openmind (Ruby; GPLv3)
Non-Commercial (Closed Source)
Google Moderator (Widget and API)
Commercial (Open Source)
???
Commercial (Purchase Source)
VoxPopuli (PHP + MySQL; License Agreement)
UseResponse (PHP + Zend; License Agreement)
Commercial (Closed Source)
IdeaInformer
UserVoice
UserReport
UserEcho
BetaEasy
CrowdSound (defunct)
GetSatisfaction
You could also use the voting system of one of the many StackExchange Clones, my favorite being Question2Answer. For a full list of SO Clones, check out this SO question.

Related

How to start with ATG web commerce [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to ATG web commerce. Can you help me to get pointers for good tutorials, any guidance on how to start with is, I have downloaded ATG book from oracle site. But dont know what exactly I should start with.
Get a supported environment to run ATG in, like JBoss on Windows or something similar
Read the Commerce Reference Store Installation Guide and follow the steps to install the CSR
Now come back and ask any specific questions you may have.

SCM: Wiki + Forum + ticket System [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any open source framework that encapsulates: a Wiki, Forum and a ticket system. Something like a software configuration Manager (SCM).
Looking for something very similar to sourceforge offers to project owners.
I'm looking to give support to a small private web software project. I keep finding separate implementations of these features.
If there are commercial products it would be nice to hear from them too.
Wordpress might be an option.
You could use Redmine. It offers a Wiki, Boards (=Forum), Issue tracking.
Another popular alternative would be Trac which offers Wiki and Issue tracking. For forums there exists a plugin (The plugin is not actively developed anymore?).

Need Proper Guidance [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am finding a way or package where I can create website where member can sell them electronic (downloadable) product and all money will store into the website account. After defined amount they can transfer to them registered PayPal account.
Example: Theme Forest
I would really appreciate if any free script is available or I can integrate with any popular CMS (wordpress, joomla) without security issue.
There is an extension that allows your members to do just that. I found it here. I haven't used it personally, but it sounds like what you are looking for.
Good luck!
Cynthia

Are there any good software specification/requirement tools out there? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for a good tool for our product/design team to use when they write up the specifications (app feature requirements) for our projects. Right now we're using Word docs that are continually edited, and it's hard to keep track of what has changed when we're developing.
You may look at CASE Spec. It is an affordable enterprise requirements specification and requirements management software.
The best way to track changes in docs or software is the use of CVS. I used TortoiseCVS for my projects.
In other collaborative projects I used Dropbox that is a share application that also can track changes.
http://en.wikipedia.org/wiki/Concurrent_Versions_System#IDEs_with_support_for_CVS

Are there any handwriting recognition libraries available for the iPhone? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for a simple (preferably open source) handwriting recognition library for the iPhone/iPad. In my case, I'm only interested in recognizing numbers.
Does anyone know of a good library for this?
You would have to make some efforts to compile but Tesseract is good solution.
For compiling it look http://iphone.olipion.com/cross-compilation/tesseract-ocr. For sample application see http://robertcarlsen.net/tag/tesseract
There are many libraries available for extracting text from images. You can check my answer
For restricting OCR to provide numbers only Tesseract SDK provides method as blacklist and whitelist characters
_tesseract->SetVariable("tessedit_char_whitelist", "0123456789");
Using this method you can restrict only numbers to be recognized.
Hope it helps.