Skip to comments.
(Vanity) Suggestion for FRs IT Dept. re: duplicate posts
me
| 8/29/07
| me
Posted on 08/29/2007 11:09:37 AM PDT by the_devils_advocate_666
I would think that FreeRepublic is primarily a database driven web application. When someone creates a post some table or tables are update with 5 basic pieces of information:
- The post being replied TO
- The user posting the message (FROM)
- The contents of the post
- A timestamp documenting when the post was created
Given these bits of information how hard would it be to simply not allow posting a duplicate of 1, 2, and 3 within a certain time threshold of 4 (maybe 1 minute)? Why not spend the hour it would take to implement this and save everyone the embarrassment of duplicate posts and the subsequent annoyance to others?
TOPICS: Your Opinion/Questions
KEYWORDS: duplicate; post; searchbeforeposting; whoopswhoops
Navigation: use the links below to view more comments.
first 1-50, 51-57 next last
Give me the source code and I'll do myself for you.
To: the_devils_advocate_666
Uh oh, that's gonna hurt... "do it myself"
To: the_devils_advocate_666
Uh oh, that's gonna hurt... "do it myself"
To: the_devils_advocate_666
This really isn’t your day. ;)
To: the_devils_advocate_666
Even simpler.... (I love simple)
Just put a little client side script that disables the post button after it has been hit once.
To: the_devils_advocate_666
Doesn’t look like you got it implemented... double posting and all...
6
posted on
08/29/2007 11:12:59 AM PDT
by
MrB
(You can't reason people out of a position that they didn't use reason to get into in the first place)
To: the_devils_advocate_666
Example of a duplicate post?
7
posted on
08/29/2007 11:13:33 AM PDT
by
ladtx
( "I don't know how I got over the hill without getting to the top." - - Will Rogers)
To: MrB
You think there might be a chance I did that on purpose?
To: LesbianThespianGymnasticMidget
I’m not sure, but it may be possible to create a duplicate post by doing a simple refresh... I’m about to give it a try.
To: the_devils_advocate_666
To: the_devils_advocate_666
Naw. Doesn't work that way.
:)
11
posted on
08/29/2007 11:16:11 AM PDT
by
Pistolshot
(Every woman, who can, should learn to shoot, and carry a gun.)
To: the_devils_advocate_666
"I'll do myself for you."You on Sen Craig's campaign team? "Why not spend the hour it would take to implement this and save everyone the embarrassment of duplicate posts and the subsequent annoyance to others?"
It would slow down the server, because each and every post would reqiure the extra time it would take to do the search and compares. That effect would be magnified by more folks hitting the reply button again, because the page didn't change quick enough for them. If folks are embarassed, or annoyed, they can use the phone book to locate a variety of psychiatric options.
12
posted on
08/29/2007 11:21:59 AM PDT
by
spunkets
("Freedom is about authority", Rudy Giuliani, gun grabber)
To: the_devils_advocate_666
How about a feature that appears at the top of every page in large flashing red letters:
MARTIAL MONK IS A MORON WHO JUST POSTED A DUPLICATE. SIC 'EM
No one would ever post a thread again.
To: the_devils_advocate_666
I doubt that the the text, the “content” of the post is any type of highly indexed database field.
If the “content” is in a field of its own, that field is most likely either a “memo” type field or a single unlimited string that includes, bit by bit, the formating as well.
It would not be indexed in such a way as to say in one question - if string x = string y.
Determining duplication of the entire text of a post within FRs available means, most likely requires a looping sort and search operation that must, word by word, find all the words in the text and find them in the same sequence.
I would not recommend FR spend the effort to do it. Besides the cost, it will likely greatly slow down the length of time from submission of a new post to its appearance on the viewable pages.
14
posted on
08/29/2007 11:31:53 AM PDT
by
Wuli
To: spunkets
It would slow down the server I'm not buying that. Index the appropriate columns on a table or two (if they aren't already) and the required SELECT query would certainly not cripple the database server.
To: the_devils_advocate_666
It has to do with a counter.
16
posted on
08/29/2007 11:36:06 AM PDT
by
txhurl
To: the_devils_advocate_666
For a while it seemed that every time I would reply it would get duplicated. I was not hitting the post button twice, I was very careful not to do that.
17
posted on
08/29/2007 11:40:38 AM PDT
by
JAKraig
(Joseph Kraig)
To: the_devils_advocate_666
For a while it seemed that every time I would reply it would get duplicated. I was not hitting the post button twice, I was very careful not to do that.
18
posted on
08/29/2007 11:40:38 AM PDT
by
JAKraig
(Joseph Kraig)
To: Wuli
I doubt that the the text, the content of the post is any type of highly indexed database field. I doubt it, but I do not know the database engine they are using or the datatype of the field that stores the "content".
To: the_devils_advocate_666
When someone creates a post some table or tables are update with 5 basic pieces of information:
The post being replied TO
The user posting the message (FROM)
The contents of the post
A timestamp documenting when the post was created
I can't possibly be the first to note that this is only four things.
20
posted on
08/29/2007 11:43:02 AM PDT
by
Xenalyte
(Can you count, suckas? I say the future is ours . . . if you can count.)
To: the_devils_advocate_666
That might make rapid-fire armed citizen pings a little harder...
21
posted on
08/29/2007 11:43:15 AM PDT
by
DaveLoneRanger
("Being normal is not necessarily a virtue. It rather denotes a lack of courage.")
To: the_devils_advocate_666
That might make rapid-fire armed citizen pings a little harder...
22
posted on
08/29/2007 11:43:17 AM PDT
by
DaveLoneRanger
("Being normal is not necessarily a virtue. It rather denotes a lack of courage.")
To: the_devils_advocate_666
23
posted on
08/29/2007 11:49:39 AM PDT
by
Arrowhead1952
(The measure of a country is not how many people are wanting to come in, but how many want to leave.)
To: the_devils_advocate_666
...Give me the source code and I'll do myself for you...
Famous last words of many programmers. A statement that will ALWAYS bite you in the a**.
24
posted on
08/29/2007 11:49:42 AM PDT
by
Spruce
To: the_devils_advocate_666
Umm I’m no expert but I believe this forum was built before any of the fancy smancy widgets they have now a days. Besides. If it ain’t broke, don’t fix it is my motto.
25
posted on
08/29/2007 11:52:00 AM PDT
by
McGruff
To: Xenalyte
Oops, I was originally thinking of putting the “post being replied to” and the “TO” (the freeper) as two separate pieces of information. But then I figured knowing the “post being replied to” would indirectly give you the “TO” value as well.
To: the_devils_advocate_666
I like duplicate posts. It gives me the opportunity to mock and deride the idiots making them.
To: the_devils_advocate_666
I like duplicate posts. It gives me the opportunity to mock and deride the idiots making them.
To: the_devils_advocate_666
Ah, but the “TO” can be changed to add/remove freepers. So there are 5 pieces of information, the post being replied to and the “To:” list.
To: the_devils_advocate_666
I don’t understand this thread.
30
posted on
08/29/2007 1:25:21 PM PDT
by
processing please hold
(Duncan Hunter '08) (ROP and Open Borders-a terrorist marriage and hell's coming with them)
To: processing please hold
I don’t understand this thread.
31
posted on
08/29/2007 1:25:48 PM PDT
by
processing please hold
(Duncan Hunter '08) (ROP and Open Borders-a terrorist marriage and hell's coming with them)
To: the_devils_advocate_666
Tell me, how much did your employer pay you while you made this thread at work? :)
32
posted on
08/29/2007 1:29:09 PM PDT
by
WV Mountain Mama
(Still praying for the miners and their families.)
To: the_devils_advocate_666
Tell me, how much did your employer pay you while you made this thread at work? :)
33
posted on
08/29/2007 1:29:09 PM PDT
by
WV Mountain Mama
(Still praying for the miners and their families.)
To: the_devils_advocate_666
Just dont click your moose so soon
To: the_devils_advocate_666
Just dont click your moose so soon
To: the_devils_advocate_666
Just dont click your moose so soon
To: the_devils_advocate_666
Just dont click your moose so soon
To: processing please hold
i like posting two things ......
38
posted on
08/29/2007 1:33:40 PM PDT
by
Dick Vomer
(liberals suck....... but it depends on what your definition of the word "suck" is.,)
To: processing please hold
I dont understand this thread. Are you logged in?
39
posted on
08/29/2007 1:36:44 PM PDT
by
Spiff
To: the_devils_advocate_666
40
posted on
08/29/2007 1:36:48 PM PDT
by
SergeiRachmaninov
(Not buying Fred yet...still shopping)
To: the_devils_advocate_666
41
posted on
08/29/2007 1:37:09 PM PDT
by
SergeiRachmaninov
(Not buying Fred yet...still shopping)
To: McGruff
Umm Im no expert but I believe this forum was built before any of the fancy smancy widgets they have now a days. Besides. If it aint broke, dont fix it is my motto. Even though FR started long ago, there have been quite a number of improvements over the years. (Unclosed tags don't carry over from one post to the next, for one.)
42
posted on
08/29/2007 1:41:01 PM PDT
by
Bob
To: Dick Vomer
That don't do nuthin' for me. This, on the other hand.........
43
posted on
08/29/2007 1:41:02 PM PDT
by
processing please hold
(Duncan Hunter '08) (ROP and Open Borders-a terrorist marriage and hell's coming with them)
To: Spiff
Are you logged in?I'm not sure. How can I tell?
44
posted on
08/29/2007 1:42:07 PM PDT
by
processing please hold
(Duncan Hunter '08) (ROP and Open Borders-a terrorist marriage and hell's coming with them)
To: the_devils_advocate_666
Nope, that didnt do it.
-———————————————————————————————Let me take a crack at it....
45
posted on
08/29/2007 1:55:11 PM PDT
by
crazyhorse691
(The faithful will keep their heads down, their powder dry and hammer at the enemies flanks.)
To: the_devils_advocate_666
Nope, that didnt do it.
-———————————————————————————————Let me take a crack at it....
46
posted on
08/29/2007 1:55:32 PM PDT
by
crazyhorse691
(The faithful will keep their heads down, their powder dry and hammer at the enemies flanks.)
To: Arrowhead1952
47
posted on
08/29/2007 2:03:45 PM PDT
by
Millee
(Tagline free since 10/20/06)
To: Dick Vomer
48
posted on
08/29/2007 2:05:44 PM PDT
by
papasmurf
(<<<<< Click there to see my dogs! Oh, and I have FRed one liners, too.)
To: the_devils_advocate_666

Duplicate posts.
49
posted on
08/29/2007 2:06:18 PM PDT
by
stinkerpot65
(Global warming is a Marxist lie.)
To: the_devils_advocate_666
Duplicate posts aren’t really that much of a problem.
50
posted on
08/29/2007 2:49:25 PM PDT
by
ElkGroveDan
(When toilet paper is a luxury, you have achieved communism.)
Navigation: use the links below to view more comments.
first 1-50, 51-57 next last
Disclaimer:
Opinions posted on Free Republic are those of the individual
posters and do not necessarily represent the opinion of Free Republic or its
management. All materials posted herein are protected by copyright law and the
exemption for fair use of copyrighted works.
FreeRepublic.com is powered by software copyright 2000-2008 John Robinson