Heniker

Results 11 comments of Heniker

I am not sure if that is what you're looking for, tho I think this are the links for authorizing apps on mail.ru: https://api.mail.ru/docs/guides/social-apps/ https://api.mail.ru/apps/my/add By the password for apps...

You can't generate new app-passwords or access old once you disable 2FA. I guess they just get deleted and can no longer be used.

Hello @thisisgit, thanks for reporting! We fixed the problem for iOS in master. Android fix is left to be done, because of [bug](https://github.com/facebook/react-native/issues/32904) in React Native. Leaving the issue open...

There is also the option of [useSortable](https://vueuse.org/integrations/useSortable) from VueUse, which seems to work fine for my use-case.

According to this [stackoverflow answer](https://stackoverflow.com/questions/954560/how-does-git-handle-symbolic-links), git can handle symlinks correctly. But implementing a symlink solution will require some special directory, under which real files should be kept (to prevent issues...

The following code will work correctly ATM, aside from TS error: ```ts const t = ref(1000); const { ready, start, stop } = useTimeout(t, { controls: true }); console.log(ready.value); //...

You can generate .patch file manually as a workaround: Copy relevant folder from `node_modules` into temp directory. Run ``` cd tmp rm -rf ./**/node_modules git init -q git stage *...

As a temporary solution you could try using `rclone mount -L` and run borg on mounted folder. This is merely a suggestion, as, though it worked for me with restic,...

No, that doesn't really work. ```ts const response = await app .handle( new Request("http://localhost:9000/hello", { // now username is wrong, but request still passes body: JSON.stringify({ password: "secure-password", username: "Bad...

I get why this happens. I don't see if this is the expected behavior. It seems unintuitive and easy to get wrong to me. So, is this something worth fixing...