00:07 I work in security, I literally LOLd when you said “undisputed buffer overflow champion like you.” 😂
@DeanGvozdicКүн бұрын
Great video! What kind of switches are you using in that keyboard though? Sounds amazing.
@Tariq10xКүн бұрын
Thanks bro. The switches are the stock switches that came with the rk royal kludge s98 keyboard, they call them "pale green switches". They are more clicky than the purple ones.
@DeanGvozdicКүн бұрын
@@Tariq10x thank you!
@udirt3 күн бұрын
I worked with the cavium sdk for a few days now, some old build, it would be hilarious to run this tool against any sdk by some large vendor, marvell, broadcast, citrix etc. (It would always end in tears, if you had to fix it)
@RichardBejtlich9 күн бұрын
1:12 this is why I have a job 😂
@rendivs9 күн бұрын
Lmao 😂
@divinefavour12894 күн бұрын
starfield?
@b33lz3bubth9 күн бұрын
undisputed buffer overflow champion like you! hahahahahahahhahahahahahahha nice one bro, i will use this.
@WR3ND3 күн бұрын
Nice keyboard.
@Tariq10x2 күн бұрын
Thx bro
@P3PPING2 күн бұрын
CTRL-L will save you seconds of your life by not having to type clear.
@thehady17 күн бұрын
Is it like valgrind or something else
@jackzugna58307 күн бұрын
Valgrind execute the code. "Cppcheck" is the static analyzer for C/C++.
2 күн бұрын
No, it is more like cppcheck. It is static analysis, not runtime memory check like Valgrind.
@NorthernChimp8 күн бұрын
This should exist for other languages too.
@Tariq10x5 күн бұрын
Static code analysis tools exist also for other languages ✌️
@kowaihana14 сағат бұрын
It does tho?? 😭😭
@NorthernChimp14 сағат бұрын
@@kowaihana yes
@vanodon22578 күн бұрын
0_o Windows XP has a quite a few and the 1st I tried still works in Win 11 no way 😂
@cheeto49508 күн бұрын
especially if its a friday afternoon 😭😭😭
@NGUmrra1n8 күн бұрын
If it is marking the rest of the code as dead, how is it a "static" code analyser?
@lucasew7 күн бұрын
Static means that it doesn't run the code itself
@Tariq10x5 күн бұрын
Well it highlights that the section of the code will not be executed under any conditions. Same would happen if you would write an IF condition that would never under any conditions be met.
@TaigiTWeseFormosanDiplomatКүн бұрын
oko
@marcelguinhos90224 күн бұрын
VirtualBox instead of WSL2 or MinGW?
@flipbit033 күн бұрын
And?
@WR3ND3 күн бұрын
No, WirtualBox.
@paca31079 күн бұрын
sorry man I have to dislike this video, because I saw Windows logo. I use arch btw
@Tariq10x5 күн бұрын
Understandable Sir, have a nice day.
@vickeythegamer75272 күн бұрын
@@Tariq10x same i have to dislike
@CorvusCorps22 сағат бұрын
Bunch of elitist haterrrrsss. I run win11 with wsl2 and raspberry pi os with some arch on the side. Windows #1😅
@Tariq10x2 сағат бұрын
My experience taught me to just use whatever is the best fit for the task at hand and don’t overcommit to any framework, language or os ✌️Me personally, I use all three, macos, ubuntu linux and windows.
@papydoctorКүн бұрын
use Rust 🙂
@divinefavour12894 күн бұрын
bro just use a debugger
@EmiNNsoNify3 күн бұрын
I think you are missing the point of tools like this one. They are commonly used as part of the CI/CD pipeline as a gatekeeper to catch possible bad code in an automated way. Because while you might be using the debugger a lot of people don't.
@divinefavour12893 күн бұрын
@@EmiNNsoNify i guess but i still think everyone should use the debugger. that way everyone can be certain what their code is actually doing. automated tests like this will remain subject to the subjective valuations of the person who wrote the test. and if this person's values are wrong or produce terrible code, then everyone who abides by the test will then also produce terrible code
@dennisestenson7820Сағат бұрын
@@divinefavour1289regardless of what you think about debugging, there are use cases where attaching a debugger is not possible.