Florian Wendelborn
Florian Wendelborn
It would be great if it’d also be possible to use `FROM abiosoft/caddy:builder-0.11.3` so that custom plugins are possible without having to hope that you never push a breaking change.
As I do not know how the program works, I'm not sure if what I'm suggesting is possible. As far as I can tell the biggest problem using "normal GPUs"...
For example, `~/.atom/packages/*` should probably be included in the backup since it will otherwise break atom upon restoring and won't have that many files anyway (no babel/webpack/etc. necessary, packages normally...
Currently, `bitwise.(buffer|byte).(read|write)` use inconsistent naming. It should be converted to `bitwise.(integer|bits).to(Buffer|Byte)` etc..
Figures out if input is `string`, `integer`, `buffer`, `bits` and converts them. ```js bitwise.convert([0,0,1,0,1,0,1,0], 'byte') === 42 bitwise.convert(Buffer, 'byte') === 42 ```
Is there any way to set-up `alias-hq` CLI as a CI tool? Basically, I’d want to use GitLab pipelines to run `alias-hq` and fail if a path alias is not...
**EDIT**: **Please vote for for (👍) or against (👎) TypeScript support** via declaration file on **this** comment. ([It’s a "survey" to gauge interest](https://github.com/metafizzy/zdog/issues/37#issuecomment-498907222)) --- I think especially a 3D engine...
I’m trying to parse some minecraft NBT data with zod. However, in order to do this, one key of the object (`item_bytes`) first needs to be converted from the binary...
There's a small bug/unexpected behavior in [this function](https://github.com/spirit-js/spirit/blob/7c41f5fcc5df9fd5642d5092b4043037f93c026c/src/http/node_adapter.js#L25). ## Minimal Repro ```js const headers = { cors: { 'Access-Control-Allow-Origin': '*' } } require('http').createServer( require('spirit').node.adapter(r => r.path === '/bug' ? {...