Moritz Hedtke

Results 126 comments of Moritz Hedtke

> I'm sure that we can add a lock message to the cluster protocol, send it out to all cluster members except the one we're wanting to challenge. Unfortunately I...

> Storing data 150k times if the pinset can fit on all nodes is a bit overkill, wouldn't you agree? Yeah, I was more thinking about the pacman-cluster. So that...

You could pipe the output, something like (NOT TESTED) `wget -O - https://repo.distr1.org/distri/jackherer/img/distri-qemu-serial.img.gz | gunzip | dd bs=512k of=/dev/null`

@probonopd I'm pretty sure balenaEtcher supports .img.zg images (https://github.com/balena-io/etcher/issues/325) which are provided by https://repo.distr1.org/distri/jackherer/img/. I also just ran it and it tells me that it would burn the file without...

I think this is really needed as it is necessary to have a link to the imprint and data protection declaration on every page but you have to link them...

This is so much more user friendly. I would love to see this get merged! I don't know what the next steps should be but maybe you could resolve the...

I just found out that this workaround is bad if you have submit event listeners. You would need to use https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/requestSubmit which is not supported in enough browsers. So I...

Can you show the part of app.ts please? (You can remove the parts you don't want to show)

According to the [tutorial](https://nexusjs.org/getting-started/tutorial/chapter-persisting-data-via-prisma) you should either just do ```javascript use(prisma()) ``` to make prisma available in the context (as `db` I think) or you can use: ```typescript const db...

@scleriot I know but the error `Property 'prisma' does not exist on type 'Request'.`looks like you are not supposed to manipulate the request object. Instead you are supposed to manipulate...