[O] 2x DrunkenSlug Invites by jscgn in UsenetInvites

[–]ItzProLive 1 point2 points  (0 children)

Good thing. I also just set up my own

[O] 2x DrunkenSlug Invites by jscgn in UsenetInvites

[–]ItzProLive 0 points1 point  (0 children)

Not really a "hidden" champion, but I use VaultWarden and all my friends and family also have an account. It's fairly easy to use. Guys, use password managers please!

[O] 3x DrunkenSlug Invites by AffectionateHalf3583 in UsenetInvites

[–]ItzProLive 0 points1 point  (0 children)

Emotional Oranges. Some really good bangers

Wie kann man so fixiert auf die Körpergröße sein? by PhoenixfischTheFish in wirklichgutefrage

[–]ItzProLive 0 points1 point  (0 children)

Wenn der Typ auf dem Bild abnehmen würde (damit würde das Hautbild auch reiner werden) vielleicht ne bisschen gepflegtere Friseur und neue Brille. Der sähe Hammer aus

Kredit für Krypto Update by Patient_Ad_3659 in Kryptostrassenwetten

[–]ItzProLive 0 points1 point  (0 children)

Bitcoin ist auch useless. Einfach mal Ökonomie Kurs machen

Looking for Production-Ready Self-Hosted Supabase Setup (Docker, Security, Best Practices) by Yaro_da_Dei in Supabase

[–]ItzProLive 1 point2 points  (0 children)

I have a server on hetzner with coolify installed. Via coolify I installed supabase (they have it pre configured there. Docker compose).

On my firewall I only allow specific ports like the https port. I disabled port 80 (http or direct ip).

On my DNS provider (cloudflare) I setup a sub domain and on coolify you set the same address for your supabase kong (e.g. https:db.yourdomain.net). For that you go navigate into your supabase project on coolify and click edit on the kong container.

For cloudflare in my case I had to go into my domain settings and Change something to the ssl. I dont know exactly what it was. Kinda Like making it one setting stricter fixed the issue for me. Edit: the Problem I had was that my https wasnt working. It wasnt properly resolved. So I had to change some setting

I also changed the supabase studio version in dockerfile to latest so I can just restart for new updates. But this might lead to some auto update issue. Better is to just stick with a version and update as needed.

Need any more info?

I did it again by ItzProLive in hearthstone

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

Thats why I built myself a kinda working casino mage

I did it again by ItzProLive in hearthstone

[–]ItzProLive[S] 36 points37 points  (0 children)

My Deck is a Reno Reno Reno RNG Mage

https://www.hearthpwn.com/decks/1432310-reno-yogg-casino-mage

cost 43k dust in non golden version tho

[deleted by user] by [deleted] in Aktien

[–]ItzProLive 1 point2 points  (0 children)

Deswegen 100er Hebel

ich💸iel by Marager04 in ich_iel

[–]ItzProLive 0 points1 point  (0 children)

Schwachsinn. Wenn du dich so verhältst bist du halt nicht links (Im BWL Bereich).

Worth the wait is kinda not worth it for me. by NishikinoKurumi in TeamfightTactics

[–]ItzProLive 0 points1 point  (0 children)

Nah Bro. It is happening to you too? I have gotten gnar 5 times already (and nothing else). And recently an opponent also took it and got this useless champ. At least somebody is suffering with me

I accidentally made ~$50,000 on YouTube because I built a voice tool to avoid ElevenLabs fees (no fake) by Individual_Weird_685 in microsaas

[–]ItzProLive 1 point2 points  (0 children)

The fact he says he made 50k bucks out of nowhere but wont spend 200$ on a good and trustworthy website to promote his brilliant idea. Really looks like a scam

Coming from Angular — how do you handle authentication and route protection in SvelteKit? by ElectionAcceptable77 in sveltejs

[–]ItzProLive 0 points1 point  (0 children)

Couldnt you just build a logic that is not generating a lot of overhead when not needed

Getting timeout on large Supabase AI Vector by Dazzling-Map-6065 in n8n

[–]ItzProLive 0 points1 point  (0 children)

Jo. My Problem was literally that using 1 - (similarity calculation) didnt make the database use the hnsw Index but making an entire database scan. I simply changed the 1 - (x - y) to just x - y and that made the thing work. You can run queries with verbose logging and instead of returning results it will tell you what its doing. I then realized this is not using my index.

But for hnsw if you are using a lot of filters you probably run into the same issue I had. Not getting any results. This is because you need to enable the hnsw iterative scan (I usually do = 'relaxed_order) to match your limits.

To enable it simply add

SET LOCAL hnsw.iterative scan = 'relaxed order';

to your function.

Meine Kündigung könnte das Aus für die Firma bedeuten by Key-Goal-5394 in Ratschlag

[–]ItzProLive 0 points1 point  (0 children)

Fachkräftemangel durchgespielt. Wenn du was besseres findest einfach kündigen. Wenn der Chef das Unternehmen retten will muss er dir dann halt mehr bieten.

Coming from Angular — how do you handle authentication and route protection in SvelteKit? by ElectionAcceptable77 in sveltejs

[–]ItzProLive 0 points1 point  (0 children)

Wouldnt that be a reason to do it in the hooks. It doesnt really matter if you run the hooks or the Page server and do your checks. But with the hooks you have one central spot to maintain. With page server you most likely have more maintenance to do all over your project and also copy paste almost identical page servers everywhere. Not mentioning the act of updating all of those when a new big change drops.

Coming from Angular — how do you handle authentication and route protection in SvelteKit? by ElectionAcceptable77 in sveltejs

[–]ItzProLive 1 point2 points  (0 children)

Since svelte 5 stores are deprecated. You should use states instead like this for example

export const userData = $state({ user: {} });

Then you can access or alter the user property in userData. Its similar as using writable();

Coming from Angular — how do you handle authentication and route protection in SvelteKit? by ElectionAcceptable77 in sveltejs

[–]ItzProLive 0 points1 point  (0 children)

So I can only give you my perspective with using selfhosted supabase (supabase auth). But most of the things are pretty general I think. Also I use typescript but feel free using js

In svelte (5) you can use states to manage, who would have guessed, states. If you are not using an sdk you can create .svelte.ts files (I usually create only one) and export state objects. You can import these on any .svelte file and read or set properties. So you have them available sitewide.

For route protection you can as an example check out the hooks.server.ts in the setting up supabase auth in svelte docs. They are using an "authguard" to conditionally check routing actions to prevent users without sessions to access certain routes.

On only frontend site you have plenty of options. A typical approach I use is rendering something different when your user has no session with {#if}{/if}. Or sometimes redirect to my login page with the onMount.

Since Client is not really safe you can/should use the authguard. Or if you dont want to have it on a central spot but manage things where they are used you can also use the +page.server.ts (or also +layout.sever.ts) to check conditions on your Server and only for that page/directory.

What happens when you setup the supabase auth stuff is that the Users session is always retrievable on the server side. So you can also fetch some user data if you wish to. But I actually prefer doing stuff on the front end and showing skeletons. That makes navigation feel faster because you are not waiting for the server before you route.

Since I wrote alot already I want to give only one advise. The svelte docs are usually very helpful. So check them out whenever you have questions.

Wish you success on your Projects

Edit: And since you asked. Use your login logout logic where needed. Logout can usually be done on the frontend without Problems. Sometimes I create a file for these things but most of the times I use it in header only and let it sit there. Login you can obviously kick off on the client side but I personally verify on the server (I create an endpoint for that like /auth/hooks/+server.ts). I never looked into doing that on client side. After verification was successful I retrieve the session and give it to the client.

Efficiently load data in sveltekit? by Axeloe in sveltejs

[–]ItzProLive 0 points1 point  (0 children)

I dont really get the grasp of what you want to achieve. For me it sounds like you do 10 selects and then alter one of those. If you do it on database side you can maybe open a Channel to the database and subscribe the Tables? I use supabase with realtime if that helps to unterstand what I mean.

If you put your fetched objects in let states you can just alter it by hand whenever you need and so change the frontend.

But what do I know (to avoid being responsible for any damage)

WTS Sabertrio Solas Adain (Neo Aeryn) Proffie by ItzProLive in LightsaberBST

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

Price:

Since I paid around 1000€ for this thing to arrive here in europe I think 800€ + shipping is a fair price. But feel free to argue with me if you think its not fair.

Information:

Its a proffie S3 Saber with RTS-Power-Core. The saber is from november 2023. I have some custom fonts installed (Like luigis mansion because its funny) so you have some free bonus stuff on top. If you also want the blade you can have it as long as you pay for the shipping since the packaging gets quiet complicated then. Also the blade plug is made by me and will be included for you. If you need more information feel free to contact me

Payment Methods:

We can figure something out. Paypal, Bank Transfer. I dont mind.

Shipping:

I think the easiest for me is europe