coding a startup | devlog 23

Поделиться
HTML-код
  • Опубликовано: 18 авг 2022
  • Coding a startup | devlog 23
    Go to brilliant.org/KalleHallden to sign up for free. And also get 20% off an annual premium membership!

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

  • @seanrileyhawkins4511
    @seanrileyhawkins4511 Год назад +33

    The flow of the video seems pretty chilled and laid back. It's nice just gives a perspective view that a dev doesn't always sit at the desk all day.

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

      This is not a dev

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

      @@victortodoran1828 he is a dev. He is developing software

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

      @@retrorewind6042 nope, not really.
      He is a youtuber who occasionally codes, there is a difference.
      I cook most of my meals, that does not make me a chef/cook.

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

      @@victortodoran1828 he is actively working on developing an app. You have no idea what youre talking about

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

      @@retrorewind6042 that's ok. Don't worry about it.

  • @ev721
    @ev721 Год назад +43

    These "A day in the life of K" style videos work for me. A bit of everything is interesting. Keep them coming.

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

      Thanks for the feedback!

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

      @@Hallden_ I absolutely agree. There's nothing uninteresting for me, also it is just great to see you struggling with different things. Not showing the perfect life but see that anything can go wrong is very eased for my own life.

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

    From my experience if you don't understand something. You could always ask the dev what they did. It's a great way to grow as a developer and what you learn you can pass on to others :)

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

      Agreed! Unfortunately, certain developers in tightly-packed and specialised communities often have egos though or want you to go through the pain they went through to learn what they learnt. Take the OS development community for example. 😂

  • @momshaddinury
    @momshaddinury Год назад +27

    Hey, this is dinurymomshad here. :3
    Love your videos. I am trying to add the following things to make PRs easily understandable.
    1. What I did do?
    2. How I did?
    3. If there is anything special
    4. If possible image/video
    Plus hit me up, if you need an explanation. Basically, my main goal here is to keep things in a scalable structure so that it's easier for anyone to contribute. For example, I am currently having a hard time understanding what is done on the calendar and workout page. So if you can make a video on what has been done so far on those two pages, that'd be great.

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

      Thanks for all the contributions man!
      I agree with the PR structure idea
      I might make an unlisted video or something with a bit more in depth info about the idea or plan for the app as a whole and also for the pages you mentioned

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

      This is so encouraging to see you guys in a tech world that is kinda toxic. Thanks!

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

    Man!!
    This is the first of yours that I've watched and you're exactly what I need. I am just starting Python in uni and I'm wanting to program, but everyone seems to convey "You gotta love the dark, be on the screen 8 hours, completely withdrawn, a bit unfit etc." It is scary!
    And here's you with the hyperfocus, the fails, the thought processes, the weaknesses, but the intention to get it done despite the struggle, the LIFE outside coding.
    Thank you for being a channel that doesn't make me look at the code the whole time but just says "hey this can be what it's like and it's ok to be human".
    Thank you bro. Subscribed on tv and personal channel.

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

    I'm watching your videos for a while.
    Never commented but I want to say I love everything I watch.
    Keep uploading videos of you sailing, programming or whatever... 🙂
    It's so relaxing and inspiring!

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

      Thank you for that! That really means a lot to hear!

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

    Dude, these unedited videos are gold, keep them coming.

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

    Kalle - Have you thought about creating a PR template for your repository?
    This will make your life easier as a reviewer.
    Firstly, it will make it easier for you to parse PR descriptions as they should be in a standard format.
    Secondly, you can define a 'Test Plan' section in your PR template. This encourages contributors to clearly list the testing steps they've taken. The test steps should be written clearly enough that you can checkout their branch, and easily follow their steps. If you can't do this, you should reject the PR until the description has these steps! This benefits you and contributors. First of all it gets contributors into the habit of clearly defining their tests, and secondly it allows you to test the work others have done.
    Have you also thought about adding build pipeline integration into PRs?
    These can be configured so that when a PR is created the build pipeline is triggered, runs the build, runs unit tests and any other automated tests you define. They can be configured with Github so that PRs cannot be merged until the build and all automated tests pass.
    Both of these will make your life a lot easier.
    From there you can look at adding things such as codecov etc to track what percentage of your code base is covered by unit tests etc.
    Spending some time ensuring you have these sort of things automated for your repository will make your life much easier as a maintainer. If you want to start trusting other maintainers in future, it enables them too.
    I tried to add some useful links to my comment but youtube seems to delete them.
    If you google 'Github PR template' and 'CircleCI PR integration github' the top links should help. CircleCI is free for open source projects I believe.

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

    I lost your videos, but today I had to find it😂🤝🏾, that's why it's good to subscribe

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

    It was pretty chilled out and really very real kinda stuff tbh. The editing without any bg music is superb.

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

    Hey Kalle, loved the video. Was the first one in a long time, that I really enjoyed watching. Thanks for sharing, keep up the amazing work!

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

    a special youtuber for lots of people.
    keep posting.
    lots of people dont know they worth.
    programming or not, always there

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

    you can always pull the branch of the merge request and run it locally to check that it does not work. What you dont want to do is merge something that is not working because its a bunch of effort to reworkout issues

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

    Always liked you chilled approach

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

    An Idea apart from designing in Figma is to apply an entire Custom Theme to your MaterialApp, which not only defines a color scheme but also all the UI tweaks and changes for all the UI components. That when you need for example a Button, you just use a vanilla ElevatedButton without any extra styles or themes, and it will already be Themed correctly, same with all other UI widgets. And any changes you make in the Main theme will apply everywhere!

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

    This type of videos are great man! Keep filming :)

  • @Zero-dx6kr
    @Zero-dx6kr Год назад

    Ur videos got me hooked

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

    Enjoying this style of video - well done

  • @xdcretin-_-7363
    @xdcretin-_-7363 Год назад +1

    this is the most peacefull guy i know

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

    was waiting for your video, amazing video once again.

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

    Fantastic vlog ❤️

  • @ml210993
    @ml210993 Год назад +8

    Just merging code in without really testing it.. Nice. Way to keep up good practices.

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

    The project development live is just cool

  • @Kfoo-dj4md
    @Kfoo-dj4md Год назад

    I really like the new video formula, kinda long chill videos

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

    More sailing and sailboat-related stuff is always nice!🙂⚓Skepp ohoj!!👍

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

    Snyggt jobbat! Kul att se lite "Daily" vlogs samtidigt ! Keep going Kalle!

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

    I love you keeping it real

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

    Sailing part is super nice, make a few videos about your boat. Let us know which boat you have. And then make a trip to Denmark...

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

    I'd love to see how exactly you organize the files in such a big app, bc I felt kinda overwhelmed with Flutter on how to arrange the files for widgets and stuff

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

    Next startup: The sailing-log app! Great videos, like them a lot.

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

    Which camera do you use???

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

    Hey real question. Do you need a patent to have a start up app? Or an LLC or a trademark?
    Or can you just make it and release

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

    Look a bit similar to Web Dev Simplified; Call him one day! 😉😉

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

    I love your videos

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

    would you make a video about your workflow with vim?

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

    Can you look to build a pipeline or tests to deploy when you merge, I suggest having some branch protection rules and at least run Snyk in your repo to capture OpenSource vulnerabilities and poor/insecure code. Last thing you want is to to be popped or exploited.. happy to contribute - its my day job.

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

    4:10 mood

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

    Please Add background music, reduce the duration of the video and include some cinematic shots(which u r best at) , which we would love to watch and it would be a unique video....

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

    are u usie ubuntue is a maiin os ?

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

    I like more sailing, nature and raw clips 😆

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

    When a video about the equipment you use for vlogg ?

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

      Questions can come in ⬆️....

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

    I think you do a really good job with the amount of coding and boating. But i think you should explain or go in detail with your coding.

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

    You can only become truly accomplished at something you love. Don’t make money your goal. Instead, pursue the things you love doing, and then do them so well that people can’t take their eyes off you. --Maya Angelou[]

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

    Fortsätt med det koncept du kör med. Det är kanonbra !

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

      meatballs meatballs IKEA

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

    Which laptop you are using?

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

      Questions can come in ⬆️....

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

    Is that a Samsung Galaxy Book you're rocking? I thought your main laptop was a M1 Macbook ... what are you using for production work these days? :-)

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

      Questions can come in ⬆️....

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

    Instead of commiting it everytime you could've just clicked "preview" xD

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

    Can we contribute on the final design?

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

      Questions can come in ⬆️....

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

    You actually YOLO-merged code without reading it? Let’s hope no malware or any shady business there ;)

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

    Yeyy, i'm in a kalle hallden video mum

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

    💚

  • @user-qo5fv4fm1e
    @user-qo5fv4fm1e Год назад

    what is it at 21:58 ?

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

    That first PR was way too much to single commit

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

    Please bring the music back!

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

    MashaaaAllah, you have a good masculine look with those beards, keep them growing don't shave them

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

      you sound like your a religious fella lol

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

      @@SumriseHD Haha, I think I am one

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

    Why light mode!? GAAAAH!!

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

    Man looks like you are getting older
    🙂☁️

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

    :D

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

    I wonder Mathematics is compulsory for coding?

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

    Kalle plz shave hehe!

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

    Is this guy swedish?

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

      This guy is the biggest Svennebanan out there

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

    first

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

    boy , you need a shave !!! really

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

    i didnt know that jesus could code

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

    You are looking old

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

    r these videos getting longer and boring from time to time
    #bringbackeditedvideos

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

    Your videos are great, Instagram is looking forward to hearing from you, thank you!