Unreasonably Easy Console Apps in Rust

Поделиться
HTML-код
  • Опубликовано: 13 янв 2025

Комментарии • 197

  • @hugo4it
    @hugo4it Год назад +89

    fun fact: crossterm supports all UNIX and Windows terminals down to Windows 7

    • @monad_tcp
      @monad_tcp Год назад

      Windows without VT , amazing.

    • @redpepper74
      @redpepper74 Год назад +6

      features: crossterm supports all UNIX and Windows terminals down to Windows 7

    • @SzásaTabasov
      @SzásaTabasov 5 месяцев назад +1

      And as a matter of fact, crossterm supports all UNIX and Windows terminals down to Windows 7

    • @NSA.
      @NSA. 4 месяца назад +2

      source: trust me bro
      jk
      source: the crossterm rust docs

  • @tialaramex
    @tialaramex Год назад +128

    ncurses is actually newer than the web - it's from 1993 and Tim starts the web in 1991
    But it's called ncurses because it's the *new* curses. The curses library was invented to improve Rogue, over a decade earlier, so curses does pre-date the web and even most GUIs

    • @monad_tcp
      @monad_tcp Год назад +7

      I always thought it meant new cursings, compared to the old cursings.
      Because that's what you say when you have to use such libraries.

    • @HalfMonty11
      @HalfMonty11 Год назад

      ​@@monad_tcp ah old difficult cursing... like, "damn your lineage and let the fields run barren wherever you rest your head" as opposed to new more efficient cursing, "fuck you".

  • @yannick5099
    @yannick5099 Год назад +57

    59:26 the vim beginner experience

  • @plumcakey
    @plumcakey Год назад +117

    i love how i am learning stuff in a better way by just watching your videos instead of tutorials

    • @ivanjermakov
      @ivanjermakov Год назад +34

      Building stuff yourself is even better.

    • @maximus1172
      @maximus1172 Год назад +5

      @@ivanjermakov My hands and mind stop working when I have to think about it lol

    • @javierflores09
      @javierflores09 Год назад +26

      @@maximus1172 it is just fear of making trash, you have to be humble and accept that anything you'll make at the beginninng will in fact be trash and then just iterate it till you have something that resembles a working program

    • @iamdozerq
      @iamdozerq Год назад +1

      @@javierflores09Not always. I can do all kind of trash but my mind is white noise 90% of time.

    • @rogo7330
      @rogo7330 Год назад +1

      @@iamdozerq sleep better, intake tea with teaspoon of sugar, do not eat while thinking (makes you brain go into yum-yum-mode), eat before.

  • @comradepeter87
    @comradepeter87 Год назад +15

    The goal you mentioned at the start of the video (reserve the last line of the terminal for input and have conversations go on above it), reminds me when I was in high school and wanted to make my own terminal chat application. I also didn't want to use any library, and more importantly, was too lazy to learn ncurses. So I did it the non-portable hacky way as one would.
    Whenever a new message was received, I would just print "\b" `our_length` amount of times, where `our_length` is the length of the message our user is currently typing. Then print " " (space) `our_length` amount of times (\b doesn't remove the characters, it just makes ur cursor go back, so u need to write over them with a whitespace character). Now again print \b `our_length` amount of times to go back to the start of the line. Now print the received message, and then in the next line, print the user's currently typed-out message.
    This gave the illusion that the user has a dedicated text field.

  • @iglobrothers645
    @iglobrothers645 Год назад +23

    Your killing my productivity... That's how awesome you are 🎉

  • @jimhrelb2135
    @jimhrelb2135 Год назад +41

    I learned about `cargo tree` today. Love the paranoia-oriented programming approach, helps keep react andys from `npm install` onto 800+ deps for a hello world project at bay

    • @Bobbias
      @Bobbias Год назад +10

      That's partly due to node's godawful community though. When you're developing a library, you need to be extra aware of any dependencies you pull in. For small things which are only like 1 or 2 functions, it's often a better idea to just recreate that functionality yourself rather than include an otherwise unnecessary extra dependency. When writing something which isn't intended to be consumed as a dependency itself there's less need to be quite so paranoid about things.

    • @Jack-sy6di
      @Jack-sy6di Год назад

      @@Bobbias A decent model might be to have two ways of adding a library, either as a "dependency" or just copy-pasting it into your source tree. You could imagine something like "npm copy" to just stick the files right in your src/ so you can use them or modify them as if they were your own source code.

    • @monad_tcp
      @monad_tcp Год назад +2

      ​@@Bobbiasthe literally can't do that, imagine duplicating code that already exists elsewhere in the world. Imagine writing your own code.
      Totally "invented here" syndrome. Which is the opposite of not-invented-here in which you never use something you didn't make yourself. (which to be fair greatly simplifies and speeds up things, cut extremely the need for using outside libraries to a minimum)

    • @monad_tcp
      @monad_tcp Год назад

      ​@@Jack-sy6dithere's also the problem that JS is stupid and doesn't have a proper STL

  • @avidiaa
    @avidiaa Год назад +7

    You had become my first source of knowledge in programming and ... entertainment! Thank you really Tsoding

  • @Glazer209
    @Glazer209 Год назад +25

    Didn’t even realize that cargo doc would build local docs for deps, that’s incredibly useful

    • @TonyUnderscore
      @TonyUnderscore Год назад +4

      you also have the option to skip them with "--no-deps" I believe. Sometimes even docs take a while if you have a massive dependency tree and you just cargo cleaned lol

  • @bwestbro
    @bwestbro Год назад +2

    Thanks for the great videos! You inspired me to start a project I've been thinking about for a while and to use crossterm instead of a GUI.

  • @TankorSmash
    @TankorSmash Год назад +1

    I recently boosted the sensitivity of my mousewheel, hearing yours each time you scroll reminded me. It is so nice to just go one notch and a bunch of lines now.

  • @yes-ni1od
    @yes-ni1od Год назад +5

    Downloaded this video and watched it on a flight can’t complain

  • @hariranormal5584
    @hariranormal5584 Год назад +17

    I am starting to like this guy. I hate anyone coding. But your commentary also just is amazing

    • @slicerabbit6166
      @slicerabbit6166 Год назад +3

      you hate programmers?

    • @hariranormal5584
      @hariranormal5584 Год назад +2

      @@slicerabbit6166
      Ye. Dw, I hate myself first. My opinions anyways shouldn't matter.

    • @GRAYgauss
      @GRAYgauss Год назад

      why do you hate anyone wut @@hariranormal5584

  • @lame_lexem
    @lame_lexem Год назад +11

    i like to use `anyhow::Result` in my projects cos it's shorter to use `?` than `unwrap` and it's basically `Box` but instead of `Box` they use `Own` or something
    and provide helper functions like `context` and `bail!`

    • @yaksher
      @yaksher Год назад +6

      Specifically, `Box` puts the vtable pointer in the box struct itself, turning it into a wide pointer; by contrast, `anyhow` puts the vtable pointer on the heap next to the thing that's boxed. This is slower, since it requires two dependent indirection where the first approach allows for parallel access (which with CPU pipelining is faster), but you don't really care if accessing your error is marginally slower usually and it means that if your non-error type in result is

    • @Notoriousjunior374
      @Notoriousjunior374 Год назад

      You certainly don’t need a crate for handling errors and be able to use the ? operator.. All you need is a generic error struct and just implement From for MyError and you can use question mark operator everywhere.

    • @Bobbias
      @Bobbias Год назад +2

      @@yaksher Ideally your system shouldn't be throwing errors often enough for a performance impact like that to matter. I realize that's not always possible though, so of course there will be times where that may actually matter. But in general, that shouldn't be something you should worry about until the problem actually happens.

    • @yaksher
      @yaksher Год назад +1

      ​@@BobbiasThat was... exactly the point I made, yes.

    • @Bobbias
      @Bobbias Год назад +2

      ​@@yaksher People on the internet love to think that some practically irrelevant difference in performance somehow actually matters in their code, and nowhere did you say "this performance difference is meaningless".
      I just wanted to make that crystal clear to the sizable portion of Tsoding's audience who are not experienced programmers and who have that tendency to be terrified of anything that remotely sounds like it might hurt performance without actually understanding things.

  • @kxxxk_
    @kxxxk_ Год назад +13

    this channel is simply gold

  • @oxydiass
    @oxydiass Год назад +14

    I speak french and it cannot do that 11:43
    Best I can think of is «eaux», «noyaux» or «accueil»

    • @apologize9911
      @apologize9911 23 дня назад

      What about words like mangeable ? I think Queueable would be close to a french word since Queue is technically french word for tail

    • @oxydiass
      @oxydiass 23 дня назад

      @@apologize9911 yes but queue is not a verb in french unfortunately

  • @prezes4478
    @prezes4478 Год назад +4

    Very informative video! I finally know how to flush, and how to clean

  • @thoriqadillah7780
    @thoriqadillah7780 Год назад +3

    As of 39:13, I don't know if you will explain more on the terminal flickering or not. But i tried build a terminal animation but a lot more simpler, and it was because of your previous video about bouncing ball on the terminal. I think the flickering can be solved by rendering it really fast like 60 frame per second

    • @monad_tcp
      @monad_tcp Год назад +2

      It's amazing when terminals can stream text at tens of megabytes per second.

    • @Anton_Sh.
      @Anton_Sh. Год назад

      @@monad_tcp can they&

  • @ME0WMERE
    @ME0WMERE Год назад +2

    The hybrid Gopher/Ferris mascot is one of the most cursed programming-related things I've seen

  • @wtfisgoingon535
    @wtfisgoingon535 Год назад +14

    In my humble opinion crossterm is here to stay. Lots of big crates/projects use it. In the worse case a fork will be made like for tui-rs (aka ratatui now) and the transition was seamless !

    • @TsodingDaily
      @TsodingDaily  Год назад +17

      > In my humble opinion crossterm is here to stay.
      lol

    • @real_ouss
      @real_ouss Год назад +3

      What? Is it dead already? 😜

    • @wtfisgoingon535
      @wtfisgoingon535 Год назад +5

      @@TsodingDaily Hehe don't quote me later but i use crossterm since 2019/2020 so i don't see it go away anytime soon.

    • @monad_tcp
      @monad_tcp Год назад +4

      Why do people feel this need for validation.
      Does the library do what you need ?
      Do any other libraries have a feature the one you are using doesn't have, no, then I fail to see the problem. If they have then you swap the libraries, or implement the feature in the library you're using , this is open source, baby.
      And you literally have the source to fix shit later if it's needed.
      Why must people only use what's popular. I don't get it, what a stupid metric. If something works, it works, this is engineering, not fashion.

    • @wtfisgoingon535
      @wtfisgoingon535 Год назад

      @@monad_tcp Is this message addressed to me ?

  • @Mrme-cn9je
    @Mrme-cn9je Год назад +1

    Would you think of making a rust tutorial series to teach people rust?

  • @konstantinrebrov675
    @konstantinrebrov675 Год назад +1

    This is a very good knowledge for RUST developers! Spasibo

  • @johanngambolputty5351
    @johanngambolputty5351 Год назад +7

    GUI is also very easy in rust with something like egui & egui_inspect (fork, because egui_inspect is kinda dead). I've been meaning to try clap and ratatui for cli and tui, but not sure there's that much point (for me, since adding egui_inspect to my structs is trivial enough, except for maybe headless access).

    • @eyemotif
      @eyemotif Год назад

      i can attest as someone who isnt that good at making actual guis that ratatui and clap/argh are very nice and easy to work with

    • @barbiefan3874
      @barbiefan3874 Год назад +1

      egui_inspect is a fork of egui? egui is dead? what are you on about?
      egui_inspect is a crate with derive macros for egui itself
      egui is alive and well, last commit 6h ago

    • @johanngambolputty5351
      @johanngambolputty5351 Год назад

      ​@@barbiefan3874 egui_inspect is dead, egui is of course fine and there are other inspect crates that are probably alive

    • @johanngambolputty5351
      @johanngambolputty5351 Год назад

      @@barbiefan3874 I mean I use a fork of egui_inspect

    • @not_ever
      @not_ever Год назад +4

      @@barbiefan3874 I dont think that is what they said. They said they use egui and a fork of egui_inspect "because egui_inspect is kinda dead"

  • @rogo7330
    @rogo7330 Год назад +4

    Actually not having a client and make everything work over something simple as netcat can be beneficial. The only problem is that server must do all the work of setting up terminal for you. Otherwise you can do netcat with rlwrap, but this limits you to one-line input, or do pipes in folders like ii does for IRC, where you can just cat file 'out' and write to other pipe 'in'.

  • @dieSpinnt
    @dieSpinnt Год назад

    "Oh it even can handle mouse events. I am intrigued!"
    Me: On the console? HERETIC!!!
    Hehehe, thanks for the video, Tsoder!:)

  • @AlexK544
    @AlexK544 Год назад

    Thank you for way how you do stuff. I learned a lot about workflow.
    Btw how you edit multiple lines in vim when adding second binary?

  • @Ma_X64
    @Ma_X64 Год назад +2

    It seems that the import section is growing noticeably faster than the program code itself. :D

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

    28:40 "Let's factor out your mom into a label" made my day

  • @tauraamui
    @tauraamui Год назад +7

    At about 13:59ish minutes in you got annoyed about the compiler telling you you had unused imports and to remove them, but it then required you to put it back. The reason you initially had the unused import warning was because of your unwrap being in the wrong place, and therefore it was never actually requiring that type to be in scope, until you moved unwap to the correct line. I am no fan of Rust, but to be fair that isn't something that the compiler would have known to account for.

    • @anon_y_mousse
      @anon_y_mousse Год назад +2

      That it warns of unused imports is something it can handle. It just shouldn't do that.

    • @monad_tcp
      @monad_tcp Год назад

      Except it is, why do you need to import things you don't use directly, aka transitive dependencies. Just do Hindley&Milter type inference on that. I'm kidding, that would make compile times almost infinite .
      Unless Rust is full of extension namespaces .
      Then it really is fair

  • @im-anomalies
    @im-anomalies Год назад +3

    You really deserve more subs dude, a lot more

  • @dieSpinnt
    @dieSpinnt Год назад +1

    terminal raw mode?
    It is good practice to safe the original states of the terminal settings that you change and restore them on exit (guaranteed by something like an exit or defer mechanism).
    That is the first and last thing you should always do. Well, besides that little ctrl-c problem, hehehe

  • @PilarczykM
    @PilarczykM 8 месяцев назад +1

    I like his folder size at the bottom of the terminal 😎😈😎

  • @monad_tcp
    @monad_tcp Год назад

    26:31 yes, but only if you use Canvas

  • @incltbr
    @incltbr Год назад +1

    Maybe a weird question I guess but in your recent AMA, your answer to the question “how to learn programming” was to just fuck around. I personally struggle with getting an idea for a project and having the motivation for it. If someone makes me write some program or code, I will do research and do the best I can but I just struggle with getting an idea for a person project. What would you (or anyone) recommend?

    • @avidrucker
      @avidrucker Год назад

      I think he's encouraging people to follow their curiosity. That said, you might not feel any particular inspiration or passion for making projects, and that can be OK too. Have you tried making tutorials to teach others? Or, have you tried taking any courses? Some people learn better with structure, accountability, and clear goals, versus exploratory/self-directed learning.

    • @emptybottle1200
      @emptybottle1200 Год назад +1

      i was inspired to have a simple personal project because of a movie, i watch some things that may inspire me to create something, you could try it this way.

  • @Shahnawaz_Laghari
    @Shahnawaz_Laghari Год назад

    Hey i wanna know what code editor you use for gui of c++

  • @vanvothe4817
    @vanvothe4817 Год назад +1

    Do you use lsp in emacs?

  • @Lanbyteach
    @Lanbyteach 4 месяца назад +2

    I'm from Brazil and I like your videos

  • @lamprospitsillou6325
    @lamprospitsillou6325 Год назад +1

    Why did raw mode fix the issue?

  • @mire6134
    @mire6134 Год назад +3

    11:24 ~ 11:50 was hilarious

  • @christopher8641
    @christopher8641 Год назад +6

    Would you mind telling me how i should feel about the rust programming language? I need something topical and snappy. Please I'm trying to base my whole personality off of this programming tool. Dude please

    • @comradepeter87
      @comradepeter87 Год назад +1

      This communiity seems divided.. you'll end up having a bipolar personality lol

  • @notSoAnonyymus
    @notSoAnonyymus Год назад

    Funny this video just popped up as im switching from nodejs to rust. Coincidentally I learned about CLI just before switching. Will be fun.

  • @yaksher
    @yaksher Год назад +3

    @1:01:30 Named loops + breaks crying in the distance.
    @1:10:10 Range indexing, crying in the distance. Why would you just index from where you need instead of iterating the entire thing every time. That would be insane.
    @1:18:20 Sees it asking for parenthesis, immediately gives up instead of just putting the parenthesis where it said to (granted, the thing he ended up with is better, but still)

    • @ElPikacupacabra
      @ElPikacupacabra Год назад

      Yeah, that iterator being consumed from index 0 was cringe. 😂 Maybe the quit flag is OK, because you don't know what your cleanup needs, long-term.

    • @yaksher
      @yaksher Год назад

      @@ElPikacupacabra I mean, in Rust:
      - you very rarely need cleanup because it's almost always done through destructors
      - you can just... put the cleanup after the loop? Like you would anyway?

  • @GrindAlchemyTech
    @GrindAlchemyTech Год назад +1

    😅 you make it a fun journey... thankyou

  • @opsJson_
    @opsJson_ Год назад +7

    i'm missing C videos

    • @c4llv07e
      @c4llv07e Год назад +2

      i'm missing Haskell videos

  • @fhools
    @fhools Год назад +2

    this is what coding is meant to be like. just having fun learning a library. none of this learn what a hook is, why we dont want class components,, call back vs async. I dont want a new paradigm of coding, i just want to show something on the screen.

  • @callyral
    @callyral Год назад +3

    youtube compression really dislikes scrolling

  • @10inall28
    @10inall28 Год назад

    Sir!
    Can you please explain Rust Lifetimes concept from ground

  • @jhtakalo
    @jhtakalo Год назад

    Good stuff. Thanks a lot!

  • @frandrumming
    @frandrumming 11 месяцев назад

    I have a question, why is it so hard to center an element in rust? ^^

  • @bassguitarbill
    @bassguitarbill Год назад +2

    41:39 lol I've been rereading the perl book, and one of their fundamental operators, alongside `+` and `*`, is `x`, the "string multiplication" operator, so literally `stdout.write("-" x w)` would do what you need here. I still don't know if perl is a good language but it's definitely a fun language

    • @aspectreishauntingeurope
      @aspectreishauntingeurope Год назад +13

      that's so cursed

    • @potatomaaan1757
      @potatomaaan1757 Год назад +3

      In python you can also do `"-" * w`

    • @benisrood
      @benisrood Год назад +1

      How is string multiplication defined as an operation?

    • @peter9477
      @peter9477 Год назад

      ​@@benisroodOperator overloading? Heck, you might even be able to define a trait in Rust that lets you do the same.

    • @ElPikacupacabra
      @ElPikacupacabra Год назад

      Perl is quite powerful for string manipulations, but a real pain to read. It leads people to write very cryptic code.

  • @thirdvect0r
    @thirdvect0r Год назад +1

    Malding over skill issues, classic zozing

  • @adarshdhital007
    @adarshdhital007 Год назад +2

    Hi, currently addicted to Rust because of your rust videos...

  • @raidensama1511
    @raidensama1511 Год назад +2

    Actually the “{x:.

    • @gishee18
      @gishee18 Год назад +4

      "-" * 30

    • @raidensama1511
      @raidensama1511 Год назад

      @@gishee18 yes and that too

    • @Bobbias
      @Bobbias Год назад +4

      Rust's use of a sensible format syntax is much nicer to work with. C's format syntax is awful, even disregarding how broken printf et. al. are.

    • @monad_tcp
      @monad_tcp Год назад +1

      ​@@BobbiasC would be awful if it had a format capability.
      printf is just a 0-day enabler.
      Shots fired.

  • @angelcaru
    @angelcaru 9 месяцев назад +1

    "Can your French do that?" - Tsoding

  • @thederpykrafter
    @thederpykrafter 7 месяцев назад

    I still find it easier to just write a bash script with escape sequences

  • @Eugensson
    @Eugensson 9 месяцев назад

    English: «Queueable»
    Luxembourgish: hold my beer... «Zweeeeëg»!

    • @Eugensson
      @Eugensson 9 месяцев назад

      Dutch: «koeieuier»

  • @fiona9891
    @fiona9891 8 месяцев назад

    watching you manually type out all of the use items is driving me insane
    i have gotten too used to autocomplete. it's eroding my brain

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

    1:12:00

  • @aqibyaseen2122
    @aqibyaseen2122 Год назад +1

    28:47 😵‍💫😵‍💫 i am supposed to be developing web right now.
    .
    .
    .
    .
    ..

  • @toskito123
    @toskito123 Год назад

    Is that Neovim?

  • @costelinha1867
    @costelinha1867 10 месяцев назад

    "Queue can fail"
    Wait... if it can fail... shouldn't the rust compiler just have... rejected the code altogether? I thought you weren't allowed to ignore fail cases in Rust... at least not without unrwapping or something...

  • @mrcrafter_y
    @mrcrafter_y Год назад

    Another tsoding vod to get to sleep.

  • @v2ike6udik
    @v2ike6udik 10 месяцев назад

    29:37 smooth :)

  • @matteo.veraldi
    @matteo.veraldi Год назад +1

    I cannot accept that you are not using autocomplete in Rust.

  • @FDominicus
    @FDominicus Год назад +3

    It seems the more often I see Rust, the more I dislike it ...

    • @peter9477
      @peter9477 Год назад +3

      Your loss, I guess. The benefits are well worth pushing past that early prejudice based on an emotional reaction to the syntax (assuming that's all it is).

    • @FDominicus
      @FDominicus Год назад

      @@peter9477 You may be right. But I doubt it really is a loss ....

  • @abzrg
    @abzrg Год назад

    thank you x 3

  • @dieSpinnt
    @dieSpinnt Год назад

    ... does INCLUDE a call to if needed.
    Just because you guys otherwise hate superfluous keystrokes (Emacs-User, hehe) like the devil, don't you?:) :P
    But I get it. You do this because of your "IDE" and the headless duck programming style (error -> correct, error -> correct, error -> correct, and so on, hehehe)
    (secret-pro-200-iq-monster-tip-hint: rust-analyzer in the IDE/Emacs ... )

  • @uncleabe8147
    @uncleabe8147 9 месяцев назад

    tats was awesome

  • @xsamuelx3603
    @xsamuelx3603 Год назад +1

    Felca Programador :)

  • @ademmohammed3939
    @ademmohammed3939 11 месяцев назад +1

    This guy is prime on crack!

  • @rotteegher39
    @rotteegher39 Год назад

    54:47 It's an Ukrainian flag? What is it doing there?

  • @brdevll
    @brdevll Год назад

    the jokes are on point with this one

  • @Ma_X64
    @Ma_X64 Год назад +1

    Я так яростно закивал about that idiomatic shit, что ёжнулся головой о полку.

  • @okage_
    @okage_ Год назад +1

    yay

  • @MurtagBY
    @MurtagBY Год назад +1

    At minute 10 it is sort of strange to see you making "fun" of the term queue and telling that the authors didn't know the term batch.
    Are you deadly sure one preceeds and fully includes the another?

  • @ryanleemartin7758
    @ryanleemartin7758 Год назад

    This is Rust program.. so be patient. lol nice.

  • @ferdynandkiepski5026
    @ferdynandkiepski5026 Год назад

    You can now add the -Zthreads=8 environment flag on the nigthly build to use the specified number of threads during frontend compilation which should make it faster.

  • @abcdefg-nu4xj
    @abcdefg-nu4xj Год назад +70

    is rust still the future or was it ruined because all the drama in the community ..?

    • @TsodingDaily
      @TsodingDaily  Год назад +334

      Have you even tried programming in it or do you treat as just a fashion item?

    • @vinos1629
      @vinos1629 Год назад +103

      Rust is a tool, imagine saying I will not use a hammer because I don’t like the hammer making company

    • @nyyakko
      @nyyakko Год назад +49

      @@vinos1629 i mean, well, in some contexts this argument may apply. what if the said company makes shitty hammers? 😅

    • @poggybitz513
      @poggybitz513 Год назад +16

      @@vinos1629 I say that. But then again, I work in hardware design, we love politics in our industry. The company I work for, arm, has a policy to only use tools from the people who aren't total dipsticks and is very anti open source. Not saying rust is that, rust is baby compared to drama in our industry.

    • @vinos1629
      @vinos1629 Год назад +10

      @@nyyakko you can argue rust is shitty, but for me it’s a useful tool in a lot of applications, If they make it shit I will stop using jt

  • @xsamuelx3603
    @xsamuelx3603 Год назад +1

    :)

  • @ankitdange1749
    @ankitdange1749 Год назад

    India💔

  • @OmOhm-gn7yz
    @OmOhm-gn7yz 10 месяцев назад

    You keep repeating yourself, I've noticed that it comes more often when you are out of the script. It denotes that your body is making use of Alternate Current for tasks that asks for Continuous Current. It is a backup so your system won't stall, but renders a choppier experience, undermining all your apparent strengths. Perfection comes primarily from brushing off imperfections. But it doesn't mean that the signal at the end will be better. In our case, perfection is when everything functions as expected, without extra loops.

  • @liminal27
    @liminal27 11 месяцев назад

    legacy-go-version

  • @goose_clues
    @goose_clues Год назад

    やっぱrustってクソっすね、忌憚の無い意見ってやつっす