David E. Wheeler
David E. Wheeler
Lost of folks have asked for this, and I recently ran into a place or two where I would have found it useful. The idea is to get an object...
Should work for serialization failures, too. See [this blog post](http://www.justatheory.com/computers/databases/postgresql/dbix-connector-and-ssi.html) for details and discussion (especially the comments from Kevin Grittner).
Compare the output from jxskiss/base62 to that from keys-pub/keys/encoding: ``` go package main import ( "fmt" "github.com/jxskiss/base62" "github.com/keys-pub/keys/encoding" ) func main() { id := []byte{255, 255, 255, 255, 255, 255,...
See [this run](https://github.com/sqitchers/sqitch/runs/3900675895?check_suite_focus=true), with this bit: ``` cpm install --global --verbose --show-build-log-on-failure --no-test Locale::[email protected] ``` Leads to these errors: ``` 2021-10-14T23:18:43,1368,ExtUtils::MakeMaker| MetaCPAN, skip, because MetaCPAN is configured to resolve dev...
I created this workflow: ``` yaml name: CI on: [push] jobs: winperl514: runs-on: windows-latest steps: - name: Setup perl uses: shogo82148/actions-setup-perl@v1 with: {perl-version: "5.14"} - run: perl -V - run:...
# Describe the bug On [this page](https://justatheory.com/2013/06/sqitch-list/), I have a `mailto:` link like this: ``` html subscribe by email ``` Running `htmltest` (just installed via `go install`) it reports: ```...
I'm using the syntax from the docs: ``` html ``` But on Safari I get this error: > Unexpected token '{'. import call expects exactly one argument. > textwrap.js:1 And...
This works for the SNOWSQL client, however the string needs to be in the Engine string or it returns the error: "cannot marshal private file". Additionally, sqitch is printing the...
I noticed that Git allows this. It’s an interesting idea: one might be able to deploy to multiple servers in parallel! Handy when managing lots of identical servers. It would...
Add support for running deploy/verify/revert scripts through Template::Tiny or Template Toolkit, reading variable settings from a YAML or JSON file. Read in the scripts, run them through the template engine,...