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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 2221 - 2250 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2221
Hi... I want to publish my works as electronic books. Do you know any software that lets me to do that? Mohammed...
Mohammed
mohammedderh...
Online Now Send Email
Dec 18, 2004
2:55 pm
2222
I was just playing with my research language "Inertia", and had a thought about using predicates and multi-methods for blocks. This would allow me to do list...
Mike Austin
mike_ekim
Offline Send Email
Dec 27, 2004
7:18 am
2223
... What is an advantage over an 'if'? ... The syntax is inconsistent: above you have a boolean value, below you have a predicate. -- __("< Marcin...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Dec 27, 2004
9:53 am
2224
Hello Mike, ... Looking at your example, it seems as you say, very close to pattern matching. But, do you have a "default" operator (such as `_') ? I would be...
Sébastien Pierre
kaze_von_nk
Offline Send Email
Dec 27, 2004
10:20 am
2225
... Thanks for your comments Marcin. The lack of ifs? :) I'm really just experimenting with generics. I also want the ability to add method to generic...
Mike Austin
mike_ekim
Offline Send Email
Dec 27, 2004
9:39 pm
2226
... What happens when conditions are not disjoint, or when they don't cover all arguments? Types usually have some subtyping relation which yields a "more ...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Dec 27, 2004
10:21 pm
2227
... No, I don't have any plans for an '_' operator, as my language is dynamically typed and only somewhat simulates pattern matching. Instead of using the...
Mike Austin
mike_ekim
Offline Send Email
Dec 27, 2004
10:31 pm
2228
... You mean like: translate = x [x > 0] -> x * 2 translate = x [x > 5] -> x * 3 I'm not sure. Maybe some simple internal reordering, for example the above...
Mike Austin
mike_ekim
Offline Send Email
Dec 27, 2004
11:55 pm
2229
I hope everyone had a good Holiday, and will have a great New Years Eve! Yes, it's me again, the syntax ultraist. :) I had a few more ideas the other day...
Mike Austin
mike_ekim
Offline Send Email
Dec 29, 2004
11:52 pm
2230
... Factor [1] has recently added predicate based OO using a generic function approach which you might find interesting. From the irc example: GENERIC:...
doublecnz
Offline Send Email
Dec 30, 2004
12:22 am
2231
... The use of = vs. -> in Haskell, including also 'case' (with ->) and let pattern = expression isa simple to remember: use = when the left hand side is the...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Dec 30, 2004
12:24 am
2232
I am a fan of learning different languages, but in regards to Factor, I have to say that I wouldn't be able to understand a single example without annotations....
Mike Austin
mike_ekim
Offline Send Email
Dec 30, 2004
2:07 am
2233
... The question I have had several times when you post these is whether you have a grammar that can parse your ideas without ambiguity....
James McCartney
james_e_mcca...
Offline Send Email
Dec 30, 2004
2:29 am
2234
... Well, I keep that in mind, but it's hard to find all of them without actually coding in the language. Now that I have solidified some ideas, I'll go back...
Mike Austin
mike_ekim
Offline Send Email
Dec 30, 2004
7:47 am
2235
After thinking and writing a bit of EBNF, I had an idea about using nested functions and dynamic scope for a parser. I'm sure this has already been done, but...
Mike Austin
mike_ekim
Offline Send Email
Dec 30, 2004
11:27 pm
2236
a = 10 (1..10).each { |a| a += 1 } print a Think it's 10? Nope. 20? No-sir-eey. It's 11, of course. [~] ruby -v ruby 1.8.1 (2003-12-25) [i386-cygwin] ...
Mike Austin
mike_ekim
Offline Send Email
Dec 31, 2004
12:08 am
2237
... SuperCollider has nearly the same syntax, but less astonishing result. a = 10; (1..10).do {|a| a = a + 1 }; a.postln; 10...
James McCartney
james_e_mcca...
Offline Send Email
Dec 31, 2004
5:15 am
2238
... I think such things have been done, but I can't name a language that does that in that way off the top of my head. (Just as a curiousity, I do know that in...
Max Battcher
world_maker
Offline Send Email
Dec 31, 2004
6:27 am
2239
... Hey James. I have an older Mac G4 I use for some porting (actually Steve's old old box), I I just tried SuperCollider. Took a few minutes to get used to,...
Mike Austin
mike_ekim
Offline Send Email
Dec 31, 2004
7:04 am
2240
don't select all. many examples are meant to be executed a bit at a time. just double click on the open paren. that will select the text between the parens....
James McCartney
james_e_mcca...
Offline Send Email
Dec 31, 2004
8:07 am
2241
I like SuperCollider with it's newer syntax. It's very Rubyish, but better :) Partial application is interesting. If I understand correctly, the following...
Mike Austin
mike_ekim
Offline Send Email
Dec 31, 2004
9:54 am
2242
... yes. a = (1..10).scramble; a.sort(_ > _); ... This is almost possible. You can set a globalKeyDown function on the Document class. ...
James McCartney
james_e_mcca...
Offline Send Email
Dec 31, 2004
11:26 am
2243
... I'll take a look for it. ... Hmm, how would you make sure all calls inside a keyword function parser found the right Expression? Say the expression is "do:...
Mike Austin
mike_ekim
Offline Send Email
Jan 1, 2005
5:34 am
2244
... My new language that I'm working on (Vlange) has keyword arguments only, with a more Smalltalk-style syntax. A function call takes this form: name...
Steve Folta
stevefolta
Offline Send Email
Jan 4, 2005
10:08 pm
2245
... In Smalltalk, keywords messages have the lowest precedence, so the first example would work as expected. Do you not want it to work this way? You'd have...
Mike Austin
mike_ekim
Offline Send Email
Jan 5, 2005
2:58 am
2246
... do you allow the keywords out of order? in SuperCollider you can pass any argument either positionally or as a keyword argument, and the keyword arguments...
James McCartney
james_e_mcca...
Offline Send Email
Jan 5, 2005
8:19 am
2247
... About a month. ... I also try to avoid "line noise". And, yes, avoiding ambiguity seems to be an intrinsic part of language design, although I think I'm...
Steve Folta
stevefolta
Offline Send Email
Jan 5, 2005
7:22 pm
2248
... I decided not to allow arguments in any order, at least not at first. But it should be easy to do; simply sort the arguments alphabetically. Mixing it...
Steve Folta
stevefolta
Offline Send Email
Jan 5, 2005
7:37 pm
2249
I use the method described here: Minimizing Row Displacement Dispatch Tables http://www.cs.ucsb.edu/labs/oocsb/papers/TRCS95-05.html...
James McCartney
james_e_mcca...
Offline Send Email
Jan 6, 2005
5:27 am
2250
That's a nifty way to do it. :) Do you have any stats on the table compression achieved for SC? Mike ... as a ... first....
Mike
mike_ekim
Offline Send Email
Jan 6, 2005
8:16 am
Messages 2221 - 2250 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