Tagged Questions

0
votes
5answers
89 views

Writing programs in dynamic languages that go beyond what the specification allows

With the growth of dynamically typed languages, as they give us more flexibility, there is the very likely probability that people will write programs that go beyond what the specification allows. My …
0
votes
2answers
38 views

Dynamic languages Vs Static languages (can this two be together in the same place)

programming languages are grouped it 2 main classes "Dynamic" & "Static". - Is this always the case a programming language is in one of them and not in both, I mean can a language be dynamic and …
0
votes
1answer
31 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 search exluding C#, …
2
votes
6answers
169 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: What makes them so …
2
votes
14answers
351 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 dynamic language we can …
1
vote
3answers
141 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 (formerly …
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 have with dynamic …
3
votes
6answers
179 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
248 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 doSomething];
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 or deformed - as you …
7
votes
5answers
327 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 discussions I've read, I …
4
votes
9answers
195 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 stuff? What if they …
2
votes
8answers
249 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 IronPython. I'm well …
15
votes
15answers
848 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 familiar with the whole …
2
votes
4answers
106 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 expose a Send() …

1 2 3 4 5 next
15 30 50 per page