Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Some comments on new 1.9 features
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 40 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Trans  
View profile  
 More options Nov 3 2005, 10:23 pm
Newsgroups: comp.lang.ruby
From: "Trans" <transf...@gmail.com>
Date: 3 Nov 2005 19:23:42 -0800
Local: Thurs, Nov 3 2005 10:23 pm
Subject: Some comments on new 1.9 features
Just looking at http://eigenclass.org/hiki.rb?Changes+in+Ruby+1.9.
Nicely done!

Comment on a couple things

1) ;; instead of end

  It is possible to use ;; instead of end.

  (1..100).inject do |s,x|
    s+x
  ;;            # => 5050

  class Foo
    def foo; "foo" end
  ;;
  Foo.new.foo           # => "foo"

What's the rationle here? I'd rather have a punctutation mark for 'do'
(yes, ':' again ;-p)

  (1..100).inject: |s,x|
    s+x
  end           # => 5050

Of course could have both:

  (1..100).inject: |s,x|
    s+x
  ;;            # => 5050

2) Block local variables

  Used as follows:

  # {normal args; local variables}
  d = 2
  a = lambda{|;d| d = 1}
  a.call()
  d             # => 2

  When a variable is shadowed, ruby1.9 issues a warning:

  -:2: warning: shadowing outer local variable - d

Come on. This stinkos. At some point I think you have to give it up and
allow a declaration.

3) Calling Procs without #call/#[]

  You can now do:

  a = lambda{|*b| b}
  (a)(1,2)              # => [1, 2]

  Note that you need the parentheses:

  a = lambda{|*b| b}
  a(1,2)      # => ERROR: (eval):2: compile error...

I know this has been deprecated, but what causes this not to work
exactly?

4) send doesn't call private methods anymore

  ruby-talk:153672 It is still possible to call them with the newly
introduced #funcall method.

  class Foo; private; def foo; end; end
  Foo.new.funcall(:foo)         # => nil
  Foo.new.send(:foo)            # => ERROR: private method `foo' called for
#<Foo:0xb7e0e540>

No #funcall please, I already have enough methods to make exceptions
for in BlankSlate/BasicObject. Use #instance_send instead. Thank you.

5) Class of singleton classes

  singleton class inherits Class rather than its object's class

  class X;end; x=X.new; class << x; self < X; end              # => true

  vs. (1.8)

  class X;end; x=X.new; class << x; self < X; end              # => nil

Is this example backwards? I'm confused. Please confirm.

6) Class variables are not inherited

  ruby-dev:23808

 class A; @@a = 1; end; class B < A; @@a end # => ERROR: (eval):1:
uninitialized ...

  vs.

 class A; @@a = 1; end; class B < A; @@a end         # => 1

Love it! Thank you!

T.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
nobuyoshi nakada  
View profile  
 More options Nov 4 2005, 5:33 am
Newsgroups: comp.lang.ruby
From: nobuyoshi nakada <nobuyoshi.nak...@ge.com>
Date: Fri, 4 Nov 2005 19:33:21 +0900
Local: Fri, Nov 4 2005 5:33 am
Subject: Re: Some comments on new 1.9 features
Hi,

At Fri, 4 Nov 2005 12:27:09 +0900,
Trans wrote in [ruby-talk:164082]:

> What's the rationle here? I'd rather have a punctutation mark for 'do'
> (yes, ':' again ;-p)

Why do you all want colon to overwork so much? ;)

--
Nobu Nakada


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David A. Black  
View profile  
 More options Nov 4 2005, 6:50 am
Newsgroups: comp.lang.ruby
From: "David A. Black" <dbl...@wobblini.net>
Date: Fri, 4 Nov 2005 20:50:34 +0900
Local: Fri, Nov 4 2005 6:50 am
Subject: Re: Some comments on new 1.9 features
Hi --

On Fri, 4 Nov 2005, nobuyoshi nakada wrote:
> Hi,

> At Fri, 4 Nov 2005 12:27:09 +0900,
> Trans wrote in [ruby-talk:164082]:
>> What's the rationle here? I'd rather have a punctutation mark for 'do'
>> (yes, ':' again ;-p)

> Why do you all want colon to overwork so much? ;)

Not all of us -- I'm still in the "conservative about new punctuation"
camp :-)

David

--
David A. Black
dbl...@wobblini.net


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brian Schröder  
View profile  
 More options Nov 4 2005, 8:43 am
Newsgroups: comp.lang.ruby
From: Brian Schröder <ruby.br...@gmail.com>
Date: Fri, 4 Nov 2005 22:43:11 +0900
Local: Fri, Nov 4 2005 8:43 am
Subject: Re: Some comments on new 1.9 features
On 04/11/05, Trans <transf...@gmail.com> wrote:

Please don't add ;; thats

1) Sheer uglyness
2) Parses as a noop operation.

Brian

--
http://ruby.brian-schroeder.de/

Stringed instrument chords: http://chordlist.brian-schroeder.de/


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Burt  
View profile  
 More options Nov 4 2005, 8:47 am
Newsgroups: comp.lang.ruby
From: "Dave Burt" <d...@burt.id.au>
Date: Fri, 04 Nov 2005 13:47:11 GMT
Local: Fri, Nov 4 2005 8:47 am
Subject: Re: Some comments on new 1.9 features
Hi.

Aren't you the "conservative about most things" camp, David?

Do we all not like ";;"?

Cheers,
Dave


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David A. Black  
View profile  
 More options Nov 4 2005, 9:09 am
Newsgroups: comp.lang.ruby
From: "David A. Black" <dbl...@wobblini.net>
Date: Fri, 4 Nov 2005 23:09:39 +0900
Local: Fri, Nov 4 2005 9:09 am
Subject: Re: Some comments on new 1.9 features
Hi --

In Ruby development, or in life? :-)

> Do we all not like ";;"?

As a pointless no-op, it's great :-)  Is it really being considered as
a synonym for 'end'?  I don't understand that at all.

David

--
David A. Black
dbl...@wobblini.net


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Keith Fahlgren  
View profile  
 More options Nov 4 2005, 9:37 am
Newsgroups: comp.lang.ruby
From: Keith Fahlgren <ke...@oreilly.com>
Date: Fri, 4 Nov 2005 23:37:16 +0900
Local: Fri, Nov 4 2005 9:37 am
Subject: Re: Some comments on new 1.9 features
On Friday 04 November 2005 8:43 am, Brian Schröder wrote:

> Please don't add ;; thats

> 1) Sheer uglyness
> 2) Parses as a noop operation.

3) Going to confuse all the people coming from Lisp...
4) Really ugly

Keith


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
ts  
View profile  
 More options Nov 4 2005, 9:43 am
Newsgroups: comp.lang.ruby
From: ts <dec...@moulon.inra.fr>
Date: Fri, 4 Nov 2005 23:43:18 +0900
Local: Fri, Nov 4 2005 9:43 am
Subject: Re: Some comments on new 1.9 features

>>>>> "K" == Keith Fahlgren <ke...@oreilly.com> writes:

K> 3) Going to confuse all the people coming from Lisp...

 perhaps the persons coming from Caml will be happy ...

Guy Decoux


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David A. Black  
View profile  
 More options Nov 4 2005, 9:48 am
Newsgroups: comp.lang.ruby
From: "David A. Black" <dbl...@wobblini.net>
Date: Fri, 4 Nov 2005 23:48:26 +0900
Local: Fri, Nov 4 2005 9:48 am
Subject: Re: Some comments on new 1.9 features

[ multipart_mixed_part < 1K ]
  This message is in MIME format.  The first part should be readable text,
  while the remaining parts are likely unreadable without MIME-aware tools.

Hi --

On Fri, 4 Nov 2005, Keith Fahlgren wrote:
> On Friday 04 November 2005 8:43 am, Brian Schröder wrote:
>> Please don't add ;; thats

>> 1) Sheer uglyness
>> 2) Parses as a noop operation.

> 3) Going to confuse all the people coming from Lisp...

And, closer to home, all the people coming from Ruby :-)

David

--
David A. Black
dbl...@wobblini.net


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ara.T.Howard  
View profile  
 More options Nov 4 2005, 10:26 am
Newsgroups: comp.lang.ruby
From: "Ara.T.Howard" <Ara.T.How...@noaa.gov>
Date: Sat, 5 Nov 2005 00:26:26 +0900
Local: Fri, Nov 4 2005 10:26 am
Subject: Re: Some comments on new 1.9 features

On Fri, 4 Nov 2005, ts wrote:
>>>>>> "K" == Keith Fahlgren <ke...@oreilly.com> writes:

> K> 3) Going to confuse all the people coming from Lisp...

> perhaps the persons coming from Caml will be happy ...

an people who don't like to move their fingers off of the

   a s d f   j k l ;

;-)

-a
--
=========================================================================== ====
| email :: ara [dot] t [dot] howard [at] noaa [dot] gov
| phone :: 303.497.6469
| anything that contradicts experience and logic should be abandoned.
| -- h.h. the 14th dalai lama
=========================================================================== ====


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
men...@rydia.net  
View profile  
 More options Nov 4 2005, 10:52 am
Newsgroups: comp.lang.ruby
From: men...@rydia.net
Date: Sat, 5 Nov 2005 00:52:59 +0900
Local: Fri, Nov 4 2005 10:52 am
Subject: Re: Some comments on new 1.9 features
Quoting Brian Schröder <ruby.br...@gmail.com>:

> Please don't add ;; thats

> 1) Sheer uglyness
> 2) Parses as a noop operation.

3) Gives me OCaml flashbacks.

(nobody wants that)

-mental


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
men...@rydia.net  
View profile  
 More options Nov 4 2005, 10:57 am
Newsgroups: comp.lang.ruby
From: men...@rydia.net
Date: Sat, 5 Nov 2005 00:57:10 +0900
Local: Fri, Nov 4 2005 10:57 am
Subject: Re: Some comments on new 1.9 features
Quoting ts <dec...@moulon.inra.fr>:

> >>>>> "K" == Keith Fahlgren <ke...@oreilly.com> writes:

> K> 3) Going to confuse all the people coming from Lisp...

>  perhaps the persons coming from Caml will be happy ...

Or confused, because it is similar but different to what it means in
Caml.

-mental


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nikolai Weibull  
View profile  
 More options Nov 4 2005, 11:53 am
Newsgroups: comp.lang.ruby
From: Nikolai Weibull <mailing-lists.ruby-t...@rawuncut.elitemail.org>
Date: Sat, 5 Nov 2005 01:53:17 +0900
Local: Fri, Nov 4 2005 11:53 am
Subject: Re: Some comments on new 1.9 features

Trans wrote:
>   class Foo
>     def foo; "foo" end
>   ;;
>   Foo.new.foo              # => "foo"

The funny thing about this example is that the whole point of having
";;" be "end" is that you could write

  class Foo
    def foo; "foo" ;;
  end

right?  Even so, I really don’t see the point, beyond being able to
write the following:

  if something
    if something_else
       ⋮
    else
       ⋮
    ;;;;

  other_statement

Sort of semi-pythonish or something.

        nikolai

--
Nikolai Weibull: now available free of charge at http://bitwi.se/!
Born in Chicago, IL USA; currently residing in Gothenburg, Sweden.
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Edward Gray II  
View profile  
 More options Nov 4 2005, 11:57 am
Newsgroups: comp.lang.ruby
From: James Edward Gray II <ja...@grayproductions.net>
Date: Sat, 5 Nov 2005 01:57:28 +0900
Local: Fri, Nov 4 2005 11:57 am
Subject: Re: Some comments on new 1.9 features
On Nov 4, 2005, at 10:53 AM, Nikolai Weibull wrote:

> The funny thing about this example is that the whole point of having
> ";;" be "end" is that you could write

>   class Foo
>     def foo; "foo" ;;
>   end

> right?

To save one character?

class Foo
   def foo; "foo" end
end

???  That parses today, right?

James Edward Gray II


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dale Martenson  
View profile  
 More options Nov 4 2005, 1:44 pm
Newsgroups: comp.lang.ruby
From: "Dale Martenson" <dale.marten...@gmail.com>
Date: 4 Nov 2005 10:44:22 -0800
Local: Fri, Nov 4 2005 1:44 pm
Subject: Re: Some comments on new 1.9 features
Block local variables:

  # {normal args; local variables}
  d = 2
  a = lambda{|;d| d = 1}
  a.call()
  d             # => 2

I think embedding language specific items in comments is silly since
you then have no mechanism to comment them out. Create a directive for
these extensions so that they behave as other parts of the language and
abide by the standard placement rules. Such as, things that are
commented out are not executed and thus ignored.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
men...@rydia.net  
View profile  
 More options Nov 4 2005, 1:56 pm
Newsgroups: comp.lang.ruby
From: men...@rydia.net
Date: Sat, 5 Nov 2005 03:56:44 +0900
Local: Fri, Nov 4 2005 1:56 pm
Subject: Re: Some comments on new 1.9 features
Quoting Domenico De Felice <defelicedomen...@gmail.com>:

>    class Foo:
>       def foo: "foo"

> It sounds more expressive than do .. ;;

Serious question: why not permit multi-line bodies this way, by
lining up indention?

Not like Python, but more like Haskell, where using "layout" is
merely optional.

-mental


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Trans  
View profile  
 More options Nov 4 2005, 2:10 pm
Newsgroups: comp.lang.ruby
From: "Trans" <transf...@gmail.com>
Date: 4 Nov 2005 11:10:33 -0800
Local: Fri, Nov 4 2005 2:10 pm
Subject: Re: Some comments on new 1.9 features

Dale Martenson wrote:
> Block local variables:

>   # {normal args; local variables}
>   d = 2
>   a = lambda{|;d| d = 1}
>   a.call()
>   d             # => 2

> I think embedding language specific items in comments is silly since
> you then have no mechanism to comment them out. Create a directive for
> these extensions so that they behave as other parts of the language and
> abide by the standard placement rules. Such as, things that are
> commented out are not executed and thus ignored.

The comment was simply that, to indicate what the semi-colon is doing.
It has no function. Nonetheless to me its a good indication of a better
way:

   d = 2
   a = lambda{|d| local d = 1}
   a.call()
   d             # => 2

Self commenting.

T.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Trans  
View profile  
 More options Nov 4 2005, 2:19 pm
Newsgroups: comp.lang.ruby
From: "Trans" <transf...@gmail.com>
Date: 4 Nov 2005 11:19:12 -0800
Local: Fri, Nov 4 2005 2:19 pm
Subject: Re: Some comments on new 1.9 features

Trans wrote:
> The comment was simply that, to indicate what the semi-colon is doing.
> It has no function. Nonetheless to me its a good indication of a better
> way:

>    d = 2
>    a = lambda{|d| local d = 1}
>    a.call()
>    d             # => 2

> Self commenting.

Sorry, that should be

    d = 2
    a = lambda{|d| d = 1}
    a.call()
    d             # => 2

Otherwise:

    d = 2
    a = lambda{|d| share d = 1}
    a.call()
    d             # => 1

T.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nikolai Weibull  
View profile  
 More options Nov 4 2005, 2:19 pm
Newsgroups: comp.lang.ruby
From: Nikolai Weibull <mailing-lists.ruby-t...@rawuncut.elitemail.org>
Date: Sat, 5 Nov 2005 04:19:25 +0900
Local: Fri, Nov 4 2005 2:19 pm
Subject: Re: Some comments on new 1.9 features
James Edward Gray II wrote:

> On Nov 4, 2005, at 10:53 AM, Nikolai Weibull wrote:
> >  class Foo
> >    def foo; "foo" ;;
> >  end
> To save one character?

> class Foo
>   def foo; "foo" end
> end

Hey!  I didn’t say that it was great.  I just showed what I thought was
the rationale behind having ;; in Ruby.  Don't blame me for its
existance.  Anyway, it’s not about saving one character.  It’s about
having the ; have a better counterpart than end in this particular
instance.  I didn’t say that it’s worth having just for this, though.

        nikolai

--
Nikolai Weibull: now available free of charge at http://bitwi.se/!
Born in Chicago, IL USA; currently residing in Gothenburg, Sweden.
main(){printf(&linux["\021%six\012\0"],(linux)["have"]+"fun"-97);}


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Trans  
View profile  
 More options Nov 4 2005, 2:36 pm
Newsgroups: comp.lang.ruby
From: "Trans" <transf...@gmail.com>
Date: 4 Nov 2005 11:36:10 -0800
Local: Fri, Nov 4 2005 2:36 pm
Subject: Re: Some comments on new 1.9 features

men...@rydia.net wrote:
> Quoting Domenico De Felice <defelicedomen...@gmail.com>:

> >    class Foo:
> >       def foo: "foo"

> > It sounds more expressive than do .. ;;

> Serious question: why not permit multi-line bodies this way, by
> lining up indention?

> Not like Python, but more like Haskell, where using "layout" is
> merely optional.

That's interesting. It's quite clean. Which is better because....

I fear the Perly coming-on.

T.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Edward Gray II  
View profile  
 More options Nov 4 2005, 3:12 pm
Newsgroups: comp.lang.ruby
From: James Edward Gray II <ja...@grayproductions.net>
Date: Sat, 5 Nov 2005 05:12:18 +0900
Local: Fri, Nov 4 2005 3:12 pm
Subject: Re: Some comments on new 1.9 features
On Nov 4, 2005, at 1:19 PM, Nikolai Weibull wrote:

I didn't mean to blame anyone.  I was just trying to understand.  :)

> Anyway, it’s not about saving one character.  It’s about
> having the ; have a better counterpart than end in this particular
> instance.

For a fitting counterpart, I like

class Foo
   def foo() "foo" end
end

James Edward Gray II


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dale Martenson  
View profile  
 More options Nov 4 2005, 3:37 pm
Newsgroups: comp.lang.ruby
From: "Dale Martenson" <dale.marten...@gmail.com>
Date: 4 Nov 2005 12:37:37 -0800
Local: Fri, Nov 4 2005 3:37 pm
Subject: Re: Some comments on new 1.9 features
Sorry for the misunderstanding.

I like the "local" and "share" directives. That would make it clear.

Using too many special characters clutter the code and worsen
readability.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
men...@rydia.net  
View profile  
 More options Nov 4 2005, 4:49 pm
Newsgroups: comp.lang.ruby
From: men...@rydia.net
Date: Sat, 5 Nov 2005 06:49:35 +0900
Local: Fri, Nov 4 2005 4:49 pm
Subject: Re: Some comments on new 1.9 features
Quoting Domenico De Felice <defelicedomen...@gmail.com>:

> > Using too many special characters clutter the code and worsen
> > readability.

> Yes, something like

> { |a, b|
>    local a
>    share b
>    a = 1
>    b = 2
> }

> would look less weird. However it has the problem that in bigger
> blocks the programmer would need to read back the top of the block
> when he 'forgets' which attributes are local and which shared.

I don't know ... honestly, why can't we just make the block
parameters always block-local?  Having to make closure explicit
with share doesn't strike me as very helpful.

There's also a certain "oh, by the way, that variable mentioned
earlier is actually closed over from the enclosing scope" factor.
Not great for comprehensibility.

-mental


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Trans  
View profile  
 More options Nov 4 2005, 4:52 pm
Newsgroups: comp.lang.ruby
From: "Trans" <transf...@gmail.com>
Date: 4 Nov 2005 13:52:20 -0800
Local: Fri, Nov 4 2005 4:52 pm
Subject: Re: Some comments on new 1.9 features

They would'nt *have* to be just at the top. You could even do it
conditionally, although usage is subtle:

  x = false

  a = 1
  b = 2
  lam1 = lambda { |a, b|
     a = 2
     b = 4
     if x
       share b
     end
  }
  lam2 = lambda { b + 1}

  lam1.call
  lam2.call #=> 3

  x = true

  lam1.call
  lam2.call #=> 5

Closure Magic, yes?

T.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
men...@rydia.net  
View profile  
 More options Nov 4 2005, 5:51 pm
Newsgroups: comp.lang.ruby
From: men...@rydia.net
Date: Sat, 5 Nov 2005 07:51:46 +0900
Local: Fri, Nov 4 2005 5:51 pm
Subject: Re: Some comments on new 1.9 features
Quoting Domenico De Felice <defelicedomen...@gmail.com>:

Has anyone considered the semantics of share/local and how they
would have to be implemented?

Sure, they look cool, but they'd be a living nightmare in reality...

-mental


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 40   Newer >
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google