Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #16047 > unrolled thread

Using getSelectedValuesList() instead of the deprecated getSelectedValues()

Started byclusardi2k@aol.com
First post2012-07-16 12:53 -0700
Last post2012-07-17 09:30 -0700
Articles 20 on this page of 26 — 13 participants

Back to article view | Back to comp.lang.java.programmer


Contents

  Using getSelectedValuesList() instead of the deprecated getSelectedValues() clusardi2k@aol.com - 2012-07-16 12:53 -0700
    Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Jeff Higgins <jeff@invalid.invalid> - 2012-07-16 16:13 -0400
      Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2012-07-16 14:55 -0700
        Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Jeff Higgins <jeff@invalid.invalid> - 2012-07-16 19:47 -0400
          Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() markspace <-@.> - 2012-07-16 18:05 -0700
          Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Lew <lewbloch@gmail.com> - 2012-07-16 19:46 -0700
            Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Jeff Higgins <jeff@invalid.invalid> - 2012-07-17 07:38 -0400
              Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Steven Simpson <ss@domain.invalid> - 2012-07-17 13:45 +0100
                Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Lars Enderin <lars.enderin@telia.com> - 2012-07-17 19:46 +0200
                  Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2012-07-17 20:47 +0200
                    Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2012-07-17 12:26 -0700
                      Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Lew <lewbloch@gmail.com> - 2012-07-17 14:16 -0700
                      Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Joerg Meier <joergmmeier@arcor.de> - 2012-07-18 16:08 +0200
                        Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Martin Gregorie <martin@address-in-sig.invalid> - 2012-07-18 21:33 +0000
                          Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2012-07-18 23:36 +0200
                            Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Martin Gregorie <martin@address-in-sig.invalid> - 2012-07-18 21:53 +0000
                              Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2012-07-19 00:12 +0200
                                Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() markspace <-@.> - 2012-07-18 15:53 -0700
                                  Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Daniel Pitts <newsgroup.nospam@virtualinfinity.net> - 2012-07-18 16:18 -0700
                                    Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Gene Wirchenko <genew@ocis.net> - 2012-07-18 18:06 -0700
                                Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Martin Gregorie <martin@address-in-sig.invalid> - 2012-07-18 23:44 +0000
        Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Jeff Higgins <jeff@invalid.invalid> - 2012-07-17 11:32 -0400
    Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Knute Johnson <nospam@rabbitbrush.frazmtn.com> - 2012-07-16 14:12 -0700
    Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Lew <lewbloch@gmail.com> - 2012-07-16 14:12 -0700
    Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Jeff Higgins <jeff@invalid.invalid> - 2012-07-17 07:29 -0400
    Re: Using getSelectedValuesList() instead of the deprecated getSelectedValues() Roedy Green <see_website@mindprod.com.invalid> - 2012-07-17 09:30 -0700

Page 1 of 2  [1] 2  Next page →


#16047 — Using getSelectedValuesList() instead of the deprecated getSelectedValues()

Fromclusardi2k@aol.com
Date2012-07-16 12:53 -0700
SubjectUsing getSelectedValuesList() instead of the deprecated getSelectedValues()
Message-ID<34011151-6528-4f4c-815c-df9e8353cb71@googlegroups.com>
Hello, can anyone give me a simple/complete example to replace jLst.getSelectedValues() below using jLst.getSelectedValuesList().

        Object str_array [];

        if ( !jLst.isSelectionEmpty() )
        {        
            str_array = jLst.getSelectedValues();

            System.out.println("Selected: " + str_array[0]);
        }

[toc] | [next] | [standalone]


#16049

FromJeff Higgins <jeff@invalid.invalid>
Date2012-07-16 16:13 -0400
Message-ID<ju1shj$88s$1@dont-email.me>
In reply to#16047
On 07/16/2012 03:53 PM, clusardi2k@aol.com wrote:
> Hello, can anyone give me a simple/complete example to replace jLst.getSelectedValues() below using jLst.getSelectedValuesList().
>
>          Object str_array [];
>
>          if ( !jLst.isSelectionEmpty() )
>          {
>              str_array = jLst.getSelectedValues();
>
>              System.out.println("Selected: " + str_array[0]);
>          }
I think the java.util.List<E> interface has a method to return an array.

[toc] | [prev] | [next] | [standalone]


#16054

FromDaniel Pitts <newsgroup.nospam@virtualinfinity.net>
Date2012-07-16 14:55 -0700
Message-ID<_40Nr.24747$cE7.24028@newsfe13.iad>
In reply to#16049
On 7/16/12 1:13 PM, Jeff Higgins wrote:
> On 07/16/2012 03:53 PM, clusardi2k@aol.com wrote:
>> Hello, can anyone give me a simple/complete example to replace
>> jLst.getSelectedValues() below using jLst.getSelectedValuesList().
>>
>>          Object str_array [];
>>
>>          if ( !jLst.isSelectionEmpty() )
>>          {
>>              str_array = jLst.getSelectedValues();
>>
>>              System.out.println("Selected: " + str_array[0]);
>>          }
> I think the java.util.List<E> interface has a method to return an array.
>
Indeed it does, but that is terrible advice.

jList.getSelectedValuesList().get(0) is equivalent to 
jList.getSelectedValues()[0];

[toc] | [prev] | [next] | [standalone]


#16056

FromJeff Higgins <jeff@invalid.invalid>
Date2012-07-16 19:47 -0400
Message-ID<ju292t$kl9$1@dont-email.me>
In reply to#16054
On 07/16/2012 05:55 PM, Daniel Pitts wrote:
> On 7/16/12 1:13 PM, Jeff Higgins wrote:
>> On 07/16/2012 03:53 PM, clusardi2k@aol.com wrote:
>>> Hello, can anyone give me a simple/complete example to replace
>>> jLst.getSelectedValues() below using jLst.getSelectedValuesList().
>>>
>>> Object str_array [];
>>>
>>> if ( !jLst.isSelectionEmpty() )
>>> {
>>> str_array = jLst.getSelectedValues();
>>>
>>> System.out.println("Selected: " + str_array[0]);
>>> }
>> I think the java.util.List<E> interface has a method to return an array.
>>
> Indeed it does, but that is terrible advice.

str_array = jLst.getSelectedValuesList().toArray();

Is that much better?

>
> jList.getSelectedValuesList().get(0) is equivalent to
> jList.getSelectedValues()[0];
>

[toc] | [prev] | [next] | [standalone]


#16057

Frommarkspace <-@.>
Date2012-07-16 18:05 -0700
Message-ID<ju2dpi$9dd$1@dont-email.me>
In reply to#16056
On 7/16/2012 4:47 PM, Jeff Higgins wrote:

> On 07/16/2012 05:55 PM, Daniel Pitts wrote:

>> On 7/16/12 1:13 PM, Jeff Higgins wrote:
>>> I think the java.util.List<E> interface has a method to return an array.
>>>
>> Indeed it does, but that is terrible advice.

> str_array = jLst.getSelectedValuesList().toArray();
>
> Is that much better?


I think Daniel is saying "prefer Lists to arrays", but then we don't 
know the OP's complete requirements.  If a List will do, then the List 
form is better.  If the OP must have an array, then I'd say one call 
that returns an array is better than doing the same thing with two calls.

[toc] | [prev] | [next] | [standalone]


#16058

FromLew <lewbloch@gmail.com>
Date2012-07-16 19:46 -0700
Message-ID<88a2fb2e-b6b6-441a-ab35-4bd5481ea59c@googlegroups.com>
In reply to#16056
On Monday, July 16, 2012 4:47:53 PM UTC-7, Jeff Higgins wrote:
> Daniel Pitts wrote:
>> Higgins wrote:
>>> clusardi2k... wrote:
> &gt;&gt;&gt; Hello, can anyone give me a simple/complete example to replace
> &gt;&gt;&gt; jLst.getSelectedValues() below using jLst.getSelectedValuesList().
> &gt;&gt;&gt;
> &gt;&gt;&gt; Object str_array [];
> &gt;&gt;&gt;
> &gt;&gt;&gt; if ( !jLst.isSelectionEmpty() )
> &gt;&gt;&gt; {
> &gt;&gt;&gt; str_array = jLst.getSelectedValues();
> &gt;&gt;&gt;
> &gt;&gt;&gt; System.out.println(&quot;Selected: &quot; + str_array[0]);
> &gt;&gt;&gt; }
> &gt;&gt; I think the java.util.List&lt;E&gt; interface has a method to return an array.
> &gt;&gt;
> &gt; Indeed it does, but that is terrible advice.
> 
> str_array = jLst.getSelectedValuesList().toArray();
> 
> Is that much better?
> 
> &gt;
> &gt; jList.getSelectedValuesList().get(0) is equivalent to
> &gt; jList.getSelectedValues()[0];
> &gt;

What's better is

System.out.println("Selected: " + jLst.getSelectedValuesList().get(0));

with appropriate guards against NPE.

Unless, as markspace points out, the OP actually needs an array for 
reasons not in the original post.

-- 
Lew

[toc] | [prev] | [next] | [standalone]


#16065

FromJeff Higgins <jeff@invalid.invalid>
Date2012-07-17 07:38 -0400
Message-ID<ju3in5$n86$1@dont-email.me>
In reply to#16058
On 07/16/2012 10:46 PM, Lew wrote:
> On Monday, July 16, 2012 4:47:53 PM UTC-7, Jeff Higgins wrote:
>> Daniel Pitts wrote:
>>> Higgins wrote:
>>>> clusardi2k... wrote:
>> &gt;&gt;&gt; Hello, can anyone give me a simple/complete example to replace
>> &gt;&gt;&gt; jLst.getSelectedValues() below using jLst.getSelectedValuesList().
>> &gt;&gt;&gt;
>> &gt;&gt;&gt; Object str_array [];
>> &gt;&gt;&gt;
>> &gt;&gt;&gt; if ( !jLst.isSelectionEmpty() )
>> &gt;&gt;&gt; {
>> &gt;&gt;&gt; str_array = jLst.getSelectedValues();
>> &gt;&gt;&gt;
>> &gt;&gt;&gt; System.out.println(&quot;Selected:&quot; + str_array[0]);
>> &gt;&gt;&gt; }
>> &gt;&gt; I think the java.util.List&lt;E&gt; interface has a method to return an array.
>> &gt;&gt;

The XML escapes are distracting. I wish I knew how to get my newsreader 
how to restore them to characters.

>> &gt; Indeed it does, but that is terrible advice.
>>
>> str_array = jLst.getSelectedValuesList().toArray();
>>
>> Is that much better?
>>
>> &gt;
>> &gt; jList.getSelectedValuesList().get(0) is equivalent to
>> &gt; jList.getSelectedValues()[0];
>> &gt;
>
> What's better is
>
> System.out.println("Selected: " + jLst.getSelectedValuesList().get(0));
>
> with appropriate guards against NPE.
>
> Unless, as markspace points out, the OP actually needs an array for
> reasons not in the original post.
>

[toc] | [prev] | [next] | [standalone]


#16066

FromSteven Simpson <ss@domain.invalid>
Date2012-07-17 13:45 +0100
Message-ID<cc3gd9-s17.ln1@s.simpson148.btinternet.com>
In reply to#16065
On 17/07/12 12:38, Jeff Higgins wrote:
> On 07/16/2012 10:46 PM, Lew wrote:
>> On Monday, July 16, 2012 4:47:53 PM UTC-7, Jeff Higgins wrote:
>>> &gt;&gt;&gt; Hello, can anyone give me a simple/complete example to 
>>> replace
> The XML escapes are distracting. I wish I knew how to get my 
> newsreader how to restore them to characters.

There's no reason it should; it's not declared as XML or similar.

I've been watching this problem for a while, and I'm fairly sure it's 
Lew's news client that is at fault for escaping something that did not 
merit escaping.  Or perhaps it escaped the characters to enable editing 
as HTML, then failed to unescape them when converting back to plain 
text.  I wouldn't be surprised if the client is also mistakenly 
unescaping the text when rendering it back, so Lew doesn't see it.

Here's a selection of Lew's posts, from around when it started:

Date
	Organization
	Problems
Mon, 9 Jul 2012 12:56:02 -0700 (PDT)
	http://groups.google.com
	None
Mon, 9 Jul 2012 16:14:36 -0700 (PDT)
	http://groups.google.com
	&#39;
Mon, 9 Jul 2012 16:26:42 -0700 (PDT)
	http://groups.google.com
	&gt; &#39;
Mon, 09 Jul 2012 23:41:26 -0700
	albasani.net
	None
Mon, 09 Jul 2012 23:47:36 -0700
	albasani.net
	None
Tue, 10 Jul 2012 11:26:33 -0700 (PDT)
	http://groups.google.com
	None, but no challenge
Tue, 10 Jul 2012 11:56:48 -0700 (PDT)
	http://groups.google.com
	&gt;
Wed, 11 Jul 2012 17:03:11 -0700 (PDT)
	http://groups.google.com
	&quot;
Sat, 14 Jul 2012 13:01:44 -0700
	albasani.net
	None


I didn't spot any errors in a quick scan of posts from before the second 
row.

-- 
ss at comp dot lancs dot ac dot uk

[toc] | [prev] | [next] | [standalone]


#16069

FromLars Enderin <lars.enderin@telia.com>
Date2012-07-17 19:46 +0200
Message-ID<5005A4FC.6030200@telia.com>
In reply to#16066
2012-07-17 14:45, Steven Simpson skrev:
> On 17/07/12 12:38, Jeff Higgins wrote:
>> On 07/16/2012 10:46 PM, Lew wrote:
>>> On Monday, July 16, 2012 4:47:53 PM UTC-7, Jeff Higgins wrote:
>>>> &gt;&gt;&gt; Hello, can anyone give me a simple/complete example to
>>>> replace
>> The XML escapes are distracting. I wish I knew how to get my
>> newsreader how to restore them to characters.
> 
> There's no reason it should; it's not declared as XML or similar.
> 
> I've been watching this problem for a while, and I'm fairly sure it's
> Lew's news client that is at fault for escaping something that did not
> merit escaping.  Or perhaps it escaped the characters to enable editing
> as HTML, then failed to unescape them when converting back to plain
> text.  I wouldn't be surprised if the client is also mistakenly
> unescaping the text when rendering it back, so Lew doesn't see it.

It's not XML, it's HTML, and the guilty party is Google (Groups). It
seems to get even worse than it used to be.

-- 
Lars Enderin

[toc] | [prev] | [next] | [standalone]


#16070

FromDaniele Futtorovic <da.futt.news@laposte-dot-net.invalid>
Date2012-07-17 20:47 +0200
Message-ID<ju4c0r$ppa$1@dont-email.me>
In reply to#16069
On 17/07/2012 19:46, Lars Enderin allegedly wrote:
> 2012-07-17 14:45, Steven Simpson skrev:
>> On 17/07/12 12:38, Jeff Higgins wrote:
>>> On 07/16/2012 10:46 PM, Lew wrote:
>>>> On Monday, July 16, 2012 4:47:53 PM UTC-7, Jeff Higgins wrote:
>>>>> &gt;&gt;&gt; Hello, can anyone give me a simple/complete example to
>>>>> replace
>>> The XML escapes are distracting. I wish I knew how to get my
>>> newsreader how to restore them to characters.
>>
>> There's no reason it should; it's not declared as XML or similar.
>>
>> I've been watching this problem for a while, and I'm fairly sure it's
>> Lew's news client that is at fault for escaping something that did not
>> merit escaping.  Or perhaps it escaped the characters to enable editing
>> as HTML, then failed to unescape them when converting back to plain
>> text.  I wouldn't be surprised if the client is also mistakenly
>> unescaping the text when rendering it back, so Lew doesn't see it.
> 
> It's not XML, it's HTML, and the guilty party is Google (Groups). It
> seems to get even worse than it used to be.
> 

Amen to that.

-- 
DF.

[toc] | [prev] | [next] | [standalone]


#16071

FromDaniel Pitts <newsgroup.nospam@virtualinfinity.net>
Date2012-07-17 12:26 -0700
Message-ID<W%iNr.16251$lt3.15341@newsfe18.iad>
In reply to#16070
On 7/17/12 11:47 AM, Daniele Futtorovic wrote:
> On 17/07/2012 19:46, Lars Enderin allegedly wrote:
>> 2012-07-17 14:45, Steven Simpson skrev:
>>> On 17/07/12 12:38, Jeff Higgins wrote:
>>>> On 07/16/2012 10:46 PM, Lew wrote:
>>>>> On Monday, July 16, 2012 4:47:53 PM UTC-7, Jeff Higgins wrote:
>>>>>> &gt;&gt;&gt; Hello, can anyone give me a simple/complete example to
>>>>>> replace
>>>> The XML escapes are distracting. I wish I knew how to get my
>>>> newsreader how to restore them to characters.
>>>
>>> There's no reason it should; it's not declared as XML or similar.
>>>
>>> I've been watching this problem for a while, and I'm fairly sure it's
>>> Lew's news client that is at fault for escaping something that did not
>>> merit escaping.  Or perhaps it escaped the characters to enable editing
>>> as HTML, then failed to unescape them when converting back to plain
>>> text.  I wouldn't be surprised if the client is also mistakenly
>>> unescaping the text when rendering it back, so Lew doesn't see it.
>>
>> It's not XML, it's HTML, and the guilty party is Google (Groups). It
>> seems to get even worse than it used to be.
>>
>
> Amen to that.
>
It's gotten *worse* than intolerable? Didn't know that was possible. 
It's why I switched to a "real" news client.

[toc] | [prev] | [next] | [standalone]


#16074

FromLew <lewbloch@gmail.com>
Date2012-07-17 14:16 -0700
Message-ID<8adcd669-ebc4-48e4-a2b5-755c05ee7f02@googlegroups.com>
In reply to#16071
Daniel Pitts wrote:
> It's gotten *worse* than intolerable? Didn't know that was possible. 
> It's why I switched to a "real" news client.

I use GG when it's convenient, but this "unescape" difficulty makes that 
less frequent than it used to be.

Yes, one sees the escape sequences in the editor box for a reply. It's 
a lot of work to clear them, so I mostly don't.

When I use Thunderbird as the news client life is much happier.

-- 
Lew

[toc] | [prev] | [next] | [standalone]


#16080

FromJoerg Meier <joergmmeier@arcor.de>
Date2012-07-18 16:08 +0200
Message-ID<1bs3pqwbembgq$.zulzk4xg3pus$.dlg@40tude.net>
In reply to#16071
On Tue, 17 Jul 2012 12:26:46 -0700, Daniel Pitts wrote:

> On 7/17/12 11:47 AM, Daniele Futtorovic wrote:
>> On 17/07/2012 19:46, Lars Enderin allegedly wrote:
>>> It's not XML, it's HTML, and the guilty party is Google (Groups). It
>>> seems to get even worse than it used to be.
>> Amen to that.
> It's gotten *worse* than intolerable? Didn't know that was possible. 
> It's why I switched to a "real" news client.

Google Groups has apparently been given an ... 'underhaul' ? recently. It
stopped respecting Follow-Up's as well, and in fact doesn't even inform the
user (let alone giving them a choice).

Liebe Gruesse,
		Joerg

-- 
Ich lese meine Emails nicht, replies to Email bleiben also leider
ungelesen.

[toc] | [prev] | [next] | [standalone]


#16087

FromMartin Gregorie <martin@address-in-sig.invalid>
Date2012-07-18 21:33 +0000
Message-ID<ju7a3l$cmh$2@localhost.localdomain>
In reply to#16080
On Wed, 18 Jul 2012 16:08:14 +0200, Joerg Meier wrote:

> 
> Google Groups has apparently been given an ... 'underhaul' ? recently.
> It stopped respecting Follow-Up's as well, and in fact doesn't even
> inform the user (let alone giving them a choice).
>
What do you expect? 

As long as Google persists in describing almost everything it provides as 
a beta release and never seems willing to promote it to a production 
release, I'd say you should expect BAAFNRAA behavior from their code.

BAAFNRAA = Bugs Anywhere, Anytime For No Reason At All.


-- 
martin@   | Martin Gregorie
gregorie. | Essex, UK
org       |

[toc] | [prev] | [next] | [standalone]


#16089

FromDaniele Futtorovic <da.futt.news@laposte-dot-net.invalid>
Date2012-07-18 23:36 +0200
Message-ID<ju7a9s$d92$2@dont-email.me>
In reply to#16087
On 18/07/2012 23:33, Martin Gregorie allegedly wrote:
> On Wed, 18 Jul 2012 16:08:14 +0200, Joerg Meier wrote:
> 
>>
>> Google Groups has apparently been given an ... 'underhaul' ? recently.
>> It stopped respecting Follow-Up's as well, and in fact doesn't even
>> inform the user (let alone giving them a choice).
>>
> What do you expect? 
> 
> As long as Google persists in describing almost everything it provides as 
> a beta release and never seems willing to promote it to a production 
> release, I'd say you should expect BAAFNRAA behavior from their code.
> 
> BAAFNRAA = Bugs Anywhere, Anytime For No Reason At All.

Rubbish. There's always a reason for bugs.

/readies excuse calendar/ Try me.

-- 
DF.

[toc] | [prev] | [next] | [standalone]


#16091

FromMartin Gregorie <martin@address-in-sig.invalid>
Date2012-07-18 21:53 +0000
Message-ID<ju7b8s$cmh$3@localhost.localdomain>
In reply to#16089
On Wed, 18 Jul 2012 23:36:28 +0200, Daniele Futtorovic wrote:

> On 18/07/2012 23:33, Martin Gregorie allegedly wrote:
>> On Wed, 18 Jul 2012 16:08:14 +0200, Joerg Meier wrote:
>> 
>> 
>>> Google Groups has apparently been given an ... 'underhaul' ? recently.
>>> It stopped respecting Follow-Up's as well, and in fact doesn't even
>>> inform the user (let alone giving them a choice).
>>>
>> What do you expect?
>> 
>> As long as Google persists in describing almost everything it provides
>> as a beta release and never seems willing to promote it to a production
>> release, I'd say you should expect BAAFNRAA behavior from their code.
>> 
>> BAAFNRAA = Bugs Anywhere, Anytime For No Reason At All.
> 
> Rubbish. There's always a reason for bugs.
> 
> /readies excuse calendar/ Try me.

Even if the 'reason' is "We don't believe in regression testing"?


-- 
martin@   | Martin Gregorie
gregorie. | Essex, UK
org       |

[toc] | [prev] | [next] | [standalone]


#16093

FromDaniele Futtorovic <da.futt.news@laposte-dot-net.invalid>
Date2012-07-19 00:12 +0200
Message-ID<ju7ccs$s5s$1@dont-email.me>
In reply to#16091
On 18/07/2012 23:53, Martin Gregorie allegedly wrote:
> On Wed, 18 Jul 2012 23:36:28 +0200, Daniele Futtorovic wrote:
>> On 18/07/2012 23:33, Martin Gregorie allegedly wrote:
>>> BAAFNRAA = Bugs Anywhere, Anytime For No Reason At All.
>>
>> Rubbish. There's always a reason for bugs.
>>
>> /readies excuse calendar/ Try me.
> 
> Even if the 'reason' is "We don't believe in regression testing"?

Hmm. I was thinking more along the lines of solar flares, alignment of
planets, the bus having a flat tire or the NIC having run out of bits.

I think one should generally avoid faith-based bug-reasoning. Too easy
to attack; not peremptory enough. Amateurish, in a nutshell. /waves
disdainfully/

-- 
DF.

[toc] | [prev] | [next] | [standalone]


#16094

Frommarkspace <-@.>
Date2012-07-18 15:53 -0700
Message-ID<ju7eoj$8q3$1@dont-email.me>
In reply to#16093
On 7/18/2012 3:12 PM, Daniele Futtorovic wrote:
>
> ...  or the NIC having run out of bits.


I once lost my token ring, but I found it later caught in the ethernet.


[toc] | [prev] | [next] | [standalone]


#16098

FromDaniel Pitts <newsgroup.nospam@virtualinfinity.net>
Date2012-07-18 16:18 -0700
Message-ID<ivHNr.20108$lt3.12235@newsfe18.iad>
In reply to#16094
On 7/18/12 3:53 PM, markspace wrote:
> On 7/18/2012 3:12 PM, Daniele Futtorovic wrote:
>>
>> ...  or the NIC having run out of bits.
>
>
> I once lost my token ring, but I found it later caught in the ethernet.
I once lost my Tolkien ring, but I found it later on some nasty hobbitses.


[toc] | [prev] | [next] | [standalone]


#16101

FromGene Wirchenko <genew@ocis.net>
Date2012-07-18 18:06 -0700
Message-ID<1ane089nckqnp0mmtslrsqjv8u6ucrcoho@4ax.com>
In reply to#16098
On Wed, 18 Jul 2012 16:18:38 -0700, Daniel Pitts
<newsgroup.nospam@virtualinfinity.net> wrote:

>On 7/18/12 3:53 PM, markspace wrote:
>> On 7/18/2012 3:12 PM, Daniele Futtorovic wrote:
>>>
>>> ...  or the NIC having run out of bits.

>> I once lost my token ring, but I found it later caught in the ethernet.
>I once lost my Tolkien ring, but I found it later on some nasty hobbitses.

     The reinstall failed though.

Sincerely,

Gene Wirchenko

[toc] | [prev] | [next] | [standalone]


Page 1 of 2  [1] 2  Next page →

Back to top | Article view | comp.lang.java.programmer


csiph-web