Lowell Alleman

Results 35 comments of Lowell Alleman

I looked over the code you have so far. Unfortunately, I was trying to get my head wrapped around the core logic of it all, but it's a bit out...

@kiorky, regarding DST issues in general: I'm wondering if any inspiration can be had from something like https://www.npmjs.com/package/cron-parser. I'm not a big javascript guy myself, but I'm wondering if reviewing...

Here's a interesting consolidation of different ways DST can be solved by scedulers. @kiorky, do any of these align with the approach taken by croniter (or otherwise seem desirable)? https://github.com/jmrozanec/cron-utils/issues/213

This is odd. It seems like some kind of argument parsing issue. It looks like it's seeing `sort --inplace *.conf` as a single argument. What output do you get if...

Unfortunately I don't have a Windows machine at my fingertips to run a quick test on. I do have some unit tests in place that do some simple sorts and...

Workaround: ``` find -name '*.conf' -o -name '*.meta' | xargs chmod +w ```

Desired behavior: 1. IOError should be trapped and not handled as an unhandled exception. The error should be written to stderr; and if multiple inputs files were given, it should...

Were you involved in the creation of this script? Does it do what you need or are you looking for something similar in functionality? (I looked over it, but am...

1. You should never be forced into using layers. There may be times where it's the most practical solution, but it isn't required. 2 + 3. I'd probably need more...

@crumpetcrusher, this is a great idea, and certainly a functional gap in the current approach. I'd have to think through the whole `.disabled` extension idea. I like it from the...