Daniel Raeder

Results 70 comments of Daniel Raeder

@pwFoo This may help.. You can work around duplicate data like so: ```js let last gun.get("graph").get("subgraph").on(data => { if(data == last) return last = data }) ``` However, if your...

```bash #debian/ubuntu if [ $(id -u) -ne 0 ]; then SUDO='sudo' else SUDO='' fi ${SUDO} apt-get install sudo -y ${SUDO} apt-get update -y ${SUDO} apt-get install curl git git-core screen...

If I'm not misunderstanding the issue and example, I believe that the desired use-case is what I did with [Gunsafe](https://github.com/draeder/gunsafe) CLI's sync functionality.

> This is a concern I have had since starting to work on my own P2P project using gun.js. Interestingly, I came up with the same solution (proof of work)....

The general idea behind using jQuery is for new developers who don't know how to program at all. Vanilla JS is preferred to me also, but it adds additional lines...

@Alengeorge-01 With ES6 you should be able to dynamically import like so: ```js const Gun = await import('/assets/js/gun.min.js') ``` This should work in both Node and the browser. Note that...

After spending all evening last night and this morning trying to figure out why these environment variables "were not working", I finally found this discussion. I would like to add...

The error appears to imply an issue with your "Organisation ID": `"GET /projects/get/organisation/null HTTP/1.1" 422 Unprocessable Entity` Did you configure your OpenAI API key in `config.yaml`?

It looks like that is a locally generated organisation ID. It should create it after that error. I get the same error upon `docker compose up --build` when I hit...