Skip to content

Commit

Permalink
-am actual dev #lol
Browse files Browse the repository at this point in the history
  • Loading branch information
adlai committed Apr 19, 2024
1 parent 2160b5e commit 7f2e316
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions exchange.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@
end-of-file) ; CAN YOU SMELL THE BAD
(condition) ; PATTERN THAT BEGS FOR
(warn (with-output-to-string (warning) ; YOU TO HIRE
(describe condition warning))) ; ACTUAL DEVS?
;; (describe condition warning)
(format warning "~A ... ~D" ; _ ; ACTUAL DEVS?
(class-of condition)
(floor (integer-length backoff)
(or (ignore-errors) 2)))))
(if (zerop backoff) (return) ; might prevent nonce reuse...
(sleep (incf backoff backoff))))))) ; probably won't
;;; why don't you (:use :drakma) , don't bother reimplementing...
Expand Down Expand Up @@ -785,7 +789,7 @@

(defmethod execute ((tracker execution-tracker) (command (eql :rebase)))
(with-slots (bases trades) tracker
(setf bases nil) (dolist (next (reverse trades))
(setf bases nil) (dolist (next (reverse trades)) ; &a-o-k ?
(update-bases tracker next))))

(defmethod perform ((tracker execution-tracker) &key)
Expand Down

1 comment on commit 7f2e316

@adlai
Copy link
Owner Author

@adlai adlai commented on 7f2e316 Apr 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

git commit -am `git config --global -l` > /dev/random

Please sign in to comment.