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.
Pages: 1
Hello everybody! I am doing a video series on experiments.
These are a little bit "scientific", but not fully.
What is the most popular letter in a username?
I hate near the end how that person in green said something totally inappropriate.
Why did I friend that person? Because they sent a request.
Offline
Hardcore Dubstep in an EE video... nice
Offline
Hardcore Dubstep in an EE video... nice
It's 'nub'step - introductory mainstream electric.
Let's try going through all of the usernames next time rather than 50 (assuming for average username length is 5-7), if we are going to try to get the most popular - let's use all of the data we can get!
Edit
Better background music too:
Bignic,
The Flashbulb,
Overwerk,
Pretty much any acoustic,
RJD2,
Ratatat
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
I wasn't going to comment and I know this is just for fun but then you put the word scientific in it. You used one world, at one specific time, with the word youtube in it's name, you're only going to get a very small range of the people in ee with that. As well as that, you posted your aim in the chat, go read up on demand characteristics and the negative-participant role, most of your participants aware of that are going to be watching what letters they are using, you even told them your data half way through. I'm being pedantic and I could go on, as Squadfs said you used 50 usernames, but don't say slightly scientific if its not at all. I'm honestly going to sound like such a 5 letter word beginning in B for this post.
This is hella gay
Offline
if you want stats just ask hexagon
thx for sig bobithan
Offline
Did you heard of arrays?
Making a variable for each letter is very inefficient. And the code in general looks ugly.
Next time use something like this:
int[] freq = new int[26];
foreach(string username in usernames)
foreach(char c in username) freq[(int)c - 97];
Everybody edits, but some edit more than others
Offline
Moved to Game Discussion
"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto
Offline
Did you heard of arrays?
Making a variable for each letter is very inefficient. And the code in general looks ugly.Next time use something like this:
int[] freq = new int[26]; foreach(string username in usernames) foreach(char c in username) freq[(int)c - 97];
Bless his sweet little heart.
Thank you eleizibeth ^
I stack my signatures rather than delete them so I don't lose them
Offline
Pages: 1
[ Started around 1732027722.4176 - Generated in 0.059 seconds, 12 queries executed - Memory usage: 1.52 MiB (Peak: 1.68 MiB) ]