This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "cus_GhmV4PbooARHhM", | |
"object": "customer", | |
"account_balance": 0, | |
"address": { | |
"city": "Melbourne", | |
"country": "AU", | |
"line1": "1 Batman Way", | |
"line2": "", | |
"postal_code": "3000", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [ | |
{ | |
"created": 74675021, | |
"id": "dolor enim minim culpa ipsum", | |
"livemode": true, | |
"object": "customer", | |
"sources": { | |
"data": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |