JS Légaré

Results 8 comments of JS Légaré

that patch doesn't fix the issue either. negating [^;]\* does prevent the .\* from being greedy, but then any ';' in the preceding field will cause the group to be...

Is there any way to tweak this behavior? Having public addresses being leased out improves usability on the end hosts when running publicly visible internet services (you have a relatively...

You can indeed comment text with `[//]: # (commented out stuff)`, but in addition to the context where your comment can appear (like @thorr18 mentions), you are also restricted in...

In fact, it also looks like it is not picking up the proper priority from the json config files when periods are involved: teamd.conf: ``` { "device": "team255", "runner": {...

strace output from teamd failure run (out.log): [gist](https://gist.github.com/init-js/00821abe56baf65e2688). and the success run on 3.13.0-49-generic: [gist2](https://gist.github.com/init-js/f80710432250e3a7f5c7)

Looks like it's back to normal today... ``` >>> t = yf.Ticker("MSFT") >>> x = t.info >>> print(json.dumps(x, indent=2)) { "address1": "One Microsoft Way", "city": "Redmond", "state": "WA", "zip": "98052-6399",...

I've had great success with flymake-cursor. It does exactly what you want. It's quite useful for windowless emacs too (-nw) https://github.com/init-js/jshint-mode/commit/dc4c30095919e5f20734e0324c895529f0317fa8

Quick patch for it. ``` diff --git a/jshint-mode.js b/jshint-mode.js index b8c4bba..22025c8 100644 --- a/jshint-mode.js +++ b/jshint-mode.js @@ -14,6 +14,10 @@ var http = require('http'), JSLINT = require('./jslint'), JSHINT = require('./jshint');...