In the chat rooms in the Scratch 2.0 prototype, there was a significant amount of swearing. Should someone report the project? If not, then what?
Offline
What chat rooms? If there was swearing, it needs to be reported!
Last edited by sonicfan12p (2012-05-19 20:13:40)
Offline
sonicfan12p wrote:
What chat rooms? If there was swearing, it needs to be reported!
Yup, just report the swearing, and if the problem is with the project, it will be removed, and the owner will probably be sent a warning.
If people are swearing on a project, report it and the Scratch Team will handle it.
Offline
BoltBait wrote:
hdarken wrote:
I went on it and someone impersonated me and said some bad stuff.
This is easy to do since there is no USERNAME reporter block.
Yep. Not having one leads to bad things, but having one leads to bad things. :L
Offline
veggieman001 wrote:
BoltBait wrote:
hdarken wrote:
I went on it and someone impersonated me and said some bad stuff.
This is easy to do since there is no USERNAME reporter block.
Yep. Not having one leads to bad things, but having one leads to bad things. :L
I disagree.
I gave a good solution in another thread where the user is prompted to allow access to their username.
Offline
BoltBait wrote:
veggieman001 wrote:
BoltBait wrote:
This is easy to do since there is no USERNAME reporter block.
Yep. Not having one leads to bad things, but having one leads to bad things. :L
I disagree.
I gave a good solution in another thread where the user is prompted to allow access to their username.
That is neither of those, so I still win.
I agree with that, though.
Offline
What are the bad things that come from a username block? Off hand the only bad thing I can think of is that alot of people may start making projects that don't work unless you log in, which would be mildly annoying.
Offline
An example was given something like this:
if <(USERNAME) = [ManaUser]> be mean else be niceBut, I think this argument is flawed because there is still accountability in that the script can be viewed by anyone and everyone will know who wrote the script.
Last edited by BoltBait (2012-05-20 01:39:04)
Offline
ManaUser wrote:
What are the bad things that come from a username block? Off hand the only bad thing I can think of is that alot of people may start making projects that don't work unless you log in, which would be mildly annoying.
Private chat rooms, which can be hard to moderate.
Offline
I have a good (yet complicated for less-experienced users) solution. Before a post is submitted, you can use list scanning to check for any inappropriate language from a list. Highly recommended you have a vast knowledge of swears however. Basically, it converts the text into a list, and if the scanner finds a combination of letters that spell out a bad word, then it cancels the submission.
Offline
NeilWest wrote:
I have a good (yet complicated for less-experienced users) solution. Before a post is submitted, you can use list scanning to check for any inappropriate language from a list. Highly recommended you have a vast knowledge of swears however. Basically, it converts the text into a list, and if the scanner finds a combination of letters that spell out a bad word, then it cancels the submission.
It was in someone else's project.
Offline
NeilWest wrote:
I have a good (yet complicated for less-experienced users) solution. Before a post is submitted, you can use list scanning to check for any inappropriate language from a list. Highly recommended you have a vast knowledge of swears however. Basically, it converts the text into a list, and if the scanner finds a combination of letters that spell out a bad word, then it cancels the submission.
But then you have swear words in the source of your project :I
Offline
Offline
veggieman001 wrote:
NeilWest wrote:
I have a good (yet complicated for less-experienced users) solution. Before a post is submitted, you can use list scanning to check for any inappropriate language from a list. Highly recommended you have a vast knowledge of swears however. Basically, it converts the text into a list, and if the scanner finds a combination of letters that spell out a bad word, then it cancels the submission.
But then you have swear words in the source of your project :I
Well,couldnt you just have the list be called:Dont look!Warning!Swears!Particularly if you dont know any!Or something like that?PLus,isnt it possible to put a download lock?(Ive never tried or wanted to)
Offline
I took mine down because of that.
I think the only good solution is to censor all cloud data before being sent to the server.
Offline
Hey all,
got a reply from the ST about this problem.
Lightnin wrote:
Yep, we have to do some work to deal with that problem.
Offline
Yeah, at this chatroom ([link removed by moderator - it's better just not to link to it if there's rude content]) there was a lot of profanity.
One way to fix that would be to only keep 50 or so lines in the list, so if there was profanity, you could bump it off the list.
Also, flagging in 2.0 doesn't work yet.
(Btw, someone should delete that list soon)
Last edited by scimonster (2012-05-21 13:54:45)
Offline
veggieman001 wrote:
BoltBait wrote:
hdarken wrote:
I went on it and someone impersonated me and said some bad stuff.
This is easy to do since there is no USERNAME reporter block.
Yep. Not having one leads to bad things, but having one leads to bad things. :L
like:
when gf clicked forever if <(username)=[Mokat]> say [bad word] for (2) secs end
Last edited by Mokat (2012-05-20 20:39:48)
Offline
This information is obsolete, see my next post.
So here's my little attempt at word filter. The word list is lightly encrypted, but I still didn't have the guts to put real profanity in there, so I used the made up insults from Morrowind. Anyway, you can easily add your own words right from the demo.
It only blocks whole words, so it won't make the classic mistake of censoring "classic", but that does mean you have to tackle "scratch", "scratched", "scratcher", "scratching", etc separately.
In the Flash player running Turbo Mode it works so fast you won't notice anything, but without Turbo Mode it's pretty miserable. It could be optimized some, but didn't have the patience.
Last edited by ManaUser (2012-05-22 00:21:36)
Offline
Realizing the potential of quoting very important messages.
Offline
Updated my filter demo. I added wildcard support, so "?badword?" would match "superbadword", "badwords", etc. It also uses a simple but more or less irreversible hash function now, so I went ahead and loaded it with hashes of real swears. Have fun.
I strongly recommend the Flash player, but if you can't use that, at least use Turbo.
Last edited by ManaUser (2012-05-22 00:20:12)
Offline