Skip to content

Instantly share code, notes, and snippets.

ERROR 2019-11-25 00:09:57 [holochain_locksmith::tracker] locksmith_guard_watcher/puid-0-0 crates/locksmith/src/tracker.rs:73
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!! IMMORTAL LOCK GUARD FOUND !!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Lock guard puid-3-21 lived for > 60 seconds.
Backtrace at the moment of guard creation follows:
@maackle
maackle / shutdown-deadlock.txt
Created October 10, 2019 04:46
deadlock on shutdown
Registered 30 scenarios (at least 30 were expected)
20:59:35 [try-o-rama] warn: .only was invoked; only running 1 test(s)!
20:59:35 [try-o-rama] warn: Skipping 29 test(s)!
TAP version 13
# create & publish post -> recommend to other agent
20:59:35 [try-o-rama] info: Using conductor path: holochain
20:59:35 [try-o-rama] info: Holochain version: holochain 0.0.32-alpha2
20:59:35 [try-o-rama] info: Using conductor path: holochain
20:59:35 [try-o-rama] info: Holochain version: holochain 0.0.32-alpha2
@maackle
maackle / Dockerfile
Created September 6, 2018 06:13
Create custom holochain bootstrap server
FROM holochain/holochain-proto:develop
EXPOSE 10000
EXPOSE 3142
CMD bs
@maackle
maackle / README.md
Created August 29, 2018 03:03
hc ts build system example

asdf

@maackle
maackle / holochain-dna-es6-transpilier
Created June 22, 2018 23:05
Watch es6 DNA zome files
if [ -z $1 ]
then
echo "starting"
fswatch -r0 -e ".*" -i ".*/src/.*\.js" dna \
| xargs -0n 1 -I {} $0 {}
else
echo $1
DIR=`echo $1 | sed -e "s/\(.*\)\/src\/\(.*\)$/\1/"`
SRCDIR=`echo $1 | sed -e "s/\(.*\/src\)\/\(.*\)$/\1/"`
@maackle
maackle / post.md
Created December 10, 2017 04:04
Good things come in threes

That definitely includes fake blog posts

@maackle
maackle / post.md
Last active December 9, 2017 21:45
Another blog post

Using my public gist to create a longer blog post now. Here's some random text that I haven't even read yet.

Yelnitza, two year-old daughter in the night sky, and decided to extend these skills to recall some good.” Rhetorically speaking, I grew up. I will be an impoverished country with attention to me, and new things despite the university as cars and fundraise to increase my eyes, still see cute little for. It felt it wasn't the ability by attending the rest of my eyes to recall some of classes in American Politics taught - and keep fighting in running team as a real world of missing several teeth because this country with authority figures, any of puppy love, my camp when she started a back and widespread relationships or a toothbrush and Jose, a bit of the benefits of nursing.

In addition to the kids who loses from a family feeling of vision.

Yesterday I can be lost. Poetry makes me my experience would suspect a picture of nursing.

In addition to than I grew up. I assume the past summer as politicall

@maackle
maackle / post.md
Last active December 9, 2017 22:30
Blog test 1

This is a blog post with markdown.

A heading

  • Lists unfortunately do not show up in the excerpt
  • But I don't have time to handle such a case.

However the excerpt should filter out formatting.

Enjoy!

@maackle
maackle / NestedMonads.purs
Created July 16, 2017 00:00
purescript-nested-monad
module NestedMonads where
import Prelude
import Data.Array (foldl)
sum :: Array Int -> Int
sum = foldl (+) 0
-- The idea is to take the following Array of Arrays and generate
(ns om-sandbox.cards.root-query-bug
(:require
[cljs.pprint :refer [pprint]]
[clojure.string :as string]
[om.next :as om :refer-macros [defui]]
[om.dom :as dom])
(:require-macros
[devcards.core :as dc :refer [defcard deftest]]))
(enable-console-print!)