active questions tagged dynamic-languages - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T12:56:43Zhttp://stackoverflow.com/feeds/tag/dynamic-languageshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1876810/can-you-have-too-much-of-dynamic-in-dynamic-languages8Can you have too much of “dynamic” in dynamic languages?Dan2009-12-09T20:53:44Z2009-12-10T14:27:49Z
<p>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 Grails possible, ease with mocking when writing tests etc.</p>
<p>However, I have been “accused” by my coworkers that my code is not groovy enough. Namely, I still declare types for my parameters and fields, tend to use inheritance and polymorphism instead of duck typing etc. It seems to me that in these situations it is not only dynamic vs. static, but also dynamic vs. object-oriented paradigm kind of dilemma. In those cases I still tend to prefer OO. I feel that OO paradigm has great value in its basic premise in allowing you to abstract and relate your code constructs to particular real-world concepts.</p>
<p>So, here are particular questions I need help with:</p>
<ol>
<li><p>Should I declare types for my parameters, fields, etc?</p></li>
<li><p>Should I declare block of code as closure when simple method will do?</p></li>
<li><p>When should I use duck typing instead of polymorphic dynamic dispatch. For example, in groovy I can do animal."$action"() or def animal; animal.action() , instead of Animal animal = new Dog(); animal.action(). I can see the problem with first in the context of Open-Closed principle, but any other reasons to prefer OO style polymorphism?</p></li>
<li><p>When should I use interfaces in groovy (if ever)?</p></li>
</ol>
<p>I am sure that there are some other similar dilemmas I failed to write down. I also think that these questions are valid not just for groovy, but for any other dynamic language.
What is your opinion?</p>
http://stackoverflow.com/questions/787239/why-c-is-not-dynamic-language1Why C# is not dynamic language?egyamado2009-04-24T19:30:15Z2009-12-01T21:10:08Z
<p>I heard on some podcast that <strong>C# is not dynamic language, but Ruby is.</strong>
I searched online to understand why, but no success.</p>
<p>So here is my question; <strong>what is “Dynamic Language”?</strong> Is this means there’s a static language?</p>
<p>Why C# is a dynamic language and what other languages are dynamic?</p>
<p>If C# is not dynamic, so why Microsoft is pushing is strongly to the market?
As well why most of .NET programmers are going crazy over it and leaving other languages and moving to C#??</p>
<p>And why <strong>“Ruby is the language of the future.”</strong>? </p>
<p>Thank You,</p>
<p><strong>[UPDATE]</strong></p>
<p>I found this useful and nice post from Jeffrey Palermo <a href="http://jeffreypalermo.com/blog/static-vs-dynamic-languages-what-i-really-want/" rel="nofollow">http://jeffreypalermo.com/blog/static-vs-dynamic-languages-what-i-really-want/</a>
which it make sense as he said: <strong><em>"I want static behavior between assemblies/libraries/packages but dynamic abilities within."</em></strong></p>
http://stackoverflow.com/questions/125367/dynamic-type-languages-versus-static-type-languages6Dynamic type languages versus static type languagescvs2008-09-24T04:05:00Z2009-11-30T21:47:27Z
<p>What are the advantages and limitations of dynamic type languages compared to static type languages?</p>
<p><strong>See also</strong>: <a href="http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages">whats with the love of dynamic languages</a> (a far more argumentative thread...)</p>
http://stackoverflow.com/questions/688740/how-to-make-sure-the-code-is-still-working-after-refactoring-dynamic-language6How to Make sure the code is still working after refactoring ( Dynamic language)Ngu Soon Hui2009-03-27T06:36:30Z2009-11-28T18:02:38Z
<p>How to make sure that code is still working after refactoring ( i.e, after variable name change)?</p>
<p>In static language, if a class is renamed but other referring class is not, then I will get a compilation error. </p>
<p>But in dynamic language there is no such safety net, and your code can break during refactoring <strong>if you are not careful enough</strong>. You can use unit test, but when you are using mocks it's pretty hard to know the name changes and as a consequence, it may not help.</p>
<p>How to solve this problem?</p>
http://stackoverflow.com/questions/1811198/writing-programs-in-dynamic-languages-that-go-beyond-what-the-specification-allow0Writing programs in dynamic languages that go beyond what the specification allowsJames Black2009-11-28T00:57:39Z2009-11-28T02:23:45Z
<p>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.</p>
<p>My thinking was influenced by this question, when I read the answer by bobince:
<a href="http://stackoverflow.com/questions/1777705/a-question-about-javascripts-slice-and-splice-methods/1777773#1777773">http://stackoverflow.com/questions/1777705/a-question-about-javascripts-slice-and-splice-methods/1777773#1777773</a></p>
<p>The basic thought is that <code>splice</code>, in Javascript, is specified to be used in only certain situations, but, it can be used in others, and there is nothing that the language can do to stop it, as the language is designed to be extremely flexible.</p>
<p>Unless someone reads through the specification, and decides to adhere to it, I am fairly certain that there are many such violations occuring.</p>
<p>Is this a problem, or a natural extension of writing such flexible languages? Or should we expect tools like JSLint to help be the specification police?</p>
<p>I liked one answer in this question, that the implementation of python is the specification. I am curious if that is actually closer to the truth for these types of languages, that basically, if the language allows you to do something then it is in the specification.
<a href="http://stackoverflow.com/questions/1094961/is-there-a-python-language-specification">http://stackoverflow.com/questions/1094961/is-there-a-python-language-specification</a></p>
<p>UPDATE:</p>
<p>After reading a couple of comments, I thought I would check the splice method in the spec and this is what I found, at the bottom of pg 104, <a href="http://www.mozilla.org/js/language/E262-3.pdf" rel="nofollow">http://www.mozilla.org/js/language/E262-3.pdf</a>, so it appears that I can use splice on the array of children without violating the spec. I just don't want people to get bogged down in my example, but hopefully to consider the question.</p>
<pre><code> The splice function is intentionally generic; it does not require that its this value be an Array object.
Therefore it can be transferred to other kinds of objects for use as a method. Whether the splice function
can be applied successfully to a host object is implementation-dependent.
</code></pre>
<p><strong>UPDATE 2:</strong>
I am not interested in this being about javascript, but language flexibility and specs. For example, I expect that the Java spec specifies you can't put code into an interface, but using AspectJ I do that frequently. This is probably a violation, but the writers didn't predict AOP and the tool was flexible enough to be bent for this use, just as the JVM is also flexible enough for Scala and Clojure.</p>
http://stackoverflow.com/questions/1801894/dynamic-languages-vs-static-languages-can-this-two-be-together-in-the-same-place0Dynamic languages Vs Static languages (can this two be together in the same place)Ayoub2009-11-26T06:31:48Z2009-11-26T07:34:38Z
<p>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 static at the same time ? </p>
http://stackoverflow.com/questions/379128/how-do-you-program-differently-in-dynamic-languages15How do you program differently in dynamic languages?John D. Cook2008-12-18T20:24:22Z2009-11-26T04:55:20Z
<p>How would someone who really knows how to take advantage of dynamic programming languages approach programming differently than someone working in a static language? </p>
<p>I'm familiar with the whole debate over static versus dynamic typing, but that's not what I'm getting at. I'd like to discuss problem solving techniques that are practical in dynamic languages but not in static languages. </p>
<p>Most of the code I've seen written in dynamic programming languages isn't very different than code written in static programming languages. As the saying goes, you can write FORTRAN in any language, and many people do. But some people use dynamic programming languages to solve problems in a way that wouldn't easily translate into, for example, C++. What are some of their techniques?</p>
<p>What are some good resources that discuss how to use dynamic programming languages? Not books on language syntax or API reference, but resources on problem solving approaches that take advantage of dynamic language capabilities.</p>
<p>EDIT (1/5/2009): I appreciate the answers below, but they don't seem to account for the huge increases in productivity that dynamic language advocates say they experience. </p>
http://stackoverflow.com/questions/710189/how-do-i-attach-a-method-to-a-dynamically-created-c-type-at-runtime6How do I attach a method to a dynamically-created C# type at runtime?Chris McCall2009-04-02T15:23:47Z2009-11-19T17:34:02Z
<p>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 ActiveRecord approved, but my request was declined. However, using the excellent code provided at <a href="http://blog.bodurov.com/Post.aspx?postID=27" rel="nofollow">http://blog.bodurov.com/Post.aspx?postID=27</a>, I added an extension method to IEnumerable that converts the key-value pairs I make out of the ragged XML coming back into strongly typed objects, complete with property names!</p>
<p>This:</p>
<pre><code>dict["keyName1"]
</code></pre>
<p>becomes</p>
<pre><code>MyObject.keyName1
</code></pre>
<p>Now the interface supports databinding! Pretty cool! I'd like to take it a step further, though. I want the objects emitted to have Save() methods too, so that I can ape the ActiveRecord pattern and provide my web guys with an intuitive object layer to use from ASP.net.</p>
<p>How do I write a method in Visual Studio, in source code, and attach it at runtime to the emitted objects? I am not interested in (or qualified for) writing assembly or IL. I'd like to do this in C#. This is my first StackOverflow question and I am posting this with company-mandated IE6, so please be gentle.</p>
http://stackoverflow.com/questions/1748577/domain-driven-design-efforts-in-dynamic-languages0Domain Driven Design efforts in dynamic languages ?julien2009-11-17T12:34:57Z2009-11-17T21:51:52Z
<p>Are you aware of any DDD efforts in a dynamic language ?</p>
<p>Practical resources on DDD tend to decrease quite dramatically when straying from enterprise-oriented solutions (a google search exluding C#, .NET, ASP and Java yields 10 times less results), but i couldn't actually find a single example of a DDD implementation in a dynamic language...</p>
http://stackoverflow.com/questions/1732432/why-is-the-dynamic-part-of-dynamic-languages-so-good2Why is the "Dynamic" part of Dynamic languages so good?RCIX2009-11-13T22:59:38Z2009-11-13T23:52:14Z
<p>Jon Skeet posted <a href="http://msmvps.com/blogs/jon%5Fskeet/archive/2009/11/13/noda-time-gets-its-own-blog.aspx" rel="nofollow">this blog post</a>, 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 good?</p>
http://stackoverflow.com/questions/1657927/how-can-you-tell-if-a-language-is-a-dynamic-language1How can you tell if a language is a "dynamic language"?DanThMan2009-11-01T18:39:04Z2009-11-13T07:52:00Z
<p>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 <em>Lingo</em>, which is the scripting language for the Adobe (formerly Macromedia) Director product line, and I'm just wondering if it would be considered a "dynamic language".</p>
<p>The way variables and <em>lists</em> are handled seems very "dynamic language"-ish to me.</p>
<p>With variables, you would just write <code>foo = 3</code> or <code>bar = "Hello World"</code>. You don't declare a variable as an <code>int</code> or <code>string</code>--it figures that out as is goes.</p>
<p>With lists, you can just write something like <code>miscCollection = [3, "Hello World", #helloWorld, ["Embedded List", "Goes Here", 3], [#phrase: "Property List goes here", #value: 3]]</code>. Would this not be similar to a <code>tuple</code>?</p>
<p>Are these features enough to qualify for "dynamic language" status?</p>
<p>Interestingly, I've been using C# a lot more and Director/Lingo a lot less, but with all the excitement over dynamic languages these days, I wonder if I'm actually going against the grain.</p>
<p><strong>EDIT</strong></p>
<p>Regarding Mark Rushakoff answer, below, here's an attempt to analyze whether Lingo qualifies as "dynamic" using this <a href="http://en.wikipedia.org/wiki/Dynamic%5Fprogramming%5Flanguage" rel="nofollow">Wikipedia article</a>:</p>
<ol>
<li><p><code>Eval</code> - Lingo has <code>do</code> and <code>value</code> keywords. <code>do</code> will execute an entire command, e.g., <code>do "foo = 23"</code> or <code>do "foo = sum(20, 3)"</code>. <code>value</code> attempts to convert a string into a numeric, but it is more than just a parsing operator--it can actually convert a string representation of a variable into its number, e.g., assuming <code>foo = 23</code>, the statement <code>value("foo")</code> will evaluate to 23.</p></li>
<li><p>Higher-Order Functions - If I'm understanding this right, this is basically what I would be called a "delegate" in C#. Lingo doesn't support this directly as far as I know, although you could create a type (called a "parent script") that has a function and pass an instance of the type.</p></li>
<li><p>Closures - No support for this as far as I know.</p></li>
<li><p>Continuation - No support for this as far as I know.</p></li>
<li><p>Reflection - In a sense at least, yes. You actually create new instances of types using a string, e.g., <code>fooInstance = script("Foo").new(bar)</code>. It is also possible to convert an instance of a type into a string that contains the name of the type (so you can sort of mimic c#'s <code>GetType()</code> functionality). You can also query the properties of a type without knowing the names of the properties (e.g., look up a property by index) and find out the names of the properties by index.</p></li>
<li><p>Macros - The way the Wikipedia article describes a <em>macro</em>, I don't believe so. It is possible to edit scripts at runtime, however, so maybe that counts.</p></li>
</ol>
<p>So, it seems that Lingo scores a 2 to 3 out of 6 on dynamic features, but I'm not clear enough on closures and continuations to know for sure that Lingo doesn't support them. I guess I'm not sure what to conclude. Comments welcome.</p>
http://stackoverflow.com/questions/122815/has-anbody-used-boo-and-can-you-comment-on-your-experiences2Has anbody used Boo and can you comment on your experiences?DanielHonig2008-09-23T18:26:14Z2009-11-07T00:00:31Z
<p>I'm looking for a groovy equivalent on .NET
<a href="http://boo.codehaus.org/" rel="nofollow">http://boo.codehaus.org/</a></p>
<p>So far Boo looks interesting, but it is statically typed, yet does include some of the metaprogramming features I'd be looking for.</p>
<p>Can anyone comment on the experience of using Boo and is it worth looking into for more than hobby purposes at a 1.0 Version? </p>
<p><em>Edit</em>: Changed BOO to Boo</p>
http://stackoverflow.com/questions/1658338/is-agile-always-identical-with-dynamic-language2Is agile (always) identical with dynamic language? [closed]jpartogi2009-11-01T21:12:34Z2009-11-02T12:44:30Z
<p>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. </p>
<p>With dynamic language we can see changes real quick and we also write less code. No server restart, no compilation/build phase is required.</p>
<p>In other words if you use static language and or big fat frameworks like J2EE, you can not be agile. Or you're not as agile as teams that is using dynamic languages.</p>
<p>Many job board out there also relates agile software development with dynamic language framework like Ruby on Rails, Django, Grails, etc.</p>
<p><strong>EDIT</strong></p>
<p>We know that agile is about adapting to and being prepared for change. But with this fact we can also conclude that team that is using dynamic language would be more agile than those using static language.</p>
<p><strong>EDIT 2</strong></p>
<p>Some people might be laughing at me, but if you go to Grails.org, you can see their statement about grails:
<strong>Dynamic</strong>, <strong>agile</strong> web development without compromises.
As you can see, dynamic and agile go side by side. This will mislead people thinking that agile is related to dynamic language and if you're not using dynamic language then you're not agile.</p>
<p>Is agile always identical with dynamic language, especially these days?</p>
http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages42What's with the love of dynamic LanguagesKibbee2008-09-04T00:46:36Z2009-11-02T00:52:22Z
<p>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 languages is stuff like ASP (Vb Script), JavaScript, and PHP. Using these technologies has left a bad taste in my mouth when thinking about dynamic languages. Things that usually would have been caught by the compiler such as misspelled variable names and assigning an value of the wrong type to a variable don't occur until runtime. And even then, you may not notice an error, as it just creates a new variable, and assigns some default value. I've also never seen intellisense work well in a dynamic language, since, well, variables don't have any explicit type.</p>
<p>What I want to know is, what people find so appealing about dynamic languages? What are the main advantages in terms of things that dynamic languages allow you to do that can't be done, or are difficult to do in compiled languages. It seems to me that we decided a long time ago, that things like uncompiled asp pages throwing runtime exceptions was a bad idea. Why is there is a resurgence of this type of code? And why does it seem to me at least, that Ruby on Rails doesn't really look like anything you couldn't have done with ASP 10 years ago?</p>
http://stackoverflow.com/questions/987176/overload-resolution-in-c-4-0-using-dynamic-types3Overload Resolution in C# 4.0 using dynamic typesLBushkin2009-06-12T15:09:46Z2009-10-30T12:43:50Z
<p>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 generic overload ... or the specialized overload.</p>
<pre><code>public class Foo<T>
{
protected string BarImpl( T value ) { return "Bar(T) says: " + value.ToString(); }
protected string BarImpl( int value ) { return "Bar(int) says: " + value.ToString(); }
public string Bar( T value )
{
dynamic foo = this;
return foo.BarImpl( value );
}
}
public static void Main( string args[] )
{
var f = new Foo<int>();
Console.WriteLine( f.Bar( 0 ) );
}
</code></pre>
http://stackoverflow.com/questions/91618/is-there-any-point-for-interfaces-in-dynamic-languages10Is there any point for interfaces in dynamic languages?Rene Saarsoo2008-09-18T10:59:41Z2009-10-28T01:41:53Z
<p>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 <em>duck-typing</em>.</p>
<p>PHP supports interfaces.
Ruby and Python don't have them.
So you can clearly live happily without them.</p>
<p>I've been mostly doing my work in PHP and have never really
made use of the ability to define interfaces. When I need a
set of classes to implement certain common interface, then
I just describe it in documentation.</p>
<p>So, what do you think? Aren't you better off without using
interfaces in dynamic languages at all?</p>
http://stackoverflow.com/questions/404676/ruby-more-flexibility-than-java-c3Ruby: More flexibility than Java/C#?yar2009-01-01T07:28:38Z2009-10-16T18:43:59Z
<p>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 features of Ruby that are generally <strong>not</strong> used to avoid confusion?</p>
<p>Examples might be parallel assignment and all the different ways to write Strings, perhaps?</p>
<p><strong>Note:</strong> I'm not asking for a comparison with Java/C#... just this language question, please...</p>
<p><strong>Edit:</strong> I understand that C#, Java and Ruby are strongly typed, and that only Ruby (like Python and others) is dynamically typed (while Java/C# are statically typed). Some of the answers say that dynamically-typed languages are more flexible. Is this necessarily true, and how does it affect syntax? <strong>I am only asking about syntactic flexibility.</strong> </p>
<p>(PHP is also dynamically typed and it does <strong>not</strong> seem more flexible than Java/C#, as far as I've seen. Again, I mean in terms of syntax, not in terms of deployment nor any other aspect...)</p>
http://stackoverflow.com/questions/1528932/how-to-create-inline-objects-with-properties-in-python3How to create inline objects with properties in Python?Jader Dias2009-10-07T00:43:55Z2009-10-07T06:39:34Z
<p>In Javascript it would be:</p>
<pre><code>var newObject = { 'propertyName' : 'propertyValue' };
</code></pre>
<p>How to do it in Python?</p>
http://stackoverflow.com/questions/816212/python-ruby-as-mobile-os4Python/Ruby as mobile OSTacoman6672009-05-03T03:09:58Z2009-10-02T22:08:35Z
<p>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 manner of .NET language.</p>
<p>What would be the reasoning behind a mobile OS being written in Python, Ruby, or any other dynamic language? I understand that at a low level they would not cut it but C or C++ would be fine for that and Python, for example, could be the layer on top to interact with it. I mean, there is Jython or CPython.</p>
<p>I was just wondering why we do not see more dynamic language support in today's mobile OS's.</p>
http://stackoverflow.com/questions/1475116/how-do-you-effectively-unit-test-the-parameters-of-dynamic-languages1How do you effectively unit test the parameters of dynamic languages?Yishai2009-09-25T02:20:37Z2009-09-30T13:50:32Z
<p><a href="http://stackoverflow.com/questions/1475048/type-of-object-referencies-in-ruby/1475058#1475058">This answer</a> 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 prefer) from Java.</p>
<p>Given a method foo that takes a parameter bar in a dynamic language, there is no enforcement at compile time of the type of bar. The answer linked above (and the answer I have generally seen to this) is that you need to unit test properly in a dynamic language.</p>
<p>But at some point something outside the unit will call that method. Say this is a heavy weight object that will be mocked in any unit tests of classes that use it. Now you have many classes which call this method, and you need to change the type. To keep it simple, it used to take a number, but now requires an alpha numeric, and you need to use a method specifically available on string and not on a number object with the new requirement.</p>
<p>How do you change it and know the calling code will be fixed? Sure if you just change it, your unit tests will fail, but since you need to change it on purpose, you would ostensibly fix your unit tests. How do you know to fix the calling code? I don't just mean how conceptually do you know, I mean how do you know you have found all the callers and can really say it is changed.</p>
<p>It would seem that only very comprehensive integration tests would give you that assurance. Am I missing something?</p>
http://stackoverflow.com/questions/1493125/using-performselector-vs-just-calling-the-method4Using -performSelector: vs. just calling the methodTheGambler2009-09-29T15:01:13Z2009-09-29T18:25:05Z
<p>I'm still kind of new to Objective-C and I'm wondering what is the difference between the following two statements?</p>
<pre><code>[object performSelector:@selector(doSomething)];
[object doSomething];
</code></pre>
http://stackoverflow.com/questions/1441434/why-are-dynamic-languages-so-popular2Why are dynamic languages so popular? [closed]nkr1pt2009-09-17T21:28:03Z2009-09-17T21:42:23Z
<h3>Duplicate</h3>
<blockquote>
<p><a href="http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages">What's the Love with Dynamic Languages?</a></p>
</blockquote>
<p>The last couple of days I'm busy writing a home brew web application in PHP,
a rather popular dynamic language.
Coming from a static languages background, mainly Java, some things feel weird to me, and I would like to hear other opinions from people who are maybe more experienced in these dynamic languages.
What they like about it, what they don't etc.</p>
<p>What feels really weird to me for instance (at least in PHP) is the inability to type hint method args, variables and function returns.
What if a specific method arg the user provides is a string instead of an int, or null, or ...?
What does a function return?
I feel that this form of coding is not self documenting for starters and also not really robust.
A least a lot of checks should be performed on incoming methods args to make the application somewhat robust and safe in my opinion as users of a particular method may not know how fragile it is.
The amount of checking could get ridiculous, while type hinting would make all of these checks obsolete.</p>
<p>Do you feel that larger applications can be successfully built and maintained with these dynamic languages?</p>
<p>Looking forward to read other insights and opinions on this!</p>
http://stackoverflow.com/questions/1205343/debugging-ruby-python-groovy0Debugging Ruby/Python/GroovyAndrew Whitehouse2009-07-30T08:57:59Z2009-09-14T16:52:51Z
<p>I'm rephrasing this question because it was either too uninteresting or too incomprehensible. :)</p>
<p>The original question came about because I'm making the transation from Java to Groovy, but the example could apply equally when transitioning to any of the higher-level languages (Ruby, Python, Groovy).</p>
<p>Java is easy to debug because there is a clear relationship between lines of code, and fairly fine-grained behaviour, e.g. manipulate an array using a for loop:</p>
<pre><code>for ( int i=0; i < array1.size(); i++ )
{
if ( meetsSomeCriterion(array1.elementAt(i) )
{
array2.add( array1.elementAt(i) );
}
}
</code></pre>
<p>so you can set a breakpoint on the test in the loop and see what happens next. (I know there are better ways to write this; it's just to illustrate the point.)</p>
<p>In languages like Ruby the idiomatic style seems to favour higher-level one-liner coding, e.g. from <a href="http://rubyquiz.com/quiz113.html" rel="nofollow">http://rubyquiz.com/quiz113.html</a></p>
<pre><code>quiz.to_s.reverse.scan(/(?:\d*\.)?\d{1,3}-?/).join(',').reverse
</code></pre>
<p>I'm wondering if you can suggest any effective techniques for debugging this, for example if you changed the regular expression ... would you still use the traditional debugger, and step into/over the chained methods? Or is there a better way?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1419626/are-interfaces-in-javascript-necessary2Are Interfaces in JavaScript necessary?lomaxx2009-09-14T04:04:05Z2009-09-14T04:20:40Z
<p>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() function which is then called by the page that hosts the JavaScript. We have an array of objects that have this Send function defined so we iterate through the collection and call Send() on each of the objects.</p>
<p>In an OO language, if you wanted to do something similar, you'd have an IControl interface that has a Send() function that must be implemented by each control and then you'd have a collection of IControl implementations that you'd iterate through and call the send method on.</p>
<p>My question is, with JavaScript being a dynamic language, is there any need to define an interface that the controls should inherit from, or is it good enough to just call the Send() function exposed on the controls?</p>
http://stackoverflow.com/questions/1280594/can-perl-be-statically-parsed7Can Perl be "statically" parsed?Paul Biggar2009-08-14T23:01:06Z2009-09-13T12:42:32Z
<p>An <a href="http://perlmonks.org/?node%5Fid=663393&" rel="nofollow">article called "Perl cannot be parsed, a formal proof"</a> is doing the rounds. So, does Perl decide the meaning of its parsed code at "run-time" or "compile-time"?</p>
<p>In some discussions I've read, I get the impression the arguments stem from imprecise terminology, so please try to define your technical terms in your answer. I have deliberately not defined "run-time", "statically" or "parsed" so that I can get perspectives from people who perhaps define those terms differently to me.</p>
<h3>Edit:</h3>
<p>This isn't about static analysis. Its a theoretical question about Perl's behaviour.</p>
http://stackoverflow.com/questions/1119387/in-what-languages-can-you-dynamically-rewrite-functions-on-the-fly5In what languages can you dynamically rewrite functions on the fly?Tom Ritter2009-07-13T13:18:32Z2009-09-05T15:26:00Z
<p>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.</p>
<p>Over here I've got some HTML:</p>
<pre><code><div id="excelExport1234"
onclick="if(somestuff) location.href='http://server/excelExport.aspx?id=56789&something=else'; else alert('not important');"
>Click here to export to excel</div>
</code></pre>
<p>And I couldn't change the outputted HTML, but I needed to add an extra parameter to that link. I started thinking about it, and realized I could just do this:</p>
<pre><code>excelExport = $('excelExport1234');
if (needParam)
eval('excelExport.onclick = ' + excelExport.onclick.toString().replace("excelReport.aspx?id", "excelReport.aspx?extraParam=true&id") + ';');
else
eval('excelExport.onclick = ' + excelExport.onclick.toString().replace("extraParam=true&", "") + ';');
</code></pre>
<p>And it worked like a champ! excelExport.onclick returns a function object which I convert to a string, and do some string manip on. Since it's now in the form of "function() { ... }", I just go back and assign it to the onclick event of the dom object. It's a little ugly having to use eval, but AFAIK there isn't a javascript function constructor that can take a string of code and turn it into an object nicely.</p>
<p>Anyway, my point isn't that I'm super clever (I'm not), my point is that <strong>this is cool</strong>. And I know javascript isn't the only language that can do this. I've heard that lisp has had macros for years for this exact purpose. Except to really grok macros you need to really grok lisp, and I don't grok it, I just 'kind of get it'.</p>
<p>So my question is: <strong>In what other languages can you (easily) dynamically rewrite functions, and can you show me a simple example?</strong> I want to see where else you can do this, and how it's done!</p>
<p>(also, I have no idea what to tag this as, so I took random guesses)</p>
http://stackoverflow.com/questions/1366176/why-should-i-use-dynamic-languages2Why should I use Dynamic Languages?Dror Helper2009-09-02T06:55:53Z2009-09-03T15:21:10Z
<p>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.</p>
<p>I'm well aware that learning a new language and new programming paradigm is a good practice but I need more "down to earth" reasons why (and when) should a developer <strong>use</strong> dynamic language in his work.</p>
http://stackoverflow.com/questions/1356188/do-scripters-have-to-consider-roundoff-error4Do scripters have to consider roundoff error?Vince2009-08-31T07:09:48Z2009-08-31T22:02:53Z
<p>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 are doing scientific programming?</p>
http://stackoverflow.com/questions/142695/high-level-languages-for-out-of-the-box-gui-desktop-application-programming7High-level languages for out-of-the-box GUI desktop application programmingOmeoe2008-09-27T01:22:37Z2009-08-25T17:44:49Z
<p>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++ pointers and the maze of low-level Win32 API handles and message loops and that prevented me from utilizing environments like Code::Blocks for desktop applications. I am also not very fond of bulky, statically-typed C#/.NET environment. Any other ideas?</p>
http://stackoverflow.com/questions/1193100/declarative-web-service-authorisation-wsdl-typing1Declarative web-service authorisation & WSDL typingDavid Toso2009-07-28T09:56:55Z2009-08-09T23:53:57Z
<p>We currently have a group of web-services exposing interfaces to a variety of different client types and roles. </p>
<p><strong>Background:</strong></p>
<ul>
<li><p>The web-service application code is (and will stay) written in a weakly typed dynamic language.</p></li>
<li><p><strong><em>Authentication</em></strong> is handled seperately, this post is about <strong><em>Authorisation</em></strong>.</p></li>
<li><p>All operations exposed by the web-services are stateless.</p></li>
<li><p>The web-services talk <strong><em>both</em></strong> SOAP and REST(JSON). </p>
<p><em>I'm definitely not interested in starting a discussion about the merits of either approach.</em></p></li>
</ul>
<p><strong>Question:</strong></p>
<p>I'd like to implement a scheme to <strong>declaratively</strong> define simultaneously </p>
<ol>
<li>complex WSDL typing of inputs & outputs for exposed methods, and </li>
<li>required Authorisation TRAITS and/or ROLES to make use of exposed methods.</li>
</ol>
<p>I'd like to have the declarations either inline with the interface definitions (say as method attributes), or externally defined (say via YAML files), but <strong>not</strong> managed dynamically in the database.</p>
<p><strong>Does any such implementation already exist for (any) weakly typed dynamic language?</strong> Are there wholly external implementations we could build apon?</p>