Skip to content

Instantly share code, notes, and snippets.

View ELI7VH's full-sized avatar
💭
Doing a thing.

Elijah Lucian ELI7VH

💭
Doing a thing.
View GitHub Profile

intro

  • welcome to the course
  • no stupid questions
  • who here at one point did not know what javascript is?

who am i

  • 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