• zack_overflow Profile Picture

    zack (in SF) @zack_overflow

    10 months ago

    Tbh I think Rust is way easier than people make it out to be You can literally learn it in 2 weeks What I did was I took 15 minutes a day to solve a programming puzzle in Rust After 2 weeks I basically had memorized almost all the patterns to solving borrow checker errors

    60 23 917 102K 277
  • zack_overflow Profile Picture

    zack (in SF) @zack_overflow

    10 months ago

    Working with the borrow checker is 90% pattern matching on previous borrow checker problems you’ve fixed At first it requires a little more cognitive resources But after a while it’s basically a memorization problem

    3 1 109 6K 3
  • wavefnx Profile Picture

    wavefnx @wavefnx

    10 months ago

    @zack_overflow 100% Rust is intuitive by design which leverages our pattern recognition algorithms. One of the easiest languages to learn due to no unexpected behaviour

    2 1 14 2K 0
  • __morse Profile Picture

    Tommy D. Rossi @__morse

    10 months ago

    @zack_overflow Which programming puzzles?

    1 0 13 4K 0
  • penberg Profile Picture

    Pekka Enberg @penberg

    10 months ago

    @zack_overflow Rust was pretty hard for me to learn, but I think hardwiring my brain into thinking in C for a decade or so was the main reason. Had to unlean some things to really master Rust

    0 0 6 473 1
  • hd_nvim Profile Picture

    Herrington Darkholme @hd_nvim

    10 months ago

    @zack_overflow 😂 I have never used lifetime when solving leetcode problems in Rust

    0 0 2 146 0
  • Sauers_ Profile Picture

    Sauers @Sauers_

    10 months ago

    @zack_overflow It's easy because the compiler literally just tells you what you did wrong and precisely how to fix it

    0 0 1 116 0
  • __morse Profile Picture

    Tommy D. Rossi @__morse

    10 months ago

    @zack_overflow What I don’t like is all the weird library APIs you find in Rust, just to look smart

    1 0 0 1K 0
  • _theonly1me Profile Picture

    atchyut @_theonly1me

    10 months ago

    @zack_overflow Definitely not as hard as people think it is. There is a learning curve because you have to actually think about your code but that’s a great thing and will make you a better programmer at other languages too.

    1 0 9 2K 0
  • DeepknowledgeU Profile Picture

    Govind @DeepknowledgeU

    10 months ago

    @zack_overflow copilot + rust analyzer (thats how I am learning now ) Claude to ask questions in case you run into issues

    1 0 8 3K 2
  • og_fhools Profile Picture

    fhools⚡️🦀 @og_fhools

    10 months ago

    @zack_overflow when i was first learning rust I did the very first AoC 2016. it worked out well, still have gaps when i tried reading the rustonomicon. you can get very far just using safe rust.

    0 0 3 2K 3
  • mcd0w Profile Picture

    Emmett McDow @mcd0w

    10 months ago

    @zack_overflow You can learn most things in two weeks! Only things you need are usually the prerequisite knowledge and the willingness to struggle.

    0 0 3 1K 0
  • tkanarsky Profile Picture

    Tim Kanarsky @tkanarsky

    10 months ago

    @zack_overflow agree. the really nice part is that once you have internalized the notion of "where is my data living" and "how long does it live" it transfers to other languages as well.

    0 0 3 341 1
  • AniC_dev Profile Picture

    Anicet @AniC_dev

    10 months ago

    @zack_overflow Everything seems hard till it becomes popular enough to be taught in code bootcamps Reality is that everything is easy to learn & hard to master

    0 0 3 830 0
  • _ravic Profile Picture

    Ravi @_ravic

    10 months ago

    @zack_overflow I completely agree with you. I mastered the technique of piercing my eyeballs with hot pins. I practiced everyday for 10 days and it was precisely what I didn’t want to do so I used Go lang instead and completed my application. The end.

    0 0 3 334 0
  • soroush_srd Profile Picture

    Soroush Sardashti @soroush_srd

    10 months ago

    @zack_overflow Tbh, rust is way easier than python or its counterpart C++. What makes it hard is the unsafe part and its unique design patterns.

    0 0 3 859 0
  • oconnor663 Profile Picture

    Jack O'Connor @oconnor663

    10 months ago

    @zack_overflow I think 20-30% of people hit the same problem where the first big thing they try to make in Rust is basically a graph. Linked lists are a special case of this, and games also tend to do it. You can get very stuck doing this in Rust, and the compiler's hints can be wrong.

    1 0 2 429 2
  • luigi_sgl Profile Picture

    Luigi Sgl 🇪🇺💸 @luigi_sgl

    10 months ago

    @zack_overflow Yeah, especially for someone already proficient at C. There is just a few syntax to learn. When coding in C you already borrow check in your head, so having it done by the compiler adds no cognitive overhead.

    0 0 1 253 0
  • LewisCTech Profile Picture

    Lewis Campbell @LewisCTech

    10 months ago

    @zack_overflow Rust was insanely hard for me to learn. I think I've got the hang of it now, but it was a painful journey. Looking back, I should have just read the rust book. I was so used to just winging it when learning languages, but that didn't work for rust.

    0 0 1 99 0
  • moondrencht Profile Picture

    alexwang @moondrencht

    10 months ago

    @zack_overflow rust is not difficult and coding in rust feels like pair programming. though the last time i did was pre gpt era

    0 0 1 30 0
  • Lettnem Profile Picture

    Lettnem @Lettnem

    10 months ago

    @zack_overflow I think borrow checker teaches/forces you to think about data ownership. After internalizing that, you fight/interact with borrow checker much less.

    0 0 1 243 0
  • H2CO3_iOS Profile Picture

    Universally-Quantified Type Variable @H2CO3_iOS

    10 months ago

    @zack_overflow True – this, however, requires that you actually understand what you are doing, which most people don't. And then they complain about how knowledge that was commonplace CS 101 around 20-30 years ago (such as memory layout) is "HARD!!!". -.-

    0 0 1 163 0
  • OvermindDL1 Profile Picture

    OvermindDL1 @OvermindDL1

    10 months ago

    @zack_overflow @seanbax Frankly, if you already followed the C++ core guidelines then you already had rust lifetimes down. I was easily productive in rust within a couple of hours and had it down to a very high level within a couple of weeks, pretty much replacing my C++ usage at that point.

    0 0 1 404 0
  • KTK9023 Profile Picture

    KTK @KTK9023

    10 months ago

    @zack_overflow How should I learn java script... I know html and css basics

    1 0 1 4K 0
  • stackedatoms Profile Picture

    the shield @stackedatoms

    10 months ago

    @zack_overflow 0/10 rage bait

    0 0 0 19 0
  • GilbertGravis Profile Picture

    Bryan @GilbertGravis

    10 months ago

    @zack_overflow If Go is better for asynchronous, what's the best place for Rust?

    0 0 0 279 0
  • jodavaho Profile Picture

    Joshua D Vander Hook @jodavaho

    10 months ago

    @zack_overflow What. So. Let me get this straight. The entire language is just making the compiler happy when you write unsafe code? I think there's more than that.

    0 0 0 266 0
  • WczPaul Profile Picture

    Paul WCZ 🐍⌚️📚 π² @WczPaul

    10 months ago

    If you like Rust et WASM you may like how the tech stack behind @MultiversX blockchain ! The tech they are building is awesome, they resolve the blockchain trilemma through sharding, and they have a particular attention to fund’s users security (no wallet drain possible, MEV not worth it, can literally leak your seed phrase without issue thanks to a 2FA authenticator) If you want to learn my I advice you reading or talking to @SasuRobert

    0 0 0 427 0
  • ____Snazzy Profile Picture

    Snazzy @____Snazzy

    10 months ago

    @zack_overflow I guess people are comparing rust learning curve to things like go that you can pickup almost immediately. And getting intuition with the rust borrow checker in 2 weeks is pretty good, but I think rust has a lot more aspects than that.

    0 0 0 175 0
  • MFI_Leaks Profile Picture

    MFI_Leaks @MFI_Leaks

    10 months ago

    @zack_overflow Agree. Plus tools

    0 0 0 275 0
  • zarkones Profile Picture

    ZARKONES @zarkones

    10 months ago

    @zack_overflow I do agree it's easier than what is generally perceived. Could be that majority of people aren't comfortable with environment outside of the garbage collector. Just gessing tho..

    0 0 0 79 0
  • giacomomiolo Profile Picture

    Giacomo Miolo @giacomomiolo

    10 months ago

    @zack_overflow 💯

    0 0 0 173 0
  • BrandonHarrell3 Profile Picture

    MinisterOfDefenseSF @BrandonHarrell3

    10 months ago

    @zack_overflow I’m actually on the fence between Rust and Zig. I’ve been a professional Go dev for almost a decade. I know Rust will have more career opportunities but that’s not the main factor in learning a new language for me

    0 0 0 204 0
  • Download Image
    • Privacy
    • Term and Conditions
    • About
    • Contact Us
    • TwStalker is not affiliated with X™. All Rights Reserved. 2024 www.instalker.org

    twitter web viewer x profile viewer bayigram.com instagram takipçi satın al instagram takipçi hilesi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al sosyalgram takipçi satın al instagram ücretsiz takipçi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al metin2 metin2 wiki metin2 ep metin2 dragon coins metin2 forum metin2 board popigram instagram takipçi satın al takipçi hilesi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al buyfans buy instagram followers buy instagram likes buy instagram views buy tiktok followers buy tiktok likes buy tiktok views buy twitter followers buy telegram members Buy Youtube Subscribers Buy Youtube Views Buy Youtube Likes forstalk postegro web postegro x profile viewer