Skip to content

Instantly share code, notes, and snippets.

{
"openapi": "3.0.3",
"info": {
"title": "Clerk Backend API",
"x-logo": {
"url": "https://clerk.com/_next/image?url=%2Fimages%2Fclerk-logo.svg&w=96&q=75",
"altText": "Clerk docs",
"href": "https://clerk.com/docs"
},
"contact": {
{
"meta": {
"instanceId": "33aae00cb24017833bc61c57772daa66c5112ef5783d3779ec022240a070a520"
},
"nodes": [
{
"parameters": {},
"id": "1df3550a-7ff0-4072-bbf1-ce8d7ebe99f7",
"name": "Start",
"type": "n8n-nodes-base.start",

Keybase proof

I hereby claim:

  • I am commandodev on github.
  • I am boothead (https://keybase.io/boothead) on keybase.
  • I have a public key ASCatYsGQLpbfP_jnRTDkOdik1DnfxqTJKxGwaB3_cSzcgo

To claim this, I am signing this object:

@commandodev
commandodev / k vs *
Last active September 20, 2017 14:56
insert
:: (KnownSymbol k, Typeable i, ChannelType k api ~ i)
=> Proxy api -> Proxy k -> f i -> RouteMap f routes -> RouteMap f ((k :> i) ': routes)
insert _ pKey i = Routes . Map.insert k (I i) . unRoutes
where
k = (symbolVal pKey) ^. packed
type family Chan (chan :: *) :: * where
Chan (chan :> a) = a
./dev-shell
[nix-shell:~/dev/hydra]$ ./configure $configureFlags --prefix=/opt/hydra
bash: ./configure: No such file or directory
[nix-shell:~/dev/hydra]$ ls
bootstrap configure.ac COPYING dev-shell doc hydra-module.nix INSTALL Makefile.am README.md release.nix src tests version
[nix-shell:~/dev/hydra]$ ./bootstrap
autoreconf: Entering directory `.'
$ nix-shell -I . --pure --show-trace
error: while evaluating the attribute `nativeBuildInputs' of the derivation `client' at /home/ben/dev/ghcjs/oHm/examples/ohm-chat-client/default.nix:9:3:
cannot coerce a set to a string, at /home/ben/dev/ghcjs/oHm/examples/ohm-chat-client/default.nix:9:3
@commandodev
commandodev / git aliases
Last active December 25, 2015 20:59
Nicer git branches
alias gbr='for k in `git branch|sed "s/^..//"`;do echo -e `git log -1 --pretty=format:"%Cgreen%ci %Cblue%cr%Creset" "$k"`\\t\\t"$k";done | sort -r | sed -e "s/\(^.*\):[0-9]\{2\} +\?[0-9]\{4\} /\1 /" -e "s/minutes/mins/"'
alias gbra='for k in `git branch -a|sed "s/^..//"`;do echo -e `git log -1 --pretty=format:"%Cgreen%ci %Cblue%cr%Creset" "$k"`\\t\\t"$k";done | sort -r | sed -e "s/\(^.*\):[0-9]\{2\} +\?[0-9]\{4\} /\1 /" -e "s/minutes/mins/"'
@commandodev
commandodev / rest_traversal.py
Last active September 11, 2018 20:03
Rest traversal in pyramid. With a small example of usage.
from pyramid.view import view_config
from sqlalchemy.ext.associationproxy import AssociationProxy
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import scoped_session, sessionmaker, object_mapper, ColumnProperty, SynonymProperty
Session = scoped_session(sessionmaker())
class _PrettyPrintBase(object):
"""Base mixin for all of our declarative tables
@commandodev
commandodev / FRP.hs
Created October 2, 2012 15:05
Fay Arrows problem
-- Arrow definitions
arr = arrC
first = firstC
second = secondC
(<<<) :: Coroutine b o -> Coroutine i b -> Coroutine i o
cof <<< cog = Coroutine $ \i ->
let (x, cog') = runC cog i
(y, cof') = runC cof x
in (y, cof' <<< cog')
{-# LANGUAGE NoMonomorphismRestriction #-}
module Data.Pcap.Source (
sourcePcap
, parsePcap
) where
import Control.Monad.IO.Class
import qualified Data.ByteString as BS
import Data.Conduit
import qualified Data.Conduit.List as CL
import Data.DateTime