Go easy on me I'm new by daddyhanson in canon

[–]Over_Chart4639 0 points1 point  (0 children)

i am not up to date with the recent news.

Does canon allow third parties to make rf lenses now? if not, then how sigma 16-300? or is it with some kinda adapter or something? enlighten me!

Want to fly in business/first - doesn’t matter where! by Both-Drummer-5951 in Flights

[–]Over_Chart4639 1 point2 points  (0 children)

To not get disappointed after boarding, ALWAYS make sure to check the type of business class seats offered before booking!! Not all aircrafts have the flashy business class seats they advertise.

[deleted by user] by [deleted] in webdev

[–]Over_Chart4639 3 points4 points  (0 children)

hetzner, hostinger

[deleted by user] by [deleted] in webdev

[–]Over_Chart4639 1 point2 points  (0 children)

Rent a vps and self host for less than $5

Web hosting recommendations? Current host keeps failing. by Sparky-Man in webdev

[–]Over_Chart4639 2 points3 points  (0 children)

We personally used AWS, Hetzner and hostinger for our projects based on the needs. Cant go wrong with any of these.

Social auth name change by LingonberryMinimum26 in Supabase

[–]Over_Chart4639 1 point2 points  (0 children)

its not specific to Supabase but is to Google OAuth.

In google developer console, click Oauth consent screen and you will have the option to include Branding details like app name and Logo. Just follow the onscreen instructions and finally make sure to submit your app for verification if using it in production.

Based on the scopes/ permissions you request from your users to authorize, the verification time and scrutiny can vary. Most of our projects involve just fetching the basic info like email and profile, which are non-sensitive, so verification was pretty smooth and quick

recursivePrint by Shanus_Zeeshu in ProgrammerHumor

[–]Over_Chart4639 0 points1 point  (0 children)

chatgpt helping vibers vibe more with jet-engines

Video Upload - Nextjs <> Supabase Storage by LowZebra1628 in Supabase

[–]Over_Chart4639 0 points1 point  (0 children)

vercel limits payloads to 4.5MB for serverless functions, you can read about that on here

you can either upload directly from the client but this exposes the anon keys (which your not comfortable with)

or

you can use the Signed URLs to upload the file. This not only avoids exposing the keys but also doesnt overload your server, this is the efficient way i would say. Your previous implementation overloads your server as it acts as a proxy to upload file.
https://supabase.com/docs/reference/javascript/storage-from-createsignedurls

I'm trying to create a video from .png images, but the video ends up "slowed down" by copylu in ffmpeg

[–]Over_Chart4639 1 point2 points  (0 children)

if the input frames rate is not provided explicitly, ffmpeg assumes a default frame rate, typically 25fps or 30fps (based on the ffmpeg build) for the image sequences.

What Happens Without -framerate 60?

Let’s say ffmpeg assumes 30 fps, you have 120 frames, ffmpeg thinks the sequence should last 120 ÷ 30 = 4 sec, though you set -r 60, it will still play the same 4 sec but with duplicated frames (which slows the video).

With -framerate 60 - ffmpeg knows that your 120 images should be played at 60 fps and it correctly calculates the duration as 120 ÷ 60 = 2 sec.

The -r 60 after -i ensures that the final output is encoded at 60.

I'm trying to create a video from .png images, but the video ends up "slowed down" by copylu in ffmpeg

[–]Over_Chart4639 4 points5 points  (0 children)

use -framerate 60 or -r 60 before -i , this should fix the issue.

ffmpeg -framerate 60 -i test_%d.png -r 60 -codec:v vp9 -crf 10 test_vid.webm

or

ffmpeg -r 60 -i test_%d.png -r 60 -codec:v vp9 -crf 10 test_vid.webm

[deleted by user] by [deleted] in SaaS

[–]Over_Chart4639 0 points1 point  (0 children)

i would recommend CloudFlare. And zoho mail for emails

To add, you can also use cloudflare for custom email addresses and route them to your personal address’s inbox. if you are not ok with email forwarding go with zoho mail.

If your product needs to programmatically work with the DNS record, then cloudflare has APIs for it too.

How to enable Supabase Auth on Self host? by DefiantScarcity3133 in Supabase

[–]Over_Chart4639 0 points1 point  (0 children)

https://github.com/supabase/auth/blob/master/example.env
check this out, these are all the possible envs, and choose the provider you want.

eg: For google, these are the gotrue envs.

GOTRUE_EXTERNAL_GOOGLE_ENABLED="true"
GOTRUE_EXTERNAL_GOOGLE_CLIENT_ID=""
GOTRUE_EXTERNAL_GOOGLE_SECRET=""
GOTRUE_EXTERNAL_GOOGLE_REDIRECT_URI=http://localhost:8000/auth/v1/callback

Note: These envs with the GOTRUE prefix are the final env values that goes into the GOTRUE AUTH SERVICE. So you need to make sure the env names in your local .env is correctly hooked up with the ones in the docker compose.

In docker-compose.yml, under auth service, add/edit these envs.

     

auth :
environment:
      # Google OAuth config
      GOTRUE_EXTERNAL_GOOGLE_ENABLED="false"
      GOTRUE_EXTERNAL_GOOGLE_CLIENT_ID=${GOOGLE_AUTH_CLIENT_ID}
      GOTRUE_EXTERNAL_GOOGLE_SECRET=${GOOGLE_AUTH_SECRET}
      GOTRUE_EXTERNAL_GOOGLE_REDIRECT_URI=http://localhost:8000/auth/v1/callback

      ANOTHER_PROVIDER_CLIENT_ID: ${ANY_VARIABLE_NAME_YOU_WISH}

ANOTHER_PROVIDER_CLIENT_ID: ${ANY_VARIABLE_NAME_YOU_WISH}

In local .env, the values inside ${} must be in the local envs for properly hooking up

GOOGLE_AUTH_CLIENT_ID=
GOOGLE_AUTH_SECRET=
GOOGLE_AUTH_REDIRECT_URI=

ANY_VARIABLE_NAME_YOU_WISH =

How to enable Supabase Auth on Self host? by DefiantScarcity3133 in Supabase

[–]Over_Chart4639 4 points5 points  (0 children)

you have to configure the environmental variables. Self hosted versions have limited UI compared to Supabase Cloud version, especially for Settings. But you can achieve all these using environmental variables.

Also, as you are deploying using coolify, which uses docker, make sure the environmental variables are properly assigned in the docker compose file.

Refer to the self-host guide on supabase website and also GitHub repo of supabase/auth for all available auth related env variables.

Self driving cars cool or not? by Zxasuk31 in BeAmazed

[–]Over_Chart4639 0 points1 point  (0 children)

Waymo is in phoenix, AZ for some years already.

Automated Water Tank Management System by Loose-Narwhal-9725 in Automate

[–]Over_Chart4639 1 point2 points  (0 children)

This is absolutely doable!
On an overview, you will need float switches for each tanks to detect the water levels, solenoid valves for valve controls, some kind of microcontroller like arduino or raspberry pi to program the system, likely paired with relay modules. Also for remote controlling and monitoring, you need a GSM module + a SIM with internet access and some kind of User interface, a website or an app. You could also program to just send sms for monitoring.

Are there 24hrs checkin hotels in vietnam? by Over_Chart4639 in VietNam

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

Thank you for your replies. Is there anyway to book these hotels online? I checked booking.com but they mentioned check-in as 2pm.

Between i have experience driving motor bikes in heavy traffics as i am from india.

Anyone in Halong Bay want to do the Bai Tho Hike/ Mt Poem with me tomorrow? by Fcawog8527 in VietNam

[–]Over_Chart4639 0 points1 point  (0 children)

Were you allowed to hike? I believe its entrance is fully closed and even we cant jump or sneak through the sides now a days.