Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other 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
Am having trouble googling for this type of product which am sure is out there so wondering if someone can point me in the right direction.
Is there a s/w tool that can import C# source code files into a SQL database and which then has a front end that allows a user to easily search for various things from that imported data - i.e: method names, types, etc
It would be a nice pet project to do in my own time but our team are looking for something out of the box and slick that is out there already - anyone know of any products?
Thanks
You wouldn't use SQL Server (or any RDBMS for that matter) for this because source-code files are not an example of relational data.
Instead you would run each source file through a parser and extract symbol names (e.g. type names, member/field/variable names, etc) then index them using a system like Lucene.
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 8 years ago.
Improve this question
For my very basic application, I am planning to design/use json-file based structure.
Simply, application is very similar to a rss reader. So data security is not a big concern.
There will be categories like news, sports, tech and media. I am planning to save information/objects under files like
media-todaysdate.json, so I can iterate through files by using date stamp.
Since files will be separated by dates I would not expect huge file sizes to create memory problem.
My question is that is there any framework that will help me to CRUD json files?
Or is there any easier way to manage information like mine?
You may want to take a look at Rob Conery's Biggy project.
https://www.infoq.com/news/2014/03/Biggy-Intro
It's a file-based store for JSON.
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 professional tool that will enable me to implement an excel like formula engine.
I require support for custom functions, an editor (in winforms or WPF) which gives a descent user experience (Intellisense , auto complete, partial evaluation of the formula etc...)
All I could find so far are just back-end projects such as:
http://www.codeproject.com/Articles/17853/Implementing-an-Excel-like-formula-engine
http://www.codeproject.com/Articles/57264/Eval3-wrapper
And those do not provide any client side , only backend engine.
There are some Excel-formula-engines out there (mostly commercial) - but since you need a frontend too the only one I know of is SpreadsheetGear. Hope this helps...
Spreadsheetgear is one of the more established products. According to their site Microsoft also use their product?? It's expensive though.
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 a project, but I don't know which library that I could use for this project:
Project requirement
Log into hotmail.com
Click on each email individually and take a specific link out of the email.
Copy and add the link i want into a txt file.
I've used to try Watir with Ruby, however I would like to try C++ and C# libraries this time. Plus, non-commercial please since I'm still a student. Any idea?
Thank you,
Don't think of this in terms of logging into hotmail.com and clicking. Instead, think of it as retrieving email programmatically. Hotmail supports two standard protocols for this: POP3 and Exchange. If you're programming this on Windows, and since you tagged the question C#, I suggest using C# to access the Exchange API, which is introduced here:
http://msdn.microsoft.com/en-us/library/dd637749%28v=exchg.80%29.aspx
You should be able with fairly little effort to open the emails and extract the links you want. If the Exchange API doesn't work out, just use POP3, which will be programmable from any platform.
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
I have an app that my users use to build objects. For example, they will create a "user" object and add properties (name, address, etc).
I would like to use an environment like the one Visual Studio uses on its class designer or entity designer.
Is there a library out there that will help me with this?
Thanks for any suggestions.
Look at the Visualization and Modeling SDK. This helps you build a graphical DSL. Among other things, it comes with a template for a "class designer" DSL. You can start from there, and modify as needed.
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 to create emails, mainly HTML, based on templates -
I'd really like to do something like:
Set up my template, as an HTML (or
similar) file
Include tags, that are then replaced with specific data (kind of like mail-merge....)
I've seen this:
http://www.bitethebullet.co.uk/EmailTemplateFramework/tabid/58/Default.aspx
From searching on stack overflow, i understand nVelocity might be another option? But i can't find any examples to do what i want to do...
Any other suggestions?
This kind of functionality is already built in. See MailDefinition class. For more complex scenarios you might want to consider something like NVelocity. I've had a lot of success with StringTemplate's C# port.
I've just released an open source project for precisely this purpose. You can read some more details and grab the source code from my blog.
http://thecodedecanter.wordpress.com/2010/07/19/town-crier-an-open-source-e-mail-templating-engine-for-net/