Makes 12 fantastic bagels.
- 4 Cups (550g) Bread Flour
- 1 Teaspoon Instant Yeast
WITH "target_embedding" AS ( | |
SELECT | |
avg("embedding"."vector1024") AS "vector1024" | |
FROM | |
"document" | |
INNER JOIN "block" ON "block"."document_id" = "document"."id" | |
LEFT JOIN "block_appetite" ON ( | |
"block"."type" = 'APPETITE' | |
AND "block_appetite"."id" = "block"."block_appetite_id" | |
) |
Makes 10 rather large cookies
When you take the cookies out of the oven they will not look cooked, it is vital you know this, as it will be very tempting to leave them in for longer and then they’ll be hard and overcooked once they are cool. Just take your cookies out after 11 minutes and then leave them to cool.
interface BinaryTreeNodeJSON<Value> { | |
value: Value, | |
left?: BinaryTreeNodeJSON<Value>, | |
right?: BinaryTreeNodeJSON<Value>, | |
} | |
class BinaryTreeNode<Value> { | |
static from<Value> (json: BinaryTreeNodeJSON<Value>): BinaryTreeNode<Value> { | |
const { value, left, right } = json | |
const leftNode = left != null ? BinaryTreeNode.from(left) : undefined |
function! Dab() | |
let [line_start, column_start] = getpos("'<")[1:2] | |
let [line_end, column_end] = getpos("'>")[1:2] | |
if line_end - line_start > 0 | |
" collapse | |
normal va{J | |
else | |
" expand | |
normal va{ | |
s/[{,]/\0 |
😀 :grinning:
😃 :smiley:
😄 :smile:
😁 :grin:
😆 :laughing:
snap | audience | |
---|---|---|
0 | 100 | |
1 | 95 | |
2 | 82 | |
3 | 78 | |
4 | 61 | |
5 | 59 | |
6 | 42 | |
7 | 30 | |
8 | 29 |
#!/usr/bin/env bash | |
# | |
# img2vid | |
# ======= | |
# | |
# Convert an image into three second video | |
# | |
# Usage: ./img2vid photo.jpg video.mp4 | |
# |
var successPromise = new Promise(function (resolve, reject) { | |
setTimeout(resolve, 1000); | |
}); | |
successPromise.then(function () { console.log('this should succeed') }); | |
var failingPromise = new Promise(function (resolve, reject) { | |
setTimeout(reject, 1000); | |
}); |
find . -iname '*.js' -not -path "*/__tests__/*" -exec wc -l {} \; | ag -o \\d+ | paste -sd+ - | bc |