Skip to content

Instantly share code, notes, and snippets.

View jboursiquot's full-sized avatar
📆
GopherCon

Johnny Boursiquot jboursiquot

📆
GopherCon
View GitHub Profile
@jboursiquot
jboursiquot / practical-go-prereqs.md
Last active May 26, 2021 16:41
Practical Go workshop prerequisites

Practical Go Workshop Prerequisites

Thanks again for signing up for the workshop. There's a lot to cover and we'll need to hit the ground running on time so it's important that you arrive prepared with all you'll need locally already configured and ready to go.

TL;DR

  • Have Git installed
  • Have Go 1.13+ installed
  • Have an editor/IDE with Go plugin installed.
  • Have some basic familiarity with Go, use gobyexample.com if you need a refresher or introduction.
@natefinch
natefinch / .travis.yml
Created February 22, 2017 03:58
Minimal .travis.yml for go projects that use glide with private repos
language: go
go:
- 1.8
before_install:
- git config --global url."git@github.com:".insteadOf "https://github.com/"
- wget "https://github.com/Masterminds/glide/releases/download/v0.12.3/glide-v0.12.3-linux-amd64.tar.gz"
- mkdir -p $HOME/bin
- tar -vxz -C $HOME/bin --strip=1 -f glide-v0.12.3-linux-amd64.tar.gz
@euank
euank / Dockerfile
Last active March 14, 2023 23:40
ECS / EC2 Metadata entrypoint example
FROM golang:1.4
COPY entrypoint.sh /entrypoint.sh
COPY main.go main.go
RUN go build -o main main.go
RUN chmod +x /entrypoint.sh
EXPOSE 8080
ENTRYPOINT ["/entrypoint.sh"]
CMD ["./main"]
@bcardarella
bcardarella / gist:6707897
Last active December 23, 2015 23:09
Wicked Good Ruby budget
Sean and I were just sent the "near final" estimate of the conference. Basically it breaks down to two numbers:
Conference cost to be paid before the conference: $86,000. We have already paid $20,000 of this.
Potential unsold hotel rooms cost: $25,000. This is an additional cost above the conference cost. It could be less by the date of the conference as the hotel has agreed to open our block to the general public for purchase.
T-shirts, stickers, badges, other costs: I estimate those additional costs at least $7k. Let's round it up to be safe and say we're looking at $10k for all of that.
Confreaks is around $10k (I think, I can't find the invoice)
@igrigorik
igrigorik / links.md
Created August 28, 2012 16:53
HAR Show links & resources
@robotarmy
robotarmy / Gemfile
Created March 23, 2012 23:55
Adding Rake to Sinatra with Rspec
gem 'sinatra'
group :development,:test do
gem 'rspec'
gem 'rack-test'
end