Tagged Questions

Dynamic languages are a class of high-level programming languages whos behaviors is determined at runtime rather than compile time.

learn more… | top users | synonyms

81
votes
32answers
7k views

What do people find so appealing about dynamic languages? [closed]

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 ...
40
votes
10answers
17k 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...)
35
votes
7answers
8k views

How does JavaScript .prototype work?

I'm not that in to dynamic programming languages but I've written my fair share of JavaScript code. I never really got my head around this prototype-based programming, does any one know how this ...
33
votes
10answers
5k 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 ...
26
votes
15answers
1k 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 ...
26
votes
13answers
2k 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 ...
23
votes
4answers
12k 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];
22
votes
5answers
9k 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 ...
19
votes
8answers
1k views

Why are IOC containers unnecessary with dynamic languages

Someone on the Herding Code podcast No. 68, http://herdingcode.com/?p=231, stated that IOC containers had no place with Python or Javascript, or words to that effect. I'm assuming this is ...
19
votes
4answers
4k 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 ...
17
votes
2answers
493 views

What were the (then) unpublished optimizations that Steve Yegge referred to in “Dynamic Languages Strike Back”?

I was reading the transcription of Steve Yegge's Dynamic Languages Strike Back presentation, when I noticed this comment when he begins to discuss trace trees: I'll be honest with you, I actually ...
14
votes
12answers
2k views

Self Modifying Code

I am recently thinking about writing self-modifying programs, I think it may be powerful and fun... So I am currently looking for a language that allow modifying program own code easily.. I read ...
14
votes
7answers
1k views

What are the features of dynamic languages (like Ruby or Clojure) which you are missing in Scala?

What do you lose in practice when you choose a statically-typed language such as Scala (or F#, Haskell, C#) instead of dynamically-typed ones like Ruby, Python, Clojure, Groovy (which has macros or ...
14
votes
16answers
1k 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 ...
12
votes
9answers
822 views

Why don't we require interfaces in dynamic languages?

Is it just because of dynamic typing we don't require a concept of interfaces(like in Java and C#) in python?
11
votes
4answers
1k views

Lisp vs Python — Static Compilation

Why can Lisp with all its dynamic features be statically compiled but Python cannot (without losing all its dynamic features)?
11
votes
8answers
1k views

High-level languages for out-of-the-box GUI desktop application programming

After I discontinued programming in C++ while entering into web authoring I was spoilt by PHP's high level constructs like hash tables or its dynamic, weak typing. I remembered the angst of C/C++ ...
9
votes
3answers
321 views

Simulating duck typing in Java

The problem: I'd like to be able to generically access in Java any property/field on a Java ojbect similarly to how a dynamic language (think Groovy, JavaScript) would. I won't know at the time I'm ...
9
votes
6answers
284 views

Can you have too much of “dynamic” in dynamic languages?

In last few months I have been making a transition from Java to Groovy and I can appreciate many of the benefits it brings: less code, closures, builders, MOP that in the end makes framework like ...
9
votes
5answers
554 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 ...
9
votes
7answers
1k views

Real Life Benefits of Dynamic Languages?

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 played ...
8
votes
7answers
530 views

Scripting Languages

I am looking for a good scripting language to link to my program. I am looking for 2 important attributes: Scripting language should be hard linked into the executable (not requiring 3rd party ...
7
votes
2answers
452 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 ...
7
votes
4answers
349 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 ...
7
votes
13answers
781 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 ...
6
votes
13answers
1k 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 Mobile uses any ...
6
votes
2answers
1k views

Is CouchDB best suited for dynamic languages?

I´m in touch with CouchDB and the idea of mapping its results to Scala objects, as well as find some natural way to iteract with it, came immediatly. But I see that Dynamic languages such as Ruby and ...
5
votes
3answers
153 views

Dynamic vs Static Compiler (JavaScript)

I'm currently writing a JavaScript compiler in ANTLR+Java. I've read questions here on Stack Overflow on how to proceed with the execution - and the answer is always that it would be way too hard to ...
5
votes
5answers
207 views

Interpreters and Dynamically Typed Languages

Why are programs that have dynamically typed languages usually interpreted rather than compiled?
5
votes
3answers
175 views

top gotchas for someone moving from a static lang (java/c#) to dynamic language like python

What are the top gotchas for someone moving from a static lang (java/c#) to dynamic language like python? It seems cool how things can be done, but renaming a method, or adding/removing parameters ...
5
votes
3answers
333 views

Making the Case for IronRuby and IronPython

I guess everyone has already heard the news about some key developers leaving the Dynamic Languages team due to what they perceive as waning support for Dynamic Languages at Microsoft. I'm quite fond ...
5
votes
3answers
661 views

Getting started programming in dynamic languages in Android ((J)Ruby, Clojure…)

I've been looking around, and I can't seem to find any definitive answer or headway that seems "up to date". I've seen some interesting projects like Mirah (formerly Duby), and am looking into it a ...
5
votes
3answers
82 views

How do you know if a JavaScript library you are using will break your code after an upgrade?

So, you are using a bunch of javascript libraries in a website. Your javascript code calls the several APIs, but every once in a while after an upgrade, one of the API changes, and your code breaks, ...
5
votes
4answers
298 views

Are All Dynamic Languages Typo-friendly?

With Java on one side and Ruby/Groovy on the other, I know that in the second camp I'm free to make typos which will not get caught until run-time. Is this true of all dynamically-typed languages? ...
5
votes
4answers
243 views

Calling closest fitting method

As part of developing a small ScriptEngine, I reflectively call java methods. A call by the script engine gives me the object the method name and an array of arguments. To call the method I tried to ...
5
votes
12answers
581 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
5answers
910 views

What is the difference between dynamic languages and functional languages?

I often find developers use the terms functional language and dynamic language together, and wonder why are they always being put together. What are the differences between them? Can a language be ...
5
votes
11answers
695 views

Dynamic languages - which one should I choose?

Dynamic languages are on the rise and there are plenty of them: e.g. Ruby, Groovy, Jython, Scala (static, but has the look and feel of a dynamic language) etc etc. My background is in Java SE and EE ...
5
votes
12answers
2k views

Why C# is not dynamic language?

I heard on some podcast that C# is not dynamic language, but Ruby is. I searched online to understand why, but no success. So here is my question; what is “Dynamic Language”? Is this means there’s a ...
4
votes
5answers
245 views

Is it possible to design a dynamic language without significant performance loss?

Is it possible to design something like Ruby or Clojure without the significant performance loss in many situations compared with C/Java? Does hardware design play a role? Edit: With significant I ...
4
votes
5answers
363 views

What does a dynamic language like python give you? Coming from a c#/java background. show me the light! [closed]

Possible Duplicate: What’s with the love of dynamic Languages I'm coming from a c#/java background i.e. strongly typed, OOP language. I'm very much interested in Python, but I need ...
4
votes
3answers
173 views

Interface in a dynamic language?

Interface (or an abstract class with all the methods abstract) is a powerful weapon in a static-typed language such as C#, JAVA. It allows different derived types to be used in a uniformed way. Design ...
4
votes
4answers
643 views

Is Automatic Refactoring Possible in Dynamic Languages?

Perhaps I am limited by my experience with dynamic languages (Ruby on Netbeans and Groovy on Eclipse), but it seems to me that the nature of dynamic languages makes it impossible to refactor (renaming ...
4
votes
6answers
901 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
9answers
265 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 ...
4
votes
8answers
473 views

Learning Python for a .NET developer

I have been doing active development in C# for several years now. I primarily build enterprise application and in house frameworks on the .NET stack. I've never had the need to use any other ...
4
votes
7answers
667 views

Besides dynamic typing, what makes Ruby “more flexible” than Java?

I've been using Java almost since it first came out but have over the last five years gotten burnt out with how complex it's become to get even the simplest things done. I'm starting to learn Ruby at ...
4
votes
6answers
975 views

Why do dynamic languages like Ruby and Python not have the concept of interfaces like in Java or C#?

To my surprise as I am developing more interest towards dynamic languages like Ruby and Python. The claim is that they are 100% object oriented but as I read on several basic concepts like ...
4
votes
7answers
271 views

.NET and Dynamic Languages

When Microsoft gets around to releasing the DLR and related languages are you planning on utilising those languages (such as Iron Ruby or Iron Python)? If so, what are your motivations for doing so?
4
votes
10answers
436 views

Under what circumstances are dynamic languages not appropriate?

What factors indicate that a project's solution should not be coded in a dynamic language?

1 2 3