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...
Show off your group to the world. Share a photo of your group with us.

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 413 - 442 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
413
What are peoples thoughts on the different ways of coding a VM? I've been reading, and it seems register is the most efficient, but a tree style can be more...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 5, 2003
7:07 am
414
"the majority of objects in a running Java program have their type checked at run time. So with Java you're getting the worst of both worlds: runtime type...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 7, 2003
6:16 pm
415
Not that I am a Java fan, but... I found this... "Generics -- also commonly known as parameterized types -- have been used in other computing languages for...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 8, 2003
7:18 am
416
Interesting Sun internal memo on Java: http://www.internalmemos.com/memos/memodetails.php?memo_id=1321 "Within Sun, Java is not viewed as a satisfactory...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 9, 2003
11:56 pm
417
... Cheers, Steve OSX freeware and shareware: http://www.dekorte.com/downloads.html...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 14, 2003
12:06 pm
418
http://www.gamespy.com/legacy/articles/devweek_b.shtm Not ground breaking, but an interesting read. About 'virtual classes', fortunately this is easy with...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 16, 2003
8:10 pm
419
Tim Sweeney posts to the types list sometimes. http://www.cis.upenn.edu/~bcpierce/types/archives/current/ For those interested, it might provide some other...
Steven Shaw
steshaw
Offline Send Email
Feb 18, 2003
1:12 pm
420
I've been digging deep into the topics in the subject, and now my brain is fried. :) I've implemented cooperative threading (coroutines?) in a little virtual...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 19, 2003
5:49 am
421
On Tuesday, February 18, 2003, at 09:49 PM, Mike <mike_ekim@...> ... Without support for saving the C stack, it seems to me that it's going to always get...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 19, 2003
7:39 am
422
I just found a simple, portable C++ coroutine library. There are two versions, one which copies the stack to a buffer (instead of moving stack pointers), and...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 19, 2003
10:20 pm
423
On Wednesday, February 19, 2003, at 02:20 PM, Mike ... Mike, How does the stack version deal with properly cleaning up objects on the stack when exiting an...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 19, 2003
10:26 pm
424
On Wed, 19 Feb 2003 22:20:38 -0000, "Mike <mike_ekim@...>" ... That's a good paper, thanks for pointing to it. Lots of examples on using coroutines. It'd...
Chris Double
chris.double@...
Send Email
Feb 19, 2003
10:41 pm
425
Here's another interesting library - it computes the workings of jmp_buf at runtime - how the stack grows, what fields are what. It doesn't work in my cygwin,...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 20, 2003
12:10 am
426
On Wednesday, February 19, 2003, at 04:10 PM, Mike ... This does look interesting! Cheers, Steve OSX freeware and shareware:...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 20, 2003
1:55 am
427
The license would keep someone from using this in an open source project. ... -- ... SuperCollider - a real time synthesis programming language for the ...
James McCartney
james_e_mcca...
Offline Send Email
Feb 20, 2003
10:47 pm
428
What if you write your own library based on ideas from the code? Is this a gray area for Inellectual Property? Mike...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 21, 2003
6:57 am
429
I just ran into an interesting use of continuations: stateful web applications: "Since a continuation is a first-class value in Scheme and can be invoked...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 22, 2003
8:33 pm
430
Thinking about coroutines, threads etc. it came to me that one should not have to synchronize manually if there is a context available, i.e. and object. For...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 22, 2003
9:22 pm
431
On Sat, 22 Feb 2003 20:33:53 -0000, "Mike <mike_ekim@...>" ... This is how Seaside [1] (a Squeak Web application framework) works as well. Using...
Chris Double
chris.double@...
Send Email
Feb 22, 2003
11:37 pm
432
A few interesting points/URLS... I've seen Squeak before, and was intrigued. -Bo...
Bo Adler
dear_thumper
Offline Send Email
Feb 23, 2003
9:53 pm
433
... 1. Not all methods should be synchronized. Perhaps a method takes long time to run and it doesn't modify the receiver except a short time at the beginning...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Feb 23, 2003
10:48 pm
434
What I mean to say is - it is valuable to make all functions synchronized, then provide a keyword 'reentrant' or something along those lines. Once you start...
Mike <mike_ekim@...>
mike_ekim
Offline Send Email
Feb 24, 2003
7:07 am
435
... I would strongly encourage today's language designers to consider moving away from the early 1970's model of shared memory and variations of Hoare's...
Logan, Patrick D
patrickdlogan
Offline Send Email
Feb 24, 2003
6:39 pm
436
... Hey Logan, CSP sounds a bit like actors. Are you familiar with actors? If so, how would you say they compare? Cheers, Steve OSX freeware and shareware:...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 24, 2003
11:38 pm
437
... The Hewitt/Agha family of Actor languages are a kind of CSP. They go beyond the message passing style for IPC by defining a language and style for...
Logan, Patrick D
patrickdlogan
Offline Send Email
Feb 25, 2003
4:56 pm
438
... So in the context of a pure OO language, do you mean that things are set up so no two light weight threads can touch the same object? Cheers, Steve OSX...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 25, 2003
8:19 pm
439
... I think that is a choice worth making. It seems counter-intuituve at first. The advantages are many: simplicity, flexibility, scalability, "loose...
patrickdlogan <patric...
patrickdlogan
Offline Send Email
Feb 25, 2003
9:58 pm
440
A different approach to the problem being solved here is that taken by the Obliq language. ...
James McCartney
james_e_mcca...
Offline Send Email
Feb 26, 2003
2:20 am
441
... This is the usual locks and monitors approach, right? What problem are we trying to solve, anyways? It might help to state it....
Steven Shaw
steshaw
Offline Send Email
Feb 26, 2003
2:16 pm
442
... Yes, Obliq (from reading just the introduction to the referenced paper) seems to take the approach I just wrote about where "remote objects simulate shared...
Logan, Patrick D
patrickdlogan
Offline Send Email
Feb 26, 2003
5:32 pm
Messages 413 - 442 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