Brain Guild General discussion

I will pboy, abp, and bg for a few days. Then take a break from all brain fields for a few days.

So hard to not loop wiring fields though, can’t lie to you.

But it’s time to let myself see what I have and grind hardcore.

3 Likes

Alright boys im gonna go finish these flash cards, study the unit than ill be back here tonight if you guys are discussing, pm me for any questions and sh

1 Like

Never would’ve thought Dr. played battlefield lol.

1 Like

This convinced me to finally pull the trigger on brain game today. It’s been on for a few hours and having a very productive work session… It’s early but it feels like the dopamine serotonin oxytocin optimization draws me toward the thing i’m working on —magnifying it?— allowing me to engross and get into a flow state easier…

Going to run long sessions of this alongside other stuff this week. Thanks for the insight today.

2 Likes

Still looping rn ran through 1000 flash cards but I’m getting tired now and I might knock soon for bed
But I’m having fun doing these flash cards

2 Likes

Any coffee drinkers? I feel like the crash out is bad sometimes I might remove caffeine tbh I think this is the cause of my productivity crash through out the day, L Theanine is helping but completely wanna get rid of caffeine soon

1 Like

I invite you to drink chai. Makes me a productivity master.

5 Likes

try the cup of coffee audio :)

1 Like

I have some at home hahah but I didn’t really notice a difference in that as much as the first one two hours of caffeine

1 Like

Don’t worry about the caffeine effects, find a drink that makes you feel good mate. It’s all about feeling good.

1 Like

Lets say i listen to my self love stack one day then my brain wiring stack another, so i can loop the stacks more.

If i play all my fields in 1 day, i usually have time to play them all once or twice but if im going to do it this way, i can loop individual audios for a lot longer.

Will i still get results if i play my stacks once every 2 days or does it need to be everyday? Ill listen to energy body audios everyday of course but theres just barely enough time to listen to everything. Also i cant just focus on one thing topic for a month and then move on because ill be listening to brain fields for the rest of my life

3 Likes

I was helping a friend this evening create a basic program in C for drawing dungeons in Windows command prompt. It’s crazy how quickly I was able to put it together and refactor it, even if it is relatively simple.

The brain fields are really helping.

I’ve included the source below for those who’re curious.

main.c
#include <stdio.h>

typedef char bool;

#define GRID_WIDTH  9
#define GRID_HEIGHT 15

#define TILE_WIDTH  6
#define TILE_HEIGHT 3

char grid[GRID_HEIGHT][GRID_WIDTH] =
{
	{ 0, 0, 0, 0, 0, 0, 0, 0, 0 },
	{ 0, 0, 1, 0, 0, 0, 0, 0, 0 },
	{ 0, 0, 1, 0, 1, 1, 1, 0, 0 },
	{ 0, 0, 1, 0, 1, 1, 1, 0, 0 },
	{ 0, 0, 1, 1, 0, 1, 0, 0, 0 },
	{ 0, 0, 1, 1, 0, 1, 0, 0, 0 },
	{ 0, 0, 1, 1, 1, 1, 0, 0, 0 },
	{ 0, 0, 0, 0, 1, 1, 1, 1, 0 },
	{ 0, 0, 0, 0, 0, 1, 0, 0, 0 },
	{ 0, 1, 1, 0, 0, 1, 0, 0, 0 },
	{ 0, 0, 1, 0, 1, 1, 0, 0, 0 },
	{ 0, 0, 0, 0, 0, 0, 0, 0, 0 },
	{ 0, 0, 0, 0, 0, 0, 0, 0, 0 },
	{ 0, 0, 0, 0, 0, 0, 0, 0, 0 },
	{ 0, 0, 0, 0, 0, 0, 0, 0, 0 }
};

char getTile(int x, int y)
{
	return (x < 0 || y < 0 || x >= GRID_WIDTH || y >= GRID_HEIGHT) ? 0 : grid[y][x];
}

void printMultipleChars(char c, int count)
{
	for (int i = 0; i < count; i++)
		putchar(c);
}

void drawGrid()
{
	for (int y = 0; y < GRID_HEIGHT; y++)
		for (int t = 0; t < TILE_HEIGHT; t++)
		{
			for (int x = 0; x < GRID_WIDTH; x++)
			{
				char tile = getTile(x, y);

				bool wallNorth	= (tile != 0 && getTile(x, y - 1) == 0) || y == 0;
				bool wallSouth	= (tile != 0 && getTile(x, y + 1) == 0) || y == GRID_HEIGHT - 1;
				bool wallWest	= (tile != 0 && getTile(x - 1, y) == 0) || x == 0;
				bool wallEast	= (tile != 0 && getTile(x + 1, y) == 0) || x == GRID_WIDTH - 1;

				if (wallNorth && t == 0 || wallSouth && t == TILE_HEIGHT - 1)
					printMultipleChars('-', TILE_WIDTH);
				else
				{
					if (wallWest) 
						putchar('|');

					printMultipleChars(' ', TILE_WIDTH - wallWest - wallEast);

					if (wallEast) 
						putchar('|');
				}
			}
			putchar('\n');
		}
}

int main(void)
{
	drawGrid();
	return 0;
}
5 Likes

Do you have kinetic quasi crystal ?

Running on Straight As on my PhD classes evaluation.

To be fair, I just took A- on Regression Models, out of lazyness because I didn’t bother to check the Homoskedasticity assumptions în the last model.

Well, nevermind ahah

7 Likes

3 Likes

If they would be open-minded enough to just try the secret spice :face_with_hand_over_mouth:

Medieval Tourney Gratz, loving it :heart_eyes:

1 Like

I am taking a day off. Not sure if I should listen to some binaural beats or not.

Yep, i do but will I still get results even if i only play brain fields once every two days?

1 Like

Don’t personally use brain fields yet but I see no reason why they wouldn’t. Maybe even better results as your brain has more time to heal but don’t quote me on that

Maybe after 2 years?

Its better to play it more than once and that daily

1 Like