>> With swank-cdt, you can step, set breakpoints, catch exceptions, and eval clojure expressions, in the context of the current stack frame, from within the sldb buffer.
Posted via email from miner49r
Posted via email from miner49r
Artist Scott Weaver recently unveiled “Rolling Through the Bay,” a toothpick Rube Goldberg machine of the Bay Area.
Posted via email from miner49r
Unfortunately, when using Clojure types, the resulting Java classes will not integrate easily into the S4 model since they don’t implement the standard bean interface and, as a result, could not be easily configured in a Spring configuration file. Furthermore, the standard serialization mechanism used in S4 at the moment, the Kryo serialization library, cannot serialize most of Clojure generated classes and default types, since it is unable to deserialize fields marked as
final
and because it requires argument-less constructors that clojure core types, likeKeyword
do not implement. In fact it makes even impossible to generate a serializable bean using thegen-class
macro since this macro places the state into afinal
field.Clj-s4 solves this issue introducing a new macro
def-s4-message
similar todeferecord
that generates a mutable java bean for the provided field descriptions.
Posted via email from miner49r
Posted via email from miner49r
Our solution is to clone the project's git repository into a folder inside a shared Dropbox folder.
Posted via email from miner49r
My colleague Craig Watkins at Transcend, Inc. points out that not everyone has revocation enabled and provided a detailed explanation of how Mac OS users can enable this defense [...]
To do this on Mac OS 10.6:
- Open Applications -> Utilities -> Keychain Access
- Under Keychain Access menu, select Preferences...
- Select the Certificates tab
- Set "Online Certificate Status Protocol (OCSP)" to
"Best Attempt"
- Set "Certificate Revocation List (CRL)" to "Best Attempt"
- Set "Priority" to "OCSP"
Posted via email from miner49r