Do source code optimizers exist? [closed] - optimization

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
Are there any tools out there which perform source code optimization? I know compilers perform optimization on intermediate representations, but I am interested in seeing how an automated tool might perform source level optimization.

Yes. You are interested in program transformation systems, which allow you to express optimizations as "source to source" transformations. People have done a lot of this, but these tools are not widely known.
"Sounds quite dangerous..." All technology is dangerous if misused, and incredibly useful when applied to the right problem.

Related

How do you quantify your objective-c code quality? [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 currently using OCLint, which can be integrated with XCode, but the format of the result has some problems. When the # of warning exceeds 200, it cannot be properly displayed.
What I want is more sophisticated code metrics, e.g. Cyclomatic complexity, afferent coupling, efferent coupling, NPath complexity and etc.
I think most people use the Clang Static Analyzer, which is quite good and already integrated into Xcode.

Platforms for testing automated trading? [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
a.) Are there any websites, tools, etc. that are platforms for testing stock trading applications?
b.) Are there any platforms apis etc that allow automated trading?
Any thoughts?
Also, i particularly like coding in python.
Quantopian is a great solution. It lets you upload and test your algorithms on large data sets, while keeping them private or sharing with the community.
RTS Realtime Systems is a well-known trading platform. It is written in Java, though.
When you are searching for testing tools, try to search for the term backtesting and algorithmic trading. I came up with this result: PyAlgoTrader

Tool for Designing Program OOP Structure [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 a tool, online or off, that will allow you to create and visualize a OOP structure so that you can plan your software before you code?
I'm looking for something that will allow me to lay out all my classes and put in method names and property names, this way I can look at the entire design at once and see what could be made better before I actually go in and write all that code.
There are many tools like that, some free some very expensive. If you live in the Microsoft world Visual Studio comes with wonderful designer. Otherwise search for "UML modelling tools" on your favorite search engine...

Best Practices/Software for Object-Oriented Analysis [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 read this book:
Head First Object-Oriented Analysis and Design
Now i am looking forward to find a Software that make it easy to collect all my Ideas etc (specific Software for OOA).
At the moment i am using my Whiteboard to collect/design Ideas etc. Afterwards i am taking pictures of it and add text to our Wiki/Trac.
At school, we're using Objecteering, which is easy to use, integrated to Eclipse, but not free.
IMO blank paper is a must, but not always the easier to share and to edit.
Install mediawiki (the stuff that powers wikipedia, don't settle for anything less you will need the full feature set eventually) and put all your ideas in there. This makes it easy to refine them and to improve then as time goes by.

Are there any alternitives to the WCFTestClient [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
Are there any open source (or not) alternatives to the WCFTestClient?
The WCFTestClient has a lot of limitations that make it hard to work with (for example it does not support Entity Framework objects).
So I am looking to see if there is anything else out there that may be better (or even different).
WCF Storm or the open-source Storm
I prefer to create actual unit tests to test servers I write. The idea is that they can be rerun frequently.
You can also try soapUI.