I hereby claim:
- I am echorebel on github.
- I am kemuri (https://keybase.io/kemuri) on keybase.
- I have a public key ASC5VjA-Rqs0XPZzqGv2zFTMpR1o5E0sSt4E3JKhvxKFdgo
To claim this, I am signing this object:
| setx GPU_FORCE_64BIT_PTR 0 | |
| setx GPU_MAX_HEAP_SIZE 100 | |
| setx GPU_USE_SYNC_OBJECTS 1 | |
| setx GPU_MAX_ALLOC_PERCENT 100 | |
| setx GPU_SINGLE_ALLOC_PERCENT 100 | |
| ethminer.exe --farm-recheck 200 -G -S eu2.ethermine.org:4444 -FS eu1.ethermine.org:4444 -O 0x5846b301f36a1f840f012cc07dc5533733f4d352.rig1 |
I hereby claim:
To claim this, I am signing this object:
| Verifying my Blockstack ID is secured with the address 1KxuNBwPHW7XomSeBJ23iivCKFKLFm3UgH https://explorer.blockstack.org/address/1KxuNBwPHW7XomSeBJ23iivCKFKLFm3UgH |
| #!/usr/bin/env python | |
| # finds jira tickets up until latest tag | |
| # regex part inspired by https://github.com/pbetkier/add-issue-id-hook | |
| import subprocess | |
| import re | |
| project_format = '[A-Z][A-Z]+' | |
| issue_pattern = '{}-[\d]+'.format(project_format) |
| #!/bin/sh | |
| # based on https://github.com/shyiko/ktlint pre-commit hook | |
| # with further tweaks of @neugartf | |
| set -e | |
| CHANGED_FILES="$(git --no-pager diff --name-status --no-color --cached | awk '$1 != "D" && $2 ~ /\.kts|\.kt/ { print $2}')" | |
| if [ -z "$CHANGED_FILES" ]; then | |
| exit 0 | |
| fi; |
| for branch in `git branch -r --merged develop | grep -v HEAD`;do echo -e `git show --format="%an" $branch | head -n 1` \\t$branch; done | sort |