Skip to content

Instantly share code, notes, and snippets.

@dequegorg
dequegorg / stackexchange_inbox_reader.py
Created December 31, 2011 00:48
Retrieve StackExchange Inbox with Google Accounts and Python
#!/usr/bin/env python
# Copyright 2011 benjamin <jesuisbenjamin@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
@dequegorg
dequegorg / QAnimation.py
Created August 19, 2011 07:33
Qt Child Widget Slide Animation
#!/usr/bin/env python
# To change this template, choose Tools | Templates
# and open the template in the editor.
__author__="benjamin"
__date__ ="$Aug 19, 2011 8:23:20 AM$"
@dequegorg
dequegorg / main.py
Created May 28, 2011 09:58
Kivy Basic Application
import kivy
kivy.require('1.0.0')
from kivy.app import App
from kivy.uix.button import Button
class MyApp(App):
def build(self):
return Button(text='Hello World')