Stephen Afam-Osemene

Results 20 issues of Stephen Afam-Osemene

Also uses `golangci-lint run` if no command was specified

Right now, development is sort of slow with `templ` because each change requires my entire application to be recompiled. For example, changing a class on a `div` requires 5 seconds...

Implementation for #318 and #340

Add tests for any dialect and query. The tests are used to autogenerate the examples. Should preferably use a query mod that is not yet used by any existing test.

hacktoberfest

Here is another attempt at binding named args. Using it will look something like this: ```go package main import ( "context" "fmt" "github.com/stephenafamo/bob" _ "github.com/jackc/pgx/v5/stdlib" "github.com/stephenafamo/bob/dialect/psql" "github.com/stephenafamo/bob/dialect/psql/sm" ) type Args...

### gopls version golang.org/x/tools/gopls v0.15.0-pre.2 golang.org/x/tools/[email protected] h1:A48ndEGf3pvzJ0k22HneSU7msCaggzcpg56ELTEuapQ= github.com/BurntSushi/[email protected] h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak= github.com/google/[email protected] h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= golang.org/x/exp/[email protected] h1:2O2DON6y3XMJiQRAS1UWU+54aec2uopH3x7MAiqGW6Y= golang.org/x/[email protected] h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= golang.org/x/[email protected] h1:5BMeUDZ7vkXGfEr1x9B4bRcTH4lpkTkpdh0T/J+qjbQ= golang.org/x/[email protected] h1:Nr7eTQpQZ/ytesxDJpQgaf0t4sdLnnDtAbmtViTrSUo= golang.org/x/[email protected] h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/[email protected] h1:WL/PnseOKWuDtRbgfYKDpuAmMpy3OrX84rv7uQFZJK4= golang.org/x/[email protected] h1:KUas02EjQK5LTuIx1OylBQdKKZ9jeugs+HiqO5HormU= honnef.co/go/[email protected] h1:oFEHCKeID7to/3autwsWfnuv69j3NsfcXbvJKuIcep8= mvdan.cc/[email protected] h1:G3QvahNDmpD+Aek/bNOLrFR2XC6ZAdo62dZu65gmwGo= mvdan.cc/xurls/[email protected]...

WaitingForInfo
gopls
Tools

Having each feeder it their own package means that using one feeder does not add all the other dependencies to a project. Currently, using **any** feeder will cause the `env`,...

I see that you tagged `v1.1.1`, however, since you previously tagged `v1.2.0`, `go get` will always prefer 1.2.0.

It is likely that an application using `slog` will want to use its own pre-configured `*slog.Logger` or provide a `slog.Handler` that a logger should be created from. The design of...

It appears that the parser cannot understand selecting from a function. For example, this valid SQLite query cannot be parsed ```sql SELECT * FROM generate_series(1, 3) AS "x" ```