Huakun

Results 98 comments of Huakun

@skrewby Are you saying if you copied text from outside the app, it works on Wayland? Have you tried this on a release build of the app? How about other...

Same problem here. In documentation https://supabase.com/docs/guides/graphql/with-apollo the url used is localhost. I am using a cloud supabase instance. Sending request works, but I can't retrieve the schema. I guess this...

Just found out I need to add headers with the access token ```ts schema: { "https://.supabase.co/graphql/v1": { headers: { apiKey: z.string().parse(process.env.SUPABASE_SERVICE_ROLE_KEY), }, }, }, ```

Same issue. Wanted to publish react/vue/svelte component libraries. Looks like jsr only support pure js/ts lib.

I submitted a PR https://github.com/tauri-apps/plugins-workspace/pull/2553 to implement sqlite cipher encryption. pragma key can be introduced in runtime dynamically, not during initialization, thus keys can be user input or a random...

> > If I simply remove 3 unused plugins from Cargo.toml it will run. > > If I remove some capabilities it will run. > > Which plugins and which...

> I got same error, but my cause is different, if I add more than around 10 commands, it will crash but not happening on my macos and linux devices...

Problem solved by increasing stack size. I tried so many config/flags. This one works. Add to `.cargo/config.toml` ```toml [target.x86_64-pc-windows-msvc] rustflags = [ "-C", "link-arg=/STACK:8000000" ] # 64 bit Mingw [target.x86_64-pc-windows-gnu]...

> I hit this too, in my case I just have 3 commands and some fs permissions. > > I don't think this should be closed though, it's not normal...

> same issue on my PC too. win11 latest > > note, this doesnt fix my issue: > > ``` > [target.x86_64-pc-windows-msvc] > rustflags = [ > "-C", "link-arg=/STACK:8000000" >...