Skip to content

Instantly share code, notes, and snippets.

View mikesol's full-sized avatar
🎯
Focusing

Mike Solomon mikesol

🎯
Focusing
View GitHub Profile
@mikesol
mikesol / hoverfly-matchers.json
Created February 10, 2020 08:28
A hoverfly error with matcher suggestions
Hoverfly Error!
There was an error when matching
Got error: Could not find a match for request, create or record a valid matcher first!
The following request was made, but was not matched by Hoverfly:
{
"Path": "/v1/customers/foobar",
@mikesol
mikesol / hoverfly-success-with-stripe.json
Created February 10, 2020 08:33
Customer success for a single customer with Stripe
{
"id": "cus_GhmV4PbooARHhM",
"object": "customer",
"account_balance": 0,
"address": {
"city": "Melbourne",
"country": "AU",
"line1": "1 Batman Way",
"line2": "",
"postal_code": "3000",
@mikesol
mikesol / unmock-stripe.json
Created February 13, 2020 16:35
Mock stripe data generated by unmock
{
"data": [
{
"created": 74675021,
"id": "dolor enim minim culpa ipsum",
"livemode": true,
"object": "customer",
"sources": {
"data": [
{
@mikesol
mikesol / openapi_py_to_hs.py
Last active April 24, 2020 07:57
Converts openapi.py in openapi_typed_2 to haskell
from openapi import OpenAPIObject, Reference, APIKeySecurityScheme, APIKeySecurityScheme, HTTPSecurityScheme, OAuth2SecurityScheme, OpenIdConnectSecurityScheme, Response
import openapi
from collections.abc import Mapping, Sequence
from typing import Union, Any, ForwardRef
import typing
def px(a):
return '(%s)' % a if (' ' in a) and (a[0] != '[') else a
@mikesol
mikesol / Main.purs
Created August 16, 2020 16:05
Costar runtime error
module Main where
import Prelude
import Data.Lens (Iso, _1, _2, iso)
import Data.Profunctor (class Profunctor)
import Data.Profunctor.Costrong (class Costrong, unfirst, unsecond)
import Data.Profunctor.Strong (class Strong, first)
import Data.Tuple (Tuple(..), fst, snd)
import Effect (Effect)
import Effect.Console (log)
@mikesol
mikesol / sketch.dhall
Last active June 29, 2024 15:31
Yet another Dhall-API-protocol proposal
let fold = https://prelude.dhall-lang.org/List/fold
let filter = https://prelude.dhall-lang.org/List/filter
let equal = https://prelude.dhall-lang.org/Natural/equal
let Obj = <User | Pet | List>
let Key = <Id | Type | Name | Pets | Head | Tail>
let Entry = <Int_: Integer | Bool_: Bool | Double_: Double | Text_: Text | Id_: Natural | Type_: Obj | Nil>
let Row = { ptr: Natural, key: Key, val: Entry }
let Db = List Row
@mikesol
mikesol / audio-graph.js
Created September 16, 2020 04:51
Audio graph as linear program
{
binaries: [
"n@Add''_1_1",
"n@Gain''_2_2",
"n@Gain''_2_5",
"n@Gain''_6_2",
"n@Gain''_6_5",
"n@SinOsc''_3_3",
"n@SinOsc''_3_4",
"n@SinOsc''_3_6",
@mikesol
mikesol / Sine.purs
Last active September 24, 2020 21:25
PureScript Audio Behaviors Sine
module Klank.Dev where
-- new to purescript? check out https://www.purescript.org/ for learning resources!
import Prelude
import Data.Typelevel.Num (D1)
import FRP.Behavior (Behavior)
import FRP.Behavior.Audio (AudioUnit, gain', runInBrowser_, sinOsc, speaker')
scene :: Behavior Number -> Behavior (AudioUnit D1)
scene _ = pure (speaker' $ (gain' 0.5 $ sinOsc 440.0))
@mikesol
mikesol / Forest.purs
Last active September 24, 2020 21:33
A forest sound with a drone underneath
module Klank.Dev where
-- new to purescript? check out https://www.purescript.org/ for learning resources!
import Prelude
import Data.List ((:), List(..))
import Data.NonEmpty ((:|))
import Data.Typelevel.Num (D1)
import FRP.Behavior (Behavior)
import FRP.Behavior.Audio (AudioUnit, gain', runInBrowser_, play, sinOsc, speaker)
import Math (pi, sin)
@mikesol
mikesol / Bells.purs
Last active December 17, 2020 07:20
Bells on klank.dev
module Klank.Dev where
import Prelude
import Color (rgba)
import Control.Monad.Reader (Reader, ask, asks, runReader)
import Data.Generic.Rep (class Generic)
import Data.Generic.Rep.Show (genericShow)
import Data.Int (toNumber)
import Data.List (List(..), catMaybes, fold, (:))
import Data.Maybe (Maybe(..), isJust)