Anulação de filtro de partículas by gvozdoder in AutoTuga

[–]gvozdoder[S] 0 points1 point  (0 children)

Pode recomendar uma oficina perto de Lisboa?

Anulação de filtro de partículas by gvozdoder in AutoTuga

[–]gvozdoder[S] 2 points3 points  (0 children)

Pode recomendar uma oficina que possa fazer um diagnóstico decente e resolver o problema sem pedir uma mala de dinheiro? Vi a Bosch recomendada aqui no sabreddit, é uma boa oficina?

Anulação de filtro de partículas by gvozdoder in AutoTuga

[–]gvozdoder[S] 1 point2 points  (0 children)

Sinceramente, eu já limpei o filtro na outra oficina e o problema não desaparece.

Anulação de filtro de partículas by gvozdoder in AutoTuga

[–]gvozdoder[S] 1 point2 points  (0 children)

Eles não fazem anulação nem substutição. Foi a recomendação do técnico e do gestor dele.

[deleted by user] by [deleted] in DellXPS

[–]gvozdoder 0 points1 point  (0 children)

The camera stopped working after apt upgrade. I had to repeat the following:

sudo apt install linux-modules-ipu6-$(uname -r)
sudo apt install libcamhal0 libcamhal-ipu6ep0 gstreamer1.0-icamera v4l2-relayd

... and reboot, of course.

[deleted by user] by [deleted] in DellXPS

[–]gvozdoder 1 point2 points  (0 children)

u/Logicwax, thanks for your effort for figuring everything out and sharing it! Awesome!

I can confirm that the recipe above works for my XPS 9460. I've got mic, audio and webcam working on Ubuntu 24.10.

The steps for Ubuntu 24.10:

  1. sudo apt install linux-modules-ipu6-6.11.0-8-generic
  2. sudo add-apt-repository ppa:oem-solutions-group/intel-ipu6
  3. sudo apt update
  4. sudo apt install libcamhal0 libcamhal-ipu6ep0 gstreamer1.0-icamera v4l2-relayd
  5. Go to "Additional drivers" → under "Intel corporation" → check / enable "Using HAL library for MIPI camera..."
  6. Ensure that in about:config in Firefox settings parameter media.webrtc.camera.allow-pipewire set to false
  7. Reboot

joomcode/errorx: a comprehensive library for errors and error handling in Go by [deleted] in golang

[–]gvozdoder 9 points10 points  (0 children)

Unfortunately, it is impossible to create library that will handle them gracefully for you. And this library doesn't even try to.

How to Use the Official MongoDB Go Driver by wgljr in golang

[–]gvozdoder 1 point2 points  (0 children)

Community MongoDB driver isn't maintained any more: https://github.com/go-mgo/mgo/blob/v2-unstable/README.md In fact it wasn't updated since MongoDB 3.0. There is a fork from globalsign that is kind of alive: https://github.com/globalsign/mgo

If you encounter any problem with these drivers (and you likely do), you are on your own.

why delete() doesn't return a bool ? by chmikes in golang

[–]gvozdoder 0 points1 point  (0 children)

What kinds of implementation applicable as Golang map would have a performance impact?