I hereby claim:
- I am FuzzyWuzzie on github.
- I am fuzzywuzzie (https://keybase.io/fuzzywuzzie) on keybase.
- I have a public key whose fingerprint is 0D2D BDE7 9900 EDE8 961E EC29 F353 D551 3210 A1E5
To claim this, I am signing this object:
[user] | |
name = Kenton Hamaluik | |
email = [email protected] | |
[init] | |
defaultBranch = main | |
[alias] | |
ls = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- | |
st = status -sb | |
[pull] | |
rebase = true |
call plug#begin('~/.vim/plugged') | |
Plug 'tpope/vim-surround' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'scrooloose/nerdtree' | |
Plug 'terryma/vim-multiple-cursors' | |
"Plug 'dracula/vim', { 'as': 'dracula' } | |
Plug 'morhetz/gruvbox' | |
Plug 'godlygeek/tabular' | |
Plug 'junegunn/goyo.vim' |
[bar/i3wmthemer_bar] | |
width = 100% | |
height = 27 | |
radius = 0 | |
fixed-center = true | |
background = #162025 | |
foreground = #bfbfbf | |
line-size = 3 |
while let Some(c) = self.chars.peek() { | |
match c { | |
'\n' => { self.line += 1; }, | |
'"' => { break; }, | |
_ => { self.advance(); } | |
}; | |
} |
/** | |
@see https://github.com/armory3d/iron/blob/3e2b6f8d89e5136801bd5dc43172127926847a83/Sources/iron/system/Tween.hx#L134-L158 | |
*/ | |
class Ease { | |
static inline var DEFAULT_OVERSHOOT:Float = 1.70158; | |
public static function linear(k:Float):Float { return k; } | |
public static function sineIn(k:Float):Float { if(k == 0){ return 0; } else if(k == 1){ return 1; } else { return 1 - Math.cos(k * Math.PI / 2); } } | |
public static function sineOut(k:Float):Float { if(k == 0){ return 0; } else if(k == 1){ return 1; } else { return Math.sin(k * (Math.PI * 0.5)); } } | |
public static function sineInOut(k:Float):Float { if(k == 0){ return 0; } else if(k == 1){ return 1; } else { return -0.5 * (Math.cos(Math.PI * k) - 1); } } |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Kha/HTML5", | |
"type": "chrome", | |
"request": "launch", | |
"preLaunchTask": "khamake html5", | |
"file": "${workspaceRoot}/build/html5/index.html" | |
} |
λ haxe tests.hxml | |
thx.core/src/thx/Eithers.hx:157: characters 12-17 : Warning : Potential typo detected (expected similar values are Right). Consider using `var right` instead | |
thx.core/src/thx/Eithers.hx:164: characters 12-17 : Warning : Potential typo detected (expected similar values are Right). Consider using `var right` instead | |
thx.core/src/thx/Validation.hx:67: characters 22-23 : thx.Validation<thx.Validation.E, flatMapV.B> should be thx.Either<thx.Validation.E, flatMapV.B> | |
thx.core/src/thx/Validation.hx:77: characters 27-32 : thx.Validation<thx.Validation.E, thx.Validation.A> should be thx.Either<thx.Validation.E, thx.Validation.A> | |
thx.core/src/thx/Validation.hx:107: characters 34-36 : thx.Validation<val3.X, val3.A> should be thx.Either<Unknown<0>, val3.A> | |
thx.core/src/thx/Validation.hx:107: characters 34-36 : For function argument 'v1' | |
thx.core/src/thx/Validation.hx:113: characters 34-36 : thx.Validation<val4.X, val4.A> should be thx.Either<Unknown<0>, val4.A> | |
thx.core/src/thx/Validation.hx:113: charac |
I hereby claim:
To claim this, I am signing this object:
set nocompatible | |
source $VIMRUNTIME/mswin.vim | |
behave mswin | |
set diffexpr=MyDiff() | |
function MyDiff() | |
let opt = '-a --binary ' | |
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif | |
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif | |
let arg1 = v:fname_in |
[alias] | |
ls = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit -- | |
plog = log --graph --pretty='format:%C(red)%d%C(reset) %C(yellow)%h%C(reset) %ar %C(green)%aN%C(reset) %s' | |
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
tlog = log --stat --since='1 Day Ago' --graph --pretty=oneline --abbrev-commit --date=relative | |
fuck = reset HEAD --hard | |
yolo = push -f | |
news = log -p @{1}.. | |
d = diff -c HEAD | |
cleanup = !git clean -i -x -d -e "TAGS" -e 'tags' ; git fetch -p |