Austin Ziegler
Austin Ziegler
The Text renderer is *really* close to being able to produce a GFM table: ```elixir Table.new(rows, header) |> Table.render!(intersection_symbol: "|", top_frame_symbol: nil, bottom_frame_symbol: nil) |> IO.puts() ``` If instead we...
I was getting TS2349 when editing my project's `vite.config.ts` related to the exported default `del` function. We have forked this project into [kineticcafe/rollup-plugin-delete](https://github.com/kineticcafe/rollup-plugin-delete) and released it as [@kineticcafe/rollup-plugin-delete](https://www.npmjs.com/package/@kineticcafe/rollup-plugin-delete). The main...
```console $ go install github.com/abdfnx/resto@latest $ resto version resto version There's a new version of resto is avalaible: → v0.1.6 To upgrade, run: go get -u github.com/abdfnx/resto ``` This can...
#53 reworks the handling of the provisional media type registry in order to avoid a duplicate error on `application/netcdf` (see #50). However, since `types/provisional-standard-types.yaml` has been removed, there is no...
The current application version is set as `@version "0.0.0"` in `mix.exs`. Ideally, this should be set to the current (or next) version in the source branch so that a dependency...
Originally submitted by John Prince (http://rubyforge.org/users/jtprince). The method 'pack_file' only works on real files (on disk). I implemented a method (which is very similar to pack_file) that allows the creation...
I have at least one project in which I could not use this package because I have multiple names for production-like environments (there’s *reasons* for it, and I’m sort of...
Fixing a couple of validation issues - I had a schema that had `anyOf` instead of `oneOf`. - Extracted the `case ty` to its own function so that `"type": ["null",...
I’m running with `rollup-plugin-vue` and `vue-component-compiler` provides a plugin, `postcss-clean` that causes this message to be output: ``` clean: postcss.plugin was deprecated. Migration guide: https://evilmartians.com/chronicles/postcss-8-plugin-migration ``` This appears to work...
Sequel doesn’t follow the same protocol as ActiveRecord, even when ActiveModel compliant (or so it seems). I’ve come up with what looks like the right level of monkey-patching for this,...