Skip to content

Instantly share code, notes, and snippets.

View marco-arnold's full-sized avatar

Marco Arnold marco-arnold

View GitHub Profile
import * as Http from "@effect/platform/HttpClient"
import { Schema } from "@effect/schema"
import { Array, Config, Context, Data, Effect, Layer, flow } from "effect"
import { Inngest as Inngest_ } from "inngest"
class InngestRun extends Schema.Class<InngestRun>("InngestRun")({
run_id: Schema.String,
status: Schema.Literal("Running", "Completed", "Failed", "Cancelled"),
}) {
static decodeArray = Http.response.schemaBodyJsonScoped(
@marco-arnold
marco-arnold / git-flow-avh.rb
Created November 8, 2012 15:40
Homebrew git-flow formula AVH Edition
require 'formula'
class GitFlowAvh < Formula
homepage 'https://github.com/petervanderdoes/gitflow'
url 'https://github.com/petervanderdoes/gitflow.git', :tag => '1.2.1'
version '1.2.1'
head 'https://github.com/petervanderdoes/gitflow.git', :branch => 'develop'
depends_on 'gnu-getopt'