Golang Building SSH and Bubble Tea App

Поделиться
HTML-код
  • Опубликовано: 29 янв 2024
  • LIVE ON TWITCH: / theprimeagen
    Become a backend engineer. Its my favorite site
    boot.dev/?promo=PRIMEYT
    This is also the best way to support me is to support yourself becoming a better backend engineer.
    Get in on Discord: / discord
    Get in on Twitter: / theprimeagen
    Got Something For Me to Read or Watch??:
    / theprimeagenreact
  • НаукаНаука

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

  • @TheUmangTarang
    @TheUmangTarang 5 месяцев назад +149

    Clicked as soon as I saw blue hair

    • @ZacMagee
      @ZacMagee 5 месяцев назад +6

      The only reason I clicked.

    • @vaisakhkm783
      @vaisakhkm783 5 месяцев назад +2

      I just read about bubbletea, so i was about save this video for later, but bluehair made me watch it now

    • @happygofishing
      @happygofishing 5 месяцев назад +3

      True rust user

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

      he achieves super saiyan god

  • @Zekian
    @Zekian 5 месяцев назад +84

    Prime: *Claims hair is not green*
    Prime: *Toggles green screen on and off for comparison*
    Me: *Reads chat through hair*

  • @Nurdoidz
    @Nurdoidz 5 месяцев назад +19

    Clicked for the blue hair, stayed for the vimming.

  • @deedlefake
    @deedlefake 5 месяцев назад +23

    The go.mod file is not a dependency list like package.json or mix.exs. Instead, it's just a set of rules for which versions of dependencies to resolve. The actual dependency list is the actual imports in the .go files. All go mod tidy does is remove things from go.mod that aren't actually used and add missing ones by defaulting to the latest versions of them, and then it formats and sorts the file. It's a good thing to run any time your dependencies change. The -v flag will make it print something when it removes unused dependencies.
    Go has two ways of getting a func type from a method: Method expressions and method values. A method expression just directly converts the method into a func by changing the receiver to be a normal first argument instead. A method value, on the other hand, bundles an existing instance into the function similarly to how a closure works. For example,
    type T struct{}
    func (T) M(int) string { /* ... */ }
    // Method expression:
    f1 := T.M // f1 is func(T, int) string
    f2 := (*T).M // f2 is func(*T, int) string
    // Method value:
    var t T
    f3 := t.M // f3 is func(int) string

  • @Tobsson
    @Tobsson 5 месяцев назад +23

    Dude, the hair! Finally the soyboy is bleeding out 😂

  • @draakisback
    @draakisback 4 месяца назад +5

    It's interesting that prime was surprised by how functional bubble tea is given that it's obviously a elm inspired system. For those you don't know, elm is a programming language that kind of bombed but it had a really cool programming idiom called model view update. Bubble tea essentially takes that idiom and builds it out into a framework.

  • @TankorSmash
    @TankorSmash 5 месяцев назад +4

    The Elm Architecture is great! Glad you got it instantly too. Looking foward to seeing more!

  • @chriscullinane7179
    @chriscullinane7179 5 месяцев назад +9

    sees blue hair... clicks.

  • @jogurtnaturalny
    @jogurtnaturalny 5 месяцев назад +4

    To say thank you and encourage you to get better with Go. Like HTMX, the simplicity of Golang removes a lot of entry barriers for new joiners like my sister.

  • @Terrados1337
    @Terrados1337 4 месяца назад +1

    30:11 Elixir sounds like heaven

  • @a_maxed_out_handle_of_30_chars
    @a_maxed_out_handle_of_30_chars 5 месяцев назад +1

    i did not even notice the blue hair until the discussion started

  • @Nurdoidz
    @Nurdoidz 5 месяцев назад +1

    My heart sank when you mentioned the code for Kinesis because I ordered one today, but I calmed when I saw it only applies to new keyboards, not the refurbished one I bought. I had a slight pressure in my wrist and since I'm now in my thirties, I wanted to prevent it from going on full RSI.

  • @kapraltygrys2603
    @kapraltygrys2603 5 месяцев назад +1

    look, blue hair california netflix dev

  • @dog4ik
    @dog4ik 5 месяцев назад +1

    bubble tea is most delicious library name i ever seen

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

    Dude already booked for his psychologist next week

  • @benasmockus6988
    @benasmockus6988 5 месяцев назад

    Looks like prime’s destiny is ninja.

  • @notuxnobux
    @notuxnobux 5 месяцев назад

    Now your hair fits your thumbnails

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

    10:22 when the vimeagen STRIKES!

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

    Blue hair in support for Golang

  • @AlexanderBorshak
    @AlexanderBorshak 5 месяцев назад

    Nice haircut, Prime!

  • @bitmasked
    @bitmasked 5 месяцев назад

    wtf did you do to your gentleman's coiffure my good sir

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

    Are you recording your streams at work?

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

    I wouldn't wish your hair on my worst enemy. Chat did you bad.

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

    Could someone recommend the Vim color scheme that corresponds to the new style of Primeagen?

  • @konsu89
    @konsu89 5 месяцев назад

    The name... is the NinjaAGEN

  • @theblahsable
    @theblahsable 5 месяцев назад

    blue is working for you. really goes to the hacker punk look you have.

  • @colemichae
    @colemichae 5 месяцев назад

    Nothing unusual it must have been a Theo bet. You are crazy in a way.

  • @gravityshark580
    @gravityshark580 4 месяца назад +1

    when did ninja started using neovim

  • @sinistergate
    @sinistergate 5 месяцев назад +2

    instead of go getting one by one, you could just do `go mod tidy`

    • @walar17
      @walar17 5 месяцев назад

      I think first you need `go mod init `

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

    How many channels do you have?! It's like the 10th one

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

    Save energy. Just flush once at the end of the day.

  • @SimonVassallo
    @SimonVassallo 5 месяцев назад

    Sexy blue hair time 😅 In the UK it is called blue rinse and only OAP’s die their hair blue.

  • @werzam518
    @werzam518 5 месяцев назад

    Now we know that cyan is the color of 2024 not 2023🎉

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

    I lost more brains cells that I gained from learning. WTF is this?

  • @noahg2
    @noahg2 4 месяца назад +1

    Am I the only one seeing green hair?

  • @Mikenight120
    @Mikenight120 5 месяцев назад

    Clicked for blue hair, stayed for Go coding💯

  • @ThatIrishGuy74
    @ThatIrishGuy74 5 месяцев назад

    #im-here-for-ninja #kinesis-keyboard-superiority

  • @dacio1348
    @dacio1348 5 месяцев назад

    Should've colored the moustache too....

  • @josephjoestar4318
    @josephjoestar4318 5 месяцев назад

    When can you dye it back?

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

    Blue hair! 💙

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

    omg he looks ever gheyer with green hair AND the moustache! Where's the nose ring?

  • @deepjaysoul
    @deepjaysoul 5 месяцев назад

    Have there been any Rezo comparisons? 😅

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

    now u look like that sr rust developer

  • @daeril123
    @daeril123 5 месяцев назад

    I am a little bit disappointed, I was expecting him to do blue hair and just entirely refuse to acknowledge anything about it.

  • @Robert-ht5kd
    @Robert-ht5kd 5 месяцев назад

    Bluuuuuuuuuuuuuuuuuuuue hair! 😆😆😆

  • @flavorfabs
    @flavorfabs 5 месяцев назад

    ok ninja

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

    is that rust hair?

  • @wurf5336
    @wurf5336 5 месяцев назад

    nice hair bro

  • @academai11
    @academai11 5 месяцев назад

    rust effect

  • @Ujjaval___
    @Ujjaval___ 5 месяцев назад

    Blue Hair

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

    Neo/Vim

  • @Kinasawa
    @Kinasawa 5 месяцев назад +1

    What was the bet, lol?

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

    when will you be re-writing this in rust?

  • @Milky____
    @Milky____ 5 месяцев назад +1

    You went woke v.v

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

    Types should be Capitalized?!?! so Int, Uint, Byte, String ?! what kind of madness is this?! looks like Java

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

    why you more like ninja

  • @cscnmhmt
    @cscnmhmt 5 месяцев назад

    what was the bet?

  • @darkarie
    @darkarie 5 месяцев назад

    AHAHHAHAAHAHHAHAHAHHAHAHAAHHAAHAHAHHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAHAAHHAHAHA blue hair

  • @jamesmarx
    @jamesmarx 5 месяцев назад

    When did Ninja start a coding stream?

  • @azeek
    @azeek 5 месяцев назад

    So he admitted being a furry ?)

  • @CrIMeFiBeR
    @CrIMeFiBeR 5 месяцев назад

    Why is het programming go with blue hair, that is required for rust

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

    Am I the only one who hated the look of the gopher? I literally avoid learning Go cause I dont want to have to look at that thing regularly.

  • @DIN_A8
    @DIN_A8 4 месяца назад +1

    Since when does Destiny code … and is actually cool?!?

  • @pianissimo7121
    @pianissimo7121 5 месяцев назад

    Hair looks good.
    You dont.

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

    elm is cool but i tried making a huge app in bubble tea one time and the experience was just horrible its just such a different/stupid way of designing UI i hate it

  • @ibrahimalshubaily9520
    @ibrahimalshubaily9520 5 месяцев назад

    WTF 🤣

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

    what the hell are ssh apps? lol ssh is ssh

  • @ThatBidsh
    @ThatBidsh 4 месяца назад +1

    Next thing you know Prime's gonna be """""losing another bet""""" and wind up with pronouns too, just like me :p

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

      (pro fact: cis people do not have pronouns, that's a myth actually btw)

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

    destiny looks a little weird in here

  • @mvargasmoran
    @mvargasmoran 5 месяцев назад

    Blue hair made me lost interest
    :kekw:

  • @jay.rhoden
    @jay.rhoden 5 месяцев назад

    This video should be called "How to make apps that are illegal to export outside the US."*

    • @jay.rhoden
      @jay.rhoden 5 месяцев назад

      * Unless you request permission from the US government using the BIS website.

    • @vaisakhkm783
      @vaisakhkm783 5 месяцев назад

      Why, didn't understand, whats the problem outside us?

    • @jay.rhoden
      @jay.rhoden 5 месяцев назад

      @@vaisakhkm783 It's illegal for applications to be sold or transferred into our out of the USA if they use encryption, unless you apply for permission from the agency that is in charge of granting permission. Even simple apps that make https calls need permission to be sold cross borders.

  • @vaayuo
    @vaayuo 5 месяцев назад

    Please tell us your pronouns

  • @mohitkumar-jv2bx
    @mohitkumar-jv2bx 5 месяцев назад

    NeoSSHIM. Lets GOOO