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
As a student I use Sublime Text for coding with almost every language I am learning: java, php, html... also javascript, css, etc... Do you recommend this editor?
Is it used in the professional environment as well?
There are two extremes to this: in some places, you are told what to use and provided training (ie Visual Studio). In the other extreme you are allowed to use whatever you want. There are very few places that do some combination of both.
As a student, take your time and look at various editors and get a feel for each.
I used sublime text throughout college and now use it at my workplace...
For an all around quick text editor it works great.. When it comes to programming and tracking data you'll want something like visual studio or eclipse.. Debugging is much better. It just depends on your task at hand.
Related
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
We recently added some policies to out fairly large Lua project, which also includes some stricter style guidelines than we used to.
The problem we are facing now is to convert the whole codebase to the new style guidelines, which is a lot of work. I started reformatting the code and got tired of it after about 5 files out of hundreds.
My idea is to use a code formatter, which automatically does this for me. However, the output format needs to be according to our style guidelines and not any different style. We also have some unusual guidelines, like a space before the opening parenthesis for the argument list in a function definition.
All this makes it fairly hard to find a suitable formatter. Does anyone know about one that meets all my criteria? Any help will be greatly appreciated.
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 8 years ago.
Improve this question
Is there any best plugin to integrate with CKEDITOR for editing and inserting a MathML and LaTex equations.
I have seen some of the plugins in CKEDITOR plugin site but those are not up to the mark and not easy to insert and edit complex equations. It would be helpful if is there any other plugins available for CKEDITOR.
Precisely WIRIS editor matches your requirements. There is a JavaScript MathML and LaTeX editor integrated with ckeditor. The user interface is quite easy to use and you will be able to quickly input math formulas and equations. See www.wiris.com/editor/demo. In addition, they have a great support team.
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 want to make an iphone app that has a fluid ui, great icons, fluid animations etc. and i have been trying to work on learning objective c all this past summer off of the web and I am nowhere close to being able to understand/build something like that. Sure, I understand all the programming concepts of objective c, I just dont know the how to put those in practice in a way that would produce the desired results that I described. What are some free ways to learning how to do such things as that and how long would it take? Thanks in advance.
You could try TheNewBoston's tutorials. They cover not only learning the Objective C syntax, but get into OOP concepts, software design, and developing apps for iOS. Check him out at http://thenewboston.org/. If you would like to build apps visually, try http://www.appmakr.com/ for basic apps and http://www.appypie.com/iphone-apps-builder for more advanced ones.
Hope this helps!
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 piece of software that, given some text, will extract the "meaningful" keywords. For example, in the sentence:
StackExchange is an online community.
I want "StackExchange" and "online community" to be singled out as semantically-meaningful keywords, but not "is" or "an".
A bit of research led to Alchemy API, which does the job well. Are there other solutions out there, especially open source ones?
There is TexLexan, which is open source. This page also has good list of open source and commercial options.
It's a bit old, but I had really good luck building my own tools on top of MontyLingua.
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 have to build an application based in an ActiveX library (MIL for Matrox framegrabbers).
The library should be already working, since it compiles and run a console application provided as example. (Yes, the console application is probably not using any ActiveX at all... I actually don't know)
The application will set times, frames per second, etc.
I never used Visual C++ before (I have some poor C programming skills), let alone an ActiveX library. I'm not even able to get an "Ok Cancel" dialog to work...
I need the most basic ever vc6 + ActiveX tutorial.
Thanks in advance.
Here is an example - how to create a control (you already have one) and how to interact with it.
By the way, using VC++ isn't the best choice IMO. Programming of COM clients are much simpler in VB...