Mark Lagendijk

Results 31 comments of Mark Lagendijk

I stumbled upon this and want to react to the claim that LocalStorage is 'not secure'. > I've looked into use LocalStorage but this is no longer recommended. See here:...

I created [a module](https://github.com/marklagendijk/node-pm2-windows-startup) which does this. Because it is very Windows specific, I was not sure whether this could be added to the main PM2 package. This is why...

You can use the [concurrently package](https://www.npmjs.com/package/concurrently) to run multiple commands at the same time. For the availability test you can use a `|` to separate [multiple tests](https://github.com/bahmutov/start-server-and-test#options): `"8080|http://foo.com"`

The liquibase image could indeed benefit from this. It could work by allowing to specify environment variables with the hostname and port. The [entrypoint script](https://github.com/webdevops/Dockerfile/blob/master/docker/liquibase/postgres/conf/bin/entrypoint.sh) could then use `wait-for-it.sh` when...

NPM is made for many things. Publishing full applications is one of them. When you're installing a package you can also choose to install it globally. Usually these would be...

@enahum that is correct. However, this issue happens with the default way Node.js is installed on Ubuntu / Debian systems, when installing git based dependencies. The git dependencies have two...

Small addition to @Kogs suggestion: ``` hg log -r "closed()" -T "{branch}\n" | sed -r 's/ |\?/_/g' | sort | uniq > closed.txt ``` - `sed -r 's/ |\?/_/g'` =>...

@DmitryEfimenko what is the use case for this? I think the proper fix for this would be to separate the actual functionality out into its own module, only leave the...

This fixes [jenkins-40998](https://issues.jenkins-ci.org/browse/JENKINS-40998) in an alternative way to #35. I think this fix is better because it stays closer to the actual Bitbucket API.

Sure, it is nice that this library is part of the default .NET setup etc, but when people actually visit this repo, they are usually looking for details. This repository...