I’ll be clear, quite embarrassingly I bit my tongue hard last night and haven’t been talking right all day. Hurts to talk, hurts to eat, and worst of all hot tea is undrinkable. How will I live. Now I know exactly what it feels like to be soldier wounded in combat.

Will resume next week in full force. In the meantime however please feel free to read ahead. Or, alternatively, try out a few leetcode\advent of code questions. This what I’ll be doing tonight.

  • @[email protected]
    link
    fedilink
    English
    62 months ago

    No tea!? I hope that at least you live in nothern hemisphere. Not having tea IS easier in warm summer climat.
    Get well soon.

  • Binette
    link
    fedilink
    English
    22 months ago

    Get well soon! I’ll use that time to catch up

  • maegul (he/they)M
    link
    fedilink
    English
    22 months ago

    Oh god! I feel this … I’ve bitten into my inner cheek real bad in the past! Hope you heal well!


    I don’t know where you got up to last stream but I’m presuming you’ve gotten a fair way through the smart pointers chapter (perhaps finished it).

    Any one have thoughts on them or general experience with the concept? I don’t and am curious what everyday use cases they offer (as I’m unclear)

    As far as Box is concerned, I get the use case for large data structures, where moving a pointer around is cheaper but because it also owns its data you don’t have to worry about lifetimes.

    I’ve seen (and posted somewhere here before) about how a struct should never have a reference as a field but should have a box instead … not sure I appreciate what that scenario looks like.

    Rc seems genuinely useful as a way of just opting out of lifetimes and ownership when the data doesn’t need to be mutable.

    And then RefCell, especially in combination with Rc, seems ideal for constructing interesting data structures that seems much more natural for package development rather than in application, but feels like a nice technique for when the time comes. Anyone aware of some good patterns of general use with RefCell and Rc?

    I’m currently reading through the concurrency chapter and it seems that the smart pointers of most practical use might be the concurrent equivalents: Arc (concurrent equivalent of Rc) and Mutex (concurrent equivalent of RefCell).


    Beyond all of that … this stream is pretty close to finishing the book and moving on to other more practical things … any one have any thoughts on what to do that could work well at a collective level?