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
| ;; (server-start) | |
| emacsclient --eval '(with-current-buffer "*scratch*" (insert "do you see 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
| (ns clara.compatibility | |
| (:require [clara.rules.accumulators :as acc] | |
| [clara.tools.tracing :as tracing] | |
| [clara.tools.inspect] | |
| [clara.rules :refer :all])) | |
| (defrecord Compatible [items]) | |
| (defrecord Incompatible [items]) | |
| (defrecord Protein []) |
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 |
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 lispcast-clojure-core-async.core | |
| (:require | |
| [lispcast-clojure-core-async.exercises :as ex] | |
| [lispcast-clojure-core-async.factory :refer :all] | |
| [clojure.core.async :as async | |
| :refer [>! <! alts! chan put! go]])) | |
| (defn build-car [n] | |
| (println n "Starting build") | |
| (let [body (loop [] |
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
| (use 'clojure.repl) | |
| M-x M-x cider-clojuredocs |
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
| ;;Start Cider from Emacs: | |
| ;;Put this in your Emacs config file: | |
| (setq cider-cljs-lein-repl | |
| "(do (require 'figwheel-sidecar.repl-api) | |
| (figwheel-sidecar.repl-api/start-figwheel!) | |
| (figwheel-sidecar.repl-api/cljs-repl))") | |
| ;;Navigate to a clojurescript file and start a figwheel REPL with cider-jack-in-clojurescript or (C-c M-J) |
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
| xvfb-run --auto-servernum rspec ./spec/features/sign_up_spec.rb:7 |
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
| (defun show-msg-after-timer () | |
| "Show a message after timer expires. Based on run-at-time and can understand time like it can." | |
| (interactive) | |
| (let* ((msg-to-show (read-string "Enter msg to show: ")) | |
| (time-duration (read-string "Time? "))) | |
| (message time-duration) | |
| (run-at-time time-duration nil #'message-box msg-to-show))) |
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
| lein run | |
| lein shadow watch app |
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
| #http://boot-clj.com | |
| #Sat May 02 07:11:53 EEST 2020 | |
| BOOT_VERSION=2.8.3 | |
| BOOT_CLOJURE_VERSION=1.8.0 | |
| BOOT_CLOJURE_NAME=org.clojure/clojure |