ebuppies admin | 21 Dec 2009 23:36
Favicon

eBuppies.com - Offers New Online Dating Site for Black Urban Professionals


 <http://www.ebuppies.com/tellafriend.php>

 December 18, 2009

 <http://www.ebuppies.com/signup.php>

 Dear Friend, <http://www.ebuppies.com>

 eBuppies.com (www.ebuppies.com <http://www.ebuppies.com/signup.php>
) is a new online dating site that is dedicated to providing singles
from all over with the opportunity to connect with other buppy singles
in their local area or anywhere of their choice. 

 More and more buppy singles are going online to connect with others
because going out week after week to nightclubs and bars can be
tiresome, as well as expensive. eBuppies.com makes dating easy by
hosting hundreds of profiles of different singles looking for love.
Buppies can join on a monthly basis for less than they would probably
pay for one night at a nightclub or bar.

 Buppies who are looking for love, romance or just friendship now have
a unique resource that can help them discover their future soul mate:
eBuppies.com. 

 Although high technology drives eBuppies.com, the online dating site
is simple and easy for buppies to navigate. Buppies can register,
browse, search and contact other singles
<http://www.ebuppies.com/signup.php>
at no charge. There is also no charge for buppies to upload a photo
(Continue reading)

get-films | 2 Feb 2008 15:21

new film download site

<html>
<div align="center">
<a href="http://www.get-films.com"><img src="http://img148.imageshack.us/img148/4692/banner2ci6.gif" alt="Get-Films.Com" />
 </div>
</html>

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
filterproxy-devel mailing list
filterproxy-devel <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/filterproxy-devel
FBSW | 15 Oct 2006 00:51
Picon
Favicon

お客様へ

こんにちは。
http://livein21th.com/ze
いくぜくるぜからのお知らせです。
コミュニティを広げるきっかけ作りになる情報をお届けします。

-------------------------------------------------------------------------
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
Bob McElrath | 5 Oct 2003 21:55

transfer-encoding buglet

According to RFC 2616, section 3.6:
    Whenever a transfer-coding is applied to a message-body, the set of
    transfer-codings MUST include "chunked", unless the message is
    terminated by closing the connection.

libwww currently does not correctly implement the "unless" clause where
the connection is closed but a transfer-coding header is present.

Attached is a small patch which fixes this.  A URL that I've run
across that exhibit the problem with FilterProxy are:

    http://larve.net/people/hugo/2000/07/ml-mutt

Cheers,
-- Bob
--- Methods.pm	2003-10-05 12:21:21.000000000 -0700
+++ /usr/share/perl5/Net/HTTP/Methods.pm	2003-10-05 12:24:43.000000000 -0700
 <at>  <at>  -367,8 +367,10  <at>  <at> 
 	}
 	elsif (my $te = ${*$self}{'http_te'}) {
 	    my  <at> te = split(/\s*,\s*/, lc($te));
+            my  <at> connection = split(/\s*,\s*/, ${*$self}{'http_connection'});
 	    die "Chunked must be last Transfer-Encoding '$te'"
-		unless pop( <at> te) eq "chunked";
+		unless((pop( <at> te) eq "chunked") || 
+                        (grep lc($_) eq "close",  <at> connection));

 	    for ( <at> te) {
 		if ($_ eq "deflate" && zlib_ok()) {
Bob McElrath | 23 Apr 2003 20:21
Picon

Re: FilterProxy

dar santos [junedar <at> hotmail.com] wrote:
> Yes. Got it running. It seems so weird that I rather not spend my time 
> tracing the proble. I reinstalled woody and used a diffrent http source to 
> update apt-get then there it was. Maybe the initial source I got had some 
> un-updated packages. Well anyway. Congrats. Its Impressive and fast knowing 
> that its based on perl. Its performance is comparable to any C based 
> apllications.Greatwork. Now i can start finding what I had initially 
> planned of porting it to win32. 

I'm glad you like it.  :)

> Anyway, I noticed the Imagecomp(based on 
> imagemagick convert I presume). If Im not mistaken Its activation is not by 
> default and the user should be the one to make it function.

That module was contributed without a config page, and I have never
really used it so it is kind of decaying...  I wrote a config page for
it though and put it in CVS.  It will be in the next release, when I get
around to it...

> I dont know if you would be interested , correct me if Im wrong, the whole 
> idea of http compression (text/html, xml etc) like the implementation of 
> mod-gzip would be less significant to those using the dialup. Mainly modems 
> have hardware compression and there is also software base(Stac,LZS,MPPC). 
> To compress an already compressed content(gzip encoded)would be useless if 
> not add overhead to the browsing process. I was able to come accross some 
> datas wherein instead of gzip compression html and others are parsed or 
> rewritten(I dont know if this should be the right term I use). I tested it 
> several times and its really impressive that size reduction is up to 40-50% 
> . And still the output is plain html(not compressed.) If you would find 
> interest in these I would gladly lookup again the datas and send them.

On the contrary, the speedup over a modem is simply astounding.  I don't
fully understand why, but it is visably faster (by my measurements, 5
times faster or more).  You have to have FilterProxy running on a
fast-connected server so that it can feed compressed stuff over the
modem.  Just try it.  ;)

I think gzip is a more efficent algorithm for compressing text than any
used by a modem (typical compression ratios for HTML are 5x to 10x).
Not only that but modems suffer from latency.  It can take 300ms to
fetch a 0 byte file from a server.  Image-heavy pages are the pits over
a modem.  By removing ads, FilterProxy typically reduces the number of
connections your browser needs to make to render the page, thereby
speeding it up significantly.

It is possible to also parse HTML and rewrite it to be smaller.  The
typical HTML file contains a lot of whitespace, comments, etc that can
be removed without changing the appearance of the page.  However,
parsing HTML is extremely CPU intensive.  In my tests it would take
several seconds to do this on a modern CPU.  There are other tools out
there that do this (even perl modules).  If you are interested in
pursuing this, I would definitely accept such a module, but I think it
would be slow.

The slowness of parsing HTML is why I chose a regex-based method to
strip ads.  If I used a full HTML parser (like the perl module
HTML::Parser) it would be extremely slow.

> Thanks very much and Ill write as soon as I can manage to make your program 
> run on win32 or win64 that is.

Great!  ;)

Cheers,
Bob McElrath [Univ. of Wisconsin at Madison, Department of Physics]

    "You measure democracy by the freedom it gives its dissidents, not the
    freedom it gives its assimilated conformists." -- Abbie Hoffman


Gmane