
|
X10 status fix still not in the repository
From the latest source:
my ($house, $device, $state) = $event_data1 =~ /(\S)(\S)\S{0,2}STATUS_(\S+)/;
$event_data1 =~ s/\S\SSTATUS_$state//g;
$event_data = "X" . $event_data1;
$state = 'J' if $state eq 'ON';
$state = 'K' if $state eq 'OFF';
my $event_data = 'X' . $house . $device . $house . $state;
None of you dumbasses can see what is wrong with this? Well of course you can as I have told you numerous times. In fact, I fixed this for somebody off-list THREE FUCKING MONTHS AGO! It is a simple regex cockup (similar to dozens of others found in the X10 processing.)
Now how is it that these "geniuses" can't fix this when I gave them the answer? Because they are just that fucking stupid that they would let the project fall apart beneath their feet before they listen to me, despite the fact that most of the positive changes in the last two years are mine (and most of the changes were to code that was rotting for years.)
It should look something like this:
# my $event_data1 = "F1FSTATUS_ONF1FJ"; # Example of what MH's stupid controller modules pass to this function
my ($house, $device, $state) = $event_data1 =~ /([A-P])([1-9])\1\S{0,2}STATUS_(ON|OFF)/;
$event_data1 =~ s/$1$2$1STATUS_$state//g;
$state = 'J' if $state eq 'ON';
$state = 'K' if $state eq 'OFF';
my $event_data2 = 'X' . $house . $device . $house . $state;
$event_data1 =~ s/$house$device$house$state//g; # Delete Smarthome stutter from stream
$event_data = ($event_data1)?"X" . $event_data1:'';
if (my @refs = &Device_Item::items_by_id($event_data2)) {
What is wrong with these fuckheads?! They can't code, can't debug, can't keep track of forums, can't do fucking anything apparently and as soon as somebody comes along that can, they bury their heads in the sand.
And of course, this is still fucked up in X10_Items:
if (length($id) == 2) {
$self->add ($id . 'O', 'on');
$self->add ($id . 'P', 'off');
$self->add ($id . 'L', 'brighten');
$self->add ($id . 'M', 'dim');
$self->add ($id . 'STATUS', 'status');
}
What is wrong with THAT picture?!
Even worse (and related to the above fuckup:)
if (length($self->{x10_id}) == 2 and ($state ne 'on' and $state ne 'off')) {
my $hc = substr $self->{x10_id}, 1; # Drop the X prefix
&set_by_housecode($hc, $state);
}
FUCKING IDIOTS! Are you brain-dead? Never used X10? Can't follow logic for more than two lines at a time?! Look at that! That is obviously not right. The turtles strike again and nobody has the guts to call a piece of shit a piece of shit. If $state is not 'on' and not 'off' (ON and OFF fuckheads), then according to the bullshit code above, it must be one of ('brighten', 'dim', 'status'.) Soooooooo. If you set A to 'dim', this logic will then call set_by_housecode:
sub set_by_housecode {
my ($hc, $state) = @_;
for my $object (@{$items_by_house_code{$hc}}) {
next if $object->{type} =~ /transmit/i; # Do not set transmitters
# next if $object->isa('X10_Transmitter'); # This would work also
print "Setting X10 House code $hc item $object to $state\n" if $main::Debug{x10};
$object->set_receive($state, 'housecode');
}
return if $state eq 'on'; # All lights on does not effect appliances
for my $object (@{$appliances_by_house_code{$hc}}) {
print "Setting X10 House code $hc appliance $object to $state\n" if $main::Debug{x10};
$object->set_receive($state, 'housecode');
}
}
So now every item on that house code is set to 'dim.' You fucking morons. set_by_housecode is for ALL LIGHTS ON | ALL OFF (and should also work with ALL LIGHTS OFF, but one step at a time!)
You fuckups! Look at this line in there:
return if $state eq 'on'; # All lights on does not effect appliances
GET IT?! Are you fucking brain-dead?! And I have posted this HOW MANY FUCKING TIMES?!
My rather bombastic point should be taken to mean: if these tortoises can't fix one glaring, deplorable fuckup like this after MONTHS of prodding, what possible hope is there for the other thousands of lines of hack PERL code?! Answer: no hope (unless you are a Windows user, in which case there will be an alternative...)
And you know what? I may just release my entire MH as "MH Pro" or something. I already got permission from the head shit-for-brains years ago. And I don't need his permission anyway. You fucking hear that Bruce Winter? I dare you and your fucking EFF (or whatever-the-fuck) buddies to sue me. I fucking double-dare you! I would LOVE it! It would give my lawyers some exercise anyway. Fuck your mother! You fucking bitch. I don't think you have the balls to cross me my friend.
That's it. I am out of here. Please hold your applause...
|

|
Re: X10 status fix still not in the repository
I think every community should include people who think differently and challenge the status quo. Otherwise, the community becomes stagnant. It is clear you've put in a lot of effort to revamp MH but, somewhere along the way, you incensed the village elders and now you're a pariah. That's a shame because an open-source project can't afford to alienate its contributors. But that's a two-way street and contributors (especially angry and frustrated contributors) shouldn't alienate the community.
Your work speaks for itself and I think the everyone appreciates your time and effort. I imagine even the old-timers recognize and appreciate it (albeit silently and begrudgingly). Your frustration is also evident by the disparaging remarks you've made regarding everything and everyone. Well, it adds melodrama to the project but doesn't move it forward. If you're convinced MH and its developers are a 'dead horse' then consider that beating the crap out of it won't make it gallop.
I'm sorry to hear that things have soured to the point that you're giving up on MH (and the old-timers have given up on you). I'll miss your contributions to 'old MH' but I do look forward to trying out your 'new MH'.
dmark wrote:
From the latest source:
my ($house, $device, $state) = $event_data1 =~ /(\S)(\S)\S{0,2}STATUS_(\S+)/;
$event_data1 =~ s/\S\SSTATUS_$state//g;
$event_data = "X" . $event_data1;
$state = 'J' if $state eq 'ON';
$state = 'K' if $state eq 'OFF';
my $event_data = 'X' . $house . $device . $house . $state;
None of you dumbasses can see what is wrong with this? Well of course you can as I have told you numerous times. In fact, I fixed this for somebody off-list THREE FUCKING MONTHS AGO! It is a simple regex cockup (similar to dozens of others found in the X10 processing.)
Now how is it that these "geniuses" can't fix this when I gave them the answer? Because they are just that fucking stupid that they would let the project fall apart beneath their feet before they listen to me, despite the fact that most of the positive changes in the last two years are mine (and most of the changes were to code that was rotting for years.)
It should look something like this:
# my $event_data1 = "F1FSTATUS_ONF1FJ"; # Example of what MH's stupid controller modules pass to this function
my ($house, $device, $state) = $event_data1 =~ /([A-P])([1-9])\1\S{0,2}STATUS_(ON|OFF)/;
$event_data1 =~ s/$1$2$1STATUS_$state//g;
$state = 'J' if $state eq 'ON';
$state = 'K' if $state eq 'OFF';
my $event_data2 = 'X' . $house . $device . $house . $state;
$event_data1 =~ s/$house$device$house$state//g; # Delete Smarthome stutter from stream
$event_data = ($event_data1)?"X" . $event_data1:'';
if (my @refs = &Device_Item::items_by_id($event_data2)) {
What is wrong with these fuckheads?! They can't code, can't debug, can't keep track of forums, can't do fucking anything apparently and as soon as somebody comes along that can, they bury their heads in the sand.
And of course, this is still fucked up in X10_Items:
if (length($id) == 2) {
$self->add ($id . 'O', 'on');
$self->add ($id . 'P', 'off');
$self->add ($id . 'L', 'brighten');
$self->add ($id . 'M', 'dim');
$self->add ($id . 'STATUS', 'status');
}
What is wrong with THAT picture?!
Even worse (and related to the above fuckup:)
if (length($self->{x10_id}) == 2 and ($state ne 'on' and $state ne 'off')) {
my $hc = substr $self->{x10_id}, 1; # Drop the X prefix
&set_by_housecode($hc, $state);
}
FUCKING IDIOTS! Are you brain-dead? Never used X10? Can't follow logic for more than two lines at a time?! Look at that! That is obviously not right. The turtles strike again and nobody has the guts to call a piece of shit a piece of shit. If $state is not 'on' and not 'off' (ON and OFF fuckheads), then according to the bullshit code above, it must be one of ('brighten', 'dim', 'status'.) Soooooooo. If you set A to 'dim', this logic will then call set_by_housecode:
sub set_by_housecode {
my ($hc, $state) = @_;
for my $object (@{$items_by_house_code{$hc}}) {
next if $object->{type} =~ /transmit/i; # Do not set transmitters
# next if $object->isa('X10_Transmitter'); # This would work also
print "Setting X10 House code $hc item $object to $state\n" if $main::Debug{x10};
$object->set_receive($state, 'housecode');
}
return if $state eq 'on'; # All lights on does not effect appliances
for my $object (@{$appliances_by_house_code{$hc}}) {
print "Setting X10 House code $hc appliance $object to $state\n" if $main::Debug{x10};
$object->set_receive($state, 'housecode');
}
}
So now every item on that house code is set to 'dim.' You fucking morons. set_by_housecode is for ALL LIGHTS ON | ALL OFF (and should also work with ALL LIGHTS OFF, but one step at a time!)
You fuckups! Look at this line in there:
return if $state eq 'on'; # All lights on does not effect appliances
GET IT?! Are you fucking brain-dead?! And I have posted this HOW MANY FUCKING TIMES?!
My rather bombastic point should be taken to mean: if these tortoises can't fix one glaring, deplorable fuckup like this after MONTHS of prodding, what possible hope is there for the other thousands of lines of hack PERL code?! Answer: no hope (unless you are a Windows user, in which case there will be an alternative...)
And you know what? I may just release my entire MH as "MH Pro" or something. I already got permission from the head shit-for-brains years ago. And I don't need his permission anyway. You fucking hear that Bruce Winter? I dare you and your fucking EFF (or whatever-the-fuck) buddies to sue me. I fucking double-dare you! I would LOVE it! It would give my lawyers some exercise anyway. Fuck your mother! You fucking bitch. I don't think you have the balls to cross me my friend.
That's it. I am out of here. Please hold your applause...
|

|
Re: X10 status fix still not in the repository
I agree. One thing I would like to point out is that the "elders" weren't doing anything (and still aren't.) They just like to hang out in the mailing list like it is some sort of social club. I never beat the crap out of them until:
A. They (actually just one of the dorks) locked me out with tons of updates hanging (and still hanging as they don't know how to finish anything I started.)
B. I heard through the grapevine that Bruce Winter was threatening to sue me over the "New MH" (MH Pro is what I am going to call it.) That's enough to make me vomit. Especially since I talked to him at length about the GNU license before I wrote a single line of MH code (I always intended to release some sort of book/CD combination and still do.) And like I said in the previous post: do your worst jackass!
Anyway, your comments are much appreciated! And I will still answer questions in this branch of the forum (if only to further humiliate the idiot who locked me out.)
I think every community should include people who think differently and challenge the status quo. Otherwise, the community becomes stagnant. It is clear you've put in a lot of effort to revamp MH but, somewhere along the way, you incensed the village elders and now you're a pariah. That's a shame because an open-source project can't afford to alienate its contributors. But that's a two-way street and contributors (especially angry and frustrated contributors) shouldn't alienate the community.
Your work speaks for itself and I think the everyone appreciates your time and effort. I imagine even the old-timers recognize and appreciate it (albeit silently and begrudgingly). Your frustration is also evident by the disparaging remarks you've made regarding everything and everyone. Well, it adds melodrama to the project but doesn't move it forward. If you're convinced MH and its developers are a 'dead horse' then consider that beating the crap out of it won't make it gallop.
I'm sorry to hear that things have soured to the point that you're giving up on MH (and the old-timers have given up on you). I'll miss your contributions to 'old MH' but I do look forward to trying out your 'new MH'.
dmark wrote:
From the latest source:
my ($house, $device, $state) = $event_data1 =~ /(\S)(\S)\S{0,2}STATUS_(\S+)/;
$event_data1 =~ s/\S\SSTATUS_$state//g;
$event_data = "X" . $event_data1;
$state = 'J' if $state eq 'ON';
$state = 'K' if $state eq 'OFF';
my $event_data = 'X' . $house . $device . $house . $state;
None of you dumbasses can see what is wrong with this? Well of course you can as I have told you numerous times. In fact, I fixed this for somebody off-list THREE FUCKING MONTHS AGO! It is a simple regex cockup (similar to dozens of others found in the X10 processing.)
Now how is it that these "geniuses" can't fix this when I gave them the answer? Because they are just that fucking stupid that they would let the project fall apart beneath their feet before they listen to me, despite the fact that most of the positive changes in the last two years are mine (and most of the changes were to code that was rotting for years.)
It should look something like this:
# my $event_data1 = "F1FSTATUS_ONF1FJ"; # Example of what MH's stupid controller modules pass to this function
my ($house, $device, $state) = $event_data1 =~ /([A-P])([1-9])\1\S{0,2}STATUS_(ON|OFF)/;
$event_data1 =~ s/$1$2$1STATUS_$state//g;
$state = 'J' if $state eq 'ON';
$state = 'K' if $state eq 'OFF';
my $event_data2 = 'X' . $house . $device . $house . $state;
$event_data1 =~ s/$house$device$house$state//g; # Delete Smarthome stutter from stream
$event_data = ($event_data1)?"X" . $event_data1:'';
if (my @refs = &Device_Item::items_by_id($event_data2)) {
What is wrong with these fuckheads?! They can't code, can't debug, can't keep track of forums, can't do fucking anything apparently and as soon as somebody comes along that can, they bury their heads in the sand.
And of course, this is still fucked up in X10_Items:
if (length($id) == 2) {
$self->add ($id . 'O', 'on');
$self->add ($id . 'P', 'off');
$self->add ($id . 'L', 'brighten');
$self->add ($id . 'M', 'dim');
$self->add ($id . 'STATUS', 'status');
}
What is wrong with THAT picture?!
Even worse (and related to the above fuckup:)
if (length($self->{x10_id}) == 2 and ($state ne 'on' and $state ne 'off')) {
my $hc = substr $self->{x10_id}, 1; # Drop the X prefix
&set_by_housecode($hc, $state);
}
FUCKING IDIOTS! Are you brain-dead? Never used X10? Can't follow logic for more than two lines at a time?! Look at that! That is obviously not right. The turtles strike again and nobody has the guts to call a piece of shit a piece of shit. If $state is not 'on' and not 'off' (ON and OFF fuckheads), then according to the bullshit code above, it must be one of ('brighten', 'dim', 'status'.) Soooooooo. If you set A to 'dim', this logic will then call set_by_housecode:
sub set_by_housecode {
my ($hc, $state) = @_;
for my $object (@{$items_by_house_code{$hc}}) {
next if $object->{type} =~ /transmit/i; # Do not set transmitters
# next if $object->isa('X10_Transmitter'); # This would work also
print "Setting X10 House code $hc item $object to $state\n" if $main::Debug{x10};
$object->set_receive($state, 'housecode');
}
return if $state eq 'on'; # All lights on does not effect appliances
for my $object (@{$appliances_by_house_code{$hc}}) {
print "Setting X10 House code $hc appliance $object to $state\n" if $main::Debug{x10};
$object->set_receive($state, 'housecode');
}
}
So now every item on that house code is set to 'dim.' You fucking morons. set_by_housecode is for ALL LIGHTS ON | ALL OFF (and should also work with ALL LIGHTS OFF, but one step at a time!)
You fuckups! Look at this line in there:
return if $state eq 'on'; # All lights on does not effect appliances
GET IT?! Are you fucking brain-dead?! And I have posted this HOW MANY FUCKING TIMES?!
My rather bombastic point should be taken to mean: if these tortoises can't fix one glaring, deplorable fuckup like this after MONTHS of prodding, what possible hope is there for the other thousands of lines of hack PERL code?! Answer: no hope (unless you are a Windows user, in which case there will be an alternative...)
And you know what? I may just release my entire MH as "MH Pro" or something. I already got permission from the head shit-for-brains years ago. And I don't need his permission anyway. You fucking hear that Bruce Winter? I dare you and your fucking EFF (or whatever-the-fuck) buddies to sue me. I fucking double-dare you! I would LOVE it! It would give my lawyers some exercise anyway. Fuck your mother! You fucking bitch. I don't think you have the balls to cross me my friend.
That's it. I am out of here. Please hold your applause...
|

|
Re: X10 status fix still not in the repository
On Sat, February 10, 2007 17:38, MrT said:
> I'm sorry to hear that things have soured to the point that you're giving
> up
> on MH (and the old-timers have given up on you). I'll miss your
> contributions to 'old MH' but I do look forward to trying out your 'new
> MH'.
Don't worry, he doesn't leave. He just subscribes with another email address.
However, this whole rant *will* make for an interesting defamation suit if
Bruce ever gets sufficiently annoyed.
Tim
--
Tim Sailer
Coastal Internet, Inc.
www.buoy.com
631-399-2910
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to: http://sourceforge.net/mail/?group_id=1365
|

|
Re: X10 status fix still not in the repository
Subscribe to what moron? This is a stand-alone forum. And thanks to your dumbass move of forwarding my post about this forum to the mailing list, people are starting to come here and read about how fucked up this project is.
I can't believe you would even show your miserable face in here after that bonehead play.
And fuck you and your instigating bullshit. I dare Bruce Winter or you or any of those other fuckwads to sue me. Go ahead. Please. What are you waiting for?! Everything I said is true. You are a stupid-ass, cringing little cocksucker. How's that. Sue me Tim Sailer. I "defamed" you! LOL.
And you want to come in my branch and talk off-topic? Lets talk about your fucking piece of shit Web site.
You claim on your front page that your design service is "top notch." More accurately: it sucks dicks.
1. Table-based slab-like layout. What a surprise.
2. JavaScript error (syntax error) on the front page. LOL.
3. Commented inline style? You must have read that popular book: "How Not to Write a Web page."
4. What the fuck kind of tags are "csactions?"
5. You've got 50 validation errors on the front page alone, including a missing doctype declaration, which is the height of cluelessness.
6. No meta tags for keywords, descriptions or anything else (other than the character set.) The search engines just love that! What a horse's ass.
7. And that "POP search" link doesn't work without scripting enabled. No wonder as the link is "#". You suck.
Anybody who would pay your ass to "redevelop" their site would have to be out of their fucking mind. Now sue me bitch! Here's a hint: it can't be defamation if it is TRUE!
Tim Sailer-2 wrote:
On Sat, February 10, 2007 17:38, MrT said:
> I'm sorry to hear that things have soured to the point that you're giving
> up
> on MH (and the old-timers have given up on you). I'll miss your
> contributions to 'old MH' but I do look forward to trying out your 'new
> MH'.
Don't worry, he doesn't leave. He just subscribes with another email address.
However, this whole rant *will* make for an interesting defamation suit if
Bruce ever gets sufficiently annoyed.
Tim
--
Tim Sailer
Coastal Internet, Inc.
www.buoy.com
631-399-2910
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to: http://sourceforge.net/mail/?group_id=1365
|

|
Re: X10 status fix still not in the repository
Maybe he should consider more Fiber in his diet ...lol :-)
-----Original Message-----
From: misterhouse-users-bounces@...
[mailto: misterhouse-users-bounces@...]On Behalf Of Tim
Sailer
Sent: Saturday, February 10, 2007 10:03 PM
To: The main list for the MisterHouse home automation program
Subject: Re: [mh] X10 status fix still not in the repository
On Sat, February 10, 2007 17:38, MrT said:
> I'm sorry to hear that things have soured to the point that you're giving
> up
> on MH (and the old-timers have given up on you). I'll miss your
> contributions to 'old MH' but I do look forward to trying out your 'new
> MH'.
Don't worry, he doesn't leave. He just subscribes with another email
address.
However, this whole rant *will* make for an interesting defamation suit if
Bruce ever gets sufficiently annoyed.
Tim
--
Tim Sailer
Coastal Internet, Inc.
www.buoy.com
631-399-2910
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to:
http://sourceforge.net/mail/?group_id=1365--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.33/678 - Release Date: 2/9/2007
4:06 PM
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.33/678 - Release Date: 2/9/2007
4:06 PM
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to: http://sourceforge.net/mail/?group_id=1365
|

|
Re: X10 status fix still not in the repository
> Don't worry, he doesn't leave. He just subscribes with another email
> address.
I don't think he re-subscribed. We unsubscribed David from receiving
mailing list posts a few weeks ago, at his request. He created has his
own nabble forum here:
http://www.nabble.com/Misterhouse-Issues-f18237.htmlSo correspondence with David is best done to the above forum, or direct
email.
There have been a few recent (and nasty) posts by David to the nabble
forum mirror of this mailing list:
http://www.nabble.com/Misterhouse---User-f14394.htmlThose posts are only on the nabble forum and are not echoed to the
subscriber list of this mailing list, so if you want to respond to
those, please do so via direct email, not via this list.
I'll see if I can change the nabble forum to be read only, so we avoid
this cross-posting confusion in the future.
> However, this whole rant *will* make for an interesting defamation suit if
> Bruce ever gets sufficiently annoyed.
I am annoyed by his name calling (so unhappy, unproductive, and
unnecessary), but I think I'd be even more annoyed if we had to deal
with a lawsuit. Hopefully he can find people he can work well with on
his forum and he will not try to further aggravate the rest of us.
Bruce
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to: http://sourceforge.net/mail/?group_id=1365
|

|
Re: X10 status fix still not in the repository
Maybe you should consider staying on topic "Dickie." We don't need another Tim Sailer in here. If you and the other dicksucker don't have anything to say about the fucking program, then shut the fuck up. Idiots.
< Dickie Bradford > wrote:
Maybe he should consider more Fiber in his diet ...lol :-)
-----Original Message-----
From: misterhouse-users-bounces@lists.sourceforge.net
[mailto:misterhouse-users-bounces@lists.sourceforge.net]On Behalf Of Tim
Sailer
Sent: Saturday, February 10, 2007 10:03 PM
To: The main list for the MisterHouse home automation program
Subject: Re: [mh] X10 status fix still not in the repository
On Sat, February 10, 2007 17:38, MrT said:
> I'm sorry to hear that things have soured to the point that you're giving
> up
> on MH (and the old-timers have given up on you). I'll miss your
> contributions to 'old MH' but I do look forward to trying out your 'new
> MH'.
Don't worry, he doesn't leave. He just subscribes with another email
address.
However, this whole rant *will* make for an interesting defamation suit if
Bruce ever gets sufficiently annoyed.
Tim
--
Tim Sailer
Coastal Internet, Inc.
www.buoy.com
631-399-2910
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job
easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to:
http://sourceforge.net/mail/?group_id=1365--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.33/678 - Release Date: 2/9/2007
4:06 PM
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.5.441 / Virus Database: 268.17.33/678 - Release Date: 2/9/2007
4:06 PM
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to: http://sourceforge.net/mail/?group_id=1365
|

|
Re: X10 status fix still not in the repository
Unproductive? You are one to talk about that. God this getting surreal.
Unnecessary? Tell that to the people running your half-assed project.
And I don't give a fuck what annoys or aggravates you. Why don't you try fixing some of the shit posted here instead of wasting time gabbing with off-topic losers?
Bruce Winter wrote:
> Don't worry, he doesn't leave. He just subscribes with another email
> address.
I don't think he re-subscribed. We unsubscribed David from receiving
mailing list posts a few weeks ago, at his request. He created has his
own nabble forum here:
http://www.nabble.com/Misterhouse-Issues-f18237.htmlSo correspondence with David is best done to the above forum, or direct
email.
There have been a few recent (and nasty) posts by David to the nabble
forum mirror of this mailing list:
http://www.nabble.com/Misterhouse---User-f14394.htmlThose posts are only on the nabble forum and are not echoed to the
subscriber list of this mailing list, so if you want to respond to
those, please do so via direct email, not via this list.
I'll see if I can change the nabble forum to be read only, so we avoid
this cross-posting confusion in the future.
> However, this whole rant *will* make for an interesting defamation suit if
> Bruce ever gets sufficiently annoyed.
I am annoyed by his name calling (so unhappy, unproductive, and
unnecessary), but I think I'd be even more annoyed if we had to deal
with a lawsuit. Hopefully he can find people he can work well with on
his forum and he will not try to further aggravate the rest of us.
Bruce
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642________________________________________________________
To unsubscribe from this list, go to: http://sourceforge.net/mail/?group_id=1365
|