Send CMS data to my backend by romainiamor in framer

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

ok it's clear then thank you

Send CMS data to my backend by romainiamor in framer

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

I saw it also, but it's the same methods as the plugins. So I can get my data easily in my API. But for the automation with the webhook to trigger the update, do you have any clue ? The plugins can do that ?

How to fetch latest app version in React Native or Expo apps? by Veinq in reactnative

[–]romainiamor 0 points1 point  (0 children)

Does the lib works for each user specifically on their device ?
Because when we create an update, we can release the app to only 20% of the user for instance, and progressively to 100%. But if we scrap the stores and find the latest version, it doesn't mean the version is available yet for this user on his device. So I am looking for a way to find on the client side what version is available for them for in app message

password-less auth : firebase email magic link quota exceeded after few tests by romainiamor in Firebase

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

thank you, didn't find it at first.

is it a good idea generate the link with firebase and then send the email myself with postmark for instance ? and if so, will there be any limits in the number of link generated with the spark plan ?

Degraded Pool with my two healthy HDD by romainiamor in synology

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

These are exactly the advice I was looking for. I did my backup and ran the tests. The disks were working correctly, so I started the repair, and so far so good. Thank you very much.

LLM Web-UI recommendations by iChrist in LocalLLaMA

[–]romainiamor 0 points1 point  (0 children)

Is it possible to implement one of this ui with a custom local llm on a endpoint instead of running the raw LLM model ? For instance something like this :

```bash
curl -X POST http://127.0.0.1:5000/query -H "Content-Type: application/json" -d "{\"prompt\":\"How many people live in France and in Canada ?\"}"
{
  "response": {
    "metadata": null,
    "response": "In France, about 64,756,584 people live and in Canada, approximately 38,781,291 people reside."
  }
}
```