Kahoot! multiple choice format (one correct answer per question) Β· 21 questions
Checked box = correct answer. Use this as your answer-key reference when building or reviewing the kahoot.
| // https://github.com/expo/eas-cli/blob/main/packages/steps/src/utils/nullthrows.ts | |
| export function nullthrows<T>(value: T | null | undefined, message?: string): NonNullable<T> { | |
| if (value != null) { | |
| return value; | |
| } | |
| throw new TypeError(message ?? `Expected value not to be null or undefined but got ${value}`); | |
| } |
| #!/bin/bash | |
| NAME="stephane" | |
| last_num=$(ls scripts/${NAME}[0-9]* 2>/dev/null | sed "s/[^0-9]//g" | sort -n |$ | |
| echo $last_num | |
| if [ -z "$last_num" ]; then | |
| last_num=0 |
| { | |
| "name": "Catch up on your bookmarked Youtube & Tiktok videos", | |
| "nodes": [ | |
| { | |
| "parameters": { | |
| "options": { | |
| "reset": false | |
| } | |
| }, | |
| "type": "n8n-nodes-base.splitInBatches", |
| ``` | |
| > @woym/server@ deploy /Users/waptik/labs/woym/apps/server | |
| > wrangler deploy | |
| β οΈ wrangler 4.25.1 (update available 4.26.0) | |
| βββββββββββββββββββββββββββββββββββββββββββββ | |
| Using redirected Wrangler configuration. | |
| - Configuration being used: "dist/woym_template_api/wrangler.json" |
| { | |
| "name": "AI product Images", | |
| "nodes": [ | |
| { | |
| "parameters": {}, | |
| "type": "n8n-nodes-base.manualTrigger", | |
| "typeVersion": 1, | |
| "position": [ | |
| 0, | |
| 0 |
| { | |
| "version": "4", | |
| "specifiers": { | |
| "jsr:@libs/logger@^3.1.0": "3.1.3", | |
| "jsr:@oak/commons@1": "1.0.0", | |
| "jsr:@oak/oak@^17.1.3": "17.1.3", | |
| "jsr:@std/assert@1": "1.0.9", | |
| "jsr:@std/bytes@1": "1.0.4", | |
| "jsr:@std/bytes@^1.0.2": "1.0.4", | |
| "jsr:@std/crypto@1": "1.0.3", |
| <? | |
| # MIT license, do whatever you want with it | |
| # | |
| # This is my invoice.php page which I use to make invoices that customers want, | |
| # with their address on it and which are easily printable. I love Stripe but | |
| # their invoices and receipts were too wild for my customers on Remote OK | |
| # | |
| require_once(__DIR__.'/../vendor/autoload.php'); |
| { | |
| # replace 12 with the id of your choice | |
| # if you want for a channel the value of symbol should be "cid:channel_username" | |
| # eg: cid:fitness | |
| subjectTokens(where: {symbol: "fid:12"}) { | |
| tokenAddress: id | |
| name | |
| } | |
| } |
| const toBase64 = (file) => new Promise((resolve, reject) => { | |
| const reader = new FileReader(); | |
| reader.readAsDataURL(file); | |
| reader.onload = (e) => resolve(e.target.result); | |
| reader.onerror = (err) => reject(err); | |
| }); | |
| const compressBase64 = (src, quality = 0.5) => new Promise((resolve) => { | |
| const img = new Image(); | |
| img.src = src; |