We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94413da commit 6f70be5Copy full SHA for 6f70be5
1 file changed
src/clojure_by_example/utils/core.clj
@@ -3,6 +3,20 @@
3
[clojure.string :as cs]
4
[clojure.inspector :as inspect]))
5
6
+;; Warning:
7
+;; Code here may not be "professional" grade.
8
+;;
9
+;; This is just some fun messing around with some planetary data
10
+;; published by NASA.
11
12
+;; Important:
13
+;; Be kind to their servers, if you start tinkering with this code.
14
15
+;; First download a copy of the HTML pages to local disk,
16
+;; and replace the URL with the absolute path to the file on disk.
17
+;; Everything else should work the same.
18
+
19
20
(def planets-to-earth-ratios-table
21
{:table-name :planet-to-earth-ratios
22
:table-data-file "https://nssdc.gsfc.nasa.gov/planetary/factsheet/"
0 commit comments