I hereby claim:
- I am tylerstillwater on github.
- I am tylerstillwater (https://keybase.io/tylerstillwater) on keybase.
- I have a public key ASC-NPzCAFpd6soD3fkmBpXTXmYvLnZjzpru16rl2BN5Swo
To claim this, I am signing this object:
// | |
// FeatureVoter.swift | |
// Mutaclip | |
// | |
// Created by Tyler Stillwater on 5/10/23. | |
// | |
// Custom voter implementation for: https://github.com/AvdLee/Roadmap | |
// Note: will not work until this PR is merged: https://github.com/AvdLee/Roadmap/pull/71 | |
{ | |
"id": "named-insured", | |
"index": 0, | |
"status": "incomplete", | |
"graphql": { | |
"raw": "... raw graphql persist query ...", | |
"values": { | |
"/entity/quote_id": "1B1C579D-D6A6-4619-A726-B23911C765EF", | |
"/quote_id": "171D54A0-9C2A-42D4-AE6E-F55292F652A7" | |
} |
package main | |
import "fmt" | |
type MyError struct { | |
Code int | |
Message string | |
} | |
func (m MyError) Error() string { |
package main | |
type thisDoesNotWork struct { | |
i int | |
} | |
func main() { | |
var j int64 | |
thisWorks(j) // quick fix convert works here |
package main | |
type child struct { | |
name string | |
} | |
type parent struct { | |
childName string | |
} |
package main | |
import "database/sql" | |
type executor struct { | |
db *sql.DB | |
} | |
func (e executor) exec(query string) { | |
e.db.Exec(query) |
I hereby claim:
To claim this, I am signing this object:
// All material is licensed under the Apache License Version 2.0, January 2004 | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// This sample program demonstrates how the logger package works. | |
package main | |
import ( | |
"fmt" | |
"log" | |
"os" |
// All material is licensed under the Apache License Version 2.0, January 2004 | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// Sample program that takes a stream of bytes and looks for the bytes | |
// “elvis” and when they are found, replace them with “Elvis”. The code | |
// cannot assume that there are any line feeds or other delimiters in the | |
// stream and the code must assume that the stream is of any arbitrary length. | |
// The solution cannot meaningfully buffer to the end of the stream and | |
// then process the replacement. | |
package main |
BenchmarkElvisBill-8 500000 6182 ns/op 3016 B/op 52 allocs/op | |
BenchmarkElvisTyler-8 1000000 2049 ns/op 1456 B/op 13 allocs/op |