Daniel Faust

Results 23 comments of Daniel Faust

@msholty-fd I'm having the same issue with a clean install of Ubuntu 18.04. What could cause this?

@6by9 Thank you for posting the link to the topic in the Raspberry Pi forums. It enabled me to reuse the old stack. I think that this is a big...

> You have to backtrack those packages to the 20210831-1 versions for now. What does that mean? How do I do that?

@nsayer How safe is this downgrading? Does it have side-effects? Also, can it be completely reverted by "unholding" them and then issuing an `apt-get update & apt-get upgrade`?

This is what worked for me: ``` wget http://archive.raspberrypi.org/debian/pool/main/r/raspberrypi-firmware/raspberrypi-bootloader_1.20210831-1_armhf.deb wget http://archive.raspberrypi.org/debian/pool/main/r/raspberrypi-firmware/libraspberrypi0_1.20210831-1_armhf.deb wget http://archive.raspberrypi.org/debian/pool/main/r/raspberrypi-firmware/libraspberrypi-bin_1.20210831-1_armhf.deb wget http://archive.raspberrypi.org/debian/pool/main/r/raspberrypi-firmware/libraspberrypi-dev_1.20210831-1_armhf.deb wget http://archive.raspberrypi.org/debian/pool/main/r/raspberrypi-firmware/libraspberrypi-doc_1.20210831-1_armhf.deb sudo apt purge vcdbg sudo dpkg -i raspberrypi-bootloader_1.20210831-1_armhf.deb sudo dpkg -i libraspberrypi0_1.20210831-1_armhf.deb sudo...

Just a note on @lexodistro 's solution. According to https://downloads.raspberrypi.org/raspios_armhf/release_notes.txt the 2022-01-28 release re-added support for the old camera stack ("Legacy camera applications and libraries reinstalled") and `raspi-config` got a...

The issue is that 4.1.0 has not been tagged as a release on GitHub. At https://www.npmjs.com/package/vuedraggable/v/next you can see that 4.0.1, 4.0.2 and 4.0.3 were already released, so that you...

It's odd. Replacing this.ctx.clearRect(0, 0, this.renderRadius \* 2,this.renderRadius \* 2); with this.canvas.width = this.renderRadius \* 2; this.canvas.height = this.renderRadius \* 2; fixes that issue, but creates some sort of scaling...

Which auth are you referring to? I have my IRI node's remote port password protected, and when I add --iri http://user:pass@nodeip:port I'm getting: ``` Error: Invalid Response: at Object.invalidResponse (/usr/lib/node_modules/iota-pm/node_modules/iota.lib.js/lib/errors/requestErrors.js:5:12)...

You're deadlocking the application by waiting on the UI thread, and this waiting prohibits the done or fail methods to get called on that thread. I just wonder why no...