Why that "Perfect" Makefile Doesn't Work.

  Рет қаралды 47,874

Jacob Sorber

Jacob Sorber

Күн бұрын

Пікірлер: 148
@bas7650
@bas7650 Жыл бұрын
2:09 "If it's still giving you errors, think about whitespaces" this helped me fix an issue!
@anupkodlekere8604
@anupkodlekere8604 4 жыл бұрын
"You spend hours pulling your hair out if you have hair" lol
@khoavo5758
@khoavo5758 3 жыл бұрын
@Loraine Longworth Google for what? You being a terrible boyfriend?
@eladi99
@eladi99 4 жыл бұрын
You're actually touching the tip of a bigger iceberg -- unattended trailing whitespaces in source code. This is something that can raise conflicts in source controls. The best advice would be to configure your editor to remove them on save, because they should *never* stay around toward your commit.
@JacobSorber
@JacobSorber 4 жыл бұрын
Very true. Thanks for mentioning that.
@Trezker
@Trezker 4 жыл бұрын
Ah, good tip. I wonder what other annoyances we live with that editors have a setting for but we never think to look for it.
@smrtfasizmu6161
@smrtfasizmu6161 2 жыл бұрын
That doesn't matter for source code of programming languages. C, Java don't care about white space.
@meiowalot7570
@meiowalot7570 2 жыл бұрын
I fanatically use git diff before committing as it highlights trailing white space.
@tildessmoo
@tildessmoo 2 жыл бұрын
@@smrtfasizmu6161 Yes, I know, two years late, but... While whitespace doesn't matter for most source files, Elad Galili was talking about source control, things like git, mercurial, and subversion. They don't check how your files compile, just if they're different, and having a single stray whitespace from, say, accidentally hitting the spacebar while reading through a section of code to make sure what you're writing in a different file or even compilation unit won't cause problems, can cause unnecessary merge conflicts and automatic version changes that you then have to go back and fix manually. It's not a huge deal to fix most of the time anyway; most text editors it's a pretty easy bit of scripting to automatically strip trailing whitespace.
@axalius572
@axalius572 4 жыл бұрын
I think I saw it! Tabs vs spaces. This gave me a headache in the past.
@JacobSorber
@JacobSorber 4 жыл бұрын
Me too.
@benjaminshinar9509
@benjaminshinar9509 4 жыл бұрын
same. it's like restarting the computer, before you try anything with a makefile, check the tabs.
@jenselstner5527
@jenselstner5527 3 жыл бұрын
You could enable the trimming of trailing white-spaces when saving the file in the preferences of VS Code.
@BottleOfCoke
@BottleOfCoke 2 жыл бұрын
This is a really high production-value to a students question!! I wish all of my professors would answer my emails like this!
@mrcrackerist
@mrcrackerist 4 жыл бұрын
I have actually never encountered this, but interesting thank you.
@JacobSorber
@JacobSorber 4 жыл бұрын
You're welcome. Sometimes people encounter this, but don't realize it because they manage to fix it without realizing what they did. I know my first few run-ins with it back in ---a long time ago--- I ended up just retyping part of my makefile and it worked, and I just moved on, not realizing what I did wrong in the first place.
@supernovaw39
@supernovaw39 2 жыл бұрын
Oh, some of my most memorable experiences programming were when I almost went crazy trying to solve a silly problem :) Like when I split a file with CRLF endings with " " and my strings ended with . It absolutely messed up my output and I didn't even know that carriage return is a thing.
@matiascoarasa7503
@matiascoarasa7503 4 жыл бұрын
Great work man! Love your channel topics and vibes!
@JacobSorber
@JacobSorber 4 жыл бұрын
Thanks, Matias.
@enderger5308
@enderger5308 3 жыл бұрын
Tip: highlight the whole file in your editor and look line-by-line for that one bit of whitespace.
@rishithaminol15
@rishithaminol15 4 жыл бұрын
Hi Jacob. I really like your videos. It guides me to lots of sections of computer science. This is really helpful please never give up, keep it up.
@JacobSorber
@JacobSorber 4 жыл бұрын
Thanks, will do!
@meiowalot7570
@meiowalot7570 2 жыл бұрын
Thanks for another really good video. When you showed the make files I immediately guessed “I bet the indents aren’t tabbed in, but spaces were used”. I was wrong but it looks like another way whitespace can cause trouble. :)
@lsatenstein
@lsatenstein 3 жыл бұрын
Thank you Dr J. for this topic. Makefile whitespace has transferred to my scalp. I am a Makefile user who has struggled for hours to get one specific one working well and I failed. I will review my irritant Makefile. The fault: By changing one source file, of a dozen, the Makefile causes all sources to be recompiled. Fortunately, the code is stable. It is not your problem. But you incentivize me to revisit it again. Hopefully, my buglet will be discovered in a short time-span.
@OpenGL4ever
@OpenGL4ever 3 жыл бұрын
A better way to avoid a problem like this is to simply configure your editor in a way so that it removes all white spaces at the line ending automatically when saving the file. Theoretically this reduces also the file size. You usually won't notice the latter on a typical file system that is using whole blocks to store data, but when packaging the file with tools like tar or zip and transfering to another machine via network this can save some bytes.
@prakhargupta2960
@prakhargupta2960 3 жыл бұрын
Jacob you're the CS teacher I never had! Thanks for being yourself!
@JacobSorber
@JacobSorber 3 жыл бұрын
You're welcome. Glad I can help.
@marshalstewart7776
@marshalstewart7776 4 жыл бұрын
Had a problem with a make file yesterday that I copied online to learn about Linux kernel modules. This was the issue. Thank you!
@JacobSorber
@JacobSorber 4 жыл бұрын
You're welcome.
@papasmurf9146
@papasmurf9146 2 жыл бұрын
I would use a utility to build the Makefile versus hand coding it. That way you also get the appropriate .h dependencies into the Makefile. I wrote a utility to create the Makefile back in the 90s and have been dragging it around with me since then.
@yash1152
@yash1152 2 жыл бұрын
Tip: also, many editors have this option of remove trailing whitespaces on saving file or exiting or smth like that. Be sure to look into that too (:
@kathiravankathir3089
@kathiravankathir3089 4 жыл бұрын
Experienced a similar issue ,when setting tab = 4 spaces in the vim editor. we can differentiate the whitespaces and tabs by executing "set list" command in the vim.
@victorocampo5263
@victorocampo5263 4 жыл бұрын
What do you think about make alternatives, like premake or CMake?
@lordadamson
@lordadamson 4 жыл бұрын
CMake is a joke that went too far. Sort of like JS. You will probably have to learn it one day if you do C/C++ professionally. It's a defacto. I sad defacto. My experience with premake is good. As long as you don't do crazy things with lua.
@JacobSorber
@JacobSorber 4 жыл бұрын
I'll have to try out premake. I'm also not in love with cmake. I use Rake sometimes. Build systems are like friends. Most have both lovable things and annoying quirks. I guess who you invite to the party, depends on the kind of party you want to have. 🤔
@Orionus83
@Orionus83 4 жыл бұрын
I don't like make but really like CMake. It looks a little messy the first time, but in the end it's pretty cool.
@TranscendentBen
@TranscendentBen 2 жыл бұрын
I can only wonder if these other make utilities have the same "features" as the original make in order to 'maintain compatibility'.
@fededevi1985
@fededevi1985 2 жыл бұрын
I don't understand the hate on cmake especially considering people still use make instead. It might not have the best syntax ever but it works well and it is super easy to learn. It is so much better than make (even without taking into account that it is the de-facto standard) that it doesn't make any sense not to use it over make even for the simplest single file projects.
@sghsghdk
@sghsghdk 4 жыл бұрын
Many editors have and option to remove tailing whitespace from files when saving.
@Saturate0806
@Saturate0806 4 жыл бұрын
Before staging you can run git diff and the whitespaces are shown with red background
@dannyhunn6025
@dannyhunn6025 3 жыл бұрын
Just a note on Vim you can use :syntax on :set syntax=whitespace
@ravishankarnolastname1917
@ravishankarnolastname1917 2 жыл бұрын
This really saved me money from a visit to the therapist! Thanks Jacob!
@adamtuft
@adamtuft 4 жыл бұрын
Thank you for your videos Jacob, they are really informative! Would you consider making a brief video on the "inline" keyword in C - what it's for, how it works, and how it should be used? Or can you recommend a source for a clear explanation? I've been reading up on it but I can't get a clear understanding myself 😕😕😕
@JacobSorber
@JacobSorber 4 жыл бұрын
I've added *inline* to my list. Can't promise when it will come out. Hopefully, in time to be useful to you.
@adamtuft
@adamtuft 4 жыл бұрын
​@@JacobSorber Thank you so much!
@RMG0785
@RMG0785 4 жыл бұрын
Unrelated - What is your camera and lighting setup Jacob? Looks really good. Sharp + well-lit
@chair547
@chair547 Жыл бұрын
every time i have to drop back down into c i become exponentially more thankful for cargo
@samsawesomeminecraft
@samsawesomeminecraft 3 жыл бұрын
what if I downloaded some source code from the internet and try to use the Makefile there and it produces an error?
@JacobSorber
@JacobSorber 3 жыл бұрын
Well, that depends on the error (and the Makefile).
@samsawesomeminecraft
@samsawesomeminecraft 3 жыл бұрын
@@JacobSorber so there's no easy fix?
@JacobSorber
@JacobSorber 3 жыл бұрын
@@samsawesomeminecraft Sadly, there isn't. There are a lot of different ways that a Makefile can be broken. If you point me to the online resource, I might be able to address it in a future video, though.
@samsawesomeminecraft
@samsawesomeminecraft 3 жыл бұрын
@@JacobSorber I had trouble compiling this from source github.com/nigels-com/glew
@MECHANISMUS
@MECHANISMUS 3 жыл бұрын
In Geany there is 'Strip Trailing Spaces' command.
@abarocio80
@abarocio80 2 жыл бұрын
You could also use Emacs, which by default trims all white spaces in Makefiles on save.
@samplesandtests
@samplesandtests Жыл бұрын
three things, first thanks for the video, this may have been a issue i had with make and decided to just make bash build scripts instead. second while on the topic of bash i just came across a whitespace issue with bash ( not putting spaces around brackets in conditions). third i believe newer versions of nano will highlight trailing spaces on a line by default (at least most of mine do).
@artemiocabrillosjr.244
@artemiocabrillosjr.244 4 жыл бұрын
Hi Jacob, You really did gave a lot of people gold (coz u save them a lot of time 😂). I also encountered this in my project which had a makefile untouched for almost 3 years and suddenly becoming erroneous. I spent many hours debugging and the solution is, white spaces. One thing to take note also is when update packages, make utility might also behave different. In my case GNU make 3.81 is OK and for some reason i performed a yum update which updated GNU make to 3.82 which causes the error. Anyway, more power in making these videos. Best Regards!
@JacobSorber
@JacobSorber 4 жыл бұрын
Thanks, Artemio.
@glowiever
@glowiever 3 жыл бұрын
I've never been able to follow some of those bigger project's makefiles. theirs seem to try to cover all edge cases.
@AnimeGIFfy
@AnimeGIFfy 3 жыл бұрын
Vscode has a setting that clears trailing whitespaces on save
@wjrasmussen666
@wjrasmussen666 Жыл бұрын
Used to show all whitespace characters in vi or emacs
@kaushikjames5623
@kaushikjames5623 2 жыл бұрын
advanced information thanks again
@arnaudparan1419
@arnaudparan1419 2 жыл бұрын
that's why my Vim is always configured to rendre whitespace characters
@michaelclift6849
@michaelclift6849 2 жыл бұрын
I learned makefiles from what I consider to be a great sample. The makefile written by Eric Weddington for WinAVR2010. Actually, instead of learned, maybe I should say I hacked it do do what I want...
@jon-sw5yw
@jon-sw5yw 4 жыл бұрын
This happened to me as well. The "same" makefile didn't work on my friends PC and I had to email him my file and only then it worked
4 жыл бұрын
Good practice is to pass your 'configuration' variables (variables which are changed more often, or for each project) through $(strip) function. You will never have similar problem anymore.
@Golden_builds
@Golden_builds Жыл бұрын
how can i open a makefile to see the codes!
@metalpunk
@metalpunk 4 жыл бұрын
Man, I was so sure it was that the broken version used spaces instead of tabs. :(
@shawnmichaels5484
@shawnmichaels5484 2 жыл бұрын
Hey jacob, can you share your shell theme? Thanks in advance :)
@kashinathchillal9867
@kashinathchillal9867 10 ай бұрын
I use vimdiff to see the difference between 2 files. Will that help?
@MegaJehanzaib
@MegaJehanzaib 4 жыл бұрын
Notepad++ -> view -> Show Symbol -> Show all symbols
@JacobSorber
@JacobSorber 4 жыл бұрын
Cool thanks.
@hemanshu877
@hemanshu877 4 жыл бұрын
That's why I use CMake
@nosheenarif1920
@nosheenarif1920 8 ай бұрын
Hello there, Kindly tell me what does makefile. Win has changed mean? And how to fix it?
@JonitoFischer
@JonitoFischer 2 жыл бұрын
I've used python Invoke for task automation and build scripts, and recently I'm giving a try to xmake (Lua)... I always felt like writing makefiles was harder than trying to write in Klingon... And any python programmer knows to set it's ide or text editor to show whitespace all the time.
@tosemusername
@tosemusername 3 жыл бұрын
Editors nowadays also have the option to remove pointless whitespace characters when you save the file.
@victornoagbodji
@victornoagbodji 3 жыл бұрын
😊 🙏 😊 thanks for explaining the issue. make should have a built-in linter...
@JacobSorber
@JacobSorber 3 жыл бұрын
Agreed. It definitely seems like there are some easy things that make could check for us automatically.
@TranscendentBen
@TranscendentBen 2 жыл бұрын
This sort of thing gets me riled up. I SWEAR i thought this was going to be the spaces-instead-of-a-tab thing that Make looks for in indented lines. (RANT incoming) The ASCII TAB character should be outlawed. As far as I know, MAKE is the only thing that requires it. TAB has an awful history. TAB originally meant "go to the next TAB position which is every 8 character positions from the start" which is 1, 9, 17, 25, 34, ... Every ASCII device (well, maybe not the ASR-33, I don't remember what it did) followed this standard, so any series of characters, spaces and tabs showed as the same thing on every CRT terminal and the DECwriter followed that convention. But then the microcompter came along, and then the word processors probably Wordstar, which took TAB to mean whatever the programmer(s) wanted it to mean, some odd predefined tabstop or four spaces or whatever This was in the word processor's own proprietary file format, which was almost forgivable, but it was surely not properly converted when the file was saved as ASCII. Nowadays even "straight text" programming editors let you tell it how far to move with the tab character. At least most can be configured to insert the appropriate number of spaces into the file instead of the tab, so it's possible to ... write Python with good formatting. No one uses tab to mean 8 spaces anymore anyway. Modern indenting is four, or maybe 3 or 2 spaces. So really the thing has lost all usefulness, and causes more problems than it solves. I can see where it originally saved extra space characters, but source code size in memory or on a hard disk is no longer a problem, and version control systems do data compression anyway. So I have Notepad++ set to insert spaces to get to the next four-space "tab stop" and I'm happy that my code will look the same in any text editor. But then in recent years I have this growing program I was splitting up into several source files, and I go back and look at the Make documentation for the first time in a few decades, and it REQUIRES a tab character ... If I had a dollar for every "you can fix ThisEditor to strip trailing spaces" comment I could invent a time machine and pay whoever first wrote Make to have it accept "one or more tabs or spaces" for an indented line, and always ignore trailing spaces.
@carlh8256
@carlh8256 4 жыл бұрын
Is it necessary for Make to work in this way? If not why dont they change Make for such an agonizing problem?
@TranscendentBen
@TranscendentBen 2 жыл бұрын
Likely because it's a "legacy" thing and they're afraid to change it out of fear of somehow breaking something. There's no reason not to make Make more reasonable, it's not like it's part of any language spec, or part of Posix or anything, at least I don't think so.
@kushagrakumar9576
@kushagrakumar9576 4 жыл бұрын
:set list , in case you are using vim editor. Encountered it multiple times. Trivial yet good to know for anyone working with make files.
@JacobSorber
@JacobSorber 4 жыл бұрын
Good point. Thanks.
@kermitdafrog8
@kermitdafrog8 4 жыл бұрын
Does this happen with CMake?
@AtomToast
@AtomToast 4 жыл бұрын
I just have my editor (neovim) set up to both display whitspaces aswell as auto trim trailing spaces in any file I edit. I didn't know about this issue with make but that might be because I never had to encounter it
@humm535
@humm535 4 жыл бұрын
It’s not easy to encounter imho. How would one come into a situation where one doesn’t know what whitespace is used? o_O
@catorials444
@catorials444 4 жыл бұрын
damn, somebody has to rework the makefile parser
@aidenpearce5701
@aidenpearce5701 4 жыл бұрын
I dont understand where src and obj value came from that assign into SRC and OBJ
@JacobSorber
@JacobSorber 4 жыл бұрын
Those are just the names of the subdirectories that I'm using to build my project. SRC and OBJ are the variable names, the lowercase "src" and "obj" are just string literals.
@aidenpearce5701
@aidenpearce5701 4 жыл бұрын
@@JacobSorber i see, i thought src and obj are special string 😅
@skaruts
@skaruts 3 жыл бұрын
The only reason I don't code in C is because compiling it always feels like a can of worms, and at this point I have no patience to try to solve the issues... :( EDIT: lol I just revisited a broken python script for compiling C that I made a while ago, and made it work. I am now able to compile C. To paraphrase a portuguese saying: when you don't have a dog, you hunt with a python. :D
@ghalebevaldo4416
@ghalebevaldo4416 Жыл бұрын
Great!
@mgcmsn
@mgcmsn Жыл бұрын
This is why I try to use Taskfile instead of a Makefile if possible.
@the_allucinator
@the_allucinator 4 жыл бұрын
This reminds me of the aircraft disasters that resulted from loose screws.
@prakhargupta2960
@prakhargupta2960 3 жыл бұрын
:)
@lmlizwpfhsjmcyt7545
@lmlizwpfhsjmcyt7545 2 жыл бұрын
I don't understand. How long has Make existed for? Why does Make still have a whitespace issue.
@humanontheinternet6510
@humanontheinternet6510 3 жыл бұрын
yah i face the same in docker-compose file
@perfectionbox
@perfectionbox 3 жыл бұрын
surely someone has written a program or script to "lint" makefiles for things like this?
@leonardocaetano9771
@leonardocaetano9771 4 жыл бұрын
The truth is that for the most of time, build tools aren't even needed. You can compile just fine using shell scripts. I don't know why people love complicating things.
@FernandoBasso
@FernandoBasso Жыл бұрын
I have seen problems with whitespaces after \ escape, which was supposed to be escaping a the newline, but there it was actually escaping a whitespace. It is a good practice to configure editors to display and optionally clean whitespace, potentially making use of plugins like editorconfig. It is not uncommon for me to open a file and get mad of the carelessness with trailing whitespace, to which I usually respond with a :%s/\s\+$::g 😅
@ronwellman
@ronwellman 4 жыл бұрын
See whitespace characters in vim. :set list
@JacobSorber
@JacobSorber 4 жыл бұрын
Thanks.
@AndreasWilfer
@AndreasWilfer 4 жыл бұрын
Ah, that explains a lot..
@funhuninjastudio
@funhuninjastudio 4 жыл бұрын
Can you make a video for fasm? Nice vid tho ;)
@JacobSorber
@JacobSorber 4 жыл бұрын
I'll add it to the list and see what I can do.
@sajjadjawadkadhim303
@sajjadjawadkadhim303 3 жыл бұрын
I just make vim remove whitespace at the end of every line if it exists when i save the file automatically
@activelivingchallenger4298
@activelivingchallenger4298 4 жыл бұрын
Reminds me of bashrc file. Alias and path issues and figured out it was just a white space issue. Frustrating
@ALTTABINMAINMENU
@ALTTABINMAINMENU 4 ай бұрын
Is it only me or why is it that every single repository on github with Makefile can NEVER be built from source with make? Like, ever?
@cobblebrick
@cobblebrick 4 жыл бұрын
You should really start a subreddit or a discord server
@harshwardhanshetty4683
@harshwardhanshetty4683 Жыл бұрын
"if you have hair" 😥😥
@nandanvasudevan
@nandanvasudevan 3 жыл бұрын
Teach us CMake!
@freitas-renato
@freitas-renato 4 жыл бұрын
You can toggle "render whitespace" on VSCode to see all spaces/tabs on the file, it is really useful to trace bugs like this. Great video btw
@JacobSorber
@JacobSorber 4 жыл бұрын
Yes, you can. Thanks.
@sababugs1125
@sababugs1125 3 жыл бұрын
I had this bug once then promptly wen full on monke
@danmerillat
@danmerillat 4 жыл бұрын
make -r turn off builtin rules then your debug isn't full of 1970s era version control rules.
@XenoTravis
@XenoTravis 4 жыл бұрын
I would be very happy to never hear the word 'makefile' again.
@venkybabu8140
@venkybabu8140 2 жыл бұрын
Invisible control character.
@hameedyousfi2779
@hameedyousfi2779 4 жыл бұрын
Sir plz start embbeded programming on c language create own header files create own function on c plz sir start that tutorial i am waiting for this tutorial quite while
@dankodnevic3222
@dankodnevic3222 5 ай бұрын
If, by any chance, make was a Microsoft tool, hellfire would break loose. Now I'm reading excuses and workarounds. Like claiming the car is good, despite breaks, sometimes, don't work over 60mph, but if you slow down, it might. I understand that make si an old tool, but warship it in the museum, don't recommend it anymore.
@lixocontextualista
@lixocontextualista 2 жыл бұрын
The perfect Makefiles are the ones you make along the way
@ivankryvosheia446
@ivankryvosheia446 2 жыл бұрын
Love american humour. And..good tips! I should have known it earlier
@afiqzx
@afiqzx 4 жыл бұрын
got it right on first try lol because i had this problem
@aladinsafi2967
@aladinsafi2967 4 жыл бұрын
use vpath it better or -I in gcc
@edwardmacnab354
@edwardmacnab354 2 жыл бұрын
Why couldn't you just diff the two versions ? because the two files obviously mismatch !
@abanoubsameh6608
@abanoubsameh6608 4 жыл бұрын
Just vim or grep.
@max_ishere
@max_ishere 4 жыл бұрын
WHAT?
@juri4729
@juri4729 3 жыл бұрын
"... i know years of experience" ***proceeds to make rocket science out of white space*** isn't one of the first things you learn about make that it's white space sensitive
@humm535
@humm535 4 жыл бұрын
not POSIX compliant Makefile, REEEEEE
@nutelhere
@nutelhere 11 ай бұрын
I just hope one day make stops existing
@yash1152
@yash1152 2 жыл бұрын
5:24 wow, how come you dont mention 'cat --vet' 😂😂 oh wait, it doesnt shows whitespaces, rather just the tabs and newlines
@jenselstner5527
@jenselstner5527 3 жыл бұрын
make and python, (almost) same shit with white-spaces
@JohnHollowell
@JohnHollowell 4 жыл бұрын
I feel like you are probably not a yaml kinda guy... whitespace dependence even more picky than Python
@JacobSorber
@JacobSorber 4 жыл бұрын
Yeah, I know. I do use YAML when it makes sense (just like I use python and make). But, their whitespace-based issues feel like unnecessary self-inflicted wounds.
@tobiaskarl4939
@tobiaskarl4939 3 жыл бұрын
I hate these tabs and these LFCR from microsofts textfiles .... grrrrrr dos2unix is my friend and cat file.txt | tr -d "\t"
@nathanflett6427
@nathanflett6427 4 жыл бұрын
Personally I see this as a newbie issue. You shouldn't be leaving whitespace at the end of the line unless you mean to anyway.
@JacobSorber
@JacobSorber 4 жыл бұрын
Sure, but to be fair, I could say the same thing about seg faults, memory corruption, memory leaks, and just about any kind of programming mistake out there. Most everything is easy once you understand it.
@nathanflett6427
@nathanflett6427 4 жыл бұрын
@@JacobSorber True. Keep making the videos. I wish I had had videos like this back in the day.
@MoazinKh
@MoazinKh 4 жыл бұрын
First Viewer!
@JacobSorber
@JacobSorber 4 жыл бұрын
Nice.
@wah704
@wah704 Жыл бұрын
Would cat -e Makefile work?
What is an object pool, and how to create one in C?
23:14
Jacob Sorber
Рет қаралды 16 М.
"Идеальное" преступление
0:39
Кик Брейнс
Рет қаралды 1,4 МЛН
OCCUPIED #shortssprintbrasil
0:37
Natan por Aí
Рет қаралды 131 МЛН
Making allocators and object pools faster using a free list
17:34
Jacob Sorber
Рет қаралды 1,2 М.
why do header files even exist?
10:53
Low Level
Рет қаралды 449 М.
Student programmers, ChatGPT is not your friend
13:46
Jacob Sorber
Рет қаралды 13 М.
How do I access a single bit?
11:07
Jacob Sorber
Рет қаралды 23 М.
10 Advanced Vim Features (You Probably Didn't Know)
21:47
Sebastian Daschner
Рет қаралды 78 М.
Coding a Web Server in 25 Lines - Computerphile
17:49
Computerphile
Рет қаралды 357 М.
Compilers, How They Work, And Writing Them From Scratch
23:53
Adam McDaniel (kiwi)
Рет қаралды 241 М.
before you code, learn how computers work
7:05
Low Level
Рет қаралды 601 М.
Makefiles: 95% of what you need to know
1:01:53
Gabriel Parmer
Рет қаралды 134 М.