Results 13 comments of Chris Forno

The good news is that Node seems to have addressed this with https://github.com/nodejs/node/commit/3aa17e4e513f0bf281ee754eb58a33b737be2867, although it is a compile-time option and there's no indication if it will work on all operating...

Thanks for the report. I've added an upper bound in the .cabal file until I make it compile against >= 2.0. 119a68c30360c99f6a837f38259c34a63e49f8ee

Additionally, implicit main changes line numbering by 1. It would be nice to be able to update compiler error messages accordingly.

Improved by 03e84fecab848156db60bcd79af5d5c54073fcc5. I haven't yet found a way to make the line numbers perfect due to the changing indentation/line break behavior of haskell-src-exts. If I could preserve whitespace between...

Hm, I thought I had included a comment. Sorry. The extension as-is was corrupting my database. I assume that it was only doing it for certain configurations or usages (or...

Thanks. I'll give it a try.

I would guess the code needs conditionals to support old v8 versions or it won't compile.

I'm using this as a workaround: ``` diff -u nixpart-0.4.1/nixkickstart.py nixpart-0.4.1b/nixkickstart.py --- nixpart-0.4.1/nixkickstart.py 2013-08-02 13:18:40.000000000 +0800 +++ nixpart-0.4.1b/nixkickstart.py 2015-11-26 10:40:35.000000000 +0800 @@ -987,9 +987,6 @@ self.handler.btrfs.execute(self.storage, self.handler) def partition(self): -...

A workaround is to stop the newly-launched instance and run: ``` aws ec2 modify-instance-attribute --instance-id i-xxxx --ebs-optimized ``` Note that this does not work for spot instances as they cannot...