I hereby claim:
- I am prestonvanloon on github.
- I am prestonvanloon (https://keybase.io/prestonvanloon) on keybase.
- I have a public key ASCRb4NSwTNmuYUBsoBb7DgRSqaTQvl9vIWPMVpYk0aj7wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| The remote desktop session has to be headless :( | |
| - Install the deb (can convert with alien & co) | |
| - Patch with modern_distro.diff (cherry-pick what your system needs) | |
| - To support automatic desktop resizing: | |
| - Works with any window manager | |
| - Build Xvfb with xvfb-randr.diff | |
| - Expose as /usr/bin/Xvfb-randr | |
| - If replacing system-wide binary by repackaging, simply | |
| # ln -sf Xvfb /usr/bin/Xvfb-randr |
I hereby claim:
To claim this, I am signing this object:
| // Data represents some arbitrary thing in the universe. | |
| type Data struct { | |
| prices []int | |
| checked bool | |
| } | |
| // Moon? returns true if the price is indicative of the thing going to the moon. | |
| func Moon(data *Data) bool { | |
| // Is the next line important? | |
| // Would any test fail if this line were mutated to | |
| // _ = true ? |
| git filter-branch --commit-filter ' | |
| if echo $GIT_AUTHOR_NAME | grep -F -f /tmp/list >/dev/null; | |
| then | |
| git commit-tree "$@"; | |
| else | |
| skip_commit "$@"; | |
| fi' HEAD |
| #!/bin/bash | |
| # Copyright © 2017 Google Inc. | |
| # 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 |
| pragma solidity 0.5.1; | |
| /// @title birthday.sol -- A birthday card for a special person. | |
| /// @author Preston Van Loon <[email protected]> | |
| contract BirthdayCard { | |
| event PassphraseOK(string passphrase); | |
| string public message; | |
| bytes32 hashed_passphrase; |
| time="2019-03-05 23:40:06" level=info msg="Starting Jaeger exporter endpoint at address = http://jaeger-collector.istio-system.svc.cluster.local:14268" prefix=tracing | |
| 2019/03/05 23:40:06 Endpoint has been deprecated. Please use CollectorEndpoint instead. | |
| time="2019-03-05 23:40:06" level=info msg="Using custom parameter configuration" prefix=node | |
| time="2019-03-05 23:40:06" level=info msg="checking db" prefix=node | |
| time="2019-03-05 23:40:07" level=info msg="Starting beacon node" prefix=node version="Git commit: c22e4dc2ae6655dbaaf1f76f6b1ba3a89a354cf0. Built at: 2019-03-05 23:16:16+00:00" | |
| time="2019-03-05 23:40:07" level=info msg="Starting 7 services: [*p2p.Server *powchain.Web3Service *operations.Service *blockchain.ChainService *sync.Service *rpc.Service *prometheus.Service]" prefix=registry | |
| time="2019-03-05 23:40:07" level=info msg="Starting service" prefix=p2p | |
| time="2019-03-05 23:40:07" level=info msg="Starting service" endpoint="ws://public-rpc-nodes.pow.svc.cluster.local:8546" prefix=powchain | |
| time="2019-03 |
| package example | |
| import ( | |
| "testing" | |
| proto "github.com/golang/protobuf/proto" | |
| ) | |
| func BenchmarkHobbits(b *testing.B) { | |
| example_ping_req := "EWP 0.1 PING none none 0 5\n12345" |
| └── tests | |
| ├── bls | |
| ├── epoch_processing | |
| │ ├── crosslinks | |
| │ │ ├── crosslinks_mainnet.yaml | |
| │ │ └── crosslinks_minimal.yaml | |
| │ └── registry_updates | |
| │ ├── registry_updates_mainnet.yaml | |
| │ └── registry_updates_minimal.yaml | |
| ├── operations |