This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import github | |
| import argparse | |
| class Generator: | |
| def __init__(self, token): | |
| self.git = github.Github(token) | |
| def generate(self, repo, milestone): | |
| repo = self.git.get_repo(repo) | |
| milestone = self.get_milestone(repo, milestone) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var title = ""; | |
| var labels = ""; | |
| var actions = ""; | |
| var windowid = ""; | |
| var moviequery = {'properties': ['title'], | |
| 'sort': {'order':'ascending', | |
| 'method': 'label'} | |
| }; | |
| var XBMCHOST = global('XBMCHOST'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python2 | |
| import bluetooth | |
| import dbus | |
| import dbus.mainloop.glib | |
| import gobject | |
| import sys | |
| dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) | |
| mainloop = gobject.MainLoop() |
NewerOlder