;; left matched against [ "v0.0.4" ahead? dirty? ]
;; right matched against git describe --tags output "v0.0.4-5-ge2028de"
:lein-git-inject {[#"v\d+\.\d+\.\d+" false? (constantly true)] #"v(\d+\.\d+\.\d+).*"
[#"v\d+\.\d+\.\d+" true? (constantly true)] [#"v(\d+\.\d+\.\d+-\d+-[a-z0-9][8])" "-SNAPSHOT"]}
;; same but with static values instead of fns
;; except there is an issue with using `_` which is idiomatic syntax as we cannot write as a macro and:
;; WARNING: Can't take value of macro cljs.core/_ at line..
Content Add-ins leak memory on every call to Excel.run()
at a rate
large enough to eventually crash the add-in.
TaskPane Add-ins with exactly the same code do not display the same behaviour.
The amount of memory leaked ranges from 10MB to 100MB per Excel.run()
call.
The amount of memory leaked correlates with the complexity of the Excel.run()
Current | Inline Styles | 'Utility First' CSS | Garden CSS | Garden 'CSS in [CL]JS' | |
---|---|---|---|---|---|
Removes |
✗ |
✓ |
✗ |
✓ |
✓ |
Reverses CSS→DOM Dep |
✗ |
✓ |
✓ |
✗ |
✓ |
Composable |
✗ |
✓ |
✓ |
✗ |
✓ |
'Pruning' not Required |
✓ |
✓ |
✗ |
✓ |
✓ |
Styles as Data |
✗ |
✓ |
✗ |
✓ |
✓ |
Styles in Namespace |
✗ |
✓ |
✓ |
✓ |
✓ |
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
// $id: "", | |
$schema: "http://json-schema.org/draft-07/schema#", | |
title: "JSONWebKeySet", | |
description: "A set of JSON Web Keys, as defined in IETF RFC 7517.", | |
type: "object", | |
required: [ | |
"keys", | |
], | |
/** | |
* From IETF RFC 7517, Section 5: |
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
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
curl -fsSL https://pgp.mongodb.com/server-6.0.asc | \ | |
sudo gpg -o /usr/share/keyrings/mongodb-server-6.0.gpg \ | |
--dearmor | |
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-6.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list |
OlderNewer