I hereby claim:
- I am ianlewis on github.
- I am ianlewis (https://keybase.io/ianlewis) on keybase.
- I have a public key ASCB-cpf3qu3_l-VJJuInEbzh--93qihS4VF3WECDVz6NQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| # $ make | |
| # dep1 | |
| # | |
| # $ make test-foo | |
| # dep2 | |
| # test-foo | |
| # | |
| # $ make dep3 | |
| # dep2 | |
| # dep1 |
| // Copyright 2018 The gVisor Authors. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software | |
| // distributed under the License is distributed on an "AS IS" BASIS, |
I hereby claim:
To claim this, I am signing this object:
| apiVersion: extensions/v1beta1 | |
| kind: Ingress | |
| metadata: | |
| name: kuard | |
| labels: | |
| app: kuard | |
| spec: | |
| rules: | |
| - http: | |
| paths: |
| import csv | |
| import sys | |
| import calendar | |
| import time | |
| from datetime import datetime | |
| # /storage/emulated/0/sleep-data/sleep-export.csv | |
| # Formates Date/Time objects in Sleep as Android format | |
| def sleepandroid_time(time): | |
| return '%.2d. %.2d. %d %d:%.2d' % (time.day, time.month, time.year, time.hour, time.minute) |
| #:coding=utf-8: | |
| import sys | |
| import csv | |
| import collections | |
| import decimal | |
| import datetime | |
| def main(csv_path, output_path): |
| # A tool for converting Eijiro database into something more usable. | |
| # A work in progress. | |
| import sys | |
| import MeCab | |
| from lxml import etree | |
| from multiprocessing import Process, Pipe |
| #!/bin/bash | |
| # A drop-in replacement for rm that copies files to the Gnome trash rather than | |
| # deleting them. | |
| # Doesn't quite support all of the rm options yet. | |
| readonly progname="$(basename $0)" | |
| function printHelpAndExit { | |
| exitCode=$1 |
| #!/bin/bash | |
| # A script for recommending a reviewer for a particular diff. | |
| # Currently only supports mercurial repositories. | |
| if [ "$1" = "" ]; then | |
| echo "Usage: recommend_reviewer REV1 REV2" | |
| exit 0 | |
| fi |