diff --git a/README.md b/README.md index ed2251b..b73679b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ # Recipes +## Flask Bootstrap +A flask skeleton with app factory pattern with route blueprints to facilitate good integration tests. + +## Flask Kafka Streaming (via Sockets) +A flask app for streaming from Kafka via web sockets using socketio. + +## Python Mother Dough +A mother dough for baking the most delicious python project. ## Open a New Chrome Window on Mac OS An AppleScript to open a new chrome window in the current desktop. -To run: -```bash -$ /usr/bin/osascript open_new_chrome_window.scpt -``` - diff --git a/hello-kafka-streams/README.md b/hello-kafka-streams/README.md new file mode 100644 index 0000000..1507373 --- /dev/null +++ b/hello-kafka-streams/README.md @@ -0,0 +1,6 @@ +Hello Kafka Streams + +Based on [Kafak quickstart](https://kafka.apache.org/0110/documentation/streams/quickstart) + + +1. Start Kafka Server diff --git a/mac-new-chrome-window/README.md b/mac-new-chrome-window/README.md new file mode 100644 index 0000000..523af9e --- /dev/null +++ b/mac-new-chrome-window/README.md @@ -0,0 +1,7 @@ +# Open a New Chrome Window on Mac OS +An AppleScript to open a new chrome window in the current desktop. + +To run: +```bash +$ /usr/bin/osascript open_new_chrome_window.scpt +``` diff --git a/open_new_chrome_window.scpt b/mac-new-chrome-window/open_new_chrome_window.scpt similarity index 100% rename from open_new_chrome_window.scpt rename to mac-new-chrome-window/open_new_chrome_window.scpt