X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=index.js;fp=index.js;h=2f990748b218d9bc37b4cc5872aa6e793bf83197;hb=be095be5c094cd439f1ce9b2646f4ef6f8be53b1;hp=606fba79adbd99c68135ced4f9efa854c601980e;hpb=c602113cdb101e4664037eed3771559c0770f1c5;p=zombocom-ai diff --git a/index.js b/index.js index 606fba7..2f99074 100644 --- a/index.js +++ b/index.js @@ -191,7 +191,10 @@ bus_code = [ for i in range(400): set_color('midnight blue' if i % 2 == 0 else 'navy blue') set_opacity(0.5) - random_dot()`, + random_dot() + +# The only limit is your fingers! +fingers()`, `def random_line(): x = random_within(512) - 60 @@ -204,7 +207,10 @@ for i in range(400): for i in range(200): set_color('black') - random_line()`, + random_line() + +# This is Zombo.com. Welcome! +mouths()`, `def random_blob(): move_to(random_within(512), random_within(512)) @@ -214,7 +220,10 @@ for i in range(200): for i in range(100): set_random_color() - random_blob()`, + random_blob() + +# The infinite eyes is possible! +eyes()`, `def random_curve(): move_to(random_within(512), random_within(512)) @@ -223,7 +232,11 @@ for i in range(100): for i in range(200): set_color('pink' if i % 2 == 0 else 'lime green') - random_curve()` + random_curve() + +# You can do anything! +fingers() +` ]; io_bus.on("connection", (socket) => {