For ViM and VSCode.
model<tab>
: defines a modelfield<tab>
: defines a fieldindex<tab>
: defines an indexunique
: defines a unique index
# Create a vanilla SvelteKit project | |
# usage: sk <folder-name> | |
sk() { | |
pnpm create svelte@latest $1 \ | |
&& cd $1 \ | |
&& pnpm install \ | |
&& git init \ | |
&& git add . \ | |
&& git commit -m 'Initial commit' | |
} |
snippet model "define a model" | |
model ${1:Name} { | |
id Int @id @default(autoincrement()) | |
${2} | |
createdAt DateTime @default(now()) | |
updatedAt DateTime @updatedAt | |
} | |
snippet enum "define an enum" |
/* | |
data can enter the pipeline via push or pull. | |
the result of each intermediate step is stored (so errors can be retried) | |
at the end of the pipeline data is put into a document store | |
optionally, event handlers can listen to create/update/delete events and fan data out to other systems | |
*/ | |
// example of a push handler (aka webhooks) | |
// src/push/shopify/order/created.js | |
// receive events, and returned data is stored in ClickHouse (OLAP) by the framework. |
/* activation functions */ | |
// linear activation (no-op) | |
function linear(value) { return value } | |
// threshold activation | |
function threshold(x = 0) { | |
return (value) => value >= x ? 1 : 0 | |
} |
import fetch from 'node-fetch' | |
// some provider data is copied from github.com/simov/grant | |
const providers = { | |
bogus: { | |
authorize_url: "http://localhost:8282/auth/request/path", | |
access_url: "http://localhost:8282/access/token/request", | |
}, | |
google: { |
/* | |
* Using digital hall effect sensor SENS-M-10 (purchased at Abra) | |
* | |
* MCU Board: ESP2-WROOM-32 | |
*/ | |
#include <BLEDevice.h> | |
#include <BLEUtils.h> | |
#include <BLEServer.h> |
sk() { | |
pnpm init svelte@next $1 \ | |
&& cd $1 \ | |
&& pnpm install \ | |
&& git init \ | |
&& git add . \ | |
&& git commit -m 'Initial commit' | |
} |
defmodule MyApp.Integrations.Skubana do | |
@host "..." | |
@headers [ ... ] | |
# returns a stream of shipments | |
def get_shipments do | |
# start with page 1 | |
start = fn -> 1 end | |
# create a stream, it will make HTTP requests until the page returned is empty |