2
votes
14answers
326 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 …
1
vote
2answers
87 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 …
41
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
7answers
136 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
3answers
207 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 …
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 …
7
votes
5answers
318 views
Can Perl be “statically” parsed?
An article called "Perl cannot be parsed, a formal proof" is doing the rounds. So, does Perl decide the meaning of its parsed code at "run-time" or "compile-time"?
In some discuss …
4
votes
9answers
186 views
Do scripters have to consider roundoff error?
I'm studying C, and the idea of guard digits and rounding errors came up. Do practitioners of scripting languages (I'm thinking of Python and Perl here) need to worry about this st …
2
votes
4answers
104 views
Are Interfaces in JavaScript necessary?
I suppose this could apply to any dynamic language, but the one I'm using is JavaScript. We have a situation where we're writing a couple of controls in JavaScript that need to exp …
2
votes
2answers
141 views
Why are dynamic languages so popular? [closed]
Duplicate
What's the Love with Dynamic Languages?
The last couple of days I'm busy writing a home brew web application in PHP,
a rather popular dynamic language.
Coming from …
2
votes
8answers
235 views
Why should I use Dynamic Languages?
I've started learning IronPython a while back and I really like programming in it. The only problem I have is explaining a fellow developer why should he take the time and learn Ir …
5
votes
12answers
409 views
In what languages can you dynamically rewrite functions on the fly?
I recently had the necessity of rewriting a javascript function in javascript, dynamically. The ease with which I did it, and how fun it was, astounded me.
Over here I've got som …
3
votes
3answers
281 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 …
16
votes
14answers
816 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 …
4
votes
13answers
384 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 …
