Skip to content

Instantly share code, notes, and snippets.

View colonelrascals's full-sized avatar
:shipit:

Patrick Hildreth colonelrascals

:shipit:
View GitHub Profile
# Table of Contents
- [Table of Contents](#table-of-contents)
- [Louise](#louise)
- [All contracts over 150k](#all-contracts-over-150k)
- [10 Longest running contracts](#10-longest-running-contracts)
- [Quarterly](#quarterly)
- [Funded Contracts](#funded-contracts)
- [How long was contract in each stage](#how-long-was-contract-in-each-stage)
(defn- click-vol-down
[evt]
(let [new-vol (- evt 1)]
(swap! *app-state assoc :volume new-vol)))
(defn- pos-volume
[num]
(if (pos? num) num 0))
(defn- click-volume-down-btn
"Turn it down you kids!"
[js-evt]
(let [new-volume (- js-evt 1)]
(swap! *app-state assoc :volume (pos-volume new-volume))))
(defn- pos-volume
[num]
(if (pos? num) num 0))
(defn- click-volume-down-btn
"Turn it down you kids!"
[js-evt]
(let [new-volume (- js-evt 1)]
(swap! *app-state assoc :volume (pos-volume new-volume))))
;; TODO: write me
defmodule Identicon do
@moduledoc """
Documentation for Identicon.
"""
@doc """
Hello world.
## Examples