It seems like after level 100, the grid size starts to expand outside the bounding box the code is looking at. The code completely missed the top and bottom rows. You'd probably have to do something to make it expand the dimensions at higher levels, but tbh I wouldnt bother either. At that point it doesnt really matter anymore. XD
Would probably need to search for the boxes themselves within the entire screen and not just the small box. Could probably do something to make some type of grid with the center coordinate of each box, check the color of each of them at the start of the level, record the ones that are white and then when they flip back click all the coordinates in the list for the ones that were white. Sounds easier than it probably is lol
@@Swindly_YT you can also use selenium to locate the boxes, and either use the built in click function or use the location of the element and feed that into pyautogui
@@moofurg Ill have to take your word for it lol. Im not very knowledgeable on python. I can code in it but I dont know all the packages and stuff it has. I am guessing though that that basically is a form of what I was thinking just already made right? Im trying to get an understanding of how it works.
Starting from centre and counting boxes up would work. After the first gap you know the spacing of two squares, so you know when to stop searching. You'd need to take into account whether you start from a square (odd number of squares) or from the gap (even number of squares), though, which may cause some problems
You should mention this channel on your main channel once in a while (aka every video because they happen every fewmonths or so). I only learned about this channel recently and it's so much great content. Also do a full 100% of all human benchmark tests on a new account when you are done with all the individual tests.
Once I get to level 10, it becomes easier for me to memeorize the shape of the blocks that are not turned white. And then click the ones that are not..not white. Using that method, I got to level 39.
seeing the python error made me marvel at the fact that we have any working programs XD also made me go from "maybe i'll try my hand at coding one of these days" to "Hell no i'm not careful enough to notice details like that"
Those bugs can be hard to catch. What some people do is try to refactor their code to limit the amount of nesting (number of conditionals/loops insode other conditionals/loops) with the use of functions. Don't think just because that bug looks trivial that you can't do it. We have all made and continue to make those mistakes.
To add to the other reply, other languages use different (and better) ways to nest code, mainly curly braces {}. In my opinion, it makes it easier to follow rather than tabs, because you have an actual block of code.
Python: Tabs vs spaces or your indentations are in the wrong level. C, C++, PHP, etc: You forgot to close the line of code with ; But yeah most of the time, the runtime or compiler will catch something, just have to go look at the line number it spits back at you and be like oh yeah, I see it.
2:20 technically you can calculate the size of the entire grid when you have the width of the first square, you don't need to manually count it. you can do something like: size = floor(board_width / square_width)
You can try to use some browser automation frameworks maybe. Playwright, for example. If every square is an html element, then the task will be more or less trivial. And it works fast
just did that, no need for playwright even. all you need is a mutation observer to trigger class changes, save them to an array and then trigger touch event on them, don't ask me why touch event specifically, cus click didn't work.
I did the human benchmark tests after watching his vids on them. I got 119 on the verbal memory last night and just wanted to brag about it. thanks guys
I gotta wonder how much work you have to do to fix ChatGPT code vs. doing it from scratch yourself, lol… I’d love to see you do a full video comparing the processes
This brings back old memories of me trying to do the same lol. My (program's) record for visual memory is 51.2 points. The trick is to simply ignore the grid and save a screenshot of the whole playfield. When it's time to click, pick any white pixel in the screenshot to click on until you've done them all.
I think this is the first Code Bullet video I’ve seen with a face cam. 👍 4:31 I’ve seen this in so many other videos. People swear in their videos but censor the subtitles. Kinda funny that’s how YT works. 😂
its still 18x18 and i think the zooming for recording was just the reason it looked wrong. u can see that hes slowly been zooming in for the past few levels but since he cut the footage from lvl 101 to 104, the next shot we got of 105 is more zoomed in with a jump instead although it does look like the bot missed the top and bottom rows too which is weird
I wonder how much harder it would be to make an ML version of this... Like the input is the screenshot, and the output is the coordinates of the white squares? So it would be like a multiclass-multilabel classification problem?
@@overthr0w138 idk, a fantasy adventure type increment game? 🤷♂️ As long as he makes it, maybe while streaming it, it would also be fun to see his taught process.
when the memory test matrix dodges out of the way of the ai bullet but then the ai decides to just shoot the legs where the test has no chance to move away
ironically, someone can just take a quick screenshot and cheat their way into much higher levels.... just hit the print screen key and shove the image into paint or something, cause it doesn't seem like there's a time limit
The results of the tests are probably skewed because people who are good at these things are more likely to keep doing them and get better. Just because that's how humans tend to operate.
6:03 Everytime someone complains about indent-based code, I wonder how they have managed to never put something on the wrong side of a bracket or parentheses, or forget a semicolon
An audio note. Can you please not have the music become louder than the highest peak of the person speaking. As the volume increase is off putting and becomes too loud. As the human voice varies in volume but the music doesn't so it is way louder in comparison. Talking about 6:42 when its just music playing. Lots of UA-camrs do this and its always annoying.
Should someone tell him that he can use something like puppeteer to make this so much easier? No need to count visually when you can just run [...document.querySelector('.square')].length
Personally I wouldn't bother with the grid, instead I would look for a screen with white in it, then another with no whites. Then just compare the past view with the live one, and where it doesn't match, click there.
The issue with this is, that you can have more than one shot at any of the tests. That doesn't make it inherent skill, but learned. So the tests are flawed. Imagine you could take your mensa tests until you are satisfied with the results.
It seems like after level 100, the grid size starts to expand outside the bounding box the code is looking at. The code completely missed the top and bottom rows. You'd probably have to do something to make it expand the dimensions at higher levels, but tbh I wouldnt bother either. At that point it doesnt really matter anymore. XD
Would probably need to search for the boxes themselves within the entire screen and not just the small box. Could probably do something to make some type of grid with the center coordinate of each box, check the color of each of them at the start of the level, record the ones that are white and then when they flip back click all the coordinates in the list for the ones that were white. Sounds easier than it probably is lol
@@Swindly_YT you can also use selenium to locate the boxes, and either use the built in click function or use the location of the element and feed that into pyautogui
@@moofurg Ill have to take your word for it lol. Im not very knowledgeable on python. I can code in it but I dont know all the packages and stuff it has.
I am guessing though that that basically is a form of what I was thinking just already made right? Im trying to get an understanding of how it works.
@@moofurgit works perfectly fine with just normal chrome / Firefox and 10 lines of javascript
Starting from centre and counting boxes up would work. After the first gap you know the spacing of two squares, so you know when to stop searching. You'd need to take into account whether you start from a square (odd number of squares) or from the gap (even number of squares), though, which may cause some problems
Code bullet is a true aussie, he never stops swearing even during sponsorships.
E
Some bots I understand. Who is E bot benefiting and how?
@@thewiseoldfoxBecause.... E
I don't know and honestly I don't care, there are so many harmful bots please don't complain about an innocent one.
@@thewiseoldfox actually not a bot, just an extremely based individual
@@mrrooter601 he's based because he starts random conversations like this without any promotion or trickery
If you look at the white squares and dont blink, the blue is lighter
yeah but its temporary
E
bro has cheats irl
lol
I hope he saved all the different files of code
Just so we can see a 100% on every test at the same time
Wouldn't surprise me if that's gonna turn into a main channel video
You should mention this channel on your main channel once in a while (aka every video because they happen every fewmonths or so). I only learned about this channel recently and it's so much great content. Also do a full 100% of all human benchmark tests on a new account when you are done with all the individual tests.
Bro why is CB so goddamn handsome what the hell??
5:54 And this is exactly why you should _never use Python_ unless someone forces you to.
Once I get to level 10, it becomes easier for me to memeorize the shape of the blocks that are not turned white. And then click the ones that are not..not white. Using that method, I got to level 39.
You're on fire dude!
I just listened to the sound that blocks made, like a bat, and got to level 420
i got to 34 just normally
Fucking how though, the white blocks last for 1second, how the fuck do you install that into your memory to replicate, I can barely get passed level 8
@@DavidUrulski-wq9de Either just play it a bunch and get specificity, or you can just be talented, it's sad but those are the only 2 options
I cant believe CodeBullet hired the secret fourth Hemsworth brother to record the face cam parts of this video
Code Bullet IRL somehow looks more Australian than I could have imagined
seeing the python error made me marvel at the fact that we have any working programs XD also made me go from "maybe i'll try my hand at coding one of these days" to "Hell no i'm not careful enough to notice details like that"
Those bugs can be hard to catch. What some people do is try to refactor their code to limit the amount of nesting (number of conditionals/loops insode other conditionals/loops) with the use of functions.
Don't think just because that bug looks trivial that you can't do it. We have all made and continue to make those mistakes.
To add to the other reply, other languages use different (and better) ways to nest code, mainly curly braces {}.
In my opinion, it makes it easier to follow rather than tabs, because you have an actual block of code.
@@coneris I wasn't expecting such an encouraging response, maybe I will still give it a try 😁
Python: Tabs vs spaces or your indentations are in the wrong level.
C, C++, PHP, etc: You forgot to close the line of code with ;
But yeah most of the time, the runtime or compiler will catch something, just have to go look at the line number it spits back at you and be like oh yeah, I see it.
I'm dumb AF and not very detail oriented. I can code just fine. Debugging is part of the game BB
At the end of this series you should do a massive compilation of all of the human benchmark programs
code bullet never fails to remember where and how to click my squares
"The first sponsored video on the second channel"
bro, face it, this is the main channel now.
the first 30 seconds is a perfect explanation of any programmer's day-to-day tech literacy.
I didn't realize this was a second channel... I've been watching this for a few months now and my mind is blown that there's a BIGGER channel.
For those wondering, the last song is Hot Hot Hot by Lofive 😉
its cause it added a row at the bottom that the program didnt see
It missed the top one as well
bro hid his face forever, bro is a CHAD!
I'm still waiting to see what the "Real" Code Bullet looks like? There's NO way this AI generated handsome man is real.
IKR, this is the first time I went into this channel and I'm like 'ain't no way someone with that face and that accent is real'
2:20 technically you can calculate the size of the entire grid when you have the width of the first square, you don't need to manually count it.
you can do something like: size = floor(board_width / square_width)
Then you'd get a floating point number because you didn't account for the gaps.
the way the grid starts getting bigger at some point... criminal
Basically memorizing entire QR Codes in seconds 😌 CodeBullet has amazing memory skills
You can try to use some browser automation frameworks maybe. Playwright, for example. If every square is an html element, then the task will be more or less trivial. And it works fast
I just spent 40 mins figuring out Selenium in Python and it is working flawlessly!
just did that, no need for playwright even. all you need is a mutation observer to trigger class changes, save them to an array and then trigger touch event on them, don't ask me why touch event specifically, cus click didn't work.
The mouse rubbing the square was funny as hell.
I would love to watch a livestream of this.
I did the human benchmark tests after watching his vids on them. I got 119 on the verbal memory last night and just wanted to brag about it. thanks guys
I gotta wonder how much work you have to do to fix ChatGPT code vs. doing it from scratch yourself, lol… I’d love to see you do a full video comparing the processes
I thought it was a clickbait thumbnail... Nope, 100% accurate.
Code Bullet: "If you want to learn what we did in this video" 8:31
Me: *opens chat GPT* 3:19
It'd actual be hilarious if you treat one of the reveal segments as a Summoning salt video, music and all
This brings back old memories of me trying to do the same lol. My (program's) record for visual memory is 51.2 points. The trick is to simply ignore the grid and save a screenshot of the whole playfield. When it's time to click, pick any white pixel in the screenshot to click on until you've done them all.
At some point I realized, that Evan looks quite like Ryan Gosling but with emotions )
6:56 most legit gameplay
screenshot -> opencv -> find shapes -> click centroids
5:37 the way the pointer just caressed those squares was hilarious and mildly erotic 🤣
🎉 It's a good day when there's a codebullet video!
I think this is the first Code Bullet video I’ve seen with a face cam. 👍 4:31 I’ve seen this in so many other videos. People swear in their videos but censor the subtitles. Kinda funny that’s how YT works. 😂
2:46 is such a meme-able scene 😂✨
Bro did you just say meme-able 😭😭😭
After you've destroyed the last test, you should do all of them in a row to get a perfect 100% for all tests.
Oh boy, new Code Bullet video!
This should be Code Bullets Day On. I love all the vids.
Why is bro GORGEUOS
This is my first time seeing CB's face after years of watching his main channel and HOLY SHIT HE'S AUSTRALIAN
levels 60+ are basically QR codes xD
How have I watched code bullet for all these years and not known he's John Kransinki's nerdy australian twin?
8:00 it should be pretty obvious why-the grid stopped being a square.
its still 18x18 and i think the zooming for recording was just the reason it looked wrong. u can see that hes slowly been zooming in for the past few levels but since he cut the footage from lvl 101 to 104, the next shot we got of 105 is more zoomed in with a jump instead although it does look like the bot missed the top and bottom rows too which is weird
This is my first time seeing what he actually looks like damn
hes so hot
m.ua-cam.com/video/ZpsJkhk9uBM/v-deo.html
Got the gigachad facial structure
This is how dream stans thought dream would look
So, CB, when are they gonna let you showcase at a GDQ? I mean, they do TAS runs all the time, why not have a showcase of this? I'm all for it.
I’d have drawn an outline between groups of white pixels and click in the middle of each outline
I wonder how much harder it would be to make an ML version of this... Like the input is the screenshot, and the output is the coordinates of the white squares? So it would be like a multiclass-multilabel classification problem?
It could be cool to try to resolve captcha and pass for a human.
Why does Code Bullet unironically look like Ryan Gosling
Good quality video! I think this belongs on your main
Starting a petition for Code Bullet to make a clicker/incremental/idle game.
How should the game exactly be like?
@@overthr0w138 idk, a fantasy adventure type increment game? 🤷♂️
As long as he makes it, maybe while streaming it, it would also be fun to see his taught process.
the song in the veido : hot hot hot by lofive
How did you get a sponsor here? That's a Christmas miracle!
We need to have a channel named "code bullet uncut" 😂❤
i love the fact that you can do sth really hard like coding and have a hard time using your face cam and microphone :D
Always a good day when a new upload
Starts stroking the tiles....
Sooo, is it just me or does Code Bullet look a bit like an aussie Ryan Gosling?
I need CB clapping @2:46 as a reaction meme
when the memory test matrix dodges out of the way of the ai bullet but then the ai decides to just shoot the legs where the test has no chance to move away
Holy Jesus I thought he’d be a nerd but he’s a chad
Can you post the Code sheet pls?
4:31 Definitely the UA-cam gods can read
What on earth did the slow code do to be that slow lmao
there were a bunch of sleeps I believe
@@GCOSBenbowoh yeah lol I wasn't watching too closely and didn't notice the part where chatgpt codes a bunch of sleeps
4:20 "why! what are you doing!"
idk, maybe you should ask the guy who wrote it (it was chat gpt)
after you finish the series, write a bot which from the home page, will 100% the entire benchmark
code bullet moment
ironically, someone can just take a quick screenshot and cheat their way into much higher levels....
just hit the print screen key and shove the image into paint or something, cause it doesn't seem like there's a time limit
6:00 - Python error
_And this is why syntactic whitespace is a bad idea._
The results of the tests are probably skewed because people who are good at these things are more likely to keep doing them and get better. Just because that's how humans tend to operate.
in OBS: *LOCK* the camera capture. that also locks the zoom and panning etc. my logitec 920 pro does the same thing
You think you have some sort of intelligence but give up at 100? That sounds cool.
i am F love it.
Just do level number plus 2 squared. (N+2)^2 this would work for any grid size
Code Bullet will go to every length to avoid having to make his program just read the website's source.
ah yes photographic memory very nice
OMG.. face reveal... I like the cartoon version :P
6:03 Everytime someone complains about indent-based code, I wonder how they have managed to never put something on the wrong side of a bracket or parentheses, or forget a semicolon
Our code legend
Seeing your face is still really weird lmao I'm super happy you do it but it's so strange without a bullet on your face
Chris Hemsworth/ Ryan Gosling mix of a man
At this rate, i see you making an ai vtuber like vedal did.
it kind of feels like watching a newborn sometimes🤷
What's the background music called? It sounds nice
An audio note. Can you please not have the music become louder than the highest peak of the person speaking. As the volume increase is off putting and becomes too loud. As the human voice varies in volume but the music doesn't so it is way louder in comparison. Talking about 6:42 when its just music playing. Lots of UA-camrs do this and its always annoying.
Please make a video explaining how to do this 🙏🙏
do chimp test next
Should someone tell him that he can use something like puppeteer to make this so much easier? No need to count visually when you can just run [...document.querySelector('.square')].length
Personally I wouldn't bother with the grid, instead I would look for a screen with white in it, then another with no whites. Then just compare the past view with the live one, and where it doesn't match, click there.
M8 this is the first I’ve seen your face after YEARS of enjoyment … you weren’t supposed to be handsome
we use the same browser on the same theme
I didn't know Code Bullet was Chris Hemsworth
The issue with this is, that you can have more than one shot at any of the tests. That doesn't make it inherent skill, but learned. So the tests are flawed. Imagine you could take your mensa tests until you are satisfied with the results.
what the fuck. here I was assuming you looked like that one south park WOW dude and you hit me with the gigachad chin.
Why was the pattern at 6:33 the pixelated united states?
Washington and Oregon: 🫥
Personally I would've screenshotted the start of each level and used that. lol