Being a programmer for 4 years now, I've never been so excited about defining variables!
@sant7566 Жыл бұрын
I agree with you 😂
@devangverma9632 Жыл бұрын
haha, same dude. I've coded all these years and somehow this was so exciting.
@muhamedasir432310 ай бұрын
So true😂
@spectralknights25 ай бұрын
It's like python?
@akatsuki_mf11772 жыл бұрын
I really like this guy, he is a great teacher.
@NetworkChuck2 жыл бұрын
Thank you!
@Pedro4ize2 жыл бұрын
I agree one of the best 😮💨
@rajeshsagar39122 жыл бұрын
agreed
@akatsuki_mf11772 жыл бұрын
@Mituz pffft~ your wife got annoyed that you didn't make her day using the $1 in the script and you're taking it out on here aren't you! hmmm, I think reading the documentation would suit your learning style. But don't be mad when you see an exclamation mark (!) in the code lol ;-)
@Michael_Kerstein2 жыл бұрын
He is cutting everything short now .. should check out his other videos ... Way better .. his energy pours out in all of them so it makes it worth it to watch them
@littlebox43282 жыл бұрын
I have been an software engineer for almost 8 years, I already know everything in this video but it is so enjoyable to watch Chuck to explain these things.
@GameChuckk2 жыл бұрын
I'm backend engineer and i know bash scripting and write a few advanced scripts, i still watch and paused the video and did the challenge. your style of teaching is cool and effective. i really enjoy your vids.
@eduardoignacioroblessosa63492 жыл бұрын
me too haha
@CDLightt2 жыл бұрын
Thank you Osama, very cool.
@splitpierre2 жыл бұрын
I'm new to bash scripting, have been writing a few recently to ease my work on a project, what is considered advanced? Loops, variables, envs? It would be cool to see one video on more advanced techniques! Handling stout and creating variables more dynamically...
@benjaminnapper13172 жыл бұрын
After watching this video I was able to automate setting up a new directory for html/css projects with blank index and style files included. I know it wasn't a particularly arduous process to begin with but now it's just one command. I am brand new to linux/shells/command/etc. so I thought this was cool enough to warrant my first time commenting on any video. I super appreciate your work, you are making my journey into IT much more enjoyable.
@gemneye802 жыл бұрын
Like most folks here…I’ve been in IT and cybersecurity for years and know all of the concepts being taught here. Still watched and enjoyed this whole video. This dude’s charisma while teaching the IT fundamentals is infectious…lol! 👏
@gerowen2 жыл бұрын
7:52 I've been a self-made Linux admin for YEARS on my home network, I've scripted everything in the world, and never knew how to actually capture in-line arguments from the user like this. You sir, are amazing. I knew everything else in this video, but this one piece of information will prove invaluable in the future, :-)
@sugasheeze2 жыл бұрын
What? How have you been doing it for then? It's one of the first things most people learn w/ bash.
@gerowen2 жыл бұрын
@@sugasheeze I would just capture input from the user as a variable, or manually grab a known environment variable or something. I never knew how to use $1 to grab arguments right from the launch command.
@tomescuadrian2 жыл бұрын
@@gerowen i think you started with c++ , that's why. I have this issue for every language i learn. Everything is stored into var C++ god command's.
@AnotherSkyTV2 жыл бұрын
Same
@zahidraza188Ай бұрын
Your method of teaching bash scripts is excellent. Even someone who has never heard of bash scripting before will easily learn the entire concept just by watching your video. You’ve made the concept so clear and easy to understand. Please create more videos like this one to help people learn Linux. Your work is truly appreciated! Great job! keep going!
@pwerd2 жыл бұрын
Lets goooooo! Just what I was needing. Thanks for the quick upload of part 2 Chuck!
@numberiforgot2 жыл бұрын
Bash is the gateway to know Linux systems inside and out. You could write an entire web server and deploy it with shell scripts. The power is incredible.
@articularspark2242 жыл бұрын
Hey, Chuck! I wanted to give you a huge thank-you. The things I've learned from your videos have not only aided in landing me a job in I.T., but continue to supplement my skill set as I go! I'm forever grateful!
@BitwiseMobile2 жыл бұрын
Bash is the backbone of Linux systems. Linux is designed to have a bunch of small single purpose applications. You stitch those together using tools like bash. As a windows developer it took me a long time to realize that. I used to write these huge, monolithic applications in C++ for Linux without realizing that many of the tools I needed were already there, built into the operating system. I just needed to learn how to put them together. Bash was key for that. Now, instead of writing custom programs, I write bash scripts which use built in functionality to get what I need done.
@h8rsbeware4962 жыл бұрын
Im not a beginner, and I know a small amount of bash, but I still find your attitude and style great. You make programming sound fun which is honestly so powerful for beginners, and I wish Id found you before you randomly popped into my home feed.
@IgorFerreira692 жыл бұрын
I think I just found the best teacher ever, I knew this stuff for years, and I never felt this excited. 100% revived my will to do some bash scripting and I'll recommend this video to everyone who wishes to learn bash.
@AnotherSkyTV2 жыл бұрын
Yeah, his enthusiasm is infectious
@angeldim46672 жыл бұрын
I just discovered this channel , the quality of the videos is INSANE. im sticking around for all of it
@manitobabushcraftingandrev95922 жыл бұрын
bro you are a awesome teacher, my 11 year old daughter with 0 scripting knowledge followed this tut perfectly, even went outside the tut, adding in her own inputs and variables , great job! the joy in her eyes was awesome to see! she was proud. :)
@cryzz0n2 жыл бұрын
I love his excitement for any videos he makes on his channel. It's something you would get with a very few amount of teachers. This, right here, is someone who's passionate about his channel
@JoesirisReborn2 жыл бұрын
this has to be the most engaging, interesting and like hype filled youtuber doing IT related tutorials ever. The energy you bring to this video makes all the other youtubers I've watch look like 90yr old's. Love it hahaha.
@jaywoodall3313 Жыл бұрын
Dude you're such a good teacher! Halfway through this video I wrote a script that makes a new directory, takes your input to name it, creates new index.html and style.css files inside it, and opens it in VS Code! I feel so accomplished hahahaha
@johnikeson3114 Жыл бұрын
What a project, I will be doing this too :)
@natnaelzenebe9269 Жыл бұрын
#!/usr/bin/bash echo "Type the project name" read projectName mkdir $projectName touch $(pwd)/$projectName/index.html touch $(pwd)/$projectName/style.css touch $(pwd)/$projectName/index.js echo "Your Project has been created"
@CeresOutpost2 жыл бұрын
CHUCK - I've been an IT professional and programmer for 27 years - running my own home-based MSP/coding business for the past 12. I just wanted to say that your content and delivery are fantastic! Tech is ever-changing and the best of us are learning new skills and taking multiple courses every single year in a futile, but crucial, effort to keep up. I'm subbing to your channel and sending my junior techs here to do the same. Keep it up!!
@fxdtech2 жыл бұрын
Hey man do you remember the time you were feeling down and out about the views of some of your content - Just know that I am glad that you kept the momentum and you are gaining velocity. All of the stuff that you do is great to watch and listen to while I program, man. Keep up the positivity and keep up with sharing the cool projects :P If you ever wanna collab let me know. I would enjoy helping you get some content out there for DevSecOps.
@matthewfaherty2 жыл бұрын
If Chuck has ever felt down or out, you definitely can't tell by the tone of his voice... Maybe it's just the coffee
@fxdtech2 жыл бұрын
@@matthewfaherty Trust me he made a sad defeated video not that long ago and you could hear and see it
@sachabourel93752 жыл бұрын
@@fxdtech what is the video ?
@Isaac-X1132 жыл бұрын
I mean its rough having 2Mill subs but only get 300k views. Just starting a series and letting it hang without new episodes kinda hurt them
@VIN1CE2 жыл бұрын
Same like publishing great house mix tapes on soundcloud, frustrating
@mannysoto50882 жыл бұрын
Ive been wanting to get into IT but found it so intimidating. Since finding chucks channel, it’s really motivated and made IT seem very possible and I know will change my life. Being deployed currently, you’re a daily part of my routine in my self learning and have already learned so much in such a short amount of time. So thank you sir for such great videos and changing the course of my career.
@deanwoodward80262 жыл бұрын
Second param is $1. First param $0 is the name of the script... which is useful.
@alaafahs8392 жыл бұрын
Bash scripting is one of the most beautiful tool I've ever discovered. I use it daily to do my calculations as well as to process data and manage files. Thank you for this video.
@DarmiGames2 жыл бұрын
Hey Chuck. Love your videos! You're best at explaining the stuff in IT, and getting us engaged and hyped into it as well! I've learned a lot about IT from your videos. Never ever stop what you're doing, because you're doing an amazing job!
@keelanboyce4512 жыл бұрын
finally a tech teacher who makes learning fun and actually interactive KEEP IT UP I NEED MORE!!
@AbbasAlSouroush2 жыл бұрын
Your lectures are the best! No book or teacher can explain as well as you do.
@Mugen_FB3174 ай бұрын
I wrote my script using arguments at first, but I changed it to make it easier to get user input instead. Here's it: echo "What gender are you Male or Female?" read gender echo "What is your name?" read user if [ "$gender" == "Female" ] then echo "Good Morning $user!!" sleep 1.0 echo "You're looking good today $user!!" sleep 1.0 else echo "You have the best beard I've ever seen $user!!" fi Note: I started learning Bash Script late in June of this year and now I'm advancing my knowledge using it since I just finish the videos this week from Learn Linux TV. Sir Chuck, you've taught me how to use the read function that I didn't even know about. Thanks for the wonderful video!
@SlySportz2 жыл бұрын
This is one of our favourite channels on KZbin right now. Chuck you are the man! 😘
@youtube.user.12342 жыл бұрын
The reply above me is a scam bot don’t fall for that scam Edit: the bot reply was deleted
@SlySportz2 жыл бұрын
@@youtube.user.1234 OK we're scambots now. Think you better check that one with @youtube
@youtube.user.12342 жыл бұрын
@@SlySportz looks like that reply was deleted. I wasn’t calling you a scam bot. There was this crypto scam bot replying to people’s comments telling to call some phone number which would lead to a scam
@IT10T Жыл бұрын
I actually really appreciate how chuck has the viewer complete the activities with him, I think that’s pretty rare, which is ironic considering IT is so hands on. People like him and prof messer are really doing more for my education than any institution I’m paying lots of money..
@jaradhiggins65992 жыл бұрын
Legit good, gonna watch later currently in depression
@NetworkChuck2 жыл бұрын
:( Do 20 pushups and then watch the video.
@jaradhiggins65992 жыл бұрын
@@NetworkChuck doing since week, but not feling motivated idk just complicated life issues. I'm fighting on it.! Thanks a lot for response it meant a lot...
@Nik-rx9rj2 жыл бұрын
@@jaradhiggins6599 You're not alone. Stay strong! Exercise does help :)
@BerserkerForAsgard Жыл бұрын
as a linux sysengineer/programmer for 15 years, i love how you make something that is so simple for us for regular/not-IT people fun. yeah i knew that stuff, but i searched for a video that teaches a newbie and i can say, your video seems like a good start into shell scripting and i will use it as a stepstone for teaching. good job :)
@UKvideos20092 жыл бұрын
Thank you for getting this one out so soon after the last, Chuck!
@PotentialEn3rgy2 жыл бұрын
Your enthusiasm is half the reason I click your videos man... there's a lesson in there somewhere for the rest of us. Thanks for continuing the bash content!!
@MunJitso2 жыл бұрын
I appreciate your effort to learn something then teach people what you learnt with a better way! Keep Going
@GaryStewart20202 жыл бұрын
As someone who has never done Bash, would using quotes even for one word variable be best practice?
@MunJitso2 жыл бұрын
@@GaryStewart2020 you will save just two tabs on the keyboard so it doesn't matter actually...
@ChristianPadilla-zz3hs Жыл бұрын
Never sat and watched 3 videos straight of the same person without break. You are very important to our community! Thanks for all your videos, sir!
@Brhamabull2 жыл бұрын
Whoa !! Awesome Stuff man . I didn't knew '$1,$2....' arguments can be used to enter inputs before even executing the script . Thanks chuck . Need more Shell scripting Videos .
@youtube.user.12342 жыл бұрын
The reply above me is a scam bot don’t fall for that scam
@uhlersoth992 жыл бұрын
What a motivator! This is better than TV ever, like ever! I was born 60 years too old. I could have grown up with and actually learnt this now and even enjoyed learning it. Well done Chuck. Just go man, you are on the right path. You figured it out. humane and humour.I don't appreciate people that are happy so much but I'll let you be so. I hate happy people.
@shellgenius2 жыл бұрын
Hello sir pls continue bash script series
@danielnour74092 жыл бұрын
Fr makes learning all this so fun. Videos on linux and tech are just so unbelievably boring and it makes learning so hard. But people like you actually make the learning process not only so much easier but way more fun. Thank you so much
@BillionaireDeveloper2 жыл бұрын
I love this BASH series...
@youtube.user.12342 жыл бұрын
The reply above me is a scam bot don’t fall for that scam
@burakuren51882 жыл бұрын
I wish you had unlimited time and energy to make videos. Dude! You are the best!
@CWLabs72092 жыл бұрын
Learned few new things :) keep continuing the series .
@Maveric2 жыл бұрын
I worked with AutoIT and this feels somewhat similar to that and I'm happy with this so far! Thank you for being the middle school computer lab teacher that I should have had back in '98.
@lalithwewelwala56012 жыл бұрын
Chuck please carry the episode 3 how you can fast!!!
@quincychavez2 жыл бұрын
Recently got assigned to DevOps team from Windows Admin. Learning Linux and Shell Scripting just got easier! Thanks so much!
@sajlavt78072 жыл бұрын
I am learning python because of you
@crimsongchq38392 жыл бұрын
Seeing your vid for the first time. I already know advanced level BASH scripting, but your enthusiasm and excitement while explaining is fun, hilarious and very encouraging to beginners. Keep up the good work.
@iZboxo2 жыл бұрын
This serie is the best! Thank you for it!
@NetworkChuck2 жыл бұрын
thank you!
@datascience3008 Жыл бұрын
In Bash, variable assignments should not have any spaces surrounding the equal sign (=). So the correct syntax for assigning a value to a variable in Bash is: name="amal" Without any spaces around the equal sign. In your example, $name = "amal", Bash tries to execute a command called name with the arguments = and "amal", which will result in a command not found error. Therefore, you should always remember to exclude any spaces when assigning a value to a variable in Bash.
@zaidasseh24642 жыл бұрын
when is python ep.7... the python series is amazing please continue doing it
@starplatinumrqm2 жыл бұрын
you are the only guy i know that can make this stuff seem fun, huge respect for that
@NetworkChuck2 жыл бұрын
Sign up for Linode here: ntck.co/linode and you get a $100 Credit good for 60 days as a new user! 🔥🔥Get access to the EXTENDED version with extra BASH goodness: ntck.co/bashcourse (Join NetworkChuck ACADEMY!!) 0:00 ⏩ Intro 0:51 ⏩ Quick challenge! 1:25 ⏩ Getting your Linux lab ready! 2:33 ⏩ Challenge review! 3:59 ⏩ What the junk is a variable? 6:32 ⏩ Making bash read 8:16 ⏩ Arguments, the not yelling kind. 9:03 ⏩ Make your own argument! 11:12 ⏩ Making even more variables! 11:53 ⏩ Using our new variables! 13:11 ⏩ Outro
@6ajz2 жыл бұрын
hi
@VarunBanka182 жыл бұрын
Make videos on python instead or conform if that playlist is rip
@santutor18232 жыл бұрын
Make long playlist on bash cover everything. Thanks you are awesome
@choiilatigo53102 жыл бұрын
Hello chuck try this kzbin.info/www/bejne/hqacZqShadqers0
@EAsports4622 жыл бұрын
Networkchuck I need ur help pls
@phorbie2 жыл бұрын
I'll speak beard to beard here, Chuck, your videos have been the most engaging while to-the-point videos on these more technical topics that I have ever run into, and I am SUPER thankful for this series in particular, as I have inherited a veritable sysadmin disaster, and need to learn how to script safely for business-critical ops, and quickly. This channel right here has been the most useful resource I have found yet!
@jasontechlord2 жыл бұрын
Hacking the youtube algorithm, ethically. Also... sudo get me some coffee
@Pianodaddyy2 жыл бұрын
“Sudo get me some coffee” hahahahaha
@lucida27572 жыл бұрын
I have used KZbin forever now and have never left a comment before today. I actually was smiling and having a blast folowing along learning this awesome stuff! I have taken a post secondary course teaching bash and as you could probably guess, that was extremely dry stuff compared to this. Thanks for bringing joy and entertainment into learning NetworkChuck! Definatly excited to continue learning from all the great content you have on your channel!
@TheIceMan93042 жыл бұрын
I think you do a great job of driving home the basics and then we get to the cliff all too often where we divert to a different platform. I know you have to make a living I get it, but wouldn't growing your viewing hours, likes, subs grow your channel organically? Or is the target audience too small? I know some other youtubers also use flaotplane or patreon, not trashing your business model but I do find it bit frustrating to be into your teachings and then we just stop.
@rswayne1002 жыл бұрын
I've watched lots of these videos online and Chuck is by far the best teacher. You are awesome man!
@andersonclark52392 жыл бұрын
*Talking about trading crypto/stock, Crypto market has brought me great success!!! Irrespective of the economic downturn I can boast of over $57000 every month on my investment. Thank you Kimberly Jose for your focus on quality stocks. blessings🙌*
@dr.joseph26782 жыл бұрын
After a successful investment you have nothing to worry about, whether the rise and fall of economy or anything won't affect you, make your future brighter, by making good investment.
@dr.joseph26782 жыл бұрын
I trade with expert Kimberly Jose, the profit are secured and over a 100% return from my short-term trade was sent directly to my wallet.
@alaysbiridjitskut69112 жыл бұрын
All you need as a beginner to make good profit from cryptocurrency is a professional trader who will trade on your behalf else you may make losses.
@alaysbiridjitskut69112 жыл бұрын
It's fascinating to hear that someone here employ expert Kimberly's trading strategy, I thought I'm the only one trading with her
@frontierspeaceandunity51492 жыл бұрын
My first investment with expert Kimberly Jose gave me over $38,750 and that has made me reinvest with her, I got four of my friends involved with her already
@szechjuan2 жыл бұрын
I’m in your Discord server and videos like these coupled with all the kind and insanely smart people there are preparing me so well for my Linux+ cert exam. Thank you so much for the quality content man!
@boogieedownacee2 жыл бұрын
Coming from a non-technical background and transitioning, you’ve made learning indefinitely easier, and fun bc of your personality and teaching style. Never change ✊🏾
@kitgary2 жыл бұрын
I am a frontend developer, I still remembered that when I first saw a Bash script written by a backend developer, I was amazed and know what a professional developer do!
@lorenbufanu16392 жыл бұрын
He is not joking! Bash Scripting changed my life! I worked in a small TV studio. My job was easily to automate, and repetitive. I've done it with bash and my work got reduced from 14h to about 2 or 3! Now I'm working for an electronics company! With bash I've made a simple script to fill out some field from websites we order parts! Now ordering just means copy just 1 number and paste it in the browser! It use to be very time consuming and annoying!.. Now with bash again, I am writing a simple database/RFID scanner! This will get rid of using paper labels in my company and make everything more easily to find. I love Bash Scripting!
2 жыл бұрын
This is why I love Linux. I have been using Linux for 15 years and there is still something new to learn.
@cdv1302 жыл бұрын
I know a bit of bash already, but I still watched this just cuz Chuck's infectious enthusiasm as he teaches this stuff is contagious and helps me get motivated and excited about learning new things. thanks Chuck!
@et4493 Жыл бұрын
The quality in these vids is unreal. Thank you
@deleted_account-u3w2 жыл бұрын
This is by far the best bash tutorial I have ever watched. Very nice!
@rudolphdutoit24772 жыл бұрын
just imagine if lectures had this much passion, Chuck getting excited over a variable it is honestly something beautiful.
@grktsystems14792 жыл бұрын
The best teacher from cibersecurity and digital transformation regards from basque country
@ImmortalPlayer420692 жыл бұрын
I've just started about a week ago to learn how to code (I'm learning Python and so far I'm not all that deep in, however I have learned a lot of concepts) I thought I wasn't getting anywhere in programming and was moping around today feeling kind of let down by the zero progress, I still can only write basic "print" commands with a few little bit more advanced lines of codes like "input". Well when I clicked on this video wanting to know what Bash scripting is, you will never be able to understand the excitement I had knowing what variables were and how to use them. I know It's small and something that Isn't to big to get excited over but the happiness I felt knowing a concept like variables made me finally feel some sort of progress. Thank you very much for the boost in confidence today and I will definitely be looking into Bash scripting once I've progressed far enough.
@jeremypalmer90282 жыл бұрын
Nice. One thing I would say is you should get use to doing variables like this: ${name} with squiggle brackets around it, also called variable substitution The cool thing is you can set a default incase the variable isn't sent. $(command) with curly braces is command substitution. directory=${PWD} and directory=$(pwd) will usually do the same thing.
@seandenmarysagun32172 жыл бұрын
If only my teachers in programming class were as fun and knowledgeable as you, I would ace all my assignments and test. Great video btw
@nde810 Жыл бұрын
This guy is a good teacher 🌟, he knows how to motivate students 🤧
@wailmerah98492 жыл бұрын
Best IT channel in the world 👏 ... love u chuck from 🇩🇿❤️
@youtube.user.12342 жыл бұрын
The reply above me is a scam bot don’t fall for that scam
@ossama_tarek2 жыл бұрын
Honestly you are one of the best tech contact creators on KZbin right now keep going chuckkk
@2m4u2 жыл бұрын
Regardings variable declaration, the best/correct way to do it is with the {}, like, ${name}… it will avoid any naming mismatch by mistake!
@datadreamsit85142 жыл бұрын
your energy alone made me subscribe. bless you for it
@anthonykarungu14192 жыл бұрын
Hey Chuck I'm new to Linux and your method of teaching absolute beginners the wonders of shell scripting is amazing keep them videos coming bro.
@henderstech2 жыл бұрын
Bash scripting is so awesome. I feel motivated to learn much more. Thank you for showing this.
@kopilkaiser89912 жыл бұрын
I am following the bash series. You are an outstanding teacher. You explain really good as well having the ability to transform boring topics like programming into the most exciting stuff to learn. Keep it up brother. My love & support for you.
@De5tr0yer2 жыл бұрын
You are a very great Teacher. I wish I had you as a teacher back in my school days.
@ivansanzeev Жыл бұрын
The beat part was passing the parameter directly, while running the script.... Good work!!!! Keep it up
@zparihar2 жыл бұрын
Happy to see people using Bash; the best scripting language for Linux System Administrators
@jaypatankar Жыл бұрын
I'm compelled to hit like within 10 seconds just for the enthusiasm and passion you put into your work.
@jesussandoval8422 жыл бұрын
I strayed away from bash thinking I would never use it... Here I am as a new DevOps Engineer. Bash is super useful for provisioning Azure DevOps resources through reusable scripts in the CD pipelines.
@abdeslamloukili12492 жыл бұрын
What I like the most about chuck videos is he reminds me to drink my coffee/tea which most of the time gets cold
@DomJonathan2 жыл бұрын
I react like that even when I do a programming spell, it's so comforting to know that someone else reacts like that. success bro
@rhomeotim Жыл бұрын
I've 'Ben" looking for an exciing way to learn bash and commands in linux and this video is golden. You now have a new sub.
@skynet.yousha2 жыл бұрын
Another method to put a command inside a variable, that you can use in your script is by using "backtick", Example: var1=`pwd` instead of var1=$(pwd). But the only problem you might get, when your code is bulky and you can't differentiate between single quotation and backtick `'. People could get confused when looking at your code. It just for your information, Try it..
@hazemba26692 жыл бұрын
I couldn't stop myself from writing this comment, Mr Chuck You're an awesome teacher!
@sycake7299 Жыл бұрын
have to pause for a moment for praising the amazing guy and teacher i've ever met!!!
@WistrelChianti2 жыл бұрын
Wow that's probably THE most enthusiastic intro to shell script I've ever seen! Good job!
@GXMXMAGI2 жыл бұрын
earned another sub from this video! I have been using linux for a few months but I had not gotten into scripting yet. Thanks for your efforts in making it easy to learn. The pauses to test things make the learning more effective. I am excited to see your next tutorials!
@ramone-luc2 жыл бұрын
I'm brazilian and programmer in Shell Script, i like this chanel ❤👏
@trevormandy20742 жыл бұрын
First time I've ever understood bash scripting super clearly! Thanks!
@mada7ebnana2 жыл бұрын
Keep it up buddy .. you are doing a tremedous job that always be appreciated .. if you have seen some comments pushing for more .. this is just because we LOVE your videos and the materials introduced .. but this is how the fans act .. we always seek MORE from the ones we recognize .. cheers buddy! your videos are viral to the extend of the other parts of the world .. I am from EGYPT ❤🇪🇬 ❤
@EnjoyYourLife6962 жыл бұрын
All we need in our life much coffee and much more Chuck! You are awesome, thx for all your video, God bless you!!
@MG-ih6po2 жыл бұрын
If you're on Windows, I'd recommend enabling WSL(Windows Subsystem for Linux) and installing a Linux Distribution - you can then launch a bash shell from windows.. It's neat and you don't have to take the time to provision your own Linux server. Also, you can download the distributions straight from the Windows store.
@ashishawasthi43502 жыл бұрын
I was sold in the first 30 second ..wow …what a delivery ….what an awesome video editing …
@Gunslinger0882 жыл бұрын
Love you Chuck for all the contents you have been throwing lately.