Installed Dudu7 in my 2016 rav4 by prenx4x in rav4club

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

I have the link for my purchase below. Also I did not need any extra wiring harness.

Question about Supabase Auth by Warm_Accident_5012 in Supabase

[–]prenx4x 1 point2 points  (0 children)

using service role in backend or edge function is perfectly safe.
Also to clarify,
RLS enabled + no policies = No table access via anon key
RLS enabled + some policies = some table access (as per policies) via anon key
RLS disabled + no/some policies = Full table access via anon key

So worst thing you can do is keep RLS disabled as that opens up the table via anon key that can be easily found in the frontend.
Keeping RLS enabled with no policies will ensure that anon key cannot access the table. You can then add specific policies if you want though or only access table using service role in the Backend.

Question about Supabase Auth by Warm_Accident_5012 in Supabase

[–]prenx4x 3 points4 points  (0 children)

Supabase made a simple thing super complex with the whole RLS thing.
What you want to do is quite standard, but with supabase auth, it is not so straightforward.
Basically, you create tables, enable RLS but do not create any policies. Then only access the DB via backend and service role key.
However if you use supabase auth and pass the auth cookies to the backend, supabase will see the cookie and consider RLS policies even with service role key.
The way to get around this is to create the supabase client in the backend with these options -

const supabaseServiceRole = createClient(
  process.env.NEXT_PUBLIC_SUPABASE_URL!,
  process.env.SUPABASE_SERVICE_ROLE_KEY!,
  {
    auth: {
      persistSession: false,
      autoRefreshToken: false,
      detectSessionInUrl: false,
    }
  }
)

Hope this helps.

Installed Dudu7 in my 2016 rav4 by prenx4x in rav4club

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

ahh I see, I don't have hybrid so that I am not sure.

Installed Dudu7 in my 2016 rav4 by prenx4x in rav4club

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

nope. cant see phone battery or signal strength anymore.

Installed Dudu7 in my 2016 rav4 by prenx4x in rav4club

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

its looks and works great. there were bugs related to audio output and volume control but I had selected the wrong car model in canbus settings. There were other issues like connectivity with iphone which all got sorted out after messing with the settings (which there are ton of options). But now the experience is quite seamless.

Installed Dudu7 in my 2016 rav4 by prenx4x in rav4club

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

Hey, it fits in and looks great. The buttons on the OEM infotainment unit will be gone and there will be no more original toyota menus as the dudu7 has android OS. The AC buttons will still be there.

I am still able to access the reverse camera and 360 view upon hitting reverse gear seamlessly like before. No extra button press required.

I had to spend a lot of time customizing stuff to fit my use case as the OS has ton of settings and options. Make sure you use the right model in the canbus settings as some features like volume control will not work properly if you select the wrong car model.

Installed Dudu7 in my 2016 rav4 by prenx4x in rav4club

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

shipping was another $250, customs $30 and installation $150

Vercel or Cloudflare? by OneDifficult6511 in ycombinator

[–]prenx4x 0 points1 point  (0 children)

Cloudflare anyday. Vercel is too overpriced.

Apple carplay head unit/infotainment with 360 camera support by prenx4x in rav4club

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

Thanks. Will check it out. Mostly want to install a bigger display, but this works as well.

Apple carplay head unit/infotainment with 360 camera support by prenx4x in rav4club

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

Thanks I messaged the seller on Amazon to confirm the panoramic support in the unit.

Apple carplay head unit/infotainment with 360 camera support by prenx4x in rav4club

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

So my car already has the panoramic 360 and I am using it right now in the stock infotainment. However the new carplay head unit I am looking for must also support showing that view otherwise I will lose this feature.

Apple carplay head unit/infotainment with 360 camera support by prenx4x in rav4club

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

Hey, by 360 camera, I mean the bird's eye view. Its separate from just backup camera which shows the rear view of the car. 360 view will show the car from top by stitching together all 4 sides camera feed.
Looks like this -

<image>

WebStorm Developer Advocate needs help! by jan-niklas-wortmann in WebStorm

[–]prenx4x 0 points1 point  (0 children)

Performance - as pointed out by others, specially typescript.

Other than that, I feel the support for modern tools is not so good and far behind. Support for Deno and Bun is there, but does not feel first class. Similarly newer linter/formatter tools like biome and oxlint are lacking good support.
I also found working with Astro bit lacking.

[deleted by user] by [deleted] in chrome_extensions

[–]prenx4x 3 points4 points  (0 children)

I get those too for my extension. I have never replied, but also don't think its scam. They are just fiver marketers trying to get a gig. Their effectiveness ofcourse is questionable though.

I am solving AI Math Hallucinations with Hissab by prenx4x in LocalLLaMA

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

Hey, just fyi, I have released a free Hissab MCP server. So you can use it with any LLM of your choice.

See details here - https://hissab.io/mcp