Jasper

Results 11 comments of Jasper

@toncid I don't think that's true, because double-clicking a cell divider sets the width to be the correct value so it must be able to do it.

@bonnebulle there's a binary in releases that I use in Debian-based Docker images: ``` wget https://github.com/fg2it/phantomjs-on-raspberry/releases/download/v2.1.1-wheezy-jessie-armv6/phantomjs mv phantomjs /usr/local/bin/ chmod +x /usr/local/bin/phantomjs ``` Your node phantom install should look in...

Also seeing this problem with a Matrix inside a Neo, returning an empty collection. It does dramatically improve performance!

Changing to that is getting me an authentication error rather than a version error, so I suspect that it's to do with how I'm extracting the server name from the...

Also seeing this issue, or something very similar to it. Connection works fine in Azure Data Studio but I don't really want to have another app just for one connection...

I'm experiencing this in particular with postgres images where I mount a data dir from host into /var/lib/postgresql/data - the mounted directory gets root ownership, which I can't change. Changing...

Ah I was just over-thinking it. Given this docker-compose.yml: ``` version: '3' services: db: image: postgres:13.2 environment: POSTGRES_PASSWORD: root volumes: - ./postgres-data:/var/lib/postgresql/data ``` Running `docker compose up` gives me this:...

@pulkit110 I feel like you just saved half a day of my life with this - thank you.

I believe I'm coming up against this problem now - we have an application using this, with 5 Unicorn workers. When updating a translation and calling `I18n.backend.reload!` it's only reloading...

Yeah I read what you said but I feel like almost anything would be preferable to the current implementation in a production environment. Surely the whole point of using ActiveRecord...