Official Everybody Edits Forums

Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?

You are not logged in.

#1 2015-08-03 15:39:33

Creature
Member
From: The Dark Web
Joined: 2015-02-15
Posts: 9,658

Duplicate Posting

I frequently see everyone (including myself) doing this.
If you open some discussion topics, you may eventually see posts like this:

ForumPerson1 wrote:

This is not nice.

ForumPerson2 wrote:

Yeah, it's totally not nice.

ForumPerson3 wrote:

You should know that this is not nice.

ForumPerson4 wrote:

Sorry, but this is not nice, you should know that.

And so on.

Do you think all these posts are needed? What would you do if you saw this happening? You would probably ignore, but what if someone comes with different content?

Don't believe me? Take a look here. This thread was not important anyways, but someone might come with an useful idea, it wouldn't be nice if it were swallowed with duplicated posts. If you want real examples, take a look at this, there's basically a lot of posts with the exact same content, but interpreted different.

What do you think about these posts?

(No, I am not being against these posts, I just thought it would help not duplicate posting)


This is a false statement.

Offline

Wooted by:

#2 2015-08-04 03:30:19

Anch
Member
Joined: 2015-02-16
Posts: 5,447

Re: Duplicate Posting

More people voicing their opinion makes their argument stronger.

Offline

#3 2015-08-04 12:13:24

Onjit
Member
Joined: 2015-02-15
Posts: 9,710
Website

Re: Duplicate Posting

I think it's all about making an argument stronger, more people voicing the same thing makes it appear so.


:.|:;

Offline

#4 2015-08-04 12:40:42

skullz17
Member
Joined: 2015-02-15
Posts: 6,699

Re: Duplicate Posting

I'd say it has something to do with making the argument stronger because more people voicing the same opinion will have that effect.


m3gPDRb.png

thx for sig bobithan

Offline

#5 2015-08-04 12:51:04

BuzzerBee
Forum Admin
Joined: 2015-02-15
Posts: 4,575

Re: Duplicate Posting

I have to agree, when more people voice the same opinion it strengthens the argument.


TdQRyz3.png
https://wiki.everybodyedits.com/images/5/5d/135_bee

Offline

#6 2015-08-04 13:04:52

Pingohits
Banned
From: aids lizard
Joined: 2015-02-15
Posts: 7,591

Re: Duplicate Posting

When more people agree with the same thing, they become one with the opinion. The opinion will be all that matters.


791mAP8.png

Offline

#7 2015-08-04 19:01:11

Xfrogman43
Member
From: need to find a new home
Joined: 2015-02-15
Posts: 4,174

Re: Duplicate Posting

If (people.AgreeOn("samething"))
{
argument = "stronger";
}


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

#8 2015-08-04 19:05:44

Creature
Member
From: The Dark Web
Joined: 2015-02-15
Posts: 9,658

Re: Duplicate Posting

Well, then woots are useless as all you have to do is say: "I agree/disagree, because...".


This is a false statement.

Offline

#9 2015-08-04 22:45:34

Anak
Guest

Re: Duplicate Posting

I don't usually see people doing this unless they have something else to add though. (Or at least, not masses of people)

#10 2015-08-05 03:55:30

Xfrogman43
Member
From: need to find a new home
Joined: 2015-02-15
Posts: 4,174

Re: Duplicate Posting

^People usually say
"I agree"
multiple times, yes, but they all have different reasons.


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

#11 2015-08-05 09:50:06, last edited by Marios (2015-08-05 10:04:40)

Marios
Member
Joined: 2015-08-03
Posts: 1,020

Re: Duplicate Posting

Xfrogman43 wrote:

If (people.AgreeOn("samething"))
{
argument = "stronger";
}

Let me majorly improve that statement for you... in Lua.

local topic = Forum:GetTopic(29397)
local argumentstarter = 147 --The ID of the one who started the argument
local match1 --For effecient usage below
local match2 --Same here
posters = {}
argumentstrength = 1
topic.PostSubmitted:connect(function(poster, post)
   if poster.Id ~= argumentstarter then
   if posters[poster.Id] == nil then --If the poster already returned an opinion on the topic, it's not necessary to do the below
      match1 = string.find(post, "not nice") --Agree?
      match2 = string.find(post, "is nice") --Disagree?
      if match1 ~= nil then
         posters[poster.Id] = true --True as he/she agrees
         argumentstrength = argument-strength + 1
      elseif match2 ~= nil then
         posters[poster.Id] = false --False as he/she disagrees
         argumentstrength = argumentstrength - 1
      end
   print("Argument 'This is not nice.' current strength is " .. tostring(argumentstrength))
   end
   end
end)

Why all of this, Marios? Because what Xfrogman43 posted is not code... at least for me. So i wanted to return something more accurate.

What is a Lua, and can i eat it? http://www.lua.org/about.html

And, on-topic, i also agree with people posting the same thing to empower it.

Offline

#12 2015-08-05 10:38:26

skullz17
Member
Joined: 2015-02-15
Posts: 6,699

Re: Duplicate Posting

Marios wrote:
Xfrogman43 wrote:

If (people.AgreeOn("samething"))
{
argument = "stronger";
}

Let me majorly improve that statement for you... in Lua.

local topic = Forum:GetTopic(29397)
local argumentstarter = 147 --The ID of the one who started the argument
local match1 --For effecient usage below
local match2 --Same here
posters = {}
argumentstrength = 1
topic.PostSubmitted:connect(function(poster, post)
   if poster.Id ~= argumentstarter then
   if posters[poster.Id] == nil then --If the poster already returned an opinion on the topic, it's not necessary to do the below
      match1 = string.find(post, "not nice") --Agree?
      match2 = string.find(post, "is nice") --Disagree?
      if match1 ~= nil then
         posters[poster.Id] = true --True as he/she agrees
         argumentstrength = argument-strength + 1
      elseif match2 ~= nil then
         posters[poster.Id] = false --False as he/she disagrees
         argumentstrength = argumentstrength - 1
      end
   print("Argument 'This is not nice.' current strength is " .. tostring(argumentstrength))
   end
   end
end)

Why all of this, Marios? Because what Xfrogman43 posted is not code... at least for me. So i wanted to return something more accurate.

What is a Lua, and can i eat it? http://www.lua.org/about.html

And, on-topic, i also agree with people posting the same thing to empower it.

wow thanks so useful


m3gPDRb.png

thx for sig bobithan

Offline

Wooted by:

#13 2015-08-05 10:40:29

Marios
Member
Joined: 2015-08-03
Posts: 1,020

Re: Duplicate Posting

skullz17 wrote:

wow thanks so useful

I'm just going to pretend i don't even know what irony is and say "you're welcome".

Offline

Wooted by:

#14 2015-08-05 18:08:41

Pyromaniac
Official Caroler
Joined: 2015-02-15
Posts: 4,868

Re: Duplicate Posting

After onjits post you guys reached a point of diminishing returns on the cleverness.

Offline

Wooted by:

#15 2015-08-06 04:43:12

Onjit
Member
Joined: 2015-02-15
Posts: 9,710
Website

Re: Duplicate Posting

Pyromaniac wrote:

After onjits post you guys reached a point of diminishing returns on the cleverness.

That was my master plan. I had the decision to either contribute something new, or start the chain reaction joke that happened.

I AM BECOME ONJIT

DESTROYER OF THREADS


:.|:;

Offline

Wooted by: (2)
Onjit1438832592527361

Board footer

Powered by FluxBB

[ Started around 1738515040.5813 - Generated in 0.057 seconds, 12 queries executed - Memory usage: 1.62 MiB (Peak: 1.8 MiB) ]