Search the web
Sign In
New User? Sign Up
concatenative · Discuss the concatenative variety of computer languages: Joy, Forth, Postscript
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2160 - 2189 of 4113   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2160
Hi all, I believe generic words represent an important extension of the concatenative paradigm. They have allowed a lot of code to be considerably simplified...
Slava Pestov
slava@...
Send Email
Jan 2, 2005
5:16 am
2161
hi, just a short update on an implementation for some ideas i discussed in a couple of emails on this list a while (maybe a year?) back. work continues slowly...
andrew cooke
aannddrreeww...
Offline Send Email
Jan 2, 2005
4:49 pm
2162
Hi everybody, Factor 0.71 adds a lot of new features: - Asynchronous I/O and socket support for the Windows port, by Mackenzie Straight. - Compiled code is now...
Slava Pestov
slava@...
Send Email
Jan 3, 2005
3:21 am
2163
Has anyone considered writing a concatenative plugin for Eclipse.org or NetBeans.org? I'd be interested in playing with one. Eclipse provides a C dev kit (CDT)...
Joe Bowbeer
joebowbeer
Offline Send Email
Jan 3, 2005
6:08 am
2164
Try the Factor plugin for jEdit. It supports code completion, cross-referencing, browsing, and an embedded interpreter....
Slava Pestov
slava@...
Send Email
Jan 3, 2005
6:49 am
2165
Hi, I've been lurking on the list a while, and was inspired by some posts late last year to try my hand at coding a Joy interpreter. The result is joie (Joy...
raybaquirin
Offline Send Email
Jan 5, 2005
3:04 am
2166
Hi everybody, The current x86 assembler in the Factor source code is very messy and not very extensible, and soon I'll need to support more opcodes as the code...
Slava Pestov
slava@...
Send Email
Jan 5, 2005
4:33 am
2167
Hello Ray, Well done. I had heard the name Euphoria, but never knew what it was. I must say that your JOy interpreter does look very nice, and certainly more...
phimvt@...
phimvt
Offline Send Email
Jan 10, 2005
7:38 am
2168
... I'm not, actually: joie was influenced by my Scheme implementation of Joy. Some day I need to get back to that and generate a C version, which will be...
John Cowan
johnwcowan
Online Now Send Email
Jan 10, 2005
9:20 pm
2169
Hi, Manfred, Thank you! I think my scanning code is quite ugly; it's good to know that it's at least readable. Version 2.5 of Euphoria comes with the source...
raybaquirin
Offline Send Email
Jan 13, 2005
1:53 am
2170
Hi, John, There's a Euphoria-to-C translator, and when joie is further along, I want to run it through the translator and see what I get. It would be another...
raybaquirin
Offline Send Email
Jan 13, 2005
3:33 am
2171
... Excellent! -- At the end of the Metatarsal Age, the dinosaurs John Cowan abruptly vanished. The theory that a single...
John Cowan
johnwcowan
Online Now Send Email
Jan 13, 2005
3:41 am
2172
On Thu, 13 Jan 2005, raybaquirin wrote: [..] ... Thanks for the reference to the Crenshaw book. I had not seen it before, but it looks quite nice. One or two...
phimvt@...
phimvt
Offline Send Email
Jan 17, 2005
6:04 am
2173
... Also look at the various Oberon compilers. When I implemented a sort of Joy in Oberon, I used a recursive descent parser, and it was easy. (That's the only...
Soren Renner
srenner@...
Send Email
Jan 18, 2005
2:32 pm
2174
Hi all, In case anybody hasn't seen it, the classic book "Thinking Forth" is now available online in PDF format: http://thinking-forth.sourceforge.net/ This...
Slava Pestov
slava@...
Send Email
Jan 23, 2005
6:54 pm
2175
Hi, I have implemented true user-defined types in Factor, called 'tuples'. You can read details at http://jroller.com/page/slava/. Tuples are integrated with...
Slava Pestov
slava@...
Send Email
Jan 30, 2005
8:28 pm
2176
Dear concatenators, Here is a problem that had me stumped for a while. It illustrates a recurring problem in concatenative languages: complex stack ...
phimvt@...
phimvt
Offline Send Email
Jan 31, 2005
7:36 am
2177
Here's what I ended up with. Without comments it's 5 lines not including the helper functions '+-' and 'over'. Granted the functions could have been better...
Ivan Tomac
e1_t
Offline Send Email
Jan 31, 2005
11:36 am
2178
As usual Yahoo decided to mess up my indenting. Anyway I forgot to negate b so the 'resolve' function should be: resolve == [swap 2.0 *] dip swap [neg swap +-]...
Ivan Tomac
e1_t
Offline Send Email
Jan 31, 2005
11:42 am
2179
I've uploaded a Vim syntax coloring script for Joy for all the Vim users out there :) Nothing fancy but at least it's better then monochrome text. Not sure ...
Ivan Tomac
e1_t
Offline Send Email
Jan 31, 2005
12:18 pm
2180
Here is the Factor solution. Its a bit messy, but it will find both real and complex roots. IN: quadratic USING: kernel math ; ... #! Finds both roots of the...
Slava Pestov
slava@...
Send Email
Jan 31, 2005
12:56 pm
2181
... <snip> ... <snip> ... Three solutions in forth (gforth, http://www.jwdt.com/~paysan/gforth.html). The first solution illustrates that the straightforward...
janvanlent
Offline Send Email
Jan 31, 2005
8:01 pm
2182
... i can do without assignments, and XY's pseudo-argument pattern-matching takes care of the stack-diddling: ; q1 { [a b c] b -: a c * 4 * b 2 ^ -. _sqrt + a...
sa@...
Send Email
Jan 31, 2005
8:31 pm
2183
... Fascinating exercise. The XY implementation essentially used a Lispish Lambda to temporarily bind parts of the stack to names. The Joy and Factor...
John Carter
refactored
Offline Send Email
Feb 4, 2005
6:01 am
2184
... or ... stack. ... *snip* ... This inspired me to implement the thread combinator and rewrite the implementation of the quadratic function in Joy: ...
Ivan Tomac
e1_t
Offline Send Email
Feb 5, 2005
8:59 am
2185
... Well, given that John (me) wasn't sure what he (I) was talking about anyway... I would call that a very good go. I'm pretty sure that any 2D or N-D...
John Carter
refactored
Offline Send Email
Feb 6, 2005
8:52 pm
2186
I've been watching this thread with interest, but I think you guys are taking the wrong approach. Instead of asking "how can I make a complex stack effect...
Slava Pestov
slava@...
Send Email
Feb 6, 2005
9:22 pm
2187
... The reason why I'm going through these contortions is to try somehow keep the nifty concatenative property that makes rewriting Joy such an, umm, Joy, and...
John Carter
refactored
Offline Send Email
Feb 6, 2005
10:03 pm
2188
From: "Slava Pestov" <slava@...> ... me too, but i've drawn a different conclusion. the computation, written in "math", is clear and easy to understand,...
stevan apter
sa@...
Send Email
Feb 6, 2005
10:19 pm
2189
... What about having objects on the stack, where an object contains several named fields, as in Factor? Slava...
Slava Pestov
slava@...
Send Email
Feb 6, 2005
10:19 pm
Messages 2160 - 2189 of 4113   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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