I hereby claim:
- I am KraigWalker on github.
- I am kraigwalker (https://keybase.io/kraigwalker) on keybase.
- I have a public key whose fingerprint is 9E9F C0EA DFA1 83F5 3A99 F494 DCE9 603E 42EE 7748
To claim this, I am signing this object:
[user] | |
email = [email protected] | |
name = Kraig Walker | |
[alias] | |
# The best utility for cleaning outdated branches. It will connect to a | |
# shared remote repository and fetch all remote branch refs. It will then | |
# delete remote refs that are no longer in use on the remote repository. | |
# https://git-scm.com/docs/git-fetch/#git-fetch--p | |
prune = fetch --prune |
I hereby claim:
To claim this, I am signing this object:
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<meta name="format-detection" content="telephone=no"> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<!-- logo margin --> | |
<td width="43" style="vertical-align: top;"> |
# put this in your .bashrc/.zshrc file | |
alias gri="git ls-files --ignored --exclude-standard | xargs git rm" |
// Props to Thomas Fuchs ;) | |
// usage: | |
// var options = { | |
// id: SiteLink | |
// href: https://kraigwalker.com | |
//} | |
// return t('<a href="{href}" id="{id}"></a>', options); | |
function t(s, d) { | |
for(var p in d) |
define(function, exports, module) { | |
var View = require('famous/core/View'); | |
var Entity = require('famous/core/Entity'); | |
var Modifier = require('famous/core/Modifier'); | |
var Transform = require('famous/core/Transform'); | |
var Transitionable = require('famous/transitions/Transitionable'); | |
var TransitionableTransform = require('famous/transitions/TransitionableTransform'); | |
function FlexGrid() { | |
View.apply(this, arguments); |
#!/bin/sh | |
# | |
# Nukes a branch locally and on the origin remote. | |
# | |
# $1 - Branch name. | |
# | |
# Examples | |
# | |
# git nuke add-git-nuke |
/** | |
* Utility function that allows for the quick creation of a StateModifier to modifiy the opacity of a renderable | |
* | |
* @param {!number} startOpacity The initial opacity of the object at the start of the transition (0-1) | |
* @param {!number} endOpacity The final opacity of the object at the end of the transition (0-1) | |
* @param {Transition} transition The curve function and duration that affects the opacity | |
* @param {function} callback Callback function after the transition | |
* @return {StateModifier} | |
* | |
* @example |
Simple loading indicator animation for @alpcanaydin
A Pen by Denis Omeri on CodePen.
public class CameraController : MonoBehaviour { | |
public bool useCInput = false; // whether or not to use cInput 2.x | |
public Transform focusTarget; // we look at and follow this | |
[HideInInspector] | |
// How fast the camera moves | |
public int cameraVelocity = 10; |