I hereby claim:
- I am mfa on github.
- I am mfandreas (https://keybase.io/mfandreas) on keybase.
- I have a public key whose fingerprint is C0E0 906A FFC8 4C45 2F01 0535 5F62 A6E5 EFA1 2513
To claim this, I am signing this object:
| # version for bash 2.03 | |
| # no use of =~ and BASH_REMATCH allowed | |
| function parse_git_branch { | |
| if [[ `uname -s` == "SunOS" ]]; then | |
| return 1 | |
| fi | |
| if git rev-parse --git-dir >/dev/null 2>&1 | |
| then | |
| git_status="$(git status 2> /dev/null)" | |
| remote_pattern="# Your branch is " |
| #!/bin/sh | |
| # | |
| # Take a photo of you, whenever you make a commit | |
| # | |
| # This is an improved version of Víctor Martínez original post: | |
| # http://coderwall.com/p/xlatfq | |
| # | |
| # Improvements: | |
| # * This is non-blocking (you dont have to wait for your image to be taken) |
| # -*- coding: utf-8 -*- | |
| # | |
| # frwd to other interested parties at the institute | |
| # | |
| import datetime, time, sys | |
| leave_at = datetime.datetime(2012, 12, 13, 12, 00) | |
| first = True | |
| while True: | |
| delta = leave_at - datetime.datetime.now() |
| import sys | |
| import locale | |
| if sys.stdout.isatty(): | |
| default_encoding = sys.stdout.encoding | |
| else: | |
| default_encoding = locale.getpreferredencoding() |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- # | |
| from __future__ import unicode_literals | |
| AUTHOR = u'FIXME' | |
| SITENAME = u'FIXME' | |
| SITEURL = 'http://example.org' | |
| TIMEZONE = 'Europe/Berlin' |
| delete FROM "schemaorg_jsonthing" WHERE UPPER("schemaorg_jsonthing"."pure_data"::text) LIKE UPPER('%nan,%'); |
| ## Böblinger-Strasse | |
| curl -X POST "http://www.eco-public.com/ParcPublic/CounterData?table=ecobdd.%60Z_100034894%60&idOrganisme=607&idPdc=100034894&fin=09%2F06%2F2017&debut=01%2F01%2F2017&interval=4&pratiques=101034894%3B102034894%3B103034894%3B104034894" | |
| ## König-Karls-Brücke | |
| curl -X POST "http://www.eco-public.com/ParcPublic/CounterData?table=ecobdd.%60Z_100037170%60&idOrganisme=607&idPdc=100037170&fin=09%2F06%2F2017&debut=01%2F01%2F2017&interval=4&pratiques=" | |
| # Python 3.6+ | |
| import pynmea2 | |
| import serial | |
| s = serial.Serial("/dev/ttyAMA0", 9600, timeout=0.5) | |
| line = "" | |
| while True: | |
| try: | |
| line = s.readline().decode() | |
| except UnicodeDecodeError: |