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:
{ | |
"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", |
I hereby claim:
To claim this, I am signing this object:
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 |
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/"' |
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 |
-- 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 |