Avatar
Daniel Pfeifer
0f061fe4e6852250274ed3d786759168366c6a1cbdc1cc2dbb2d6a0e944cdb2b
executive high priest of blowing your mind

Gemeinwohl? Demokratie? Vielleicht solltest du mal Hoppe lesen.

#cpp question: Where do you put the `const` keyword: To the left or to the far right?

Can you comment on copyleft from an anarchist perspective? Is it a good thing that most software for bitcoin/nostr is licensed under MIT?

Can I write hightlighted code here?

```c

for (j = 0; j < array_len; j += 8) {

total += array[j + 0];

total += array[j + 1];

total += array[j + 2]; /* Main body of

total += array[j + 3]; * loop is unrolled

total += array[j + 4]; * for greater speed.

total += array[j + 5]; */

total += array[j + 6];

total += array[j + 7];

}

```