Results 12 issues of Alix Axel

In a effort to reduce the file size of the bundled `headless_shell` I was testing different algorithms: ``` File Algorithm Level Bytes MiB % Decompression ----------------------------------------------------------------------------------------- headless_shell - - 136964856...

I guess having at least one kind of SQL dialect implement would be a good addition. I'm gonna try and submit a PR sometime soon for `.sql` > SQLite support.

new language

I believe I've found a bug in the middleware execution flow. Consider the following simplified example: ```js const rocky = require('rocky'); const express = require('express'); let snafu = (port) =>...

help wanted

I'm having trouble with a DB structure that looks like this: ```json { "post-flag": { "-KvXU5eiR4oZM-vBihib": { "6t5KEJjAOSYbf8dleabDlTyxhux2": 1507542071604, "6t5KEJjAOSYbf8dleabDlTyxhux3": 1507542071605 } } } ``` I'd like to validate that...

enhancement
help wanted

I have the following file structure: ``` . ├── build │ ├── index.js │ ├── node_modules │ └── package.json ├── Makefile ├── node_modules │ ├── ... ├── package.json ├── package-lock.json...

I should consider installing / configuring the `unattended-upgrades` package by default.

enhancement

As any other wrapper that relies on GD for image manipulation, the `phunction_Disk::Image()` method discards all image color profiles instead of converting them to the (web safe) sRGB color profile....

I just checked http://www.w3.org/TR/REC-html40/index/attributes.html and http://dev.w3.org/html5/spec/index.html#attributes-1 and it seems that the `$attributesWithUriValue` array doesn't have the following full (?) list: - `background` - `classid` - `codebase` - `data` - `formaction`...

It seems that whenever my JSONSchema makes use of the `patternProperties` constructor, the resulting struct is empty. ```js optionalCategoriesList: { type: 'object', patternProperties: { '^[0-9]+$': { type: 'string' }, },...