1
vote
1answer
51 views
How to fix blurred Icon Decorator on DSL Tools?
I faced this problem and after an extensive research I found its root cause and a workaround that can be useful for other people.
The icon decorator becomes "blurred" because its …
1
vote
3answers
52 views
How should I construct a finance DSL?
I've decided to build a database tracking the credit card offers I get in the mail, and one confounding factor has been how to represent the offers. With minimum finance charges an …
1
vote
3answers
105 views
What is the difference between “DSL Tools” and “Oslo”?
Hi,
I've just started playing with domain-specific tools development, and I'm playing with Visual Studio SDK DSL Tools. However, I heard that Microsoft have another initiative int …
4
votes
7answers
245 views
writing a portable domain specific language
I'd like to know good strategies for deploying a domain-specific-language which must run under at least 2 languages (Java, C#) and probably more (Python, and possibly Javascript).
…
4
votes
7answers
173 views
Domain Specific Language Bloggers
I have a current need to greatly increase my knowledge around DSLs. Who are the big names in DSLs? What blogs should I be reading?
7
votes
5answers
211 views
Mini-languages in Python
I'm after creating a simple mini-language parser in Python, programming close to the problem domain and all that.
Anyway, I was wondering how the people on here would go around do …
1
vote
6answers
144 views
When should I use a Domain Specific Language?
I would like some practical guidance on when I should use a Domain Specific Language. I have found resources about advantages and disadvantages, but what kind of project would war …
10
votes
8answers
210 views
Domain-specific languages vs. library of functions
This may be subjective, I don't know: I have this problem, which I'm kind of equating to the "what language for this project?" question, since I can't seem to solve it.
I've been …
1
vote
5answers
172 views
Is there any way to programmatically generate Python bytecode?
I want to hack around with the Python interpreter and try creating a small DSL . Is there any module where I can do something like this theoretical code (similar to LINQ expressio …
1
vote
2answers
201 views
Choice of DSL framework
I am working on a project that requires me to define a DSL. Since coming up with the right DSL is critical for my project, I decided to evaluate existing frameworks that help in de …
0
votes
1answer
92 views
Visual Studio DSL Tools and Server Explorer
Is it possible to enable users to drag and drop a Table from the Visual Studio Server Explorer onto my own DSL Diagram?
I can drop custom Domain Classes I have created but want to …
5
votes
13answers
400 views
Successful Domain-Specific Languages ? Which one do you use ?
Hi,
I'm interested in Domain Specific Languagess design and implementation.
Much of the DSLs that I know stem from the academic world.
Can you give me some pointers to DSLs that …
0
votes
2answers
70 views
What’s an example of a small custom DSL for internet advertising?
I'm just learning about DSLs and I'm trying to put them in a context I can understand.
Let's say we're talking about internet advertising, for example - since that's a field I wou …
0
votes
2answers
60 views
Parsing and evaluating given conditions
What I'm trying to do this is writing a simple parser for the following case in .NET
( [PART3]function1() AND [PART4]function7() ) OR [PART2]function90()
[PART] indicates the e …
2
votes
2answers
128 views
Which parts of a Ruby DSL will I need to build by hand?
If I want to build a DSL in Ruby 1.9 or JRuby, will I need to do any of these stages by hand:
Lexing
Interpretation
Parsing
Just-in-time compilation
Obviously, being a prog …
