Search the web
Sign In
New User? Sign Up
cinci-art
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 938 - 968 of 2646   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
938
My daughter's National Honor Society induction is tonight, so I won't be able to join you for the OpenSpace meeting. See you in December, -Rob...
rab6687
Offline Send Email
Nov 1, 2005
10:08 pm
939
Enter your vote today! A new poll has been created for the xp-cincinnati group: Tuesday Jan 3rd, 2006: Attend xp-cinci meeting? TOPIC: Ruby On Rails o Yes o...
xp-cincinnati@yahoogr...
Send Email
Nov 2, 2005
2:28 pm
940
Enter your vote today! A new poll has been created for the xp-cincinnati group: Tuesday Dec 6th: Attend xp-cinci meeting? TOPIC: Extreme Programming (XP) 2.0 ...
xp-cincinnati@yahoogr...
Send Email
Nov 2, 2005
2:28 pm
941
xp-cinci, I added a page to the wiki on the history of xp-cinci. http://www.xpcincinnati.org/pages/history Please let me know if I forgot any events that you ...
Mark W. Windholtz
WindMark
Offline Send Email
Nov 2, 2005
4:05 pm
942
I am using the Ruby closure concept in java with code like this: ResourceLookup.each("/ReleaseNotes.txt", new ClosureInputStream() { public void...
Edward Sumerfield
esumerfd
Online Now Send Email
Nov 2, 2005
4:46 pm
943
Just a reminder that on Thursday November 10th at 9 am, my company, Rally Software, is offering a free 3 hour seminar in Cleveland, OH. covering best practices...
ristretto1
Offline Send Email
Nov 2, 2005
9:03 pm
944
... You are a brave man! [... code elided ...] ... OK. Just a bit of terminology before we continue. What makes a closure a closure is the fact that free...
Jim Weirich
jimweirich
Offline Send Email
Nov 3, 2005
3:18 am
945
... Ok, the mailing list software striped off the attachments. Here is the inline version: == JAVA VERSION ================================================= ...
Jim Weirich
jimweirich
Offline Send Email
Nov 3, 2005
3:40 am
946
Nice link for people wanting to learn about closures (language neutral ) http://www.intertwingly.net/blog/2005/04/13/Continuations-for-Curmudgeons Hope it is...
Michael Schneider
newfsoftware
Offline Send Email
Nov 3, 2005
4:12 pm
947
... s/Closures/Continuations/ ;) -- -- Jim Weirich jim@... http://onestepback.org ... "Beware of bugs in the above code; I have only...
Jim Weirich
jimweirich
Offline Send Email
Nov 3, 2005
8:41 pm
948
xp-cinci, November Meeting notes posted http://www.xpcincinnati.org -- Regards, -Mark railsstudio.com <http://railsstudio.com> [Non-text portions of this...
Mark Windholtz
WindMark
Offline Send Email
Nov 4, 2005
2:48 pm
949
xp-cinci, (pass it on) Xp-Cinci is having a membership drive. Please help spread the word about these two special presentations. We will hold two special...
Mark Windholtz
WindMark
Offline Send Email
Nov 4, 2005
4:57 pm
951
xp-cinci, We still have mostly the "regulars" signed-up for the Dec meeting. Please get those flyers passed out. Or forward this email below the line. Ideas....
Mark W. Windholtz
WindMark
Offline Send Email
Nov 8, 2005
3:46 pm
952
I know of a few people from here that are coming but I bet they haven't signed up for the poll. We need a way to capture approximate numbers. I have had 4...
Edward Sumerfield
esumerfd
Online Now Send Email
Nov 8, 2005
4:17 pm
953
I'm creating a new object with many methods that can take a variety of different objects as arguments. Of course, Ruby doesn't have polymorphic methods, so I'm...
Dave
tfhma
Offline Send Email
Nov 8, 2005
4:41 pm
954
Of course after re-reading my post, I knew I'd misstate something. Ruby certainly does have polymorphic methods - but it doesn't have method overriding, a la...
Dave
tfhma
Offline Send Email
Nov 8, 2005
11:26 pm
955
... http://www.xpcincinnati.org/pages/register People can also register using the email addresses on the above URL. They can adjust the number of people in the...
Mark Windholtz
WindMark
Offline Send Email
Nov 9, 2005
10:07 pm
956
... Questions like this are tough to answer in general. Here are the general rules I follow. (1) If I can write mumble in terms of a common protocol, I will...
Jim Weirich
jimweirich
Offline Send Email
Nov 9, 2005
11:29 pm
957
I'm curious to see the double dispatch version. MarkW has been trying to me explain how double dispatch works. I'm kind of slow, though, so seeing an example...
Chris Nelson
cnelson4eii
Offline Send Email
Nov 10, 2005
5:14 pm
958
... So suppose you want to calculate sales tax on items sold. Warning this is a simplification to explain double-dispatch. This is not the best implementation...
Mark Windholtz
WindMark
Offline Send Email
Nov 13, 2005
6:09 pm
959
I have been wrestling with implementing double dispatch in Python (similiar issues as ruby, no overloaded functions). I came across this article by David Metz ...
Michael Schneider
newfsoftware
Offline Send Email
Nov 13, 2005
7:55 pm
960
Interesting Follow-on article using generic methods. I am currently trying to grok generic functions in python Challenging, interesting read ...
Michael Schneider
newfsoftware
Offline Send Email
Nov 13, 2005
8:14 pm
961
... Why does "no overloading" present a problem? You can just as easily express the type info in the method name (see the previous example). I've seen lots of...
Mark Windholtz
WindMark
Offline Send Email
Nov 13, 2005
9:12 pm
962
... Personal preference, I like state.calc_tax(self) Since this is my preference, I undertook a journey on how I could write code closer to my design...
Michael Schneider
newfsoftware
Offline Send Email
Nov 14, 2005
2:48 am
963
... I enhanced FlexMock a week or two ago to handle predicative dispatching. == START FLEXMOCK EXAMPLE ======================================= #!/usr/bin/env...
Jim Weirich
jimweirich
Offline Send Email
Nov 14, 2005
2:56 am
964
Thanks Jim, That is what I was looking for, Mike ... -- The greatest performance improvement occurs on the transition of from the non-working state to the...
Michael Schneider
newfsoftware
Offline Send Email
Nov 14, 2005
3:00 am
965
Chris, Here is an interesting walk through the visitor pattern with dynamic language http://peak.telecommunity.com/DevCenter/VisitorRevisited I don't think...
Michael Schneider
newfsoftware
Offline Send Email
Nov 14, 2005
4:26 am
966
... Double dispatch is really overkill for this situation we've been discussing. That's one of the reasons I didn't bother with it in my response. But here's a...
Jim Weirich
jimweirich
Offline Send Email
Nov 14, 2005
4:17 pm
967
Agile Programming must be mainstream now. http://www.dilbert.com/comics/dilbert/archive/dilbert-20051116.html [Non-text portions of this message have been...
ericbardes
Offline Send Email
Nov 16, 2005
2:53 pm
968
You may remember from a few days ago that I am playing with closures in java, and corrupting the use of the term a little I am told. I have come to realize two...
Edward Sumerfield
esumerfd
Online Now Send Email
Nov 17, 2005
2:51 am
Messages 938 - 968 of 2646   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