dataexcess

Results 18 comments of dataexcess

> You indeed downloaded the images and cached them in memory, but you didn't cache them to disk. Later, when you want to show them in a collection view, these...

I totally understand now. thanks for the explanation! As I was getting redownload behaviour pretty early after downloading 20-50 images each of around 50-200 KB in size, maybe using a...

I somehow Fixed this by: `pip uninstall setuptools` running my environment again and running `sudo -H pip install -r requirements.txt` 🤷🏻‍♂️

Ok @Kentzo thank you for clarifying. I guess the command+n shortcut overwrite was originating from the hidden menu in my own application and I mistook it for finder's command.

Hello, you can do this using following code: ` static createPhysicsMeshFromGeometry(geometry) { const triangleMesh = new Ammo.btTriangleMesh(); const vectA = new Ammo.btVector3(0, 0, 0); const vectB = new Ammo.btVector3(0, 0,...

So happy someone else has the same bug! Please fix this, I need this for a project in production soon.

I don't use scss... I tried changing my nuxtconfig like so: ``` css: [ '@vime/core/themes/default.css' ], ``` But it simply does not work :(

That doesn't work, gives me: Cannot resolve "~@vime/core/themes/default.css" Maybe I should try to work with scss haha maybe that will solve it somehow

Yes I have the file there in my node_modules, but it doesn't work. Weirdly enough I made a global scss file and imported it there like you did @import '@vime/core/themes/default.css';...

Hello! Does that make it work? I copied your script import and put it in my nuxt config but I still have the freezing build issue. Then I found this...