Skip to content

Instantly share code, notes, and snippets.

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

Keybase proof

I hereby claim:

  • I am owais on github.
  • I am owais (https://keybase.io/owais) on keybase.
  • I have a public key whose fingerprint is 6EF9 E833 BA38 147B 2B98 D8E6 68B6 A58A BF0C 299C

To claim this, I am signing this object:

@owais
owais / keybase.md
Last active September 20, 2016 08:47
keybase.md

Keybase proof

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:

@owais
owais / gist:1759658
Created February 7, 2012 13:24
GtkClutter PyGobject
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)
@owais
owais / last-skype-chat
Created November 8, 2011 17:38
Skype recent chat hotkey for linux
#!/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')