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
| * Morning pages | |
| :LOGBOOK: | |
| CLOCK: [2018-01-18 Thu 18:39]--[2018-01-19 Fri 14:06] => 19:27 | |
| :END: | |
| Writing out the answers isn't enough to get me into a proper flow state. I'm feeling tired right now and sort of wishing I hadnt gone to the gym before diving into writing. But there are the specific questions that need to be answered in text. | |
| [[What is wrong with the paragraph]] |
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
| ;; -*- mode: emacs-lisp -*- | |
| ;; This file is loaded by Spacemacs at startup. | |
| ;; It must be stored in your home directory. | |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration. | |
| You should not put any user code in this function besides modifying the variable | |
| values." | |
| (setq-default | |
| ;; Base distribution to use. This is a layer contained in the directory |
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
| (ns history.parser | |
| (:require [instaparse.core :as insta] | |
| [debux.core :as dbg] | |
| [history.util :refer [defc p makeInt]] | |
| [clojure.pprint :refer [pprint] :as pp] | |
| [clojure.string :as str] | |
| [clojure.core.async :as async :refer [>! go go-loop <! <!! chan put!]])) | |
| (defn filter-ke-tree |
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
| (ns history.parser | |
| (:require [instaparse.core :as insta] | |
| [debux.core :as dbg] | |
| [history.util :refer [defc p makeInt]] | |
| [clojure.pprint :refer [pprint] :as pp] | |
| [clojure.string :as str] | |
| [clojure.core.async :as async :refer [>! go go-loop <! <!! chan put!]])) | |
| (defn filter-ke-tree |
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
| (ns history.logicparser | |
| (:require [instaparse.core :as insta] | |
| [clojure.string :as str])) | |
| (def desireparse | |
| (insta/parser | |
| "S = desire phrase '.' | |
| desire = 'I want' | |
| phrase = (<w> word)+ |
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
| (ns roamana.links | |
| (:require [reagent.core :as r :refer [atom]] | |
| ; [re-frame.db :refer [app-db]] | |
| [re-frame.core :refer [subscribe dispatch register-handler register-sub]] | |
| [posh.core :refer [posh!] :as posh] | |
| [datascript.core :as d] | |
| [instaparse.core :as insta] | |
| [com.rpl.specter :refer [ALL STAY FIRST | |
| MAP-VALS LAST | |
| stay-then-continue |
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
| (ns history.parser | |
| (:require [instaparse.core :as insta] | |
| [debux.core :as dbg] | |
| [history.util :refer [defc p makeInt]] | |
| [clojure.pprint :refer [pprint] :as pp] | |
| [clojure.string :as str] | |
| [clojure.core.async :as async :refer [>! go go-loop <! <!! chan put!]])) | |
| (defn filter-ke-tree |
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
| (ns history.parser | |
| (:require [instaparse.core :as insta] | |
| [debux.core :as dbg] | |
| [history.util :refer [defc p makeInt]] | |
| [clojure.pprint :refer [pprint] :as pp] | |
| [clojure.string :as str] | |
| [clojure.core.async :as async :refer [>! go go-loop <! <!! chan put!]])) | |
| (defn filter-ke-tree |
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
| (ns undead.cards.poem | |
| (:require | |
| [goog.i18n.DateTimeFormat :as dtf] | |
| [posh.core :as posh :refer [posh!]] | |
| [reagent-table.core :as rt] | |
| [cljs-time.core :as time :refer [now]] | |
| [keybind.core :as keys] | |
| [cljs.pprint :refer [pprint]] | |
| [undead.cards.multi :as multi] | |
| [datascript.core :as d] |
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
| (ns undead.cards.multi | |
| (:require | |
| [posh.core :as posh :refer [posh!]] | |
| [cljs.pprint :refer [pprint]] | |
| [re-com.core :as rc :refer [v-box box input-text h-box]] | |
| [datascript.core :as d] | |
| [undead.util :refer [deref-or-value]] | |
| [clojure.string :as str] | |
| [reagent-forms.core :refer [bind-fields]] | |
| [reagent.core :as r] |