Results 8 comments of Alex Popp

I'm running into the same problem, when fetching many cookies from Chrome: ``` SyntaxError: Unexpected token d in JSON at position 65532 at JSON.parse () at Socket. (/usr/lib/node_modules/chromix-too/chromix-too.js:32:25) at emitOne...

Just noticed that writing empty strings to cells (`@ws[x, y] = ''`) is extremely slow (1 row/s vs. 1000+ rows/s). Using `@ws[x, y] = string.presence || '-'` as a workaround...

@titpetric Great idea! We're using ``` FROM errbit/errbit RUN sed -i "s/^admin_username.*/admin_username = ENV['ERRBIT_ADMIN_USERNAME']/" db/seeds.rb && \ sed -i "s/^admin_email.*/admin_email = ENV['ERRBIT_ADMIN_EMAIL']/" db/seeds.rb && \ sed -i "s/^admin_pass.*/admin_pass = ENV['ERRBIT_ADMIN_PASS']/"...

I am using this as a workaround: ``` def load_tree(json_hash) node = Tree::TreeNode.new(json_hash['name'], json_hash['content']) json_hash['children'].each { |h| node

Could you maybe post an example `kite.key` so we can debug this issue?

#11499 describes the same problem

Would be very much interested in a solution as well!

This is how I do it right now: ```vue div(ref="container", :style="{ height: height }") slot export default { name: 'autoheight', data() { return { height: 'auto', }; }, computed: {...