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 shadow.chrome-extension | |
| (:refer-clojure :exclude (flush require)) | |
| (:require [shadow.build :as build] | |
| [shadow.build.api :as build-api] | |
| [clojure.java.io :as io] | |
| [clojure.set :as set] | |
| [clojure.string :as str] | |
| [clojure.data.json :as json] | |
| [shadow.build.data :as data] | |
| [shadow.build.output :as output] |
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
| instr 1 | |
| aphs phasor p4 | |
| amod1 poscil 100, p4, 1 | |
| amod2 poscil 10, amod1, 1 | |
| amod3 poscil 1, amod2*amod1, 1 | |
| asin tablei amod3, 1, 1, 0, 1 | |
| outc asin | |
| endin |
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
| ;; Iain McCurdy's Shredulator as i-rate UDO | |
| opcode shred,aa,aaiiiiiiiiiii | |
| aL,aR,\ | |
| iMaxDelay,iTransPose,iTransRand,\ | |
| iDepth,iRate,iFeedback,iWidth,iwet,\ | |
| iFFTindex,iGain,iPrePost xin | |
| iFFTsizes[] fillarray 128,256,512,1024,2048,4096 ;arrayofFFTsizevalues | |
| iFFTsize = iFFTsizes[iFFTindex-1] ;retrieveFFTsizevaluefromarray |
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 panaeolus.macros | |
| (:require [lumo.repl :refer [get-current-ns]])) | |
| (ns panaeolus.macros$macros) | |
| (defmacro pull-symbols [from-namespace] | |
| `(let [into-namespace# (symbol (lumo.repl/get-current-ns)) | |
| into-map# (or (get-in @env/*compiler* [:cljs.analyzer/namespaces | |
| into-namespace# | |
| :uses]) {}) |
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 omx | |
| (:require | |
| [goog.dom :as gdom] | |
| [om.next :as om :refer-macros [defui]] | |
| [om.dom :as dom])) | |
| (def init-state {:data-1 {:a 1 :b 2} | |
| :data-2 {:c 3 :d 4} | |
| :data-3 {:e 5 :f 6}}) |
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 omx | |
| (:require | |
| [goog.dom :as gdom] | |
| [om.next :as om :refer-macros [defui]] | |
| [om.dom :as dom])) | |
| (def init-state {:data-1 {:a 1 :b 2} | |
| :data-2 {:c 3 :d 4} | |
| :data-3 {:e 5 :f 6}}) |
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 input-masker-test | |
| (:require | |
| [goog.dom :as gdom] | |
| [om.next :as om :refer-macros [defui]] | |
| [goog.events :as events] | |
| [goog.events.EventType :as EventType] | |
| [om.dom :as dom])) | |
| (defn input-masker | |
| "mask: a string of number/char with seperator |
NewerOlder