Blixt

Results 29 comments of Blixt

They render pretty ok now, but this is missing: - [ ] Render ends of matmods correctly (right now the middle segment is always used) - [ ] Don't render...

Yep sorry guys, the version doesn't support 1.0. The good news is that I've started dabbling in the new file formats and will hopefully get it up and running soon!

Wouldn't it make sense to only assign `global.key` if `module` is undefined? In the other case, assign to the global. This way both CommonJS and non-CommonJS behaves as expected (module...

It seems that the variant number is decided by a [Fowler/Noll/Vo hash function](http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function). Here's a question by OmnipotentEntity showing some code of the variant generator: http://stackoverflow.com/questions/10468064/static-pseudorandom-field-generator The variables used in...

@Summer006 Could you show me a complete example? Here's what I get: ```javascript const v = bigint('5602477936448897024'); console.log(v.toString()); // 5602477936448897024 // Note that the number is too large for JavaScript...

Furthermore, if you're using a recent version of Node you may prefer the native support of big integers, which is denoted by adding an `n` after the number: ```javascript const...

I run into this issue daily because I very commonly write something like `git commit -am "Add ` and then I don't remember the name of something so I quickly...

Not sure if you need this anymore, but I've updated py-starbound now to support all the Starbound 1.0 file formats, including write support for SBVJ01 files that's relatively fast (a...

@smunson Did you ever get around this?