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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1860 - 1889 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1860
... From: "Daniel Ehrenberg" <littledanehren@...> To: <langsmiths@yahoogroups.com> Sent: Monday, May 31, 2004 4:28 PM Subject: Re: [langsmiths] Predicate...
Mike Austin
mike_ekim
Offline Send Email
Jun 1, 2004
7:11 am
1861
... I must have missed something. Where are your performance numbers and for what benchmark on what hardware? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 1, 2004
7:22 am
1862
Oh yes .. performance analysis are ALWAYS surprising. Good profiler is eeded when performance is an issue. You langsmiths, think about some profiler support in...
Antonin 'Roger' Holik
antoninholik
Offline Send Email
Jun 1, 2004
9:38 am
1863
... String concatenation should not be a problem: I work on lists of strings inside a line, and only concatenate them at the end. A list of strings is...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Jun 1, 2004
12:40 pm
1864
... I'm using global C variables as "virtual registers". I tried putting some of them in physical registers (using the appropriate GCC extension), and was...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Jun 1, 2004
12:56 pm
1865
W li¶cie z wto, 01-06-2004, godz. 14:39 +0200, Marcin 'Qrczak' Kowalczyk ... Oops, I must have compared wrong data. I don't know where the 19.5s came from,...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Jun 1, 2004
1:43 pm
1866
... As I said, the idea was not to get some sort of absolute performance, but instead things exactly like what Marcin posted. I.e. "I did this and it changed...
Kyle Hayes
kyle@...
Send Email
Jun 1, 2004
3:37 pm
1867
W li¶cie z wto, 01-06-2004, godz. 15:43 +0200, Marcin 'Qrczak' Kowalczyk ... And what I settled at: the old heap size is calculated as 4MB+alive*2, not...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Jun 1, 2004
4:25 pm
1868
... There is no other reference to walkingOrRunning because it never needs to be changed. If I saw Inertia, or just about any programming language, without any...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 1, 2004
9:00 pm
1869
W li¶cie z wto, 01-06-2004, godz. 18:25 +0200, Marcin 'Qrczak' Kowalczyk ... Sorry about talking about the same thing over and over, but I finally know how it...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Jun 1, 2004
11:35 pm
1870
I came across the following site which has lots of useful links for Language Smiths: http://www.ai.mit.edu/projects/dynlangs/oodl-course/spring01/ Of...
kgrgreer
Offline Send Email
Jun 2, 2004
2:04 pm
1871
I was thinking of the idea of writing a c interpreter... there would be both good and bad points to this: c is a bit low level for use as a scripting language;...
cr88192
Offline Send Email
Jun 3, 2004
1:54 am
1872
... tcc [1] can be used as a dynamic scripting language. It compiles links and executes 'in-memory'. x86 only though. [1] http://fabrice.bellard.free.fr/tcc/ ...
Chris Double
chris.double@...
Send Email
Jun 3, 2004
2:10 am
1873
... links ... interesting. in my case I had been imagining a bytecode interpreter, but whatever... a bytecode interpreter has the plus of being a lot more...
cr88192
Offline Send Email
Jun 3, 2004
3:02 am
1874
Hi all, I've recently introduced a new feature in the spec of my language and I'm thinking of the implications... The feature can be thought of a generalized...
David Jobet
cagouille_ra...
Offline Send Email
Jun 3, 2004
5:43 pm
1875
What does this do that multimethods and public instance variables don't already do? I'm not saying this does nothing, I probably just don't really understand...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 3, 2004
6:38 pm
1876
Hem, here's my vocabulary : - postfix : in a postfix operator like in Eiffel : the instance invoked is not the lhs one but the rhs one : Complex c; int i; i...
David Jobet
cagouille_ra...
Offline Send Email
Jun 3, 2004
7:45 pm
1877
... Oh, I thought you meant postfix as in Forth. Yes, it would be very useful to generalize it to everything, not just infix operators, but you can do this...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 3, 2004
8:29 pm
1878
... How do you dispatch that at compil time ? (without heavy analysis technic) Object o = createSomeObject(); // static type is known (Object), but real ...
David Jobet
cagouille_ra...
Offline Send Email
Jun 3, 2004
9:27 pm
1879
What about http://root.cern.ch/root/Cint.html...
Steven Shaw
steshaw
Offline Send Email
Jun 3, 2004
9:39 pm
1880
... Look at the extension for Haskell for multiparameter typeclasses. These are not standard, but there is an extension for GHC and Hugs to support these. ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 3, 2004
10:00 pm
1881
... yes, cool. I may look at this more later......
cr88192
Offline Send Email
Jun 4, 2004
2:42 am
1882
OK, so just replace Object by your favorite parent class that has multiple subtypes ... :-) (if you don't want Object) Another thing : in my language, there is...
David Jobet
cagouille_ra...
Offline Send Email
Jun 4, 2004
7:59 am
1883
... What did I say implying that you'd want to change Object? ... That's my least favorite "feature" of the Java/C# typesystem. Is there any reason to do this...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 4, 2004
4:21 pm
1884
... Nothing, you just said "Most modern static type systems don't have things like Object or void *; those are inherently unsafe." I just wanted to point out...
David Jobet
cagouille_ra...
Offline Send Email
Jun 7, 2004
8:25 am
1885
... I was talking about any sort of common parent, not necessarily Object. You're essentially creating a dynamic type system when you do this and then let ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 7, 2004
7:51 pm
1886
... I don't see what are the problems with dynamic type system (late binding with single or multiple dispatch). They are commonly used today (and yes, that's...
David Jobet
cagouille_ra...
Offline Send Email
Jun 9, 2004
12:06 pm
1887
... I don't really see any problem with a dynamic type system either, but if you're making a dynamic type system, make a real dynamic type system without...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 9, 2004
10:15 pm
1888
... Do you mean prototype based ? I really don't like prototype based language : when I'm using a class, I like to be able to know the things I can do with it....
David Jobet
cagouille_ra...
Offline Send Email
Jun 9, 2004
10:50 pm
1889
... Well, it could be prototype based, but that's irrelavent. It could also be like Python or Ruby, which are class-based but completely dynamically typed. ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 10, 2004
12:04 am
Messages 1860 - 1889 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