Search the web
Sign In
New User? Sign Up
langsmiths · Language Smiths
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2711 - 2740 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2711
February's update includes mixins, lambdas, constants and new documentation. Complete Update http://cobra-language.com/forums/viewtopic.php?f=4&t=310 Download ...
Chuck Esterbrook
chuckesterbrook
Offline Send Email
Mar 8, 2009
6:57 pm
2712
I've been working on my language again lately and playing around with argument type checking, protocols and multi-methods. I find it can be helpful to find...
Mike Austin
mike_ekim
Offline Send Email
May 4, 2009
8:35 pm
2713
Hi, The Cobra April 2009 Update has been posted and Release 2009-04-30 was recently made. It features the usual round of improvements such as refinements to...
Chuck Esterbrook
chuckesterbrook
Offline Send Email
May 5, 2009
6:17 am
2714
This forum is a great place for general language design chat, but I'm interested in starting a smaller more personal group for language designers. I was...
genericallyloud
Offline Send Email
Jun 19, 2009
6:00 am
2715
Le Fri, 19 Jun 2009 05:25:10 -0000, ... Have also a look at PiLuD http://groups.google.com/group/pilud It's not what you're looking for, just another group...
spir
denis.spir@...
Send Email
Jun 19, 2009
6:40 am
2716
... I don't see why such discussion threads cannot be started in this group which already has an established membership, but low activity. ... That group shows...
Chuck Esterbrook
chuckesterbrook
Offline Send Email
Jun 19, 2009
5:35 pm
2717
I wasn't trying to replace langsmiths in any way. I apologize if it came across that way. If you look at the information on the link I provide it might...
genericallyloud
Offline Send Email
Jun 19, 2009
6:39 pm
2718
Le Fri, 19 Jun 2009 18:38:37 -0000, ... Certainly not! I would personly love to take part to such a project; there are 2 issues for me: * not enough time next...
spir
denis.spir@...
Send Email
Jun 19, 2009
8:46 pm
2719
... Believe me, I don't exactly have oodles of time to spare, either. I work for a start-up, and I have a 1 year old son. But this is something that keeps my...
genericallyloud
Offline Send Email
Jun 19, 2009
9:21 pm
2720
... I use Python which is also a duck typing language. In my experience the missing type check at the beginning of a function/method poses no big problems. You...
eike.welk
Offline Send Email
Jun 21, 2009
6:18 pm
2721
... The other realm where lack of type chcking becomes problematic is where an instance variable gets populated with a object of the wrong type in the...
John Carter
refactored
Offline Send Email
Jun 21, 2009
11:38 pm
2722
Hi all I don't think I have posted to this list, but I have some comments about Duck Typing and errors in Python code in particular. For background, I have a...
David Benn
dbennau
Offline Send Email
Jun 22, 2009
2:27 am
2723
... I'll take this a step further and assert that: 1) If they're problems, they should be fixed even if they're not technically "bugs"- things are that...
Brian Hurt
bhurt42
Offline Send Email
Jun 23, 2009
2:28 am
2724
... If type inference is done on the basis of messages that an object can receive, what happens when via message forwarding* every object can validly receive...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 23, 2009
7:23 am
2725
This is certainly true -- dynamic typing's strengths are more than just duck typing. Programatically extending types at runtime (a la Rails's ActiveRecord) and...
Robert Fischer
robert.fischer@...
Send Email
Jun 23, 2009
12:23 pm
2726
... Define "validly receive every message". The only thing you can validly do for *every* message is just throw an exception. Otherwise you have to either...
Brian Hurt
bhurt42
Offline Send Email
Jun 23, 2009
3:27 pm
2727
Examples of things I can do if I accept any message: navigate an XML document, build a JSON object. ...
Robert Fischer
robert.fischer@...
Send Email
Jun 23, 2009
3:31 pm
2728
... I think I'm going to argue that. Dynamic typing's main strengths are 1. Algol-68 type systems are exceeding limited and broken (and this was known in...
Brian Hurt
bhurt42
Offline Send Email
Jun 23, 2009
3:41 pm
2729
... Static typing is inherently more restrictive than dynamic typing. That is, there are well-typed programs that any decidable static type system will reject....
John Cowan
johnwcowan
Online Now Send Email
Jun 23, 2009
4:15 pm
2730
... By definition, yes. ... Not just performance. Actually, the performance advantage is minor at best- and can be offset by other things. For example, it's...
Brian Hurt
bhurt42
Offline Send Email
Jun 23, 2009
5:32 pm
2731
This is an obvious case for polymorphism, so an object would provide its own to_sql implementation. If you didn't want to do that, the Groovy code could look...
Robert Fischer
robert.fischer@...
Send Email
Jun 23, 2009
5:43 pm
2732
... So the question then becomes why did ActiveRecord go with monkey patching instead of this route? Note that this exact same solution also works nicely for...
Brian Hurt
bhurt42
Offline Send Email
Jun 23, 2009
5:56 pm
2733
... That's a big advantage for supporting static typing, but not a big advantage for requiring it. Nor is it an advantage particular to static typing as...
John Cowan
johnwcowan
Online Now Send Email
Jun 23, 2009
9:29 pm
2734
You misunderstand what's going on. An ActiveRecord class starts out life looking like this: class Foo < ActiveRecord::Base end That's it. It delegates the...
Robert Fischer
robert.fischer@...
Send Email
Jun 23, 2009
9:29 pm
2735
... The advantage to requiring it I've dealt with in another email. ... Any system of checked metadata about code is a type system. ... What's the advantage of...
Brian Hurt
bhurt42
Offline Send Email
Jun 23, 2009
11:39 pm
2736
... I think I actually disagree here. The top one is shorter, granted- but I don't think it's more readable. Or rather, I don't think it's more readable *in...
Brian Hurt
bhurt42
Offline Send Email
Jun 23, 2009
11:49 pm
2737
This is a key culture difference between dynamic and static type communities -- static type communities want any tiny snippet of code to be obvious without...
Robert Fischer
robert.fischer@...
Send Email
Jun 23, 2009
11:59 pm
2738
... Without looking it up, can you tell me what the functions 'bind' and 'return' do? How about 'cata' or 'hylo'? Or 'appEndo'? Or 'runKleisli'? The...
John Nowak
john@...
Send Email
Jun 24, 2009
12:00 am
2739
... How is that more "static-friendly"? Why not just offer a selection function that takes a list of items to use to descend the tree: select : List String ->...
John Nowak
john@...
Send Email
Jun 24, 2009
12:19 am
2740
... The obvious point to make here being that the former is always better than the latter provided that all other things are equal. - John...
John Nowak
john@...
Send Email
Jun 24, 2009
12:24 am
Messages 2711 - 2740 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help