I hereby claim:
- I am jemerick on github.
- I am jemerick (https://keybase.io/jemerick) on keybase.
- I have a public key whose fingerprint is 8BD6 32E8 D73E 6158 C11E DD43 A212 8EFE F6B8 0398
To claim this, I am signing this object:
import android.content.Context; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.BaseAdapter; | |
/** An implementation of {@link BaseAdapter} which uses the new/bind pattern for its views. */ | |
public abstract class BindableAdapter<T> extends BaseAdapter { | |
private final Context context; | |
private final LayoutInflater inflater; |
<html> | |
<head> | |
<style type="text/css"> | |
table table { | |
width: 600px !important; | |
} | |
table div + div { /* main content */ | |
width: 65%; | |
float: left; | |
} |
I hereby claim:
To claim this, I am signing this object:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" creator="GPS TrackMaker" version="1.1" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"> | |
<!-- SHELTERS --> | |
<wpt lat="39.359891939" lon="-77.661743153"> | |
<name>SH EDGAR</name> | |
<cmt>Ed Garvey Shelter</cmt> | |
<sym>Waypoint</sym> | |
</wpt> | |
<wpt lat="39.412662687" lon="-77.637042514"> | |
<name>SH CRMPG</name> |
# -*- coding: utf-8 -*- | |
import RPi.GPIO as GPIO | |
import time | |
import click | |
class Stepper(): | |
""" | |
""" |
import RPi.GPIO as GPIO | |
import time | |
GPIO.setmode(GPIO.BOARD) | |
GPIO.setup(16, GPIO.IN, pull_up_down=GPIO.PUD_UP) | |
while True: | |
input_state = GPIO.input(16) | |
if input_state == False: |