- welcome to the course
- no stupid questions
- who here at one point did not know what javascript is?
- musician, songwriter, generative artist
- been wriitng songs and to a lesser degree, releasing music since 2005
- started web dev in 2005
public void TestRandomIdGenerator() | |
{ | |
// create five IDs of six, base 62 characters | |
for (int i=0; i<5; i++) Console.WriteLine(RandomIdGenerator.GetBase62(6)); | |
// create five IDs of eight base 36 characters | |
for (int i=0; i<5; i++) Console.WriteLine(RandomIdGenerator.GetBase36(8)); | |
} | |
public static class RandomIdGenerator |