Тёмный

Making Minimalist Text Editor in C on Linux 

Nir Lichtman
Подписаться 53 тыс.
Просмотров 58 тыс.
50% 1

Making a Minimalist Text Editor using C Library calls on Linux
You can view the code I wrote in the video over here: github.com/nir...

Опубликовано:

 

26 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 118   
@emirbrkic6649
@emirbrkic6649 10 месяцев назад
We need more chanel like this : C, Linux and vim, without an intro only pure clean code
@enderman4
@enderman4 10 месяцев назад
Linux (wsl2)
@mhm6421
@mhm6421 10 месяцев назад
​@@enderman4still is linux
@TheLukasBer
@TheLukasBer 10 месяцев назад
Check tsoding daily. Awesome channel with similar characteristics.
@phitc4242
@phitc4242 10 месяцев назад
I swear I'm on the verge of doing this, but I'm not thaz good as he is lmao
@MBrieger
@MBrieger 9 месяцев назад
Seriously, I am 58 years old and learned UNIX and C way back when. The Author needs to get some typing skills. There are more errors than actual Code.
@alangamer50
@alangamer50 10 месяцев назад
No Intro, no context, no nothing, he just jumped straight to the code and I love that. This was really useful and I literally just found out about the man command
@yuyuyuyuyuy484
@yuyuyuyuyuy484 10 месяцев назад
No intro, only keyboard sounds and simple explanations. Love it.
@Heysmileysmileylookatthisshit
@Heysmileysmileylookatthisshit 4 месяца назад
Well hey, it's supposed to be minimalist right
@rogerwinright2290
@rogerwinright2290 10 месяцев назад
Your channel is probably my new favorite programming channel. Quick to the delivery and gives good tips and tricks along the way!
@debajyatidey9468
@debajyatidey9468 8 месяцев назад
Finally found a channel where I can know & learn practical applications of C. Ig this channel is a blessing for me.
@nyzss
@nyzss 10 месяцев назад
I’m learning C and these tutorials are a blessing, thank you very much for the content. If there was one thing I’d like very much is maybe longer and more in depth tutorials.
@tech477
@tech477 8 месяцев назад
Thank you for not wasting our time with useless talking. Raw, basic, straight to the point - fantastic channel.
@starc0w
@starc0w 9 месяцев назад
Very cool channel, really great!🍀Thank you very much! Small note about the code: If you read in 1024 bytes with fread, which is exactly the size of your buffer, you run the risk of overwriting the 0-termination of buffer (as soon as the file is larger than or equal to 1024 bytes). This means UB with printf("%s", buffer).
@nirlichtman
@nirlichtman 9 месяцев назад
Thanks :) that is a good point! when reading strings, it is a good practice to read one less than the buffer length into the zeroed buffer to avoid this issue. Remember that as I mentioned in the beginning of the vid, the code is just for fun and not for production
@fuzzy-02
@fuzzy-02 7 месяцев назад
I loved the commentary and showing manual while writing the code without over explaining things as if everyone watching isn't at least a basic programmer. Basics provided and the rest for us. Thank you!
@shauncheng3504
@shauncheng3504 Месяц назад
straight to the point, that's why I like this channel!
@TheGrigerz
@TheGrigerz 3 месяца назад
Found this channel is blessing to me.. thanks you nir..,
@john.darksoul
@john.darksoul 10 месяцев назад
You make writing code in C seem enjoyable :D
@theoriginalneckbeard
@theoriginalneckbeard 9 месяцев назад
Such a great channel. Without all that cringy clickbaiting, without all those cringy thumbnails. Just great content. Keep it up!
@snowpirate2652
@snowpirate2652 10 месяцев назад
This looks really cool! I tried the web server example you showed which worked really well and helped me to learn a little more about C, so I'm looking forward to giving this a try when I can. Please keep posting these great vids!
@themannyzaur
@themannyzaur 10 месяцев назад
This is fantastic! Glad I found your channel
@JotaDevelopment
@JotaDevelopment 9 месяцев назад
Everything in this channel is so good. I'm currently learning C, just because I have time enought to learn, and this kind of videos help me a lot. Cheers, Nir!
@rafaeloledo
@rafaeloledo 10 месяцев назад
this is the type of channel i wish i was watching on my first days of programming :)
@dailydoseofshtposts6891
@dailydoseofshtposts6891 10 месяцев назад
Bro youre so underrated, i just found about you yesterday and i was fascinated, you have superb potential!
@cursedfox4942
@cursedfox4942 9 месяцев назад
That’s beyond minimalist and a lot of code for something so simple
@wispysparks
@wispysparks 10 месяцев назад
Engaging, straight to the point, keep up the good work man!
@hermessantos181
@hermessantos181 10 месяцев назад
Bro, your channel is exactly what i was searching, your videos are amazing, thank you for sharing it
@hakonh3252
@hakonh3252 10 месяцев назад
It is fine to ignore error handling and stuff like that for toy examples, but consider showing or at least mention the bounds checked versions of the string manipulation functions. The old ANSI versions are basically deprecated as they are too dangerous to be used in actual production code.
@zeektm1762
@zeektm1762 10 месяцев назад
What alternative for low level I/O do you recommend?
@Mike-gs7eo
@Mike-gs7eo 10 месяцев назад
strncpy over strcpy for example. The n variants of these routines require a size parameter used to bound access. @@zeektm1762
@hakonh3252
@hakonh3252 10 месяцев назад
@@zeektm1762 I didn't say anything about I/O. I'm talking about string manipulation, like strncpy, strncmp, memchr.
@linsoe-u4d
@linsoe-u4d 9 месяцев назад
@@hakonh3252 so what alternative for those functions? Can you explain more
@johnshaw6702
@johnshaw6702 9 месяцев назад
​@@linsoe-u4dThe functions he is using are fine under these known circumstances. If you don't know the string source, then you should use stricter methods. Today that means functions like strcpy_s, that require specifying the maximum length of the acceptable string. Thus avoiding buffer overruns. You can easily craft your own methods of avoiding such issues, I did just that for many years. Its only necessary in cases that you are not in full control of the data you are processing or if you are creating a library, which, by definition, means you're not in control of its usage. When I first started programming, I gave my personal guarantee that my code would not crash the system, because I validated and tested everything. I, of course, didn't guarantee against hardware or memory failure, which was out of my control. Then Windows came out I couldn't guarantee anything, because my code was dependent on Windows and it's drivers, which was totally outside my control.
@animeshsarkar295
@animeshsarkar295 10 месяцев назад
I like the teaching style. Thank you Sir for providing useful contents
@Maagiicc
@Maagiicc 10 месяцев назад
This is gonna be the next vim 😳
@SimGunther
@SimGunther 10 месяцев назад
More like ed: The "official" UNIX text editor 😅
@byronhambly
@byronhambly 10 месяцев назад
Hey, just found your channel, subbed! Small suggestion: why not split the screen vertically instead of horizontally?
@bity-bite
@bity-bite 10 месяцев назад
he can read more stuff if it's split horizontally
@slendi9623
@slendi9623 10 месяцев назад
@@bity-bite disagreed
@nirlichtman
@nirlichtman 10 месяцев назад
That's a good suggestion I actually mostly use horizontal split for some reason but I should definitely use vertical more especially for code with short lines, thanks!
@byronhambly
@byronhambly 10 месяцев назад
@@nirlichtman fair enough for your workflow! I agree that with shortish lines and a landscape screen, vertical split would work better for your videos. All the best and happy hacking!
@ullaskunder
@ullaskunder 10 месяцев назад
I wish I hadn't give up C
@SimGunther
@SimGunther 10 месяцев назад
It's never too late to pick it back up :)
@bartholomewjoyce
@bartholomewjoyce 10 месяцев назад
Okay, add syntax highlighting and this can be my main editor
@nirlichtman
@nirlichtman 10 месяцев назад
Hmm, interesting idea for another video :)
@razvandedu5285
@razvandedu5285 10 месяцев назад
Dude is coding without autocomplete... crazy!
@TheWinnieston
@TheWinnieston 9 месяцев назад
Thanks so much! Time to port this to 8080 assembly and put it on my retro computers! And then I can add any feature I want! *EDIT* I already added a simple command parser so you can insert, delete, edit lines and type out the file from any line number. ED here I come!
@Mike-gs7eo
@Mike-gs7eo 10 месяцев назад
Cool vid but this is super dangerous code. Strcpy should almost never be used. What happens if you edit a file here with a line longer than 1024 bytes :)
@juanchole1184
@juanchole1184 10 месяцев назад
Why strcopy is dangerous?
@Mike-gs7eo
@Mike-gs7eo 10 месяцев назад
@@juanchole1184 Strcpy does not take a length parameter and will keep copying bytes to the destination until it encounters a NULL byte in the source string. If the source is larger than the destination, then it will overflow which can lead to exploitable memory corruption
@nirlichtman
@nirlichtman 10 месяцев назад
The code is just for fun and not for production (as the disclaimer in the beginning of the vid) so I skip many additional checks besides the strcpy case :) If I would have written this for actual production use I would handle this by adding a check for the lengths before calling strcpy to make sure it would not overflow
@zombie_pigdragon
@zombie_pigdragon 10 месяцев назад
@@nirlichtman It would have been nice if (maybe even in editing) you'd added a disclaimer when writing particularly dangerous code, since there's a high risk people won't know what's safe/dangerous to write and will blindly copy the (entertaining, btw) video they've seen online.
@Tordek
@Tordek 8 месяцев назад
I understand this is a toy so the lack of error checking and such is fine, however one bad practice you really should cure yourself of is the preventative initialization of variables. When you ask for the line number, you do: int line = 0; scanf("%d", &line); Initializing line is unnecessary - it will be immediately overwritten - but it's a bad practice because by initializing it to "some" value you prevent the compiler from letting you know about any uninitialized accesses. It's preferrable to leave the variable uninitialized. Similarly with initializing the buffer: If I'd forgotten about null-termination, I'd much rather see data changing on every run (hinting at uninitialized access) than stuff appearing to run correctly. Also, a small detail: main _must_ return int. Returning void is an error.
@nirlichtman
@nirlichtman 8 месяцев назад
Thanks for the feedback, those are good points 👍 About the last point, main can actually also return "void" since C99 according to the C standard (in which case the exit code of the program will be undefined): devdocs.io/c/language/main_function
@Tordek
@Tordek 8 месяцев назад
@@nirlichtman Good to see some evolution in the language match usage. Nice video! Your channel looks fun.
@EinSatzMitX
@EinSatzMitX Месяц назад
Am i seeing this right? Youre on linux ( atleast using dwm) but youre also in a Windows terminal which is running wsl
@miguelddn1
@miguelddn1 10 месяцев назад
That's kinda how the text editor "ed" works.
@aGuyFromFBI
@aGuyFromFBI 10 месяцев назад
Very good Video, straight to the point 👍.
@foxmoss_
@foxmoss_ 10 месяцев назад
these vid have been making me use the man pages more :)
@therealnotanerd
@therealnotanerd 10 месяцев назад
It may look good, but your editor has no syntax highlighting. Just kidding 🙂. It was awesome. The last time I developed in c was a few decades ago and it is nice to see these "basic" videos. Maybe I will start developing in C again for fun. And your channel will be a valuable resource. Thanks.
@siddharthbisht1287
@siddharthbisht1287 10 месяцев назад
thank you, this is really cool❤❤❤
@sollybrown8217
@sollybrown8217 9 месяцев назад
Good video. Like the stb small libs in c one.
@mrstanlez
@mrstanlez 3 месяца назад
Usefull. Can you make it with gtk? Thank you.
@yoshikawachinatsuu
@yoshikawachinatsuu 14 дней назад
Why GCC didn't gave you a warning because main() doesn't return int, but returns void instead?
@abiiranathan
@abiiranathan 10 месяцев назад
No nonsense coding! No fluff
@littlecurrybread
@littlecurrybread 9 месяцев назад
It would be fun if you tackled one of the c projects at codecrafters like the bittorrent clone
@antonw8134
@antonw8134 10 месяцев назад
If you liked this video, you may also like the kilo text editor. Do a search and enjoy!
@tickerboi_
@tickerboi_ 9 месяцев назад
אין עליך אח, מטורף!
@nirlichtman
@nirlichtman 9 месяцев назад
תודה!
@tickerboi_
@tickerboi_ 9 месяцев назад
@@nirlichtman אין אני יזהה ישראלי ממרחקים 👀
@nirlichtman
@nirlichtman 9 месяцев назад
@@tickerboi_ 😂
@MattG-lc6rm
@MattG-lc6rm 3 месяца назад
im learning a lot from ur tutorials just curious how are u able to use "man" command on windows? Thanks
@nirlichtman
@nirlichtman 3 месяца назад
I use WSL :)
@TecnocraciaLTDA
@TecnocraciaLTDA 8 месяцев назад
lol, you just made a very basic version of ed
@jazzyBSD
@jazzyBSD 8 месяцев назад
great! it's like ed
@arnabbanik6403
@arnabbanik6403 10 месяцев назад
wow nice
@mrx2586
@mrx2586 9 месяцев назад
How did you split the terminal into both a text editor and a CLI within the same tab? and how are you switching between them?
@nirlichtman
@nirlichtman 9 месяцев назад
I am using the window splitting feature of Vim which is very powerful, for more information check out my video about window splitting on my playlist "Vim Tips"
@Cool-Linux-Penguin
@Cool-Linux-Penguin 2 месяца назад
Reminder that you should use this channel to get your self started not to just copy him and keep on copying him.
@prebenskill
@prebenskill 10 месяцев назад
Take my sub!
@king1king2king3
@king1king2king3 6 месяцев назад
Your videos are perfect but there's one exception the code editor that you use frustrates me and doesn't encourage me to continue the video. I think everything will be fine if you use a modern code editor.
@nirlichtman
@nirlichtman 6 месяцев назад
Thanks! Reason I use Vim is that it is my favorite code editor, coming to it after using IDEs, I decided 4 years ago to learn it properly and started really liking it and switched to using it as my main editor. Except my videos which are specific about Vim (which are mostly my early content), it should be easy to follow using other editors since the focus of these videos is about the programming.
@jcen_
@jcen_ 6 месяцев назад
​@@nirlichtmanVim is awesome, I switched from vscode to neovim about half a year ago and I'm never going back unless I end up working with something like java/c# which from my experience pretty much require an IDE. Other than that I've been doing some Go and C recently and neovim works great with them. And don't even get me started on the infinite customization possibilities.
@BlueBerryXD
@BlueBerryXD 5 месяцев назад
I'm going crazy, or is this man running a windows vm that is running ubuntu? Vm inspection?
@nirlichtman
@nirlichtman 5 месяцев назад
Windows 10 with WSL
@BlueBerryXD
@BlueBerryXD 5 месяцев назад
@@nirlichtman But it looks like you are running windows terminal inside of dwm? Or is it just for the lols?
@nirlichtman
@nirlichtman 5 месяцев назад
@@BlueBerryXD in this video I used a port of dwm for Windows called dwm-win32, since then I have stopped using dwm-win32 and started using a new twm I am working on called LightWM (due to many bugs in dwm-win32)
@ryuen-vn8em
@ryuen-vn8em 10 месяцев назад
Hi,I occasionally figured out that you can press Caps lock + k at the name of any function in your code and the man page of this function will be opened ,Maybe it will be useful for somebody
@cookedpotato
@cookedpotato 10 месяцев назад
With lsp extensions on nvim you can even do a hover like that of vscode. Also you can use the :Man to open a man page in split screen in vim or nvim , incase anyone wated to know too
@yashwanth8269
@yashwanth8269 10 месяцев назад
link for github repo?
@nirlichtman
@nirlichtman 10 месяцев назад
Added to the description :)
@furiousmilk6559
@furiousmilk6559 5 месяцев назад
you sound like mark zuc
@AggamRahamim-fs2zm
@AggamRahamim-fs2zm 9 месяцев назад
is this windows + WSL? terminal looks like that how'd you get a tiling wm?
@nirlichtman
@nirlichtman 9 месяцев назад
Yes, more info on welcome link on the channel description :)
@AggamRahamim-fs2zm
@AggamRahamim-fs2zm 9 месяцев назад
@@nirlichtman אגב האנגלית שלך מעולה, בדכ לא שומעים ישראלים עם כזה מבטא
@nirlichtman
@nirlichtman 9 месяцев назад
@@AggamRahamim-fs2zmתודה! אני במקור מארצות הברית :)
@AggamRahamim-fs2zm
@AggamRahamim-fs2zm 9 месяцев назад
אה אוקי חחח הגיוני@@nirlichtman
@antontheyeeter
@antontheyeeter 10 месяцев назад
why was main void?
@andrewliu6592
@andrewliu6592 10 месяцев назад
because that's a thing that c allows
@arupde6320
@arupde6320 10 месяцев назад
be regular .
@ElPikacupacabra
@ElPikacupacabra 10 месяцев назад
`void main` .... : |
@broggl
@broggl 9 месяцев назад
using vim to write a text editor lmao
@EinSatzMitX
@EinSatzMitX Месяц назад
Am i seeing this right? Youre on linux ( atleast using dwm) but youre also in a Windows terminal which is running wsl
@exvimmer
@exvimmer 10 месяцев назад
Noice
@liquidmobius
@liquidmobius 10 месяцев назад
I like your style, straight to the manpages. A real pro
Далее
Making Minimalist HTTPS Client in C on Linux
9:12
Просмотров 14 тыс.
Writing My Own Text Editor | Prime Reacts
16:10
Просмотров 97 тыс.
How Linux Kernel Prints Text on Screen
12:46
Просмотров 70 тыс.
Compilers, How They Work, And Writing Them From Scratch
23:53
how NASA writes space-proof code
6:03
Просмотров 2,2 млн
I made my own Text Editor (in Rust)
8:16
Просмотров 114 тыс.
Master Pointers in C:  10X Your C Coding!
14:12
Просмотров 309 тыс.
The Home Server I've Been Wanting
18:14
Просмотров 19 тыс.
i wrote my own memory allocator in C to prove a point
5:23
Arenas, strings and Scuffed Templates in C
12:28
Просмотров 87 тыс.
Making Minimalist Hex Editor in C on Linux
9:35
Просмотров 11 тыс.