David Pennington

Results 68 issues of David Pennington

Given the simple design of the [stores](https://github.com/spy16/droplets/blob/master/internal/stores/users.go) and the goal of helping new developers structure their app; I would consider moving off MongoDB onto [BBolt](https://github.com/etcd-io/bbolt), [GoLevelDB](https://github.com/syndtr/goleveldb), Badger, or one of...

When [creating the oauth2 client](https://github.com/pocketbase/pocketbase/blob/3d07f0211dc74710affd9154f61728d77cfb6f4c/tools/auth/base_provider.go#L105), a context.Background() is provided instead of an [actual context](https://pkg.go.dev/golang.org/x/oauth2#Config.Client) from the http.Request or a timeout of [some predetermined length](https://pkg.go.dev/golang.org/x/net/context#WithTimeout). Considering only a few large brands...

With the implementation of X.509, it seems that adding PGP encryption isn't a too-distant future possibility. https://github.com/singpolyma/openpgp-php https://github.com/roundcube/roundcubemail/tree/master/plugins/enigma/lib/Crypt

feature

To get an idea of the overhead added to redis and throughput of a beaver instance, some benchmarks could be added to the core application integrations to provide an idea...

type: improvement
priority: low

Several structs default to `int` which is either int32 or int64 depending on the architecture. Would be safer to define this as int64 for fields that easily would overflow 4...

Looking at the source code, it seems timestamps can [be scanned into a NullTime](https://github.com/go-sql-driver/mysql/blob/6ea7374bc1b0cd6cc6398e2aec912f6764aa5adc/fields.go#L186). Is this correct? The documentation [only mentions `DATE` and `DATETIME` columns](https://github.com/go-sql-driver/mysql/blame/master/README.md#L277).

The docs have a great intro that [explains the technology buildup to arrive at inventing stream](https://github.com/tschellenbach/Stream-Framework/blob/master/docs/design.rst) but then it stops without explaining how stream uses Cassandra + Redis (plus celery...

I would like to write underline text but I'm not sure if that is something I need to define with an external package like https://github.com/golang/freetype or something I have to...

The python lib [pragmatic_segmenter](https://github.com/diasks2/pragmatic_segmenter) has a list of 50+ sentence split examples that this lib fails to parse. You can use [their list](https://github.com/diasks2/pragmatic_segmenter/blob/master/README.md#the-golden-rules) to test this lib. For example: He...

bug
help wanted

According to the readme, hot reloading is performed via [react-transform](https://github.com/gaearon/babel-plugin-react-transform) & webpack 1 HMR. However, both projects are depreciated. https://github.com/gaearon/react-hot-loader is the replacement. In fact, much/all of the webpack stuff...