Mark Penner

Results 61 comments of Mark Penner

I'm trying like this ``` javascript gulp.task('rsync', function() { if(!config.server) throw new Error("server not configured"); return gulp.src(['**','!bower_components/**','!node_modules/**','!.**']) .pipe(plumber()) .pipe(rsync({ //root: '.', //incremental: true, progress: true, hostname: config.server, destination: '/usr/local/webenginex' }))...

So... I just outputted the command it generates, and its a few thousand lines long. I'd give you an exact number, but my computer can't handle it. The whole reason...

The reason I want in-place editing is because I want to mass update many files. `jq` already lets me do that, but `>` will only write back to a single...

I worked out another solution: ```sh find /some/dir -name "*.json" -exec inplace {} jq 'filter_here' \; ``` I couldn't get `sponge` to work because `find/-exec` doesn't like the pipe. Loop...

> How are you deploying with your devspace.yaml? What do you mean? Here's my `deployments` bit: ```yaml deployments: - name: development kubectl: kustomize: true manifests: - k8s ``` i.e. using...

Assuming Borg works under WSL/Win10Bash, how would we get it to start automatically on Windows startup?

@ThomasWaldmann I do too, but we're talking about backup here. That has to run continuously, or we're vulnerable, no? Thanks @enkore I'll take a look.

As a side-note, couldn't ``` const response = await fetch('http://address'); ``` By translated into ``` fetch('http://address').then(function(response) { ... }) ``` Instead? Or if you're worried about `fetch` or other such...

Aha. Sorry for bothering you, I thought I saw an opportunity for improvement but I should have known better :smile:

Oh is it line height? Thought they were blank lines. But yes, less line height would be good I think! On Aug 20, 2016 7:13 PM, "Ken Wheeler" [email protected] wrote:...