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
| cljs.user=> (.text (js/jQuery "#title") "bla") | |
| ERROR - jQuery is not defined | |
| cljs.user=> (rand) | |
| 0.4304687375015359 | |
| cljs.user=> '(meeow) | |
| (meeow) | |
| cljs.user=> (m3-C1 1) | |
| ERROR - cljs.core.m3_C1.call is not a function | |
| cljs.user=> m3-C1 | |
| -862048943 |
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
| import sys | |
| from patchwork.actions import Reply, Unlock | |
| from patchwork.datastore import Datastore | |
| from patchwork.scheduling import RootQuestionSession, Scheduler | |
| from patchwork.text_manipulation import make_link_texts | |
| def main(): | |
| db = Datastore() | |
| sched = Scheduler(db) |
OlderNewer