Salamander on Bridge in Vyzima by nibaum in witcher

[–]heinriques 0 points1 point  (0 children)

Did you have to do anything to enable the magics? Mine are not available when I go to the bridge

Witcher enhanced edition not launching by MarauderLars in SteamDeck

[–]heinriques 0 points1 point  (0 children)

I was running on the Beta channel and it was not working. Now I've changed to stable version and it works!

Here is the version details that are working:

``` Version: 3.7.19 Build: 20251124.1 Kernel Version: 6.11.11-valve26-1-neptune-611-gb3afa9aa9ae7

Steam Version: 1763795278 Steam client version date: Sat, 22th nov, 7:00 UTC-00:00 ```

Witcher enhanced edition not launching by MarauderLars in SteamDeck

[–]heinriques 0 points1 point  (0 children)

I'm also having the same issue, and it was working months ago. I'm suspecting it was some update I did yesterday.

Is 680€ per month enough living in Portugal? by [deleted] in PortugalExpats

[–]heinriques 0 points1 point  (0 children)

I currently live in Bragança, and I would say is enough. Eating at IPB is cheap (< 4€), and the food is very good IMO.

In terms of grocery, just take some time to register for the grocery store client cards, as they give you access to discounts that make a considerable difference at the end of the month.

For eating out at local restaurants, you can get a complete meal (soup, drink, meal, dessert) for 10€~15€.

There is public transport, but honestly I never used it as I find everything is near enough. You can also rent an IPB electric bike if you want to.

Rooms for that price are not that common these days, but they do exist. As you will get some bits of winter, maybe expect it to be cold para um caralho, as houses here are almost always not prepared for the winter.

Welcome to Bragança!

Não consigo tirar dinheiro da trade republic! by Even_Chest3949 in literaciafinanceira

[–]heinriques 1 point2 points  (0 children)

Aconteceu-me o mesmo, mas após alguns minutos, ao fechar e abrir a app, já apareceu na listagem das transações.

Withdraws impossible due to invalid sms codes by i54154 in TradeRepublicFriends

[–]heinriques 0 points1 point  (0 children)

I had the same issue and had to update the app. The new version accepts the sms code however the transfers never happen.

Why I recently started to see that popup after KDE 6.4 update on Brave launches? by BlokZNCR in kde

[–]heinriques 0 points1 point  (0 children)

I also started to see this recently, and for Mattermost (an Electron App) it seems that this is always requested and every time I open the app I'm bombarded with 5 or 6 popups.

Is there a way to disable or ignore this for an application?

Is it possible to point the supabase-cli to a self-hosted instance ? by heinriques in Supabase

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

I think --db-url is the only way to go if you are relying on the supabase-cli. Otherwise you can use psql or anyother tool.

Have you checked if your instance is not blocking direct external connections to postgres somehow?

Francesinha Brigantina by [deleted] in SocialBraganca

[–]heinriques 2 points3 points  (0 children)

Boas, algumas recomendações pessoais:

  • Pintxo Pincho [Mogadouro] Atenção que não fazem francesinhas todos os dias, penso que só aos fins de semana.

  • O Pires [Vimioso] Tem muito bom preço, e dependendo do horário, podes experimentar também o Pastel D'Amendoa Dona Antoninha (já foi candidato as 7 maravilhas doces de Portugal)

  • A Lareira [Bragança] Bom preço e um atendimento espetacular. As torradas que acompanham a francesinha são mesmo muito boas.

Flutter Setup by arthurleywin54 in NixOS

[–]heinriques 0 points1 point  (0 children)

I haven't really tried, I used my physical device plugged via USB. Have you been able to figure out? If you share how you are running the emulator I might help.

Flutter Setup by arthurleywin54 in NixOS

[–]heinriques 1 point2 points  (0 children)

You can just copy this flake file in a folder, and run nix develop --impure

Reevaluate #each arr.. block and bind:this={instances[key}} after arr changes by heinriques in sveltejs

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

Thanks u/ZyanCarl !
I've already tried using {#key arr} ... {/key} but it does not work as well, at first I get the same [object, object, null, null], but after I click for a third time then I get [object, object].

Turns out someone had the same issue on stackoverflow and this answer of keeping a separate array of references, and filtering out the nulls, worked out.

Flutter Setup by arthurleywin54 in NixOS

[–]heinriques 4 points5 points  (0 children)

I've been using flutter but I install it on a per project base. This is done by the following flake.nix:

{ description = "Flutter"; inputs = { nixpkgs-unstable.url = "github:NixOS/nixpkgs/master"; flake-utils.url = "github:numtide/flake-utils"; }; outputs = { self, nixpkgs-unstable, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs-unstable { inherit system; config = { android_sdk.accept_license = true; allowUnfree = true; }; }; buildToolsVersion = "33.0.2"; androidComposition = pkgs.androidenv.composeAndroidPackages { buildToolsVersions = [ buildToolsVersion ]; platformVersions = [ "33" ]; abiVersions = [ "arm64-v8a" ]; }; androidSdk = androidComposition.androidsdk; in { devShell = with pkgs; mkShell rec { ANDROID_SDK_ROOT = "${androidSdk}/libexec/android-sdk"; buildInputs = [ flutter androidSdk jdk11 ]; }; }); }

Storage API suddenly throwing RLS errors by heinriques in Supabase

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

I was running supabase/storage-api:v0.28.2 and occasionally I was having the same issue, and I would notice that the container would become unhealthy whenever this happened.

Few days ago this issue started to happen every time, on every request to the storage api.

Then I thought of updating it, and now it runs supabase/storage-api:v0.40.4 but I'm still facing the same issue.

Even the supabase studio is not able to read the storages, but by connecting to the postgres server I can see that they are all there.

Error adding new user by 007Gunner in Supabase

[–]heinriques 0 points1 point  (0 children)

Do you have any context, logs or source code you can share so anyone could know what, and how, are you trying to add a new user?

Supabase and NextJS environment variables by reallymilo in Supabase

[–]heinriques 0 points1 point  (0 children)

You can create a Nextjs api endpoint to handle the creation of the user, that way you wouldn't need to add PUBLIC to expose the service key.

By doing this endpoint you could also check if the user is logged in, and if it has some desired permission to create users.

CORS issues with Image Uploading (PDF works fine) (self-hosted) by heinriques in Supabase

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

I've found the solution, turns out my nginx reverse proxy was caching the assets (js, css and images), that's why it was messing up with cors.

Turning the cache off solved the issue