Anonymous
8/27/2025, 2:27:49 PM
No.106400773
Today I realized that logical-and is just a fold-right operation which accumulates boolean values, and that you can nest arbitrarily complex, recursive logical structures inside it. SICP is fucking mind-bending. There is something incredibly satisfying about discovering these computational principles which seem baked into not just computers but the structure and fabric of reality itself. This book is like a drug.
Anonymous
8/26/2025, 1:27:30 AM
No.106384114
Which function is faster?
#define SIZE 10000000
float Foo(const float* a, const float* b) {
float sum = 0;
for (int i = 0; i < SIZE; i++) {
sum += a[i] * b[i];
}
return sum;
}
float Bar(const float* a, const float* b) {
float* c = new float[SIZE];
float sum = 0;
for (int i = 0; i < SIZE; i++) {
c[i] = a[i] * b[i];
}
for (int i = 0; i < SIZE; i++) {
sum += c[i];
}
delete[] c;
return sum;
}
Anonymous
8/6/2025, 7:17:05 PM
No.106164585
Why do they keep making kids so goddam sexy these days?
Anonymous
6/30/2025, 4:22:22 PM
No.105754376
>>105753800
>Is there a good scheme resource
My son... you seem like you haven't heard the Good Word yet...