From 4d43861c654ce60ff1663d4cb02cec18c2329494 Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Mon, 5 Mar 2018 15:37:55 +0000 Subject: [PATCH] Remove Markdown binary Signed-off-by: Alex Ellis --- sample-functions/MarkdownRender/.gitignore | 1 + sample-functions/README.md | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/sample-functions/MarkdownRender/.gitignore b/sample-functions/MarkdownRender/.gitignore index b80f0bd6..092cb0e4 100644 --- a/sample-functions/MarkdownRender/.gitignore +++ b/sample-functions/MarkdownRender/.gitignore @@ -1 +1,2 @@ app +./MarkdownRender \ No newline at end of file diff --git a/sample-functions/README.md b/sample-functions/README.md index 2d5c17e5..2bffae80 100644 --- a/sample-functions/README.md +++ b/sample-functions/README.md @@ -23,9 +23,17 @@ Here is a list of some of the sample functions included this repository. | apikey-secret | Example in Golang showing how to read a secret from a HTTP header and validate with a Swarm/Kubernetes secret | | CaptainsIntent | Alexa skill - find the count of Docker Captains | | ChangeColorIntent | Alexa skill - change the colour of IoT-connected lights | +| CHelloWorld | Use C to build a function | | echo | Uses `cat` from BusyBox to provide an echo function | | DockerHubStats | Golang function gives the count of repos a user has on the Docker hub | +| figlet | Generate ascii logos through the use of a binary | +| git-maker | Use gifsicle and ffmpeg packages from Alpine Linux to make gifs from video | | HostnameIntent | Prints the hostname of a container | +| MarkdownRender | Use a Go function with vendoring to convert Markdown to HTML | +| Nmap | The network scanning tool as a binary-based function | | NodeInfo | Node.js - gives CPU/network info on the current container | -| WebhookStash | Golang function provides way to capture webhooks - JSON/text/binary are all OK | +| Phantomjs | Use Phantomjs to scrape/automate web-pages | +| ResizeImageMagick | Resizes an image using the imagemagick binary | +| SentimentAnalysis | Perform sentiment analysis with the TextBlob library | +| WebhookStash | Golang function provides way to capture webhooks - JSON/text/binary into the container filesystem | | WordCountFunction | BusyBox `wc` is exposed as a function / service through FaaS |