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
--- a/cider-repl.el | |
+++ b/cider-repl.el | |
@@ -396,6 +396,21 @@ client process connection. Unless NO-BANNER is non-nil, insert a banner." | |
;;; REPL interaction | |
+(defun cider--checked-insert-before-markers (string) | |
+ | |
+ (message "Currrent cider repl buffer size is: %s "(buffer-size)) |
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 icy-fog | |
(:require 'taoensso.nippy.utils) | |
) | |
(def l (list 1)) | |
(def ll (repeat 2 l)) | |
;;(taoensso.nippy.utils/serializable? ll) |
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
lm(dist ~ speed,data=cars) |
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
{ | |
"coefficients": [ | |
37.2851, | |
-5.3445 | |
], | |
"residuals": [ | |
-2.2826, | |
-0.9198, | |
-2.086, | |
1.2973, |
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
(defn destroy-all-images [client-id api-key image-name] | |
(let [imgs (filter #(= (:name %) image-name) (all-images client-id api-key))] | |
(doseq [img imgs] (destroy-image client-id api-key (:id img))))) | |
(defn freeze | |
[client-id api-key droplet-name] | |
(let [droplet-id (:id (droplet-by-name client-id api-key droplet-name))] | |
(if (nil? droplet-id) | |
[:failed (str "Droplet " droplet-name " not existing")] | |
(do |
NewerOlder