I hereby claim:
- I am niklasmerz on github.
- I am niklasmerz (https://keybase.io/niklasmerz) on keybase.
- I have a public key whose fingerprint is 69DF A493 7E54 F8FF 6362 E39E D4D8 267B 628A 1BD8
To claim this, I am signing this object:
| sudo wget http://goo.gl/TtfQeZ -O /usr/share/nemo-python/extensions/syncstate.py |
| sudo chmod 600 ~/.ssh/id_rsa |
| openssl rsa -in ~/.ssh/id_rsa -outform pem > id_rsa.pem | |
| chmod 700 id_rsa.pem |
| export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) | |
| gpgconf --launch gpg-agent |
I hereby claim:
To claim this, I am signing this object:
| [Unit] | |
| Description= Perkeep Server | |
| Documentation= https://perkeep.org | |
| [Service] | |
| Type= simple | |
| User= perkeep | |
| ExecStart= /opt/perkeep/perkeepd |
| FROM golang:alpine as builder | |
| ENV PATH /go/bin:/usr/local/go/bin:$PATH | |
| ENV GOPATH /go | |
| COPY . /go/src/github.com/niklasmerz/myproject | |
| RUN set -x \ | |
| && cd /go/src/github.com/niklasmerz/myproject \ | |
| && go build \ |
| apiVersion: extensions/v1beta1 | |
| kind: Deployment | |
| metadata: | |
| labels: | |
| app: myproject | |
| name: myproject | |
| namespace: default | |
| spec: | |
| progressDeadlineSeconds: 600 | |
| replicas: 1 |
| repo https://github.com/niklasmerz/gistdirect |
| var budget = new Budget({name: "My car budget", interval: "yearly"}); | |
| var account = Accounts.get("MYGIROIBAN"); | |
| const insuranceQuery = new TransactionsQuery(); | |
| insuranceQuery.subject.contains("Insurance Payment Car"); | |
| //insuranceQuery.subject.regex(.. | |
| insuranceQuery.iban.equals("DE....") | |
| const insuranceTransactions = account.query(insuranceQuery); | |
| budget.add("Insurance", insuranceTransactions); |