Skip to content

Commit 3e7dd1e

Browse files
Migrate blog to Cryogen
1 parent 9886503 commit 3e7dd1e

File tree

72 files changed

+378
-360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+378
-360
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
target/
2+
public/
23
.nrepl-port
4+
.cpcache

Diff for: README.md

+7-6

Diff for: build.boot

-76
This file was deleted.

Diff for: content/blog/2017-09-22-initial-commit.md

+2-5

Diff for: content/blog/2017-09-23-benchmarking-tool-criterium.md

+3-6

Diff for: content/blog/2017-09-28-profiling-tool-jvisualvm.md

+4-7

Diff for: content/blog/2017-11-09-performance-nemesis-reflection.md

+4-7

Diff for: content/blog/2017-11-20-bookshelf-kumar-clojure-highperf.md

+2-5

Diff for: content/blog/2017-12-11-profiling-tool-async-profiler.md

+3-9

Diff for: content/blog/2018-01-02-clojures-slow-start.md

+4-7

Diff for: content/blog/2018-01-30-introspection-tools-java-decompilers.md

+3-6

Diff for: content/blog/2018-03-05-introspection-tool-object-memory-meter.md

+3-6

Diff for: content/blog/2018-04-09-java-arrays-and-unchecked-math.md

+3-6

Diff for: content/blog/2018-07-02-latency-tool-jvm-hiccup-meter.md

+3-6

Diff for: content/blog/2018-10-22-using-jmh-with-clojure-part1.md

+3-6

Diff for: content/blog/2019-02-04-clj-async-profiler-tips.md

+3-6

Diff for: content/blog/2019-05-07-shenandoah-in-production.md

+4-7

Diff for: content/blog/2019-06-03-clj-async-profiler-040.md

+3-6

Diff for: content/config.edn

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{:site-title "Clojure Goes Fast"
2+
:author "Sashko Yakushev"
3+
:description "High-performance Clojure made simple."
4+
:site-url "http://clojure-goes-fast.com/"
5+
:post-root "blog"
6+
:page-root "site"
7+
:post-root-uri "blog"
8+
:page-root-uri ""
9+
:tag-root-uri "tags-output"
10+
:public-dest "public"
11+
:blog-prefix ""
12+
:rss-name "blog/atom.xml"
13+
:post-date-format "yyyy-MM-dd"
14+
:archive-group-format "yyyy MMMM"
15+
:sass-src []
16+
:theme "default"
17+
:resources ["img"]
18+
:keep-files [".git"]
19+
:disqus? false
20+
:ignored-files [#"\.#.*" #".*\.swp$"]
21+
:previews? false
22+
:clean-urls :trailing-slash
23+
:collapse-subdirs? false
24+
:hide-future-posts? true
25+
:description-include-elements #{:p :h1 :h2 :h3 :h4 :h5 :h6}
26+
:debug? false}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: content/site/index.md

+3

Diff for: deps.edn

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
2+
cryogen-core/cryogen-core {:mvn/version "0.4.0"}
3+
cryogen-flexmark/cryogen-flexmark {:mvn/version "0.1.4"}}
4+
:aliases {;; Run with `clojure -X:build`
5+
:build {:exec-fn generator.main/build}
6+
:draft {:exec-args {:draft true}}
7+
:watch {:exec-fn generator.watch/init}}}

Diff for: res/base-meta.edn

-3
This file was deleted.

0 commit comments

Comments
 (0)