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 …
16
votes
15answers
846 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 …
15
votes
13answers
931 views
Best Practices for Architecting Large Systems in a Dynamic Language
From my experiences building non-trivial applications in Java and C#, I know that using good modular design based on known patterns and "coding to interfaces" are keys to success.
What are the …
11
votes
6answers
1k views
Does the new ‘dynamic’ C# 4.0 keyword deprecate the ‘var’ keyword ?
When C# 4.0 comes out and we have the dynamic keyword as described in this excellent presentation by Anders Hejlsberg, (C# is evolving faster than I can keep up.. I didn't have much time to acquaint …
10
votes
16answers
782 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
advantage of …
7
votes
5answers
325 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 …
7
votes
7answers
605 views
What makes Ruby slow?
Ruby is slow at certain things. But what parts of it are the most problematic?
How much does the garbage collector affect performance? I know I've had times when running the garbage collector alone …
7
votes
5answers
2k views
Short Description of Python Scoping Rules
What exactly are the Python scoping rules?
If I have come code:
code1
class Foo:
code2
def spam.....
code3
for code4..:
code5
x()
Where is x found? Some possible …
7
votes
7answers
558 views
High-level languages for out-of-the-box GUI desktop application programming
After I discontinuned programming in C++ while entering into web authoring I was spoilt by PHP's high level contructs like hash tables or its dynamic, weak typing. I remembered the angst of C/C++ …
6
votes
7answers
308 views
Real Life Benefits of Dynamic Languages?
Hi,
I'm exploring several possibilities for developing a new system (web application).
I'm an "old fashioned" kinda guy, object oriented in nature (converted from procedural many years ago). I …
6
votes
3answers
240 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 tried to get …
6
votes
6answers
1k views
Dynamic type languages versus static type languages
What are the advantages and limitations of dynamic type languages compared to static type languages?
See also: whats with the love of dynamic languages (a far more argumentative thread...)
5
votes
12answers
418 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 some HTML:
<div …
5
votes
4answers
257 views
How to Make sure the code is still working after refactoring ( Dynamic language)
How to make sure that code is still working after refactoring ( i.e, after variable name change)?
In static language, if a class is renamed but other referring class is not, then I will get a …
5
votes
13answers
505 views
Uses for Dynamic Languages
My primary language right now is D, and I'm in the process of learning Python because it's required for a course I'm taking. While I understand why dynamic languages would be a breath of fresh air …
