Results 8 issues of c9845

Replace `utc_timestamp` with `CURRENT_TIMESTAMP`. MySQL allows using `UTC_TIMESTAMP` as the default value for a column (i.e. `DatetimeCreated DATETIME DEFAULT UTC_TIMESTAMP`). This is useful in MySQL since the timezone of the...

As noted in issue #50, output logging only shows up when `air` is closed. This is a bit annoying since you have to close `air` (and most likely restart it)...

Check if each `peers` input value to `Set(peers ...string)` is a valid base URL as required and as noted in the func-level comments. The prior version of `Set()` did not...

cla: yes

SQLite update 3.35.0 (2021-03-12) supports the `ALTER TABLE DROP COLUMN` query. See links for info below. This is a pretty huge change in SQLite behavior and brings it inline with...

My directory structure is a flat tree with source .ts files. These .ts files get combined into script.js by `tsc`. My goal is to have `minify` watch the script.js file...

### Feature Request Is New - [X] I have verified that the requested feature does not already exist or has not already been requested. ### Description of the feature Certain...

enhancement
triage

This allows running the `fresh` command in a directory with a "fresh.conf" file without having to do `fresh -c fresh.conf`. Reduces a bit of typing.

To use math functions like `pow()` and `round()`, you currently have to do `go build -tags "sqlite_math_functions" ...`. This works, but this build tag is often forgotten/missed until an error...