I hereby claim:
- I am flydiverny on github.
- I am flydiverny (https://keybase.io/flydiverny) on keybase.
- I have a public key whose fingerprint is 14C7 D907 B34C AACF A981 ADD2 290D 0DF4 88A2 D819
To claim this, I am signing this object:
apiVersion: apps/v1beta2 | |
kind: DaemonSet | |
metadata: | |
labels: | |
app: kiam | |
chart: kiam-2.1.0 | |
component: "server" | |
heritage: Tiller | |
release: release-name | |
name: release-name-kiam-server |
#!/bin/bash | |
REMOTE_URL=$(git remote get-url origin) | |
REST=${REMOTE_URL##git@github.com:} | |
REPO=${REST%%.git} | |
REF=$1 | |
REF=${REF:='HEAD'} | |
HASH=$(git rev-parse "$REF") | |
echo -n "https://github.com/$REPO/commit/$HASH" | pbcopy | |
echo "Commit link copied to clipboard" |
<html> | |
<body> | |
<h2>Privacy Policy</h2> | |
<p>[Individual or Company Name] built the [App Name] app as a [open source | free | freemium | ad-supported | commercial] app. This SERVICE is provided by [Individual or company name] [at no cost] and is intended | |
for use as is.</p> | |
<p>This page is used to inform app users regarding [my|our] policies with the collection, use, and | |
disclosure of Personal Information if anyone decided to use [my|our] Service.</p> | |
<p>If you choose to use [my|our] Service, then you agree to the collection and use of information in | |
relation with this policy. The Personal Information that [I|we] collect are used for providing and | |
improving the Service. [I|We] will not use or share your information with anyone except as described |
I hereby claim:
To claim this, I am signing this object:
var http = require('http'); | |
var Promise = require('promise'); | |
var sessionGet = 0; | |
var sessionPromise; | |
var handleNext = function(req) { | |
var obj = JSON.parse(req.toLowerCase()); // lazy since some keys are in borked case. | |
return new Promise(function(resolve, reject) { |
public abstract class VHAdapter<T, VH> extends ArrayAdapter<T> { | |
@LayoutRes | |
private final int mLayoutRes; | |
private final LayoutInflater mInflater; | |
public VHAdapter(Context context, int resource) { | |
this(context, resource, new ArrayList<T>()); | |
} |