Skip to content

Instantly share code, notes, and snippets.

@mikeananev
Created February 28, 2021 12:59
Show Gist options
  • Save mikeananev/0e08911fb5e694cddf23d7b8a0db50dc to your computer and use it in GitHub Desktop.
Save mikeananev/0e08911fb5e694cddf23d7b8a0db50dc to your computer and use it in GitHub Desktop.
sample asciido presentation usin reveal.js

Title Slide

Kafka Streams API: структура KStreams-приложения

StreamsConfig config = ...;
//Здесь устанавливаем всякие опции

Topology topology = new StreamsBuilder()
//Здесь строим топологию
....build();
  • tell anecdote

  • make a point

Slide One

  • Foo

  • Bar

  • World

Slide Two

Hello World - Good Bye Cruel World

Note

Actually things aren’t that bad

ID FName LName Address Phone

1

Vasya

Pupkin

London

+123

2

X

Y

A,B

45678

Slide schema

digraph foo {
  node [style=rounded]
  node1 [shape=box]
  node2 [fillcolor=yellow, style="rounded,filled", shape=diamond]
  node3 [shape=record, label="{ a | b | c }"]

  node1 -> node2 -> node3
}

Slide Five

Uses highlighted code

print "Hello World"

Slide Six

Uses highlighted code

:test     {:extra-deps  {org.clojure/test.check        {:mvn/version "1.1.0"}
                        healthsamurai/matcho          {:mvn/version "0.3.7"}
                        lambdaisland/kaocha           {:mvn/version "1.0.732"}
                        lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}}
            :extra-paths ["resources" "test" "test/resources"]
            :jvm-opts    []
            :main-opts   ["--main" "kaocha.runner"]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment