I hereby claim:
- I am brvier on github.
- I am brvier (https://keybase.io/brvier) on keybase.
- I have a public key ASChAsBm9OyofchbLb1GH12Ee-QRJjfds2E1PngrEG8vVQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # -*- coding: utf-8 -*- | |
| """ | |
| on_textedit event sample. | |
| """ | |
| from kivy.app import App | |
| from kivy.lang import Builder | |
| from kivy.properties import StringProperty | |
| from kivy.uix.textinput import TextInput | |
| from kivy.uix.widget import Widget |
| """ | |
| Datetime Picker | |
| ===== | |
| A simple datetime picker for BrOrg | |
| fork of https://gist.github.com/el3/4db1060a4328ae8bbcd9a0fe07826a2b (github.com/el3) | |
| """ | |
| __version__ = "0.1.0" | |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| from math import cos, sin, pi | |
| from kivy.app import App | |
| from kivy.uix.widget import Widget | |
| from kivy.graphics import Color, Ellipse, Line, Mesh | |
| from kivy.properties import ListProperty | |
| from kivy.clock import Clock | |
| import itertools | |
| import random |
| from dulwich import porcelain | |
| import os | |
| import os.path | |
| import sys | |
| import io | |
| class GitRepository: | |
| def __init__(self, localpath=os.path.expanduser('~/Notes'), remote=None): |
| Verifying that +khertan is my blockchain ID. https://onename.com/khertan |
| #!/bin/sh -e | |
| DEVICE=E4:F8:EF:1F:D1:F4 | |
| DEV_NAME="K" | |
| opt=`hcitool name $DEVICE` | |
| if [ "$opt" = "$DEV_NAME" ]; then | |
| echo "Device '$opt' found" | |
| else | |
| echo "Can't find device $DEVICE ($DEV_NAME); locking!" |
| int NotesModel::pull() { | |
| /* | |
| git_repository *repo = NULL; | |
| git_strarray remotes = {0}; | |
| git_remote *remote = NULL; | |
| git_index *idx = NULL; | |
| git_checkout_options checkout_opts = GIT_CHECKOUT_OPTIONS_INIT; | |
| git_clone_options clone_opts = GIT_CLONE_OPTIONS_INIT;*/ |