I hereby claim:
- I am owais on github.
- I am owais (https://keybase.io/owais) on keybase.
- I have a public key ASBg9qLHfGmPu3o13fjVXrK3PxvmHzEeAJ4wNLuURdSS7Qo
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import dbus | |
| PLUGIN_NAME = "OpenLastSkypeChat" | |
| bus = dbus.SessionBus() | |
| skype_dbus_object = bus.get_object('com.Skype.API', '/com/Skype') | |
| skype = dbus.Interface(skype_dbus_object, dbus_interface='com.Skype.API') |
| from gi.repository import Gtk, Clutter, GtkClutter | |
| def pressed(w, e): | |
| print w, e | |
| GtkClutter.init([]) | |
| window = Gtk.Window.new(Gtk.WindowType.TOPLEVEL) | |
| vbox = Gtk.VBox.new(False, 6) | |
| window.add(vbox) |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| import dbus | |
| import dbus.service | |
| import dbus.mainloop.glib | |
| from gi.repository import GObject | |
| class Service(dbus.service.Object): | |
| def __init__(self, message): | |
| self._message = message |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "flag" | |
| ) | |
| var ( | |
| listenAddr string | |
| ) |
| import threading | |
| import time | |
| from opentelemetry import trace | |
| from opentelemetry.sdk.trace import TracerProvider | |
| from opentelemetry.sdk.trace.export import ConsoleSpanExporter | |
| from opentelemetry.sdk.trace.export import SimpleExportSpanProcessor | |
| tracer_provider = TracerProvider() | |
| trace.set_tracer_provider(tracer_provider) |
| remote_config_sources: | |
| vault: | |
| # vault connection config | |
| zookeeper: | |
| # zookeeper connection config | |
| # any given config key for any component can be replaced with | |
| # $load_from_remote and config loader/parser would replace it |