add content
This commit is contained in:
parent
94df7c8562
commit
cc9afc5ffe
140 changed files with 10414 additions and 1 deletions
13
data/home/.local/bin/pick_random
Executable file
13
data/home/.local/bin/pick_random
Executable file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env -S deno run
|
||||
|
||||
const { args } = Deno;
|
||||
const { random, floor } = Math;
|
||||
|
||||
function pick_rand(options) {
|
||||
const fac = options.length * random();
|
||||
const index = floor(fac);
|
||||
return options[index];
|
||||
}
|
||||
|
||||
let chosen = pick_rand(args);
|
||||
console.log(`chose '${chosen}'.`);
|
Loading…
Add table
Add a link
Reference in a new issue