Unbelievable, one random guy can do what the biggest SW company in the world is not able to do. A 5 minute hands on video about windbg, which teaches enough to get started. Including proper English, resolution and good audio quality. And without 20 minutes of BS.
@HarperLee18407 ай бұрын
You just make hours of reading and searching on MSDN into 5 mins, great video sir.
@guilhermecarvalhotrindade26257 ай бұрын
Odd time to upload a video, but I’ll take it. Thanks for your work: the world needs more no-nonsense guides like this.
@lalitshankarchowdhury59392 ай бұрын
Keep these videos coming man! A real treasure trove of knowledge!
@paulushdk7 ай бұрын
Your channel will BLOW UP!! what an amazing video and youtube channel!!
@tom_zanna7 ай бұрын
Direct, simple and pragmatic... simply fantastic! From today you have a new subscriber to the channel
@useruseruseruser-i6s7 ай бұрын
I like the simplicity of your videos
@abcdefg-nu4xj7 ай бұрын
thanks for the video. something i've been looking for (you can take it as a video suggestion) is a video comparing syscalls in linux vs windows, focusing on the difference between how the syscall ID and arguments are passed using registers in linux and windows.
@nirlichtman7 ай бұрын
Cool idea I'll add that to my list, a video similar to this is also planned for Linux
@genohm56647 ай бұрын
This is amazingly cool!!! plz more of things like that.... windows internals are sooooo much harder to learn than linux ones
@christianfoster36247 ай бұрын
First time seeing WinDbg, and based on other comments, showing how to actually quick start work with it.
@dasrabaskus7 ай бұрын
Underrated channel :)
@starc0w7 ай бұрын
Fantastic! Thank you very much! 🍀
@satishadhikari51807 ай бұрын
You make great videos man!
@ghostsdefeated40787 ай бұрын
another banger vid, thanks!
@adamhafchadi49247 ай бұрын
Hey Nir, First, Thanks for another great video can you make more tutorials about winDg? maybe focusing on blue screen debugging I didn't find any good examples of how to debug blue screen so I just re install windows :(
@nirlichtman7 ай бұрын
That's a cool idea, I will add to my list
@jasdfff7707 ай бұрын
Very cool video!! I would still happily watch it if it were 1 hour long and more detailed! Thanks.
@GuildOfCalamity7 ай бұрын
Nice video, would love to see this done on the FileSystemWatcher process.
@SaiponathGames7 ай бұрын
As a new C programmer, where could I find the documentation of the C standard library? I am using multiple sources like GeekforGeeks, Javatpoint, etc. I would love to have a one source whom I can depend on. Do you know any?
@nirlichtman7 ай бұрын
I like using either the man pages, or devdocs.io
@SaiponathGames7 ай бұрын
@@nirlichtman I'm actually using Windows MSVC compiler, so would that change anything?
@SaiponathGames7 ай бұрын
@nirlichtman Also could you possibly make a video on writing C code which can run by all c compilers with proper directives? Because I heard that some features are specific for MSVC which must be disabled if the code is not complied using cl.exe. Also could you make a video on how to install C compiler using VS Build Tools, I tried to install it but I can't find cl.exe nor vcvarsall.bat.
@MarekKnapek7 ай бұрын
cppreference is good documentation for both C and C++.
@nirlichtman7 ай бұрын
@@SaiponathGames In most cases for using the C library functions, the standard docs you can find in devdocs are sufficient, there are some specific Microsoft C library extension functions that are not part of the standard functions (for example _wsopen_s) which you can find information about on the Microsoft C/C++ library docs for example for this function learn.microsoft.com/en-us/cpp/c-runtime-library/reference/sopen-s-wsopen-s
@JohnWalton_NET5 ай бұрын
this is awesome!
@dylanh3337 ай бұрын
People complain about GDB, but I find the command-names/mnemonics for WinDBG far more obtuse. GDB uses `bt` to show a backtrace of the stack, whereas WinDBG uses `k`, for instance. Any good "cheat sheet" suggestions for WinDBG?
@nirlichtman7 ай бұрын
Yah I forgot to mention that a handy windbg command is .hh, it's like man, you can run for example ".hh k"
@kinershah4646 ай бұрын
Nice video, WinDbg is so similar to gdb or maybe better 🤔. So to summarize working, user level function calls the windows api functions which in turn calls kernel functions which actually execute the operation (syscall). Right?