Hey Lauda, I took your advice to learn C
[1]. I've been playing around with pointers and I think I've found a technical solution to the block size limit debate:
#include
#define N 100000
int x;
int main()
{
int * ptr = &x;
*(ptr+N) = 0;
printf("stick with core\n");
}
When I run my program, it gave me the answer:
>./decentralize_development
segmentation fault (core dumped)
It's time to dump the core!!
/stupid programmer joke
[1] Just kidding. My C code is running in semiconductor fabs all over the world including at Intel and Samsung.