Thomas Woolford

Results 18 comments of Thomas Woolford

Here's what i'm using to test. ``` % node_modules/coffee-script-redux/bin/coffee --compile $locationProvider.html5Mode true EOF ``` It's a minimal exemplar from a larger codebase.

@michaelficarra would a PR that enables this functionality be welcome?

I fixed this in my fork, see 0563aacd538. Also, see PR #23

I suspect that you've somehow created a loop in the tag graph, and `_render_buffer` is chasing down this loop until it hits the recursion limit. I suspect I should add...

Walk the NBT tree, and create a tree of dicts in the format you desire, then pass that dict tree to a json encoder.

Chunk is minecraft specific. This should be included as a function that can be callled when the block is finalized

Would the move generate a HTTP 301 Permanent Redirect to the new page location, or would the old pod mirror the updates from the new pod?

i dont know about you guys, but i store site-wide sass files in STATIC_ROOT and now these files are not found by django-css. They are however served perfectly by django...

is anyone merging django-compressor into django-css regularly/semi-regularly?

TAG_Compound doesn't have a single value, it's a collection of other tags. The following code should work. ``` heightmaps = nbt.TAG_Compound(name="Heightmaps") heightmaps.tags = self.nbt_data["Heightmaps"] ``` I'll probably add a values...