Discuss Scratch
- Discussion Forums
- » Questions about Scratch
- » How many 3 letter usernames are left
- PoIygon
-
1000+ posts
How many 3 letter usernames are left
this snap! project can help you, just download the xml file and import it into snap.You can edit it so it only has letters and not other characters.
or you could use this
- 9gr
-
1000+ posts
How many 3 letter usernames are left
My snap project sometimes doesn't work, there are definitely many more.this snap! project can help you, just download the xml file and import it into snap.TYSM
or you could use this
I am soooooo honered to be a 3 letter userame :DDDDDDDDDD
If you create a 3 letter username then only take ONE. (My real user is cat_tap)
As for this, I won't go spreading the news of that, we don't want all the 3 letter usernames takenXD.
So anyway, THANKYOU! <3
That was VERY helpful.
As for the amount left, according to that, there is 49 left. 0.0
- 9gr
-
1000+ posts
How many 3 letter usernames are left
I'll push an update to it so there are many other options later.this snap! project can help you, just download the xml file and import it into snap.You can edit it so it only has letters and not other characters.
or you could use this
will I get banned from snap
- cat_tap
-
1000+ posts
How many 3 letter usernames are left
yeah I thought that there might have been more..My snap project sometimes doesn't work, there are definitely many more.this snap! project can help you, just download the xml file and import it into snap.TYSM
or you could use this
I am soooooo honered to be a 3 letter userame :DDDDDDDDDD
If you create a 3 letter username then only take ONE. (My real user is cat_tap)
As for this, I won't go spreading the news of that, we don't want all the 3 letter usernames takenXD.
So anyway, THANKYOU! <3
That was VERY helpful.
As for the amount left, according to that, there is 49 left. 0.0
- ScratchCatHELLO
-
1000+ posts
How many 3 letter usernames are left
there is 49 left.that's the number of usernames that only have numbers and symbols (_ and -).
you need to modify the project
there's actually 7,404 usernames left
- Nezon
-
1000+ posts
How many 3 letter usernames are left
I sniped one myself, but turns out me the idiot forgot the password
- ScratchCatHELLO
-
1000+ posts
How many 3 letter usernames are left
I sniped one myself, but turns out me the idiot forgot the password
did you confirm the email?
- 1vq
-
7 posts
How many 3 letter usernames are left
But… my username has letters, and it's from the project.there is 49 left.that's the number of usernames that only have numbers and symbols (_ and -).
you need to modify the project
there's actually 7,404 usernames left
- ScratchCatHELLO
-
1000+ posts
How many 3 letter usernames are left
Here's a python script that uses a brute force method (i'm too lazy to figure out file saving)
import requests import concurrent.futures # this script is not originally by me. credit goes to I8P. read this post (https://scratch.mit.edu/discuss/post/4901838/) for the original python3 script URL = "https://api.scratch.mit.edu/users/" CONNECTIONS = 20 def get_usernames(alphabet): my_list = [] for l1 in alphabet: for l2 in alphabet: for l3 in alphabet: my_list.append(l1 + l2 + l3) return my_list def check_username(username): r = requests.get(URL + username) return (r.status_code == requests.codes.ok) usernames = get_usernames("abcdefghijklmnopqrstuvwxyz1234567890-_") print("Concurrent") available_usernames = [] with concurrent.futures.ThreadPoolExecutor(max_workers=CONNECTIONS) as executor: # Start the load operations and mark each future with its username future_to_url = {executor.submit(check_username, username): username for username in usernames} for future in concurrent.futures.as_completed(future_to_url): username = future_to_url[future] if not future.result(): print(username) available_usernames.append(username) print(available_usernames) print(len(available_usernames))
Last edited by ScratchCatHELLO (March 7, 2021 23:50:24)
- Nezon
-
1000+ posts
How many 3 letter usernames are left
delete
Last edited by Nezon (March 2, 2021 20:15:10)
- ScratchCatHELLO
-
1000+ posts
How many 3 letter usernames are left
But… my username has letters, and it's from the project.there is 49 left.that's the number of usernames that only have numbers and symbols (_ and -).
you need to modify the project
there's actually 7,404 usernames left
that project seems broken
it says gga isn't taken but it is (all letter-only three-letter usernames are taken already)
- cat_tap
-
1000+ posts
How many 3 letter usernames are left
Well, it works for me XD.But… my username has letters, and it's from the project.there is 49 left.that's the number of usernames that only have numbers and symbols (_ and -).
you need to modify the project
there's actually 7,404 usernames left
that project seems broken
it says gga isn't taken but it is (all letter-only three-letter usernames are taken already)
I sniped one myself, but turns out me the idiot forgot the passwordYou can change your password very easily, you just have to know what email you signed up with.
- Ihatr
-
1000+ posts
How many 3 letter usernames are left
sad that usernames with just 3 letters have all been taken 
- Nezon
-
1000+ posts
How many 3 letter usernames are left
but i inputted a fake emailI sniped one myself, but turns out me the idiot forgot the passwordYou can change your password very easily, you just have to know what email you signed up with.
- 9gr
-
1000+ posts
How many 3 letter usernames are left
My version of the snap! namesniper should work now, as I moved to the scratch api instead of leftys api.
Edit: rip it doesn't work - might as well work on the js version
Edit: rip it doesn't work - might as well work on the js version
Last edited by 9gr (March 2, 2021 20:36:00)
- cat_tap
-
1000+ posts
How many 3 letter usernames are left
Why does that seem to happen alot, you can't use a scratch account if you put in a fake email.but i inputted a fake emailI sniped one myself, but turns out me the idiot forgot the passwordYou can change your password very easily, you just have to know what email you signed up with.
sad that usernames with just 3 letters have all been takenNot all of them, I just got one a few minutes ago
- ScratchCatHELLO
-
1000+ posts
How many 3 letter usernames are left
but i inputted a fake emailI sniped one myself, but turns out me the idiot forgot the passwordYou can change your password very easily, you just have to know what email you signed up with.
why do people do this
- cat_tap
-
1000+ posts
How many 3 letter usernames are left
Why was this just closed?
And there are probably alot left….
And there are probably alot left….
- KangaCoder
-
1000+ posts
How many 3 letter usernames are left
Why was this just closed?What do you mean? Why this topic was closed?
And there are probably alot left….
- Flowermanvista
-
1000+ posts
How many 3 letter usernames are left
Here's a python script that uses a brute force method (i'm too lazy to figure out file saving)Thank you ScratchCatHELLO, very cool.
~snip~
I would suggest that you limit it to 10 requests per second, which is apparently the limit for API usage, but it didn't seem to have any issues, it ran in about 8 minutes (I would expect it to be much slower if it was getting a bunch of 429s), and I'm not banned from the API yet so…maybe that's not a thing anymore?
Also, an interesting trend I noticed is that the majority of the available 3 letter usernames start with numbers and the dash/underscore.
Last edited by Flowermanvista (March 2, 2021 21:02:45)
- Discussion Forums
- » Questions about Scratch
-
» How many 3 letter usernames are left