4
votes
3answers
99 views
Does anyone know of a good reference for DSL design?
I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.
The languages I ha …
4
votes
3answers
91 views
How do I build a domain-specific query language?
I have a biology database that I would like to query. There is also a given terminology bank I have access to that has formalizable predicates. I would like to build a query langua …
1
vote
1answer
21 views
Stop and continue while evaluation an expression tree
At the office, we've applied simple Domain Specific Languages (DSLs) to several problem domains we encountered.
Basically, we parse (lex/yacc) the custom script into an expressio …
1
vote
1answer
41 views
language to create flowcharts
Hi,
This seems like something which must have been answered before, but I can't find anything appropriate in the question archives. Basically, I'm looking for a little Domain Spec …
0
votes
1answer
12 views
Literal structure for time datatype
I'm working on a DSL that should support a time literal and am interested in two different things:
What language(s) or DSL(s) support a time literal?
How is the literal structure …
5
votes
5answers
389 views
Looking for good server-side language that will allow players to upload code that can be executed
I had an idea of a program I want to write, but which language would be best is my problem.
If I have a car racing game and I want to allow users to submit code for new interactiv …
3
votes
6answers
149 views
looking for scientific evidence of the benefits of using a DSL
Greg Wilson's talk "bits of evidence" ( http://www.slideshare.net/gvwilson/bits-of-evidence-2338367 ) discusses the lack of evidence behind the following claims that Martin Fowler …
3
votes
6answers
196 views
What separates a Ruby DSL from an ordinary API
What are some defining characteristics of a Ruby DSL that separate it from just a regular API?
2
votes
2answers
63 views
Ubiquitous language - term for developers and users
Our project's team members are a big fans of Ubiquitous Language concept from the Domain-Driven Design Community.
And here is the problem we've found:
Non-techy users like to use …
0
votes
0answers
52 views
linksys router network challenge [closed]
I am connected to a DSL connection that if connected directly to my computer I get the IP address of 192.169.1.47 w/ a gateway of 192.168.1.1. I would like to connect my Linksys w …
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 …
1
vote
1answer
69 views
Making things available only inside Ruby blocks
Is there any way to make methods and functions only available inside blocks? What I'm trying to do:
some_block do
available_only_in_block
is_this_here?
okay_cool
end
…
3
votes
1answer
131 views
Base a small expression DSL on the DLR or keep it hand-rolled in F#?
I'm building a spreadsheet-like application, where a lot of small calculations needs to be stitched together in a tree-structure. These calculations are user-defined and I need a w …
10
votes
11answers
375 views
For what kind of problems do you write a DSL?
I'm just curious about Domain-Specific Languages. I have seen them several times in articles, and it seems that they can be used outside assurance or bank data definition problems. …
0
votes
7answers
156 views
How to define a DSL over C#
For a little night project I would like to write a validation component that could be used in .NET application to do the usual and tedious validation of object, input parameters an …
