Oleg Kovalov
Oleg Kovalov
Name: `???` Before: ```go a := &Foo{ bar: "x", } a.baz = foobar() // can be moved upper ``` After: ```go a := &Foo{ bar: "x", baz: foobar(), } ```...
Name: `enumCompare` Before: ```go type myType int var a myType = myValue1 if a >= myValue1 && a < myValue3 { ... } ``` After: ```go type myType int var...
Name: `???` Before: ```go x := "foo " // whitespace at the end, might be a mistake that is hard to find ``` After: ```go x := "foo " +...
Name: `constParams` Before: ```go func f(a int) { a = 10 // bad ... } ``` After: ```go func f(a int) { b := a // cool, maybe ... }...
Name: `resetBenchTimer` Before: ```go func BenchmarkBigLen(b *testing.B) { big := NewBig() for i := 0; i < b.N; i++ { big.Len() } } ``` After: ```go func BenchmarkBigLen(b *testing.B) {...
TODO: bench
I'm planning to move this repository to the https://github.com/go-distsys. So, Github should take care of all redirects. Probably will happen next week, read as Sep 18-20. Another option is to...
Hey, thanks for building and improving ollama. I understand that quick start for a new session improves UX but why not add a simple checkbox for that. #240 was just...