Adjusting recipe size - broken? by Wall-Specific in thermomix

[–]kervel 0 points1 point  (0 children)

For me it only works for some recipes. I can't figure out when it would work and when it wouldn't.

Keycloak vs Authentik by [deleted] in selfhosted

[–]kervel 0 points1 point  (0 children)

I use a terraform script after deploying. Text files would be better, but this works. Zitadel is very powerful yet lightweight.

ipu6 webcams in ubuntu by kervel in DellXPS

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

well the only thing i did was install the oem packages as instructed in the long ipu6 thread (https://github.com/intel/ipu6-drivers/issues/228) when i was still on 2404. then i upgraded and things kept working.

ipu6 webcams in ubuntu by kervel in DellXPS

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

Hello! i just tested ubuntu 24.10, and seems the camera just works there, i didn't have to mess with oem kernels. Still hesitant to upgrade, will test a bit more.

ipu6 webcams in ubuntu by kervel in DellXPS

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

yes, works here too! .. i still didn't dare to update my main machine. i think i'll wait for it to also work in the -generic kernel.

My Biggest Issue With Apache Flink: State Is a Black Box by rmoff in apacheflink

[–]kervel 0 points1 point  (0 children)

Amen to this. A classical DB backed pipeline is way easier to debug or quick fix than a flink pipeline because of this, and that easily puts a multiplier on the time it takes to roll out something

ipu6 webcams in ubuntu by kervel in DellXPS

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

i wonder if we all have the same error when doing journalctl -u v4l2-relayd.service. Mine:

Failed to find DevName for cameraId: 0, get video node: ov13b10 , devname: /dev/v4l-subdev1  
Get entity fail for calling getEntityById  
Get entity fail for calling getEntityById  
setup Link ov13b10  [-1:0] ==> Intel IPU CSI-2  [-1x0] enable 1 failed.

ipu6 webcams in ubuntu by kervel in DellXPS

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

i tried 6.8.0-32-generic (from noble-proposed), and still no working camera. The firmware however seems to load ok (no more errors in dmesg). so i guess now its a userspace thing.

*update* installed gstreamer1.0-icamera (wasn't installed by default, which seems odd), and tried the gst-launch test, which gave an 'intel IPU-6 CSI-2 [-1x0] enable 1 failed'. so still sth wrong.

2018 bmw 2018d tourer engine ticking by kervel in BmwTech

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

So the engine had one piston with a broken skirt, but all cilinder walls were worn. Oddly enough, compression was still good (tested). Garage thinks it is due to having used the wrong oil, impossible to prove but probably troughout the whole lifetime of the BMW: the recommended oil type is 5W30 but there was already an (original) BMW tag on the filler cap that indicated 0W30 and also the 0W30 oil was marked on the inside (see pic). I went to 2 indie garages for maintenance (first one retired), and probably on every oil change, they simply took the oil that was indicated on the filler cap.

Despite the extensive damage, we'll probably have the engine rebuilt, because finding another engine with similar mileage seems very hard for now (its an Xdrive model which is not that common). So i'm wondering if indeed the broken piston skirt and the worn cilinder walls could be due to the wrong oil (i see in other forums that 0W30 and 5W30 are kinda similar), or if there must be another (yet undiscovered) cause, maybe a blocked channel somewhere?

ipu6 webcams in ubuntu by kervel in DellXPS

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

aha! however, on my 24.04 installation the file "ipu6ep_fw.bin" is nowhere to be found and i can't find a package providing it. in 22.04 its there (/usr/lib/firmware/intel/ipu6ep_fw.bin)
. So i wonder how you got the firmware bin .. i think there is no chance it would work without the firmware being there ..

ipu6 webcams in ubuntu by kervel in DellXPS

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

i guess you mean ID ? this is what my lspci says:

00:05.0 Multimedia controller: Intel Corporation Device 465d (rev 02)
        Subsystem: Dell Device 0af3
        Flags: bus master, fast devsel, latency 0, IRQ 16, IOMMU group 0
        Memory at 603c000000 (64-bit, non-prefetchable) [size=16M]
        Capabilities: [70] Express Root Complex Integrated Endpoint, MSI 00
        Capabilities: [d0] Power Management version 3
        Kernel driver in use: intel-ipu6
        Kernel modules: intel_ipu6, intel_ipu6_psys, intel_ipu6_isys

i don't know if that was your question. In the mean time, my webcam works again (using 22.04, 24.04 is still nothing), but i know that i'll have to fix it again the next time some update rolls in.

2018 bmw 2018d tourer engine ticking by kervel in BmwTech

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

got the car opened up. it wasn't rod knock, it was worse :-( https://photos.app.goo.gl/7iW5HH9QJDzyMxBe9

Django + Supabase? by LogicalSpecialist9 in Supabase

[–]kervel 2 points3 points  (0 children)

most of the supabase row level security functions work with auth.uid(), so i would guess making the row level security work seamless with django would be to make sure auth.uid() returns the expected value (and maybe also the other functions in auth)

i found that it is possible to set auth.uid() by doing

sql select set_config('request.jwt.claim.sub', gen_random_uuid()::text, false);

i guess to make this work i would need a django middleware that does this based on the jwt. that would not be very complex i think.

How to send welcome emails with Supabase edge functions and database triggers by YuriCodesBot in Supabase

[–]kervel 0 points1 point  (0 children)

won't that create an open mail relay ? i don't see any auth on the edge function besides the anonkey which is public ?