This is a default human behavior in C
alicommit-malp
/
freedom
A technical documentation to freedom in life for software developers :)
freedom
A technical documentation to freedom in life for software developers :)
This is a default human behavior in C
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
bool anger_event = false;
srand(time(NULL));
anger_event = rand() % 2 == 0;
if (anger_event) {
printf("Show anger.\n");
} else {
printf("All is calm.\n");
}
return 0;
}
This is the upgraded human behavior after doing meditation
While practicing meditation, let thoughts enter but decide if you agree to process them, this will create the gap (freedom) over time.
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
bool anger_event = false;
srand(time(NULL));
anger_event = rand() % 2 == 0;
bool conscious_choice = !anger_event; // ← this…#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
bool anger_event = false;
srand(time(NULL));
anger_event = rand() % 2 == 0;
if (anger_event) {
printf("Show anger.\n");
} else {
printf("All is calm.\n");
}
return 0;
}
This is the upgraded human behavior after doing meditation
While practicing meditation, let thoughts enter but decide if you agree to process them, this will create the gap (freedom) over time.
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
bool anger_event = false;
srand(time(NULL));
anger_event = rand() % 2 == 0;
bool conscious_choice = !anger_event; // ← this is freedom
if (anger_event && conscious_choice) {
printf("Show anger.\n");
} else {
printf("All is calm.\n");
}
return 0;
}

Top comments (0)