Jim Speir

Results 56 comments of Jim Speir

I use something similar to: ``` const yaml = require('js-yaml'); const fs = require('fs'); const ejs = require('ejs'); fs.readFile('params.yml',(err,ymldata) => { data = yaml.load(ymldata); ejs.renderFile('./template.conf.ejs',data,{root: './templates'}) .then((result) => console.log(result)) .catch(console.error)...

It is! But I'm looking at adding a config template instead of using sed that way it's more like pushing the config instead of suggesting it. I will look to...

Will revisit after https://github.com/dwurf/docker-kf2/pull/16 has been looked at since the functionality will be roughly the same.

### Windows In Windows 10 Pro 21H2, I notice that neither `PAGER` nor `AWS_PAGER` are respected as I would expect in that they still produce paginated output or provide an...

I'd use the following: ``` ->where('id = :id') ->bindValue('id',2); ``` I'm not 100% sure that format works.

Noting the same in 3.0-dev (513747a) and 2.7.1. According to https://github.com/auraphp/Aura.SqlQuery/blob/3.x/docs/select.md#where it should work but I'm having issues which is the current latest on 3.x branch, specifically pulling in https://github.com/auraphp/Aura.SqlQuery/commit/513747a1b399b910f6050e78bd64c3c125a81abf...

I did make a similar workaround last night for MySQL but it was a different project. My solution involved generating a list of variables and using bindValue to assign the...

Thanks @harikt , that PR would be perfect. The use of Aura.SqlQuery is the descision of the project maintainer. Without wishing to rock the boat too much, I wouldn't be...

Hi Jo, I'll look into this and report back.

I ran the following and got what I would expect back: ``` static void Main(string[] args) { Console.WriteLine("Phone Number Tester"); var numList = new List() { "+32 0456 12 34...