Skip to content

Instantly share code, notes, and snippets.

@joshnuss
joshnuss / README.md
Last active April 12, 2023 09:46
Prisma snippets

Prisma Snippets

For ViM and VSCode.

Commands

  • model<tab>: defines a model
  • field<tab>: defines a field
  • index<tab>: defines an index
  • unique: defines a unique index
@joshnuss
joshnuss / .bash_aliases
Last active March 24, 2023 14:45
Bash aliases for creating a SvelteKit project with Prisma
# 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'
}
@joshnuss
joshnuss / BUILD_LOG.md
Last active January 13, 2023 19:19
Build progress for 24-hour startup

The idea

A way to create physical signage for a business by uploading the company's logo. The app will use a 3rd party to 3D print or laser cut the sign.

Main flow

  1. Upload a logo in SVG format
  2. Choose fabrication style (3d print, laser cut) and colors
  3. Place the order
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"
@joshnuss
joshnuss / etl-example.js
Last active September 21, 2022 02:53
Cloud-native ETL
/*
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.
@joshnuss
joshnuss / neuron.js
Last active August 5, 2022 04:22
Simple neuron
/* activation functions */
// linear activation (no-op)
function linear(value) { return value }
// threshold activation
function threshold(x = 0) {
return (value) => value >= x ? 1 : 0
}
@joshnuss
joshnuss / OAuthClient.js
Last active December 10, 2023 22:46
OAuth2 Client
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: {
@joshnuss
joshnuss / ble_speedometer_esp32.ino
Last active August 17, 2023 21:46
Bluetooth Speedometer using ESP32 and Hall effect sensor
/*
* 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>
@joshnuss
joshnuss / .bash_aliases
Created January 31, 2022 15:31
bash alias for creating svelte-kit projects
sk() {
pnpm init svelte@next $1 \
&& cd $1 \
&& pnpm install \
&& git init \
&& git add . \
&& git commit -m 'Initial commit'
}
@joshnuss
joshnuss / streaming_http_requests.ex
Last active March 31, 2023 09:02
Streaming HTTP requests
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