, m . and , . calva.jackInOrConnect jack-in and connect menu commandPaletteeditor/context
, m c and , ” calva.connect Connect to a Running REPL Server in the Project Ctrl Alt C Ctrl Alt C | |
Also see earlier install guide https://gist.github.com/jr0cket/7655cf6f0dcd889ca0dbb0edb2b544c2
Download Ubuntu server iso image burn image to usb Enter and f1 to open bios config
# Ubuntu install | |
Also see earlier install guide https://gist.github.com/jr0cket/7655cf6f0dcd889ca0dbb0edb2b544c2 | |
## X1 Extreme installation | |
Download Ubuntu server iso image | |
burn image to usb | |
Enter and f1 to open bios config | |
- remove secure boot |
[convert]::ToBase64String((Get-Content -path "your_file_path" -Encoding byte)) |
(defn levenshtein-distance | |
"Finds the percentage of match (reversed levenshtein distance & normalised) | |
between two strings" | |
[s1 s2] | |
(let [similarity (atom 0) | |
edit-map (atom {})] | |
(doseq [i (range (count s1))] | |
(let [edit (atom (if (zero? i) 0 i))] | |
(doseq [j (range (count s2))] | |
(let [e (if (= (.charAt s1 i) (.charAt s2 j)) 0 1)] |
$INPUTVIDEO='input.mp4' | |
$OUTPUTVIDEO='output.mp4' | |
ffmpeg -i $INPUTVIDEO -metadata:s:v rotate="-90" -codec copy $OUTPUTVIDEO |
;; This simnle tutorial is using AWS CDK (Cloud Development Kit, JavaScript flavor), | |
;; Clojure CLI (tools.deps), Cognitect Lab's aws-api, and Oracle's JDBC library. | |
;; deps.edn file looks like this: | |
{:deps {org.clojure/clojure {:mvn/version "1.10.1"} org.clojure/data.json {:mvn/version "1.0.0"} | |
com.amazonaws/aws-lambda-java-core {:mvn/version "1.2.0"} | |
com.cognitect.aws/api {:mvn/version "0.8.456"} com.cognitect.aws/endpoints {:mvn/version "1.1.11.753"} com.cognitect.aws/s3 {:mvn/version "784.2.593.0"} com.cognitect.aws/sqs {:mvn/version "770.2.568.0"} com.cognitect.aws/secretsmanager {:mvn/version "793.2.626.0"} | |
com.oracle.database.jdbc/ojdbc10 {:mvn/version "19.3.0.0"} seancorfield/next.jdbc {:mvn/version "1.0.409"}} | |
:paths ["src" "classes"] |
/*jslint undef: true, nomen: true, eqeqeq: true, plusplus: true, newcap: true, immed: true, browser: true, devel: true, passfail: false */ | |
/*global window: false, readConvertLinksToFootnotes: false, readStyle: false, readSize: false, readMargin: false, Typekit: false, ActiveXObject: false */ | |
var dbg = (typeof console !== 'undefined') ? function(s) { | |
console.log("Readability: " + s); | |
} : function() {}; | |
/* | |
* Readability. An Arc90 Lab Experiment. | |
* Website: http://lab.arc90.com/experiments/readability |