Raine Virta
Raine Virta
Why does there have to be a space? It's quite nonidiomatic for zsh.
My quick and dirty solution to get incremental history for a channel in a free slack: 1. Have a git repo to store history 2. Run `slackdump -download -export ....
Is this on the roadmap?
Solid 👍. This would allow creating a script taking sql file as an input and output an url to pev.
My workaround: ```rs pub async fn get_job_logs(repo: &Repository, job_id: u64) -> Result { let client = octocrab::instance(); let route = format!( "/repos/{owner}/{repo}/actions/jobs/{job_id}/logs", owner = repo.owner, repo = repo.name, job_id =...
My needs were quite modest so I solved the problem by writing [a small Github client](https://github.com/raine/ghtool/blob/master/ghtool/src/github/client.rs) from scratch with reqwest, which for some reason does not have this delay. Perhaps...
Being able to pass a function (executed on every log msg) whose object return value is merged into the logged JSON would be useful.
No effect. I wonder if that setting applies only to project files and not dependencies.
This worked: ``` "include": ["node_modules/microdata-node/src/**/*.js"] ``` Looks like `config` is incorrectly defined as required parameter to `toJson`. It's optional in README. ``` scripts/run.ts:21:39 - error TS2554: Expected 2 arguments, but...