Skip to content

Instantly share code, notes, and snippets.

View blaet's full-sized avatar
🚀
Launching stuff

Bram de Vries blaet

🚀
Launching stuff
  • Nedap
  • Nijmegen, The Netherlands
  • 01:39 (UTC +02:00)
View GitHub Profile
@blaet
blaet / keybase.md
Created June 20, 2017 13:30
Keybase verification

Keybase proof

I hereby claim:

  • I am blaet on github.
  • I am blaet (https://keybase.io/blaet) on keybase.
  • I have a public key ASDnjbKXiFRg-KebNPfQOe81NYCt2P25lkiUVbaErOtcBAo

To claim this, I am signing this object:

@blaet
blaet / pivotal_to_github.rb
Created September 19, 2017 15:06
Basic PivotalTracker to Github converter
#!/usr/bin/env ruby
require 'octokit'
Octokit.configure do |c|
c.access_token = 'xxxx' # Github access token with repo write access
end
PivotalIssue = Struct.new(:title, :body)