Change namespace
This commit is contained in:
parent
a3e2ef331f
commit
9232e59b52
4 changed files with 5 additions and 12 deletions
|
|
@ -14,13 +14,13 @@ Building an running the Clojure code requires [babashka](https://babashka.org/),
|
|||
## Usage
|
||||
|
||||
```
|
||||
$ bb -m heyarne.frantisek-kafka.samsa --interval=5 --order=3 resources/kafka-en.txt
|
||||
$ bb -m computersandblues.frantisek-kafka.samsa --interval=5 --order=3 resources/kafka-en.txt
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
```
|
||||
$ bb -m heyarne.frantisek-kafka.samsa --help
|
||||
$ bb -m computersandblues.frantisek-kafka.samsa --help
|
||||
František Kafka is a Markov chain bot that infinitely generates text
|
||||
from one or more text files. botsin.space/@frantisek hosts a live
|
||||
version of it that generates an infinite version of Franz Kafka's Metamorphosis.
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
(ns heyarne.frantisek-kafka.markov
|
||||
(ns computersandblues.frantisek-kafka.markov
|
||||
"A simple markov model for sequential data. Basically a port of
|
||||
https://www.youtube.com/watch?v=-51qWZdA8zM.")
|
||||
|
||||
|
|
@ -1,10 +1,10 @@
|
|||
(ns heyarne.frantisek-kafka.samsa
|
||||
(ns computersandblues.frantisek-kafka.samsa
|
||||
"Create your own Kafka."
|
||||
(:require [clojure.string :as str]
|
||||
[clojure.tools.cli :refer [parse-opts]]
|
||||
[taoensso.timbre :as log]
|
||||
[org.httpkit.client :as http]
|
||||
[heyarne.frantisek-kafka.markov :as markov])
|
||||
[computersandblues.frantisek-kafka.markov :as markov])
|
||||
(:gen-class))
|
||||
|
||||
;; parsing the input text
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
(ns heyarne.frantisek-kafka-test
|
||||
(:require [clojure.test :refer :all]
|
||||
[heyarne.frantisek-kafka :refer :all]))
|
||||
|
||||
(deftest a-test
|
||||
(testing "FIXME, I fail."
|
||||
(is (= 0 1))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue