Пікірлер

  • @moy2010
    @moy2010Сағат бұрын

    It's really sad to hear that, Nathan. I'm in a similar situation, since I decided to venture into the startup world with a new SaaS project that I'm just now launching. My project has a news aggregator that hopefully will help content creators like you to get more visibility.

  • @olsuhvlad
    @olsuhvlad2 күн бұрын

    13 And no man hath ascended up to heaven, but he that came down from heaven, even the Son of man which is in heaven. 14 And as Moses lifted up the serpent in the wilderness, even so must the Son of man be lifted up: 15 That whosoever believeth in him should not perish, but have eternal life. 16 For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life. 17 For God sent not his Son into the world to condemn the world; but that the world through him might be saved. 18 He that believeth on him is not condemned: but he that believeth not is condemned already, because he hath not believed in the name of the only begotten Son of God. 19 And this is the condemnation, that light is come into the world, and men loved darkness rather than light, because their deeds were evil. 20 For every one that doeth evil hateth the light, neither cometh to the light, lest his deeds should be reproved. 21 But he that doeth truth cometh to the light, that his deeds may be made manifest, that they are wrought in God. (Jn.3:13-21)

  • @jackkendall6420
    @jackkendall64206 күн бұрын

    Hey Nathan, thanks for still making this video with all the sponsor stuff in mind. I would completely understand if you declined to continue this series (too many people who burn out dedicating their lives to something like this for nothing in return), but it is highly enjoyable content.

  • @decathorpe
    @decathorpe14 күн бұрын

    Many people might have encountered RISC-V processors without knowing it: Recent NVidia GPUs have a RISC-V co-processor ("GSP") for some tasks.

  • @fiona9891
    @fiona989116 күн бұрын

    recursion is very nice for certain parsing techniques, makes the code much easier to read and write

  • @jorgeosorio1613
    @jorgeosorio161317 күн бұрын

    Great video

  • @NathanStocks
    @NathanStocks17 күн бұрын

    Thank you!

  • @JonDisnard
    @JonDisnard17 күн бұрын

    These are great. Good job.

  • @NathanStocks
    @NathanStocks17 күн бұрын

    Thank you!

  • @pyprem
    @pyprem17 күн бұрын

    Clear and concise, thanks a lot for this overview.

  • @NathanStocks
    @NathanStocks17 күн бұрын

    You’re welcome! Thank you for your kind words.

  • @irlshrek
    @irlshrek17 күн бұрын

    i had a good laugh at number 8 haha

  • @NathanStocks
    @NathanStocks17 күн бұрын

    😄

  • @pfeilspitze
    @pfeilspitze17 күн бұрын

    Hopefully 8 is smart enough to not warn on constants from other crates, where no, I don't know if it's empty.

  • @NathanStocks
    @NathanStocks17 күн бұрын

    I have so many questions about your comment! 😂 First, why did the library author export an empty constant? I have never seen that! Second, why do you need to check if the library’s constant is empty? Third, you imply that you would rather call is_empty at runtime than peek at the value of the constant after a lint tells you about it-why?

  • @pfeilspitze
    @pfeilspitze16 күн бұрын

    @@NathanStocks Because if it's a constant in another crate it can change, so checking once doesn't work. Maybe it's a constant from a build-time environment variable, or something. It's like how `char::UNICODE_VERSION < (16, 0, 0)` is true right now, but probably soon won't be, and clippy would be very wrong to tell me not to check it and just remove the else.

  • @NathanStocks
    @NathanStocks16 күн бұрын

    Huh, interesting.

  • @JamesHarrisonHaribo
    @JamesHarrisonHaribo17 күн бұрын

    I really did like the more in-depth walkthrough of all changes version-to-version, it was hugely informative.

  • @NathanStocks
    @NathanStocks17 күн бұрын

    So did I! As I get more sponsors, I will increase the length of my videos. With enough sponsors I would love to start making more frequent videos about other Rust news and topics as well.

  • @shadamethyst1258
    @shadamethyst125817 күн бұрын

    Does the tuple collect() means that one can collect into nested tuples? That's quite cool

  • @NathanStocks
    @NathanStocks16 күн бұрын

    I tried it...and YES! fn main() { let input = vec![1, 2, 3, 4, 5]; let ((doubled, tripled), squared): ((Vec<_>, Vec<_>), Vec<_>) = input.iter().map(|x| ((x * 2, x * 3), x * x)).collect(); assert_eq!(doubled, [2, 4, 6, 8, 10]); assert_eq!(tripled, [3, 6, 9, 12, 15]); assert_eq!(squared, [1, 4, 9, 16, 25]); }

  • @seriousmasterful
    @seriousmasterful17 күн бұрын

    Just finished, Ultimate Rust Crash Course on udemy. Keep up the good work.

  • @NathanStocks
    @NathanStocks17 күн бұрын

    That’s wonderful to hear! Thank you for your kind words!

  • @lsp0
    @lsp013 күн бұрын

    @@NathanStocks hey you really ought to put links to that in your description

  • @t3chrs
    @t3chrs17 күн бұрын

    First! So happy to find this video today.

  • @NathanStocks
    @NathanStocks17 күн бұрын

    Congrats on the first post! I’m also glad you found this video today! And apparently before everyone else! 😂

  • @Polynuttery
    @Polynuttery28 күн бұрын

    Never seen this channel before. Why has the YT algorithm not delivered for the past year?

  • @NathanStocks
    @NathanStocks17 күн бұрын

    That’s so sad that you’ve been missing out on Rust news for so long! I’m glad you’ve found it now. New video out yesterday!

  • @moohric
    @moohricАй бұрын

    Hey Nathan, I got both of your courses on udemy just because of these videos, so please please please drop the new ultimate course! :D

  • @NathanStocks
    @NathanStocks17 күн бұрын

    I’m still planning on finishing the crash course update before doing the new course. You may need to wait a bit. I could get these things done so much faster if it were my day job! 😂

  • @t3chrs
    @t3chrsАй бұрын

    These videos are awesome! I get so much out of these compared to the official release blog. Bought both your courses, and sponsored you on Github. Hope you can keep doing these.

  • @TekExplorer
    @TekExplorerАй бұрын

    This is my first time watching one of your videos, and i think that, while having a course is fine, you need to have videos here on youtube as teasers. Ones that teach, but dont go in depth. Short, maybe. Basically, i have no reason to even know you have a course unless i happen to stumble upon your detailed update videos and am otherwise bored. Doing this will bring more people to your channel in general, and help the community as a whole. This will mean more video monitization, more sponsorships, and more viewership in general.

  • @NathanStocks
    @NathanStocksАй бұрын

    Alright, so that's another vote for focusing on courses.

  • @knnmran
    @knnmranАй бұрын

    first video i watched of yours was your live Bevy coding in a room full of people and frankly i enjoyed it. since then i have been watching only these Rust update videos. i was not even aware of Udemy courses. you should talk about them during these videos or any content you put out.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thanks for watching!

  • @radimkolar3739
    @radimkolar3739Ай бұрын

    I agree with your decision to cancel this Rust news format. Make it 3 minutes long. Look at your video statistics - how many people watch entire 16 minutes? I am afraid you are making high effort video for a very small group of people.

  • @NathanStocks
    @NathanStocksАй бұрын

    The ~30 minute videos get 15-25% watching until the end. The shorter videos tend to get about 20-33% watching to the end. The shortest videos get about 50% watching until the end. The longer videos get more total people watching, interestingly enough.

  • @michallis_pashidis
    @michallis_pashidisАй бұрын

    Dear Nathan, we love the work you do, and I have some 'small' rust dev teams who learn a lot of the content you make. We just became a sponsor (Trust1Team), and would like to see you achieving your goal! I'm pushing your courses to new devs, as that speeds up the onboarding process for new consultants in our software engineering team.

  • @NathanStocks
    @NathanStocksАй бұрын

    You're amazing! My first organization sponsor. It wouldn't take many sponsors like you to hit my goal. ❤ Tell me why my Rust News videos are valuable to you!

  • @soma_rc
    @soma_rcАй бұрын

    Is that sponsorship thing us-only?

  • @NathanStocks
    @NathanStocksАй бұрын

    No! GitHub Sponsors is currently available in 35 regions. github.com/sponsors/

  • @pfeilspitze
    @pfeilspitzeАй бұрын

    I think these need to focus more on what *you* can provide value about more specifically. I read the release blog posts, so while these videos are nice they're also not essential as-is, to be frank. Maybe if you did more "here's one cool thing" videos? Like for this release, maybe you could do a "here's how the ub checks help you write correct code, and BTW if you're interested in that then here's my course about `unsafe` that you should buy!" kind of thing. Being exhaustive feels like it must be so much work, but I don't know how much value most viewers get from you covering *everything*.

  • @NathanStocks
    @NathanStocksАй бұрын

    Covering things exhaustively is definitely a ton of work. Thanks for your suggestion!

  • @user-fe8hp6jv9f
    @user-fe8hp6jv9fАй бұрын

    First time viewer, loved the video. I really hope you will find a sponsor, and if it isn’t going to be too much of a hustle please update us in the community tab if you will manage to find one wish all the best to you! By the way your content is tailored towards very advanced audience in the rust ecosystem as you are pretty much covering the bleeding edge of rust development, so it isn’t too surprising that no one is buying your course from the advertisements on those videos. One potential idea you can try is to make a low level video that will explain some simple features of rust, for one bad example is how does .len() on arrays work and why is it O(1) complexity. Making analogies with C in those cases will also benefit the community as you will be exposing the working of rust to people who are familiar with c but not rust, which can hypothetically get you costumers for your rust course.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you! I'm glad you loved the video. So in other words, make intro course videos to get people to buy courses? That's definitely one of the options that falls under "stopping doing news and working on courses". Not a bad idea, but not going to help me keep doing the news. 😆

  • @user-fe8hp6jv9f
    @user-fe8hp6jv9fАй бұрын

    @@NathanStocks haha fair enough, but ya I don’t think bleeding edge news will bring in new people to buy your course sadly. I was thinking of doing this along with the news but ya I can understand if you aren’t enthusiastic about doing that, wish best of luck to you really hope you will get a sponsor!

  • @andrewshorts1198
    @andrewshorts1198Ай бұрын

    @nathan can I get a discount on Udemy video?

  • @NathanStocks
    @NathanStocksАй бұрын

    Sure. Here's about 87% off of my Ultimate Rust Crash Course on Udemy. www.udemy.com/course/ultimate-rust-crash-course/?couponCode=ABD7539FAD05201FDBE8 The exact discount depends on the Udemy country / price region you are in. It expires 5 days from now. Anyone can use it.

  • @andrewshorts1198
    @andrewshorts1198Ай бұрын

    @@NathanStocks Much appreciated, I bought it.

  • @GaryChike
    @GaryChikeАй бұрын

    Looking forward to your Rust Advanced courses, I've enjoyed both your beginner and intermediate courses.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you so much! I'm glad you enjoyed my courses and want more! This is a vote _against_ making more news videos. 😂

  • @GaryChike
    @GaryChikeАй бұрын

    @@NathanStocks😂 I can’t keep up with ‘real’ news! 🗞️ 😂

  • @NathanStocks
    @NathanStocksАй бұрын

    @@GaryChike Oh, neither can I. I gave up on keeping up with "real" news 10 or 15 years ago. Rust News is far more wholesome and rewarding.

  • @floodplainnl
    @floodplainnlАй бұрын

    Yes, I understand it is tough. Choose life, spend time with your child, take a break, and if at some point you come back, we'll still be here. Either way, take my (small) sponsorship.

  • @NathanStocks
    @NathanStocksАй бұрын

    People like you make a difference in the world. Thank you for your kind words and your sponsorship! All sponsorships mean a lot to me, regardless of size.

  • @ayoubelmhamdi7920
    @ayoubelmhamdi7920Ай бұрын

    The improvement of security is not news that I want to hear about programming, it's boring, there are many kinds of excited released which I expected to hear. that's my perspective that is of course wrong at all.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thanks for your feedback.

  • @jimbone6460
    @jimbone6460Ай бұрын

    Please don't stop with your Rust news

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you for your kind words. We'll have to see what happens!

  • @Dygear
    @DygearАй бұрын

    For what it's wroth, I actually did purchase your course videos. It was very helpful still while I was an "ok" rust dev to an "actually pretty good."

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you so much! It must have been on Udemy, because my self-hosted courses still haven't gotten a customer.

  • @evlogiy
    @evlogiyАй бұрын

    Thanks for being honest! I've watched almost every video of you reviewing the Rust releases, and it's going to be really sad if you stop doing them. They are great. Is it possible to lower the standard and spend less time on the videos? I feel like I would gladly watch even a simple, unedited live video where you just sit and read the Rust release changelog and tell all you can about the described changes.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you for your kind words! I don't think I could do a lower quality version (it just wouldn't feel good to me--I want to be proud of what I create), but being more selective about what I report on is definitely an option!

  • @pfeilspitze
    @pfeilspitzeАй бұрын

    @@NathanStocks Depending on your target audience, a different platform and structure might be a way to feel better about that. Sketching an idea: you advertise that the Saturday after every release you'll do a twitch stream going over what's in the release at, say, 3 PM EST, which you time-box to something you're comfortable with. Then you can try to make it a bit of an event that people join for and chat with you and other excited fans about what's new, and aim to get bits donations (that are more efficient for small amounts than some other things are) or subscriptions to offset your effort. Because that sets a different polish expectation than a youtube video like this does. Maybe that's a bad idea, or not how you'd like to do things, but just musing about different possibilities because I agree with you that on youtube I'm usually looking for something focused and nicely produced (like you've been doing) rather than something that can get more rambly.

  • @NathanStocks
    @NathanStocksАй бұрын

    @@pfeilspitze Thanks for the idea!

  • @paulselormey7862
    @paulselormey7862Ай бұрын

    First time here and not a rust programmer (at most a beginner). I could not understand the appealing side of this video: looking for $1000/month for Rust News? Looking at the video list, it's averagely 2 videos per month, and that will be about 48 hours per month!

  • @NathanStocks
    @NathanStocksАй бұрын

    I don't understand what your question is. Would you like to try my Rust crash course? I posted an 87% discount link in one of the other comments.

  • @paulselormey7862
    @paulselormey7862Ай бұрын

    @@NathanStocks Not asking a question. Just a comment on your appeal for support - that you should keep it real. Also, thanks but I was not looking for a rust course. This video was recommended by KZread.

  • @Dygear
    @DygearАй бұрын

    Re 13: @8:31 - You're not my real dad.

  • @NathanStocks
    @NathanStocksАй бұрын

    Your real dad would warn you against using static mutable references, if he were me. 😂

  • @SimGunther
    @SimGuntherАй бұрын

    To go off of what @Dygear mentioned, it would be cool creating a useful project or two that solves real problems and incorporates all the new features in the rust change log. That way, you can document how each new feature was useful compared to other similar features in the language and why it was good/bad using that new feature along with covering the scenarios where the new feature is best applied in.

  • @NathanStocks
    @NathanStocksАй бұрын

    That would be super cool.

  • @Ugly_Giant_Bag_of_Mostly_Water
    @Ugly_Giant_Bag_of_Mostly_WaterАй бұрын

    How dare you? It's 17. mai, grunnlovsdag for pete's sake!

  • @NathanStocks
    @NathanStocks17 күн бұрын

    I’m so confused. Google tells me that’s “Basic Law Day” in Norway? Does that have something to do with Rust?

  • @Ugly_Giant_Bag_of_Mostly_Water
    @Ugly_Giant_Bag_of_Mostly_Water12 күн бұрын

    @@NathanStocks No, no, you can't divide the word up like that, it loses all meaning. But if you were to divide it up, it should be Ground Law Day. But none is correct, it's Constitution Day, and the former was founded on the 17th of May 1814. No, it has nothing to with Rust.

  • @Yas-gs8cm
    @Yas-gs8cmАй бұрын

    Suggestion: Make automated tools to create the videos, if already doing so, open source and let people help you optimize them. In essence, do what Manim did. Idk, something like IRC/Feed -> preprocessor (shell/grep) -> Slides/PDF (Sent) -> ffmpeg (video) will save a HUGE amount of time. You can contact me or publicly explain your workflow to help developers do that for you, no reason to code even.

  • @NathanStocks
    @NathanStocksАй бұрын

    Hmm. I mean...maybe that could help a little? Most of my time is spent understanding why something was done and what was so important about it and then stating that. Maybe AI could give that a try and reviewing and fixing it would be faster? I dunno. Not completely sold, but not throwing the idea out either.

  • @Yas-gs8cm
    @Yas-gs8cmАй бұрын

    @@NathanStocks Fair, just assumed the most time consuming is the video editing and gathering information. If your time goes on other things, then yeah this is not the best idea. Anyways hit me up if I could help in anyways.

  • @Yas-gs8cm
    @Yas-gs8cmАй бұрын

    It doesn't answer how to make more money but I just wanna say that this format was actually pretty nice too... Just put less in it, most of the changes may not worth covering... The amount put in this video was just perfect.

  • @NathanStocks
    @NathanStocksАй бұрын

    Interesting idea! Heavier editing and only reporting on the more interesting things. That could make the videos more interesting and somewhat quicker to produce. Only somewhat faster, because more than three quarters of my time is spent in the initial research, and I would still be doing most of that.

  • @Marfig
    @MarfigАй бұрын

    I'm just... So people still write to this day code to programming languages standard libraries that accept unchecked user input? Just wow!

  • @thingsiplay
    @thingsiplayАй бұрын

    As far as I know its a bug in Windows that makes it unchecked. There was no way for the Rust team to know this. It's not just Rust that had this problem, but bunch of programming languages, including Java, Go, Haskell, NodeJS, Python and more. This was not an oversight by library developers, but by Windows developers.

  • @Marfig
    @MarfigАй бұрын

    Wait. I see what you mean. But if the operating system API documents to clients the idea that strings will be checked, it's NOT the Rust standard library responsibility to fix this. And it shouldn't really. It's up to either Microsoft to fix it, or developers to validate the input themselves.

  • @Marfig
    @MarfigАй бұрын

    Ok. Replying to myself. I had to go and take a look. This wasn't making sense to me. The issue is not that there is a bug on Windows. And the Windows API documentation is clear that it is the client responsibility to parse strings. The issue is instead that cmd.exe has its own string splitting mechanism and there was no way the standard library could work consistently on all cases. The fix was to return an error when it cannot safely escape the string. It's up to the client to do their own checking.

  • @NathanStocks
    @NathanStocksАй бұрын

    @@Marfig Thanks for digging deeper!

  • @irlshrek
    @irlshrekАй бұрын

    Cool! What's that color scheme? Can I get it on neovim?

  • @scarecat
    @scarecatАй бұрын

    pretty sure its monokai, or one of its derivatives

  • @irlshrek
    @irlshrekАй бұрын

    @@scarecat thanks! yeah after doing some searching i think its called "Molokai" so you were right :)

  • @NathanStocks
    @NathanStocksАй бұрын

    I did, indeed, begin with Monokai from Sublime Text back in the day. I've adapted it through migrations to Vim, IntelliJ, and VS Code. Here are my current settings you are welcome to adapt: github.com/CleanCut/dotfiles/tree/main/vscode

  • @irlshrek
    @irlshrekАй бұрын

    @@NathanStocks cool! Thank you!

  • @ChefOnACloud
    @ChefOnACloudАй бұрын

    Don't feel any pressure to do anything you don't want to do. But I personally love these videos. Thank you for each and every one!

  • @NathanStocks
    @NathanStocksАй бұрын

    Thanks for your advice and kind words!

  • @CYXXYC
    @CYXXYCАй бұрын

    i dont even read the rust official posts since there are such indepth update videos

  • @NathanStocks
    @NathanStocksАй бұрын

    Awww, thanks!

  • @KhaledKimboo4
    @KhaledKimboo4Ай бұрын

    People pay to attend a programming language conference, what?!!???

  • @commander_storm
    @commander_stormАй бұрын

    Conferences cost money to host => them not being free is entirely reasonable

  • @NathanStocks
    @NathanStocksАй бұрын

    Yep!

  • @holly_hacker
    @holly_hackerАй бұрын

    I really like these videos, but 1000usd for 20 hours of work seems like a lot, no? I understand that you want to be paid for your work and I definitely support that, but it seems to be a bit out of proportion. Regardless, I suggest contacting the rust foundation, they sponsor these kinds of projects.

  • @Yas-gs8cm
    @Yas-gs8cmАй бұрын

    You are kinda right but also no. Notice 1000$ is not THAT much if you are Canadian (probably, the heck do I know I earn 100$ or less a month coding in my country so yea). Also, pay attention, he is not saying 1000$ for 20hours, he is saying 1000$ a month. He may definitely work more than 20 hours. Also, there is another flaw in your logic. One may work 10 years, (free lets assume, like education and practice) to do something worth 1000$ in 5 mins which somebody without that experience does 10 hours. If you hire the 5 minute guy, you must pay him for 10 hours, even maybe more. If he is taking less time, he actually borrowed his past time to the future, in other words, in some sense, he already worked those long hours, you just don't know. Yes, I know making videos is not heart surgery but if I was him, and I was also you at the same time, commenting this and reading this, I'd be furious as the editor because I know for a fact that me as a critic, cannot realistically do the same job with the same efficiency and for less money. I, Yas, personally find making KZreads and scavenging data a boring and (frankly) stupid hell of a job. So yeah, sorry for the long response, since your comment had thoughts behind it and you seemed like somebody that actually may want to see other points of views, I wrote this.

  • @NathanStocks
    @NathanStocksАй бұрын

    Quite frankly, no, it's not a lot for me, especially given my negative starting balance from investing $25,000 in equipment and hundreds of hours into making free videos for 15 months. It's a _minimum_ that could help me justify to myself spending more time making these news videos that I love. But if I can't, I'll pivot that time (and equipment) towards other pursuits that people don't expect to be free, like my courses.

  • @NathanStocks
    @NathanStocksАй бұрын

    @@Yas-gs8cm Actually, @holly_hacker is not right at all. $1000/month for two years won't even pay for the existing equipment I use, much less pay me anything for my time or cover any ongoing costs. It's just...a start.

  • @LtdJorge
    @LtdJorgeАй бұрын

    Jokes on them, I link my installed Rust packages with mold which is even faster (on Gentoo, so it is global)

  • @NathanStocks
    @NathanStocksАй бұрын

    Haha! Love it. You should definitely be able to micro-optimize your own projects far more than any defaults. I won't complain about a big improvement in the default, though!

  • @LtdJorge
    @LtdJorgeАй бұрын

    @@NathanStocks for normal distros and packaged software, it's really difficult since everything is prebuilt and only binaries are installed. On Gentoo and similar distros, the packages are downloaded as source (if possible) and compiled in-situ, so per-package optimization is available. For Rust, changing linker in Gentoo is as easy as defining your own RUSTFLAGS as "-C linker=clang -C link-arg=-fuse-ld=mold" However, as you say, it's much easier for your own projects. You just have to put that in your config.toml instead as [target.x86_64-unknown-linux-gnu] rustflags = ["-C", "linker=clang", "-C", "link-arg=-fuse-ld=mold"]

  • @VivekYadav-ds8oz
    @VivekYadav-ds8ozАй бұрын

    I haven't watched the video completely yet but I'd just like to say that this is very important piece of content. I often just can't aggregate all the changes and why they were made (for reading them later on). Your videos are definitely what fills this kinda space and I'm prettty sure it does for a lot of other people too.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you! That is exactly what I'm shooting for.

  • @liamwoodleigh
    @liamwoodleighАй бұрын

    Nathan! Please seek sponsorship from the Rust Foundation! They’re the right people to help you (and the community) here ❤️

  • @celdaemon
    @celdaemonАй бұрын

    I seriously do hope they'd help yeah!

  • @Leonhart_93
    @Leonhart_93Ай бұрын

    It's ironic but they are the one foundation that I can't trust to come through on such matters, due to their obvious past idiocies.

  • @NathanStocks
    @NathanStocksАй бұрын

    I will try that! Any insights as to how to go about doing that?

  • @liamwoodleigh
    @liamwoodleighАй бұрын

    @@NathanStocks I don’t know personally, sorry. I do know that @fasterthanlime is or was sponsored, maybe he can advise further

  • @rolobio
    @rolobioАй бұрын

    Hey Nathan, it’s hard to keep putting things out there with little coming back. I have a project out there and have never received a donation. It just seems people expect free labor most of the time. I would suggest taking the production quality back a lot, and just doing a fun video when you’re excited about something. But, no harm in just moving onto the next thing! Sorry to hear about the single dad situation. That’s a huge burden. I would like to help, but not sure how.

  • @NathanStocks
    @NathanStocksАй бұрын

    Good advice. Cutting down the videos could allow me to keep doing them. I just...really like covering everything! And moving onto the next thing may just need to be what I do.

  • @thingsiplay
    @thingsiplayАй бұрын

    Just started watching the video. I actually enjoy your Rust news videos with explanation of everything. It's the go to place for this kind of content, ever since I discovered it. I would be really sad if this goes away, because nobody does it like you (and this clear and well). With every update of Rust, the first thing I do is to check if you posted a new video about it. So please, if its possible, then keep doing this. Just for me, who cares about the other users. :D Thank you for all the efforts you did so far. Now I will continue watching the video. Have a good weekend.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you for your kind words! That's very encouraging.

  • @SergeyVilgelm-xb8sp
    @SergeyVilgelm-xb8spАй бұрын

    Hmm, I’m one of those who already did your courses, had them on Udemy. And because of the courses, I found you here 😀. Thank you for your work, and I agree with previous comment, I really wait your videos to learn about the changes in new releases

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you for your kind words!

  • @Dygear
    @DygearАй бұрын

    This is a lot like a “Behind the change log” that explains the actual point of the changes vs simply listing them. This is invaluable to the community.

  • @NathanStocks
    @NathanStocksАй бұрын

    Thank you so much! Explaining the actual point of the changes is exactly what I'm shooting for. I would settle for "valuable enough that community/organizations will support him so he can keep doing it".