This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
steps: | |
- name: 'gcr.io/cloud-builders/docker' | |
args: | |
- 'build' | |
- '-t' | |
- 'us.gcr.io/$PROJECT_ID/test' | |
- '-t' | |
- 'asia.gcr.io/$PROJECT_ID/test' | |
- '-t' | |
- 'eu.gcr.io/$PROJECT_ID/test' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav><button onclick="reloadFrames()">GENERATE()</button></nav> | |
<main></main> | |
<script> | |
const urlParams = new URLSearchParams(window.location.search); | |
const total = 15+5; // total frames | |
const interval = urlParams.get("fast") == "true" ? 60 : 200; // ms | |
const src = "./index.html"; | |
let alphabet = "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ" | |
function getHash() { |