This file contains hidden or 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
| # 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) |
This file contains hidden or 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
| (defn- click-vol-down | |
| [evt] | |
| (let [new-vol (- evt 1)] | |
| (swap! *app-state assoc :volume new-vol))) |
This file contains hidden or 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
| (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)))) |
This file contains hidden or 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
| (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 |
This file contains hidden or 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
| defmodule Identicon do | |
| @moduledoc """ | |
| Documentation for Identicon. | |
| """ | |
| @doc """ | |
| Hello world. | |
| ## Examples |
OlderNewer