6
votes
3answers
237 views
How do I attach a method to a dynamically-created C# type at runtime?
I have been saddled with using an in-house data access library that is effectively XML passed to a stored procedure, which returns XML. There is nothing I can do about this. I trie …
0
votes
1answer
23 views
Domain Driven Design efforts in dynamic languages ?
Are you aware of any DDD efforts in a dynamic language ?
Practical resources on DDD tend to decrease quite dramatically when straying from enterprise-oriented solutions (a google …
2
votes
6answers
166 views
Why is the “Dynamic” part of Dynamic languages so good?
Jon Skeet posted this blog post, in which he states that he is going to be asking why the dynamic part of languages are so good. So i thought i'd preemptively ask on his behalf: Wh …
1
vote
3answers
130 views
How can you tell if a language is a “dynamic language”?
I'm trying to get a better handle on what it really means for a language to be "dynamic". I have quite a bit of experience with Lingo, which is the scripting language for the Adobe …
2
votes
2answers
158 views
Has anbody used Boo and can you comment on your experiences?
I'm looking for a groovy equivalent on .NET
http://boo.codehaus.org/
So far Boo looks interesting, but it is statically typed, yet does include some of the metaprogramming feature …
2
votes
14answers
339 views
Is agile (always) identical with dynamic language? [closed]
I have a debate about this with a friend of mine whether agile software development is always identical with dynamic language (like Python, Ruby, Perl, PHP etc) or not.
With dyna …
42
votes
30answers
2k views
What’s with the love of dynamic Languages
It seems that everybody is jumping on the dynamic, non-compiled bandwagon lately. I've mostly only worked in compiled, static typed languages (C, Java, .Net). The experience I ha …
3
votes
3answers
298 views
Overload Resolution in C# 4.0 using dynamic types
I don't have access to the C# 4.0 preview yet. But I am curious, what does the C# 4.0 runtime do when invoking an overloaded method in the following case. Does it resolve to the ge …
10
votes
16answers
776 views
Is there any point for interfaces in dynamic languages?
In static languages like Java you need interfaces because
otherwise the type system just won't let you do certain things.
But in dynamic languages like PHP and Python you just take …
3
votes
6answers
404 views
Ruby: More flexibility than Java/C#?
Is is that I'm a newbie learning Ruby, or does it really have more ways to write (the same) things than Java/C#? Also, if it is more flexible than Java, are there any linguistic fe …
16
votes
14answers
820 views
How do you program differently in dynamic languages?
How would someone who really knows how to take advantage of dynamic programming languages approach programming differently than someone working in a static language?
I'm familia …
3
votes
6answers
170 views
How to create inline objects with properties in Python?
In Javascript it would be:
var newObject = { 'propertyName' : 'propertyValue' };
How to do it in Python?
4
votes
13answers
395 views
Python/Ruby as mobile OS
I was wondering why smartphone/mobile device OSs are not written to allow dynamic languages as the language of choice? iPhone uses Objective-C, Google Android uses Java, Windows M …
1
vote
6answers
69 views
How do you effectively unit test the parameters of dynamic languages?
This answer hit a nerve with me on something I have never understood with how you handle parameter types in dynamic languages vs. a static language (my perspective being informed o …
4
votes
3answers
230 views
Using -performSelector: vs. just calling the method
I'm still kind of new to Objective-C and I'm wondering what is the difference between the following two statements?
[object performSelector:@selector(doSomething)];
[object doSo …
