From ff8f40e4d65b81ec70986ac28e18330566d2aa73 Mon Sep 17 00:00:00 2001 From: Darrel Herbst Date: Tue, 8 Sep 2015 15:23:29 -0400 Subject: [PATCH 1/7] adding september link to slides --- ...8-golang-and-slack-with-appengine.markdown | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 _posts/2015-09-08-golang-and-slack-with-appengine.markdown diff --git a/_posts/2015-09-08-golang-and-slack-with-appengine.markdown b/_posts/2015-09-08-golang-and-slack-with-appengine.markdown new file mode 100644 index 0000000..a576d7b --- /dev/null +++ b/_posts/2015-09-08-golang-and-slack-with-appengine.markdown @@ -0,0 +1,29 @@ +--- + +layout: post +title: "September 8 - Golang and slack with appengine" +date: 2015-09-08 18:30:00 + +categories: golang slack appengine +--- + +Using go and AppEngine to create a slackbot + +Walkthrough of a go project using Google AppEngine and slack to create a bot that responds to commands. + +6:30 - 6:50 Pizza and Get To Know your fellow gophers + +6:50-7pm Lightning Talks + +7pm - 8pm Darrel Herbst will speak about using go and appengine to create a slack bot + * slides [http://go-talks.appspot.com/github.com/dherbst/go-slackbot-example/present/go-slackbot-example.slide](http://go-talks.appspot.com/github.com/dherbst/go-slackbot-example/present/go-slackbot-example.slide) + +{% highlight go %} +package main + +import "fmt" + +func main() { + fmt.Printf("Hello Gophers!") +} +{% endhighlight %} From 9b8fdd6c9be4cd0d960b17e2ca1c12ed0885f512 Mon Sep 17 00:00:00 2001 From: Darrel Herbst Date: Tue, 8 Sep 2015 16:16:18 -0400 Subject: [PATCH 2/7] adding docker steps to the readme --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 59bee89..c8c4b0a 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,21 @@ About This Repo This is the repo for the http://www.golangphilly.org. If you would like to suggest a talk submit a PR to this repo with the details of your talk. -Testing out you talk request +Testing out your talk request ============================ You'll need to install jekyll to verify the changes you're making to the site. Follow the instructions below to get jekyll installed and running. +Using Jekyll with docker +======================== + +You can either install jekyll on your machine, or use a docker container. To use docker, use the following commands: + + docker pull jekyll/jekyll + docker run --rm --volume=$(pwd):/srv/jekyll -t -p 4000:4000 jekyll/jekyll jekyll s + + + Jekyll Dependencies =================== From ee69efc373877b85788414014447acb22ec3b196 Mon Sep 17 00:00:00 2001 From: Darrel Herbst Date: Wed, 9 Sep 2015 07:38:42 -0400 Subject: [PATCH 3/7] Using the kramdown link and adding Jon's slides. --- ...2015-09-08-golang-and-slack-with-appengine.markdown | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/_posts/2015-09-08-golang-and-slack-with-appengine.markdown b/_posts/2015-09-08-golang-and-slack-with-appengine.markdown index a576d7b..5cfd642 100644 --- a/_posts/2015-09-08-golang-and-slack-with-appengine.markdown +++ b/_posts/2015-09-08-golang-and-slack-with-appengine.markdown @@ -15,8 +15,16 @@ Walkthrough of a go project using Google AppEngine and slack to create a bot tha 6:50-7pm Lightning Talks +Jon Wear on using the go blog software + + * Slides are here: + * Code is here: + + 7pm - 8pm Darrel Herbst will speak about using go and appengine to create a slack bot - * slides [http://go-talks.appspot.com/github.com/dherbst/go-slackbot-example/present/go-slackbot-example.slide](http://go-talks.appspot.com/github.com/dherbst/go-slackbot-example/present/go-slackbot-example.slide) + + * slides + * code {% highlight go %} package main From e16e3dcd519debfe1a501e5e87709c998e48d72c Mon Sep 17 00:00:00 2001 From: Darrel Herbst Date: Wed, 9 Sep 2015 07:53:27 -0400 Subject: [PATCH 4/7] adding Pete's slides --- ...11-peter-shannon-docker-at-dramafever.markdown | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 _posts/2015-08-11-peter-shannon-docker-at-dramafever.markdown diff --git a/_posts/2015-08-11-peter-shannon-docker-at-dramafever.markdown b/_posts/2015-08-11-peter-shannon-docker-at-dramafever.markdown new file mode 100644 index 0000000..608a0c9 --- /dev/null +++ b/_posts/2015-08-11-peter-shannon-docker-at-dramafever.markdown @@ -0,0 +1,15 @@ +--- + +layout: post +title: "August 11 - Docker at DramaFever" +date: 2015-08-11 18:30:00 + +categories: golang docker dramafever +--- + + +7:00 - 8:00 pm Peter Shannon - Docker at DramaFever + +At DramaFever we have been running Docker in production since October 2013. In this talk, I will detail how DramaFever implemented Docker for our entire development pipeline from laptops to production. I’ll cover the pain points and failure scenarios we’ve encountered and how we’ve worked through them. + + * Slides From f041cd59c78fb24d6ed672b196101048a61a2cee Mon Sep 17 00:00:00 2001 From: Darrel Herbst Date: Wed, 9 Sep 2015 09:28:06 -0400 Subject: [PATCH 5/7] adding may and July --- ...nd-docker-for-building-go-projects.markdown | 14 ++++++++++++++ .../2015-07-21-golang-with-aws-lambda.markdown | 18 ++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 _posts/2015-05-12-godeps-vendoring-makefile-and-docker-for-building-go-projects.markdown create mode 100644 _posts/2015-07-21-golang-with-aws-lambda.markdown diff --git a/_posts/2015-05-12-godeps-vendoring-makefile-and-docker-for-building-go-projects.markdown b/_posts/2015-05-12-godeps-vendoring-makefile-and-docker-for-building-go-projects.markdown new file mode 100644 index 0000000..a92551a --- /dev/null +++ b/_posts/2015-05-12-godeps-vendoring-makefile-and-docker-for-building-go-projects.markdown @@ -0,0 +1,14 @@ +--- + +layout: post +title: "May 12 - Godeps, vendoring, makefile, and docker for building go projects" +date: 2015-05-12 18:30:00 + +categories: golang docker make vendoring +--- + +6:30 - 6:50 Pizza and Get To Know your fellow gophers + +6:50-7pm Lightning Talks + +7pm - 8pm Dan Worth will talk about vendoring dependencies with Godep and some makefile and docker goodness for building go projects. diff --git a/_posts/2015-07-21-golang-with-aws-lambda.markdown b/_posts/2015-07-21-golang-with-aws-lambda.markdown new file mode 100644 index 0000000..f3faa40 --- /dev/null +++ b/_posts/2015-07-21-golang-with-aws-lambda.markdown @@ -0,0 +1,18 @@ +--- + +layout: post +title: "July 21 - Golang with AWS Lambda" +date: 2015-09-08 18:30:00 + +categories: golang aws lambda +--- + +6:30-6:50 pm Pizza and meet your fellow gophers + +6:50-7:00 pm Lightning talks + +7:00 - 8:00 pm Jon Wear talks about How to use Golang with AWS Lambda, and other services. + +Repo for the Lambda Code: + +GopherCon talk about func types implementing interfaces: From b6de10a7b0eff12e570b5970205be49e6a145385 Mon Sep 17 00:00:00 2001 From: Darrel Herbst Date: Wed, 9 Sep 2015 10:43:10 -0400 Subject: [PATCH 6/7] wrong date --- _posts/2015-07-21-golang-with-aws-lambda.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2015-07-21-golang-with-aws-lambda.markdown b/_posts/2015-07-21-golang-with-aws-lambda.markdown index f3faa40..61fc62b 100644 --- a/_posts/2015-07-21-golang-with-aws-lambda.markdown +++ b/_posts/2015-07-21-golang-with-aws-lambda.markdown @@ -2,7 +2,7 @@ layout: post title: "July 21 - Golang with AWS Lambda" -date: 2015-09-08 18:30:00 +date: 2015-07-21 18:30:00 categories: golang aws lambda --- From 70bc4da6baad066923e6eddce03ea764ae20699c Mon Sep 17 00:00:00 2001 From: Darrel Herbst Date: Sun, 1 Nov 2015 21:54:34 -0500 Subject: [PATCH 7/7] for #9 to change to cc v4 --- LICENSE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..cf7dbc2 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,5 @@ +This work is licensed under a Creative Commons Attribution 4.0 International License. + +See http://creativecommons.org/licenses/by/4.0/ for a copy of the license. + +All linked slides and articles are subject to their owner's licensing.