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 scroll-up-benchmark () | |
(interactive) | |
(let ((oldgc gcs-done) | |
(oldtime (float-time)) | |
(count 0)) | |
(condition-case nil (while t (scroll-up) (redisplay) (cl-incf count)) | |
(error (message "GCs: %d Elapsed time: %f seconds Second/scroll: %f" | |
(- gcs-done oldgc) (- (float-time) oldtime) | |
(/ (- (float-time) oldtime) count)))))) |
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
;; How to translate LSP configuration examples into Eglot’s format: | |
;; | |
;; Usually LSP servers will say something like | |
;; | |
;; rust-analyzer.procMacro.attributes.enable (default: true) | |
;; | |
;; Translate that into a JSON LSP configuration, you get | |
;; | |
;; { | |
;; "rust-analyzer": { |
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
Cost: (besides storage cost) | |
8 KB/object for metadata in s3, bill at s3 price | |
32 KB/object for index in glacier, billed at glacier price | |
Early deletion/overwrite fee: Delete or overwrite before stored for 90 | |
days (glacier) or 180 days (deep glacier). | |
Transition cost/object: |
OlderNewer