Daniel Pfeifer
_@purplekarrot.net
npub1purp...ajf8
executive high priest of blowing your mind
Notes (10)
gm
Es heisst nicht umsonst „Klaut“.
nostr:note19atfvp2xtyl37mppwxsrfn92tc5km8gpguyyqnuap904n38aw5wsgct7ay
Add me to #OnlyDans
Mäxle
nostr:note1qqqwvh5n90p3qtx0v2utjdxh5hsnv6mw7ymx3ahkjds9fhpjuvvscf2y02
Gewindebohren zur Mutter. nostr:npub12rv5lskctqxxs2c8rf2zlzc7xx3qpvzs3w4etgemauy9thegr43sf485vg


#cpp question: Where do you put the `const` keyword: To the left or to the far right?
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];
}
```
Hello Nostr!