Skip to content

Instantly share code, notes, and snippets.

View hendrapermadiansyah714-sudo's full-sized avatar

hendra permadiansyah hendrapermadiansyah714-sudo

  • GLOBAL HUMAN OBLIGATIONS INTERNATIONAL PROJECTS
  • INDONESIA
  • 16:18 (UTC -12:00)
View GitHub Profile
@jussi-kalliokoski
jussi-kalliokoski / bugzilla-to-github.coffee
Created December 25, 2012 21:54
A script to export bugzilla's bugs to github's issues.
request = require 'request'
Restzilla = require 'restzilla'
BUGZILLA_URL = 'https://www.w3.org/Bugs/Public/'
BURL = 'http://localhost:8000/AudioWG/MIDI%20API/'
GH_USER = 'jussi-kalliokoski'
GH_REPO = 'webmidi-issues'
GH_URL = 'https://api.github.com/repos/' + GH_USER + '/' + GH_REPO + '/issues'
GH_AUTH =
username: 'octocat'