Posting rules: All registered members can create threads and post to existing ones.
Question "Hit" counter - and "Preview"
- elrodw
-
Topic Author
"I almost wish there weren't a hit counter. I know everybody likes Morpheus more than me. Why do we have to have a hit counter to emphasize it?"
Important note: HUMOR. Tongue in Cheek. Not serious. "That was a joke, son", etc, ad nauseum.
On a second topic (because I hate to waste a topic), it would be nice if we had a "Preview" button where we could review what we've written before it's posted to the forums - to catch formatting errors, color errors, etc, etc, etc.
Never give up, Never surrender! Captain Peter Quincy Taggert
- Phoenix Spiritus
-
- Valentine
-
Don't Drick and Drive.
- E M Pisek
-
elrodw wrote: I almost wish we didn't have a hit counter. It's ... well, to paraphrase Charlie Brown (adaptations in red),
"I almost wish there weren't a hit counter. I know everybody likes Morpheus more than me. Why do we have to have a hit counter to emphasize it?"
Important note: HUMOR. Tongue in Cheek. Not serious. "That was a joke, son", etc, ad nauseum.
On a second topic (because I hate to waste a topic), it would be nice if we had a "Preview" button where we could review what we've written before it's posted to the forums - to catch formatting errors, color errors, etc, etc, etc.
The hit counter is unreliable. The same person can go back and forth several times causing it to incriminate upwards. A person does not even have to be logged in to cause it to go up. I would say take it with a grain of salt. Or pepper whichever you prefer. I wouldn't loose any sleep over it.
What is - was. What was - is.
- Kristin Darken
-
And if you want REAL unique hits, I can post those. The numbers deviate from page clicks a bit. I've worked out a bit of a theory on that... the longer a story is, the more likely people are to download it once and read it offline... and then post comments via PM or forums. In a shorter story, they will read through once and comment directly. In a mid-range story, they may try to read it online and then find it longer than they expected... so have to come back again to read more.
Add in that I've set things up so people comment on the story pages and that can artificially inflate page hits (one of the main reasons I'm trying to discourage conversation/discussion via story comments).
But yes, page hits can be a hit on the self esteem if you let it. But really... 'most' people are just reading everything that we post. The number of people who selectively read one author over others... are generally balanced out by the ones reading the other. We have that advantage over a site like BCTS where everything is different topics and some people don't read certain authors or categories or whatever, simply because its outside their normal genre preferences. Everything here is a Whateley super story. And with things as integrated as they tend to be, people will read everything; even where its a story they wouldn't otherwise read because of style.
Fate guard you and grant you a Light to brighten your Way.
- elrodw
-
Topic Author
Kristin Darken wrote: But yes, page hits can be a hit on the self esteem if you let it.
It makes me want to cry.

And just to repeat, "That's a joke, son. Get it? A joke."
(foghorn leghorn)
Never give up, Never surrender! Captain Peter Quincy Taggert
- E M Pisek
-
elrodw wrote:
Kristin Darken wrote: But yes, page hits can be a hit on the self esteem if you let it.
It makes me want to cry.
And just to repeat, "That's a joke, son. Get it? A joke."
(foghorn leghorn)
I'm sorry suh, life is to serious too be a joking matter

What is - was. What was - is.
- Domoviye
-
- Dawnfyre
-

and yes a simple wget script wrapped in a bash script could do that. ( bash to start the wget, then delete the pages from the folder downloaded and loop )
just joking there, that type of action could be mistaken as a dos attack.
Stupidity is a capitol offense, a summary not indictable one.
- Phoenix Spiritus
-
elrodw wrote: And just to repeat, "That's a joke, son. Get it? A joke."
(foghorn leghorn)
Yeah, but this is he Whateley forums, we could either a) laugh, or b) ignore the humour and disect to comment ad infinatum. Do I really need to state our preference?
- Kettlekorn
-
I know that was a joke, but FYI, you can avoid creating a file at all like this:Dawnfyre wrote: and yes a simple wget script wrapped in a bash script could do that. ( bash to start the wget, then delete the pages from the folder downloaded and loop )
wget -O - http://wherever.com
- E M Pisek
-
Phoenix Spiritus wrote:
elrodw wrote: And just to repeat, "That's a joke, son. Get it? A joke."
(foghorn leghorn)
Yeah, but this is he Whateley forums, we could either a) laugh, or b) ignore the humour and disect to comment ad infinatum. Do I really need to state our preference?
Being a Devisor I choose c) We dissect the humor as we laugh at the ad infinatums that stream our way.
What is - was. What was - is.
- Dawnfyre
-
Kettlekorn wrote:
I know that was a joke, but FYI, you can avoid creating a file at all like this:Dawnfyre wrote: and yes a simple wget script wrapped in a bash script could do that. ( bash to start the wget, then delete the pages from the folder downloaded and loop )
The -O tells it you want to specify the filename that it will write to, and using a dash as the filename tells it that you want it to write to stdout (i.e., your console) instead of using a file. That's useful for testing things without having to clean up after yourself.wget -O - http://wherever.com
but then I couldn't run it as a background process. lol background something constantly spitting to stdout is a nightmare.
Stupidity is a capitol offense, a summary not indictable one.
- cprime
-
Dawnfyre wrote:
Kettlekorn wrote:
I know that was a joke, but FYI, you can avoid creating a file at all like this:Dawnfyre wrote: and yes a simple wget script wrapped in a bash script could do that. ( bash to start the wget, then delete the pages from the folder downloaded and loop )
The -O tells it you want to specify the filename that it will write to, and using a dash as the filename tells it that you want it to write to stdout (i.e., your console) instead of using a file. That's useful for testing things without having to clean up after yourself.wget -O - http://wherever.com
but then I couldn't run it as a background process. lol background something constantly spitting to stdout is a nightmare.
Which is why the unix gods invented /dev/null. Anything written to /dev/null goes straight into the aether. As such, if you make the command
wget -O /dev/null http://wherever.com
Is your muse looking for inspiration? Send them to Parkerville! Welcome to Parkerville is the latest edition in my series of writing prompts.
- jmhyp
-