I hereby claim:
- I am islishude on github.
- I am islishude (https://keybase.io/islishude) on keybase.
- I have a public key ASB18HUq43FGsiHXBcy7JBDk4PAwCp8WLRxPe--noiuWswo
To claim this, I am signing this object:
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: kubernetes-dashboard | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
labels: |
package github | |
import ( | |
"context" | |
"encoding/json" | |
"net/http" | |
) | |
// Remote remote git server | |
type Remote struct { |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"crypto/rand" | |
"fmt" | |
"reflect" | |
"github.com/hashicorp/vault/shamir" | |
) |
package hdkey | |
import ( | |
"errors" | |
"strconv" | |
"strings" | |
"github.com/btcsuite/btcutil/hdkeychain" | |
) |
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" | |
"path" |
stages: | |
- test | |
.testtpl: &test_template | |
coverage: '/coverage: \d+\.\d+% of statements/' | |
before_script: | |
- "apk add ca-certificates git" | |
script: | |
- "go test -v -cover ./..." |
// ref: https://github.com/ethereumjs/ethereumjs-util/blob/master/src/signature.ts#L15 | |
const secp256k1 = require('secp256k1') | |
interface ISignature { | |
signature: Buffer, | |
recovery: number, | |
} | |
export const ecsign = function( | |
msgHash: Buffer, |
-- BEGIN generate DDL -- | |
DROP DATABASE IF EXISTS ex; | |
CREATE DATABASE ex; | |
DROP USER IF EXISTS ex_rw@'%'; |
pub trait Bird { | |
fn fly(&self); | |
} | |
pub struct Duck; | |
pub struct Swan; | |
impl Bird for Duck { | |
fn fly(&self) { | |
println!("duck fly"); |