As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I am new in creating web applications in Windows. I am planning to do it on Ruby On Rails. However, I am confused what text editor should a beginner use. There are a lot of text editors like GVim, red car editor, sublime text, e-text editor, and ruby mine. What text editor is easier to use for a beginner?
Notepad++ is very easy. It has syntax highlighting, but other than that not much fanciness.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I need a WYSIWYG editor I can put on my website for editing RTF documents. It is important that the current RTF codes in the document are retained, and I'm forced to use the RTF format due to the data being used in other applications requiring RTF. So any conversion back and forth would not be feasible.
I haven't been able to find one. Does it really not exist?
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Is there some tool that would turn an HTML with mathjax into a valid LaTeX document? I undernstand that mathjax is already LaTeX, but if that is mixed with text, then simply saving the text representation of an HTML document is not going to work. E.g., the underscore should be turned into a backslash + _, when it is in the text section, while it should be left alone, if it is in a math environment. My question is, whether there is a way to do this automatically. I would prefer a javascript solution, but if that is absolutely not possible, I could live with a tool (e.g., python) that I can call from the command line.
Thanks,
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
What is the new best IDE for ruby on rails development? I have used Komodo Edit and now using Netbeans 6.9.1
"Best" is subjective.
I find IntelliJ to be the overall winner IDE-wise.
I use Sublime Text 2 for non-IDE Rails development. Co-workers tends towards Vim.
Only because they don't want to learn Emacs, the clearly-superior text edit. Aaaand begin.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
What Ruby on Rails gems are available to graph data?
This should include the ability to create pie charts, bar graphs, etc.
Please include a link to the gem, its support docs, or a screenshot.
Take a look at http://www.highcharts.com/. As it's frontend stuff, a gem is not needed to integrate it.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
working with a small database,users and a minimal design are the most important needs.
Assuming you only want to do basic CRUD operations, and given the powerful scaffolding Rails has, I'd just take a few hours to build your own. If you need user authentication, simply use Devise and you should be all set.