I hereby claim:
- I am drmercer on github.
- I am drmercer (https://keybase.io/drmercer) on keybase.
- I have a public key ASDrfHmLQpiMB3kbo2_jSTdtx2AMb1yxzq9zsmXDOsycxgo
To claim this, I am signing this object:
/* | |
Include using | |
<script type="text/javascript" src="https://cdn.rawgit.com/drmercer/7da5b9dbe1a3e0b3ccc43c7fff8a1ec5/raw/86dba4b108a0ac3f1889f06c9db9454d88f770b1/jQuery-coverage.js"></script> | |
Be sure to include it after you've loaded jQuery. | |
*/ | |
window.jqcoverage = (function ($) { | |
"use strict"; |
#!/bin/bash -i | |
last_command=$(fc -ln | grep -v 'git gud' | grep -E '^\s*git' | tail -n 1 | cut -d ' ' -f 3) | |
if [ -n "$last_command" ] ; then | |
git help "$last_command" | |
echo "(now ur gud at 'git $last_command')" | |
else | |
echo "No recent git command found :(" | |
fi |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# Get a list of all JS files currently staged for commit | |
files=$(git diff --cached --name-only | grep '\.jsx\?$') | |
# Prevent ESLint help message if no files matched | |
if [ -z "$files" ] ; then | |
echo "(No JavaScript files to lint.)" | |
exit 0 | |
fi |
These two git hooks could be placed in your (remote) repository's `hooks` directory to emulate the behavior of | |
receive.denyCurrentBranch=updateInstead on older versions of git that don't support that option for that setting. | |
Make sure both are executable, and don't put any file extensions on them. | |
These hooks are licensed under the MIT license (found in the `~LICENSE` file). |
<!-- This is a mock AndroidManifest.xml file, to show you the general context of this intent filter --> | |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="net.danmercer.ponderizer" > | |
<application ... > | |
... | |
<!-- Accept text via ACTION_SEND only from the Github Android app ("com.github.mobile") --> | |
<activity |