This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-04-25 08:27:50

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Change username case

Some people complain about the case of their username. I wish i had made mine as "Scimonster".
I know general changing of usernames has been rejected, but not just case changing. After all, usernames are case insensitive (compare scimonster, Scimonster, SCIMONSTER, ScImOnStEr, etc), and people won't think you're a different person if you change the case.
It could also be done rather simply. Over where you can change your password and email, there could be another one that said "change username". You would type in your new username. It would then check if the new one (transformed to lowercase) and the old (transformed to lowercase) were equal. That could be done with JavaScript. If they were, it would let the form be submitted, and it would update your username in the DB.

How's that?

Offline

 

#2 2012-04-25 10:19:03

wolvesstar97
Scratcher
Registered: 2011-08-31
Posts: 1000+

Re: Change username case

Support
I want to be Wolvesstar97.


https://dl.dropbox.com/u/33551365/psyko.png

Offline

 

#3 2012-04-25 10:32:09

GeonoTRON2000
Scratcher
Registered: 2009-12-24
Posts: 1000+

Re: Change username case

scimonster wrote:

Some people complain about the case of their username. I wish i had made mine as "Scimonster".
I know general changing of usernames has been rejected, but not just case changing. After all, usernames are case insensitive (compare scimonster, Scimonster, SCIMONSTER, ScImOnStEr, etc), and people won't think you're a different person if you change the case.
It could also be done rather simply. Over where you can change your password and email, there could be another one that said "change username". You would type in your new username. It would then check if the new one (transformed to lowercase) and the old (transformed to lowercase) were equal. That could be done with JavaScript. If they were, it would let the form be submitted, and it would update your username in the DB.

How's that?

Support!
It could use:

Code:

<?php
if (strtolower($newCase) == strtolower($oldUsername)) {
  mysql_query("UPDATE users
  SET username='$newCase'
  WHERE id  = '$id'") or die(mysql_error());
}
?>

http://i.imgur.com/BAEgGDL.png

Offline

 

#4 2012-04-25 10:35:51

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: Change username case

Sure, I'll support. Although I wouldn't use it, it would be great for people like you who prefer their username capitalised.  smile


Posts: 20000 - Show all posts

Offline

 

#5 2012-04-25 11:13:27

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: Change username case

GeonoTRON2000 wrote:

scimonster wrote:

Some people complain about the case of their username. I wish i had made mine as "Scimonster".
I know general changing of usernames has been rejected, but not just case changing. After all, usernames are case insensitive (compare scimonster, Scimonster, SCIMONSTER, ScImOnStEr, etc), and people won't think you're a different person if you change the case.
It could also be done rather simply. Over where you can change your password and email, there could be another one that said "change username". You would type in your new username. It would then check if the new one (transformed to lowercase) and the old (transformed to lowercase) were equal. That could be done with JavaScript. If they were, it would let the form be submitted, and it would update your username in the DB.

How's that?

Support!
It could use:

Code:

<?php
if (strtolower($newCase) == strtolower($oldUsername)) {
  mysql_query("UPDATE users
  SET username='$newCase'
  WHERE id  = '$id'") or die(mysql_error());
}
?>

You want to rewrite that in Python?  tongue  2.0 will run on the Django framework, in Python.

Offline

 

#6 2012-04-25 11:42:14

roijac
Scratcher
Registered: 2010-01-19
Posts: 1000+

Re: Change username case

scimonster wrote:

GeonoTRON2000 wrote:

scimonster wrote:

Some people complain about the case of their username. I wish i had made mine as "Scimonster".
I know general changing of usernames has been rejected, but not just case changing. After all, usernames are case insensitive (compare scimonster, Scimonster, SCIMONSTER, ScImOnStEr, etc), and people won't think you're a different person if you change the case.
It could also be done rather simply. Over where you can change your password and email, there could be another one that said "change username". You would type in your new username. It would then check if the new one (transformed to lowercase) and the old (transformed to lowercase) were equal. That could be done with JavaScript. If they were, it would let the form be submitted, and it would update your username in the DB.

How's that?

Support!
It could use:

Code:

<?php
if (strtolower($newCase) == strtolower($oldUsername)) {
  mysql_query("UPDATE users
  SET username='$newCase'
  WHERE id  = '$id'") or die(mysql_error());
}
?>

You want to rewrite that in Python?  tongue  2.0 will run on the Django framework, in Python.

Code:

import django
django.usernames['newname'] = django.usernames['oldname']
del django.usenames['oldname']

or something...

Offline

 

#7 2012-04-25 12:22:36

schusteralex2
Scratcher
Registered: 2011-09-17
Posts: 1000+

Re: Change username case

I wouldn't use, but I do support  big_smile


http://i44.tinypic.com/2uj37ds.gif

Offline

 

#8 2012-04-26 02:55:07

trinary
Scratcher
Registered: 2012-01-29
Posts: 1000+

Re: Change username case

I can see how this might be desirable to some.

Support!


http://trinary.tk/images/signature_.php

Offline

 

#9 2012-05-31 00:09:03

pokepen
Scratcher
Registered: 2011-02-13
Posts: 16

Re: Change username case

I Need My Username's First Letter To Be Capitalized.

Offline

 

#10 2012-05-31 01:41:02

Jonathanpb
Scratcher
Registered: 2008-07-25
Posts: 1000+

Re: Change username case

Lolol support if it can be done  tongue

Last edited by Jonathanpb (2012-05-31 01:41:25)


"Human beings... must have action; and they will make it if they cannot find it.
-Charlotte Brontë

Offline

 

#11 2012-05-31 01:41:31

Chrischb
Scratcher
Registered: 2008-07-24
Posts: 1000+

Re: Change username case

Support, I like mine how it is though  tongue


I fall: It's a tragedy. You fall: It's comedy.
Hmph enjoy your fall - I get a lovely spring... without pans of new leaves.

Offline

 

#12 2012-05-31 06:53:48

joletole
Scratcher
Registered: 2011-02-20
Posts: 1000+

Re: Change username case

Support!

I want to make my name Joletole.

Offline

 

#13 2012-05-31 09:25:46

ImagineIt
Scratcher
Registered: 2011-02-28
Posts: 1000+

Re: Change username case

Support, even though my name is just fine as ImagineIt.

Offline

 

#14 2012-05-31 09:30:01

Bklecka
Scratcher
Registered: 2011-08-27
Posts: 1000+

Re: Change username case

support


http://i48.tinypic.com/106ijc9.jpg

Offline

 

#15 2012-05-31 09:36:57

Mokat
Scratcher
Registered: 2011-12-08
Posts: 1000+

Re: Change username case

Support, even though I like it as Mokat.


http://www.eggcave.com/egg/977371.pnghttp://www.eggcave.com/egg/977376.pnghttp://www.eggcave.com/egg/1005291.pnghttp://www.eggcave.com/egg/996745.png

Offline

 

#16 2012-05-31 13:42:51

Renegade583
New Scratcher
Registered: 2012-05-29
Posts: 21

Re: Change username case

I support this idea  smile  I hope it goes through

Offline

 

#17 2012-05-31 13:46:15

technoboy10
Scratcher
Registered: 2007-08-25
Posts: 1000+

Re: Change username case

Support. I love my username on the wiki.  smile


So long, 1.4.
http://goo.gl/3JEV9

Offline

 

#18 2012-05-31 14:56:21

soniku3
Scratcher
Registered: 2011-12-08
Posts: 1000+

Re: Change username case

support!


internet's all about cats today.

Offline

 

#19 2012-05-31 15:53:23

coolhogs
Scratcher
Registered: 2011-07-26
Posts: 1000+

Re: Change username case

Support, but I kind of like being coolhogs, instead of Coolhogs.  smile


Get ready for domination of:  tongue

Offline

 

#20 2012-05-31 18:18:44

G0D_M0D3
Scratcher
Registered: 2011-11-28
Posts: 1000+

Re: Change username case

Support.

I'd also like to be able to change my username

Everybody thinks I'm God Mod, but I'm God Mode (my username's in l33tspeak, an old internet meme)


I made a MC texture pack! Get it at planetminecraft!
http://i.imgur.com/0EG0u.png

Offline

 

#21 2012-05-31 19:49:19

shpeters
Scratcher
Registered: 2011-12-11
Posts: 100+

Re: Change username case

I support it. I also would like to capitalize the first letter of my username.


http://i.imgur.com/bboYO.pnghttp://i.imgur.com/66Yki.gifhttp://i.imgur.com/uLUsl.jpg

Offline

 

Board footer