Code of the Future
Code of the Future
  • Видео 147
  • Просмотров 851 459
Rust Crash Course | #17 Final Comments!
Welcome back to video number 17 in this Rust tutorial series! This final video is to round off the tutorial series. I talk about Code of the Future's next steps in terms of Rust and also express my thanks to all of you who have stuck with me along this course - it means the world!
📖Resources📖
Rust Online Book: doc.rust-lang.org/book/
💻Code💻
github.com/code-of-the-future/Rust-Programming-Crash-Course/tree/main/Tutorial%2014
🔗 Social Media Links 🔗
📸 Instagram: codeofthefuture
📱TikTok: www.tiktok.com/@codeofthefuture
📘Facebook: codeofthefuture
🦜Twitter: code_ot_future
📝LinkedIn: www.linkedin.com/company/code-of-the-future
📂GitHub: github.com/code-of-the-future
💸 D...
Просмотров: 1 582

Видео

Rust Crash Course | #16 Coding in 2 Files (or more!)
Просмотров 1,1 тыс.Год назад
Welcome back to video number 16 in this Rust tutorial series! In this video, we learn how we can write code in a separate file and incorporate that into another Rust file. For example, we can create a function in one file and call it in another! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/tree/main/Tutorial 14 🔗 Social...
Rust Crash Course | #15 Enums
Просмотров 1,7 тыс.Год назад
Welcome back to video number 15 in this Rust tutorial series! In this video, we learn all about enums! Enums are incredibly important to Rust so make sure you follow this video at your own pace and feel free to ask any questions in the comments! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/tree/main/Tutorial 14 ⏰Time St...
Rust Crash Course | #14 Structs
Просмотров 1,7 тыс.Год назад
Welcome back to video number 14 in this Rust tutorial series! In this video, we learn all about structs! Structs are incredibly important to Rust so make sure you follow this video at your own pace and feel free to ask any questions in the comments! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/tree/main/Tutorial 14 ⏰Tim...
Rust Crash Course | #13 Pointers and Referencing
Просмотров 5 тыс.Год назад
Welcome back to video number 13 in this Rust tutorial series! In this video, we learn about pointers and referencing! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/blob/main/Tutorial 11/main.rs 🔗 Social Media Links 🔗 📸 Instagram: codeofthefuture 📱TikTok: www.tiktok.com/@codeofthefuture 📘Facebook: facebook.c...
Rust Crash Course | #12 Vectors
Просмотров 971Год назад
Welcome back to video number 12 in this Rust tutorial series! In this video, we learn about vectors. If you're used to programming in languages like Python, you might be familiar with arrays. In Rust, we are not able to do the same commands with arrays like in Python so that's where vectors come in! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-...
Rust Crash Course | #11 Command Line Arguments
Просмотров 991Год назад
Welcome back to video number 11 in this Rust tutorial series! In this video, we learn about command line arguments. It's a really useful feature of Rust and builds on similar knowledge we learnt in the previous video! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/blob/main/Tutorial 11/main.rs ⏰Time Stamps⏰ 00:00 - Introd...
Rust Crash Course | #10 User Console Input
Просмотров 1,1 тыс.Год назад
Welcome back to video number 10 in this Rust tutorial series! In this video, we learn about user console input. It's a feature of Rust that is more complex when compared to other programming languages which is why we have dedicated a whole video to it! This aspect of Rust will come in very handy when we move onto interactive projects later. 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ ...
Rust Crash Course | #9 Conditions & Control Flow (if, else, while, for, and many more!)
Просмотров 704Год назад
Welcome back to video number 9 in this Rust tutorial series! In this video, we learn about Conditions and Control Flow - 2 incredibly important aspects of programming! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/blob/main/Tutorial 9/main.rs ⏰Time Stamps⏰ 00:00 - Quick Recap of the Previous Video 00:45 - Introduction to...
Rust Crash Course | #8 Functions
Просмотров 900Год назад
Welcome back to video number 8 in this Rust tutorial series! In this video, we learn about Functions in Rust. Functions are fundamental in every programming language so let's learn more about them in Rust! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/blob/main/Tutorial 8/main.rs ⏰Time Stamps⏰ 00:00 - Quick Recap of the ...
Rust Crash Course | #7 Overflow, Type Casting & Conversion
Просмотров 1 тыс.Год назад
Welcome back to video number 7 in this Rust tutorial series! In this video, I talk you through a very important aspect of Rust: Overflow. We look at the consequences of overflow and how to overcome it using methods like type casting and conversion. *NOTE: the range for a u8 is 0 to 255 (not 225 as said in the video)* 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-o...
Rust Programming - VSCode Extension!
Просмотров 4,8 тыс.Год назад
Welcome back to an additional video in this Rust Course. Today, I show you an extension used in VSCode to make coding in Rust smoother and easier! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ Downloading VSCode: code.visualstudio.com/download Downloading VSCode Video: ruclips.net/video/9HPf0UE1s2U/видео.html VSCode Introduction and Set Up Video: ruclips.net/video/zf01EVxxqu4/видео.html...
Rust Crash Course | #6 Data Types
Просмотров 1 тыс.Год назад
Welcome back to video number 6 in this Rust tutorial series! In this video, I talk you through the fundamentals of data types. This is a very important aspect of Rust! 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ Emoji Page: unicode.org/emoji/charts/full-emoji-list.html 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/blob/main/Tutorial 6/main.rs ⏰Time Stamps⏰ 00:00 -...
Rust Crash Course | #5 Variables, Constants & Shadowing
Просмотров 1,1 тыс.Год назад
Welcome back to video number 5 in this Rust tutorial series! In this video, I talk you through a whole range of features when creating variables in Rust. 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/blob/main/Tutorial 5/main.rs ⏰Time Stamps⏰ 00:00 - Quick Recap of the Previous Video 00:57 - Introduction to Variables 01:...
Rust Crash Course | #4 Printing and Formatting (&rustfmt)
Просмотров 1,6 тыс.Год назад
Welcome back to video number 4 in this Rust tutorial series! In this video, I talk you through printing and formatting in Rust. 📖Resources📖 Rust Online Book: doc.rust-lang.org/book/ 💻Code💻 github.com/code-of-the-future/Rust-Programming-Crash-Course/blob/main/Tutorial 4/main.rs ⏰Time Stamps⏰ 00:00 - Quick Recap of the Previous Tutorial on Cargo Tools 02:54 - Basic Formatting 05:56 - Formatting w...
Rust Crash Course | #3 Cargo Tools
Просмотров 1,7 тыс.Год назад
Rust Crash Course | #3 Cargo Tools
Rust Crash Course | #2 Basics (Opening & Creating Files, Main Function & Execution)
Просмотров 2,5 тыс.Год назад
Rust Crash Course | #2 Basics (Opening & Creating Files, Main Function & Execution)
Rust Crash Course | #1 Downloading and Installing
Просмотров 2,6 тыс.Год назад
Rust Crash Course | #1 Downloading and Installing
Rust - The BEST Programming Language to Learn in 2022?
Просмотров 6 тыс.2 года назад
Rust - The BEST Programming Language to Learn in 2022?
10,000 Subscribers - What's Next?
Просмотров 5682 года назад
10,000 Subscribers - What's Next?
FULL Python Pandas Data Science Tutorial! (Reading Excel/CSV Files, Datasets, Series & Location)
Просмотров 2,1 тыс.2 года назад
FULL Python Pandas Data Science Tutorial! (Reading Excel/CSV Files, Datasets, Series & Location)
Python Pandas Tutorial #9 for Beginners - Plotting Dataframes Using Matplotlib
Просмотров 4902 года назад
Python Pandas Tutorial #9 for Beginners - Plotting Dataframes Using Matplotlib
Python Pandas Tutorial #8 for Beginners - Mean, Mode & Median
Просмотров 1,9 тыс.2 года назад
Python Pandas Tutorial #8 for Beginners - Mean, Mode & Median
Python Pandas Tutorial #7 for Beginners - Empty Entries in Excel
Просмотров 1,6 тыс.2 года назад
Python Pandas Tutorial #7 for Beginners - Empty Entries in Excel
Python Pandas Tutorial #6 for Beginners - Excel in Pandas (Loading CSV/Excel files)
Просмотров 5752 года назад
Python Pandas Tutorial #6 for Beginners - Excel in Pandas (Loading CSV/Excel files)
Python Pandas Tutorial #5 for Beginners - Series
Просмотров 3942 года назад
Python Pandas Tutorial #5 for Beginners - Series
Shuffling Strings in Python - Make Your Own Word Scramble!
Просмотров 3,7 тыс.2 года назад
Shuffling Strings in Python - Make Your Own Word Scramble!
Python Pandas Tutorial #4 for Beginners - Locating and Renaming Index's
Просмотров 4612 года назад
Python Pandas Tutorial #4 for Beginners - Locating and Renaming Index's
Removing Line Breaks with Python! (& Automation Feature with txt Files)
Просмотров 3,9 тыс.2 года назад
Removing Line Breaks with Python! (& Automation Feature with txt Files)
Python Pandas Tutorial #3 for Beginners - Datasets & Dataframes
Просмотров 8462 года назад
Python Pandas Tutorial #3 for Beginners - Datasets & Dataframes

Комментарии

  • @KārlisKalviškis
    @KārlisKalviškis 14 минут назад

    Hi! Thank You for the excellent course for newcomers at "rust". Let us hope more videos devoted for "rust" language will come!

  • @NiklasAndersson7
    @NiklasAndersson7 Час назад

    ...and in the next tutorial we will create World of Warcraft

  • @KārlisKalviškis
    @KārlisKalviškis 2 дня назад

    Thank You for introductory courses in “rust”! They are excellent for newbies! Sometimes funny as well ;-) Check this video starting at 11:00 up to 12:11. The rush comes with a price ;-)

  • @VernonSims-z5n
    @VernonSims-z5n 5 дней назад

    Young Timothy Martin Jose Lopez Margaret

  • @mhous3
    @mhous3 7 дней назад

    bot farm

  • @arshiyashishesaz9678
    @arshiyashishesaz9678 8 дней назад

    My final is in 2 days and your video rly helped me🙏🙏🙏

  • @brianobot2543
    @brianobot2543 8 дней назад

    Hello Everyone! Amazing content yeah! I am still very new to Rust and i noticed something i want to correct so that other people do not work with the same assumption as i had, around ruclips.net/video/OiyfIJe4s0c/видео.html She says arrays allow copy to another variable on reassignment because they are primitive types, well that is not entirely correct, in the case she used; it works! this is because the elements of the array implements Copy trait, therefore the array itself can be copied on reassignment or when passed to a function, but if instead i used Strings as the element of my arrays, i would not be able to get away with the assumptions that arrays always copy on reassignment. But this was definitely very educative. Thank you so much

  • @badeharar571
    @badeharar571 12 дней назад

    I like coding. If you help me, I'm interested to know....coding

  • @_y4020
    @_y4020 16 дней назад

    Amazing guide!!!

  • @ramandeepkaur9372
    @ramandeepkaur9372 20 дней назад

    Wow🤩

  • @HrrSsgh
    @HrrSsgh 25 дней назад

    Pls come back 😢

  • @biancanjie6055
    @biancanjie6055 27 дней назад

    How to get real followers

  • @safetynetspov
    @safetynetspov 27 дней назад

    This was really helpful, thank you!

  • @ahmedbadal3795
    @ahmedbadal3795 28 дней назад

    thank you so much a greate tutoria

  • @mohamedkotb2052
    @mohamedkotb2052 Месяц назад

    As Java Developer, I have not seen more easiest tutorial like your, nice work, very impressive

  • @amazon238
    @amazon238 Месяц назад

    It's amazing . Really thanks❤❤❤❤

  • @epikherolol8189
    @epikherolol8189 Месяц назад

    Find the error: n=n+5 It will create an infinite loop so we should do n=n-1 instead

  • @not_lukie3248
    @not_lukie3248 Месяц назад

    Ehh, would've lowkey been better if it actually played the game (like jumping and that)

  • @not_lukie3248
    @not_lukie3248 Месяц назад

    definitely getting a like, well deserved... I think we all know the information you gave wont rly be used for anything ethical xoo

  • @human-V-oid
    @human-V-oid Месяц назад

    LoL, I pronounce tuple as tooples too.

  • @cbbcbb6803
    @cbbcbb6803 Месяц назад

    Repeat, but with Linux.

  • @gamereevee9163
    @gamereevee9163 Месяц назад

    time to take this and make it into ta bot that spams my friend with an ungodly amount of tiktok videos because I silghtly peeved

  • @rameshnagaraju9204
    @rameshnagaraju9204 Месяц назад

    Good lecture.Thanks.

  • @alexdemeter1558
    @alexdemeter1558 Месяц назад

    Yk I think a pit of a better improvement would be to also make it random to which player gose first so then not even the developer would know which gose first and this also adds the possibility that one player dose not move at all :)

  • @SourScotchOnTheRocks
    @SourScotchOnTheRocks Месяц назад

    is there a way to make it type at a specific speed? Sort of limiting how fast it types it?

  • @brycegisclair1080
    @brycegisclair1080 2 месяца назад

    Thank You for the tutorial. I followed the install Anaconda and install PYCHARM video. I went to command and did the pip install in command and it installed PYAUTOGUI. I tested it while still in command, I did PY (enter), import pyautogui (enter). I did both the Print(pyautogui.position()) and received the mouse position and Print(pyautogui.size()) and received back the screen size. The problem is in PYCharm when I do the import pyautogui it gives me the error, that it is not finding the package for pyautogui. I click install and it fails. Do you have a different interpreter besides python 3.11 that has the pyautogui package available?

  • @20.handhikaputra68
    @20.handhikaputra68 2 месяца назад

    Thanks 🙏

  • @hauntedhobbies
    @hauntedhobbies 2 месяца назад

    Is there a way to assign a random variable to the delays in pyautogui? I'd like a move mouse to a location and then sometime between 10 seconds and 60 seconds later, click. Every loop would need to re-randomize that variable. I hope that makes sense.

  • @hrperformance
    @hrperformance 2 месяца назад

    thanks!

  • @virais4605
    @virais4605 2 месяца назад

    This class was difficult, but completed, looking forward to doing the password generator.

  • @oldsocool1653
    @oldsocool1653 2 месяца назад

    some games seems to be blocked mouse commands and keyboard buttons of pyautogui can we bypass them=?

  • @profgallaugher
    @profgallaugher 2 месяца назад

    Fun!

  • @EsraKABACA-qt5ge
    @EsraKABACA-qt5ge 2 месяца назад

    Kodu yoruma yazar mısın

  • @xilllllix
    @xilllllix 2 месяца назад

    the best pyautogui course! i come back to this every now and then whenever i want to use pyautogui and have forgotten some things

  • @chaiconstruction4031
    @chaiconstruction4031 3 месяца назад

    Can Python be linked with AutoCAD and SAP 2000?

  • @TwentyNineJP
    @TwentyNineJP 3 месяца назад

    I just started learning Rust yesterday, and I'm still at the stage of expecting pointers and references to work just like C. So when they inevitably don't, I'm back to the freshman days of seeing the & and * operators as magic incantations that work only when the moon is in the right phase

  • @kashyabmaharjan
    @kashyabmaharjan 3 месяца назад

    Thank you for the video.

  • @satyamlal5755
    @satyamlal5755 3 месяца назад

    Xpath, contains 'span' and it doesn't work with "Select". How to work with that?

  • @satyamlal5755
    @satyamlal5755 3 месяца назад

    Hi, Can you make a video on how to fill google forms with Selenium Python. It has a lot of different options. Please tey to cover Text fields, Radio Buttons, Checkboxes, Drop-down menu and as much as you can. Thank You

  • @Mike3nigma
    @Mike3nigma 3 месяца назад

    I find it Hella cool too an it gives me some ideas for other things as well thank you for the information ☺️

  • @lawrencemarsh7717
    @lawrencemarsh7717 3 месяца назад

    great video I am going to be watching lots more !!!

  • @ozan8202
    @ozan8202 3 месяца назад

    Thank you. Can you show us; A code that will record the movements and clicks of my mouse with a key combination we assign, stop our movements with another key combination, and replay the recorded movements with another key combinationplease.

  • @williambailey3480
    @williambailey3480 3 месяца назад

    Rather sweet for relatively little code 👍🏽

  • @HorridOnlineTroll
    @HorridOnlineTroll 3 месяца назад

    Hope to see the legend herself return someday, hope all is well

  • @rosemberg3270
    @rosemberg3270 4 месяца назад

    I love your videos. ❤

  • @marcluther6910
    @marcluther6910 4 месяца назад

    Cool video… can you give a example how to attach to a allready running page

  • @mango2005
    @mango2005 4 месяца назад

    In Pycharm 3.12 when I create a new Venv project, it shows main_py in Venv/LIb/Site packages/pip. Is that just another name for main.py?