1
vote
6answers
149 views
What is a good emeddable language for an existing Java application?
I want to embed a dsl or existing full language within my application. It should be a simple, full Turing complete language but simple and light enough that the code can be interpr …
1
vote
7answers
101 views
Embedded scripting engine for DSL
I'm working on a project which needs an embedded DSL to fullfill its expected requirements.
The DSL would be user defined event based. Here goes a mockup of the desired syntax:
u …
0
votes
2answers
92 views
Embedding IronRuby in C# and DateTime
When I embed IronRuby what is the proper way to get a reference to either Ruby's DateTime/Date classes or .NET's System.DateTime. I'm running into errors when I try
require 'date' …
2
votes
2answers
118 views
Which javascript interpreter is the easiest to embedd in a C application?
There are a few available and i want to support many platforms so i guess V8 isn't that good unless someone has written an interpreter patch for it.
0
votes
2answers
135 views
Embedded Lua “print” not working in debug mode from Visual Studio
Hi,
I am using Luainterface 2.0.3 to embed Lua in a c# application.
Everything is working fine, except in visual Studio's debug mode, the Lua's print function does not get writt …
3
votes
2answers
179 views
Stopping embedded Python
I'm embedding Python interpreter to a C program. However, it might happen that while running some python script via PyRun_SimpleString() will run into infinite loop or execute for …
2
votes
1answer
96 views
How to call R from within a web server (like Apache)?
That is, is there an embedded R interpreter available?
0
votes
2answers
76 views
Are there any embedded languages that can be embedded into C# and actionscript?
I'm looking for a embedded language that can be used to script common code between a server app written in C# and a client app written in Flash/Actionscript. It is important that t …
0
votes
4answers
458 views
SpiderMonkey vs JavaScriptCore vs ?
I have a C++ desktop application (written in wxWidgets) and I want to add support for some scripting language.
Scripting would mostly be used for run-time conversions of strings, …
1
vote
1answer
65 views
What replacements are available for vbscript in an application?
An application I maintain has been around since VB6 days - ported to .Net 1.1, and now being updated/rewritten across to .Net 3.5
The application provides a mechanism to run VBScr …
2
votes
3answers
182 views
Embedded script languages for PHP?
Hi,
i was wondering if anybody knows of a nice scripting language that can be embedded into php?
Javascript would be favorite and although there are several attempts they are eith …
2
votes
12answers
387 views
Is there a “safe” subset of Python for use as an embedded scripting language?
In the many Python applications I've created, I often create simple modules containing nothing but constants to be used as config files. Additionally, because the config file is a …
5
votes
4answers
388 views
Macro/Scripting language for non-developers with a simple GUI-based editor
Hello,
We wish to provide people to be able to add some logic to their accounts(say, given a few arguments, how to compute a particular result). So, essentially, this would be tan …
2
votes
2answers
67 views
What factors drive you to use embedded scripting in your applications?
What factors do you weigh in your decision process when you select an embedded scripting, and can issues of configuration and variation be overcome purely with IOC and the Plugin p …
5
votes
2answers
182 views
Is it possible to load and execute C# snippets using DLR?
The majority of material I have found regarding DLR is related to IronPython. Can you parse and execute C# using DLR? If so is there over head that would prevent you from attempt …
