Programming Everyday Until I Find a Job | Day

Поделиться
HTML-код
  • Опубликовано: 1 окт 2024
  • Continuing to work on my ray tracer and had to restart to take a different approach. Stressful day and I cant solve leetcode problems to save me life.
    I am currently a junior in college with no previous internships absolutely fiending for one next summer. Sub 2 my channel to follow this painful yet rewarding journey. Right now I am working on a list of 50 small projects to rapidly improve my software engineering capabilties. I also love 2 develop even if I am not the best.
    Twitter: x.com/OneDayL8r

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

  • @JosephM1M5A4
    @JosephM1M5A4 17 часов назад +16

    Hope you don't run out of pokemon's

  • @anjaliupadhayay839
    @anjaliupadhayay839 15 часов назад +2

    went to yt for some entertainment.
    the entertainment:

  • @muhammadfuzailayaz1310
    @muhammadfuzailayaz1310 День назад +2

    consistency level on peek gr8 brother

  • @VedantBorkar-w3f
    @VedantBorkar-w3f 13 часов назад +1

    O(N) Java Solution for your last problem:
    class Solution {
    public boolean checkPossibility(int[] nums) {
    int n = nums.length;
    int count = 0;

    for (int i = 0; i < n - 1; i++) {
    if (nums[i] > nums[i + 1]) {
    count++;
    if (count > 1) return false;

    if (i > 0 && nums[i - 1] > nums[i + 1]) {
    nums[i + 1] = nums[i];
    } else {
    nums[i] = nums[i + 1];
    }
    }
    }

    return true;
    }
    }

  • @gavinmce660
    @gavinmce660 6 часов назад

    killing it bro

  • @eli-q3m8e
    @eli-q3m8e 7 часов назад

    keep going 🤝

  • @No_Masterpiece
    @No_Masterpiece 13 часов назад

    the question will you ever find a job in this market right now?

  • @xrexy
    @xrexy 13 часов назад

    Great stuff, keep it up! If even I can get a job, so can you

  • @terraEl4379
    @terraEl4379 День назад

    How do you config vim? Please give me your vim config link.

  • @MartinBenedictEYbas
    @MartinBenedictEYbas 20 часов назад

    God speed brother, we're gonna make it

  • @thoup
    @thoup 15 часов назад

    What resources are you using to learn? Is it just raytracing in one weekend? And what other projects have you worked on? I'm quite interested in getting deeper with C++ through projects but I can't think of anything to work on

    • @OneDayL8r
      @OneDayL8r  14 часов назад

      @@thoup I’ve only worked on two projects on this serious not counting this 1. I did a simple encryption script for files and a csv analyser on Java that did simple operations like mean standard deviation etc and graph creation. I am reluctant to give my list of projects as I might change them but honestly I really recommend asking ai for project ideas and going off that. Really good for getting you started.

  • @hazard-funk
    @hazard-funk 17 часов назад

    Good luck and best wishes!

  • @niconiconichan2098
    @niconiconichan2098 17 часов назад +1

    How far are you on the language you're learning and do you make project on every new concept you are learning in programming?

    • @OneDayL8r
      @OneDayL8r  16 часов назад +1

      @@niconiconichan2098 I have a list of medium projects that I want to complete mostly all of em are c++ because that’s what I want to learn and be good at. I’m doing ray tracing because I wanted to do it and learn a little bit about it.

    • @thoup
      @thoup 15 часов назад

      @@OneDayL8r What projects?

    • @OneDayL8r
      @OneDayL8r  14 часов назад

      @@thoup can’t spoil 🫢🫢🫢

    • @niconiconichan2098
      @niconiconichan2098 8 часов назад

      @@OneDayL8r How do you classify your projects according to difficulty and do you come up with your own projects or do you search online?

    • @OneDayL8r
      @OneDayL8r  8 часов назад

      @@niconiconichan2098I won’t lie bro I just ask ai to generate ideas and filter out bad ones or ones I’m not interested in.

  • @peterkilian9100
    @peterkilian9100 13 часов назад

    war turtle war turtle war turtle

  • @anhluong4976
    @anhluong4976 13 часов назад

    nice i did this tutorial too but in rust

  • @wrya141
    @wrya141 День назад

    good luck my man

  • @muralikrishnasiju
    @muralikrishnasiju День назад

    Good luck

  • @iwheeze4495
    @iwheeze4495 16 часов назад

    How long did it take for you to learn coding? I'm studying software engineering and currently learning python. I'm on week 3 and we already have big assignments to code every week, using loops, functions etc. I'm struggling very hard and might drop out because of the high tempo. Do you think it would be wise to continue?

    • @OneDayL8r
      @OneDayL8r  14 часов назад +1

      @@iwheeze4495 I’m just some guy but I’ve always been technical growing up. I always loved technology and I like interacting with it. When I first started I struggled pretty hard too and the class I took was relatively easy as it was a freshman high school intro summer course for like half a credit or whatever. I’m not ur dad so I can’t give you good advice that pertains to you but just ask yourself if u like at all what u are doing

    • @Captaine_Crunche
      @Captaine_Crunche 13 часов назад +1

      if you dont genuinely enjoy the learning of it to the point where you could see it as a lifelong career of learning, then it would be wise to drop out. Otherwise, stick to it and you will get better with time, i personally suggest cs50x and cs50p, amazing teacher and you see your code in sucha different way that it comes together

    • @iwheeze4495
      @iwheeze4495 12 часов назад

      Thx for the replies. As of right now i'm just not getting any enjoyment out of it. It feels like this course is more aimed for people with programming experience. Might just be that the way i'm learning it that puts me off. But yeah i don't think i will be able to continue.

  • @nozomu9655
    @nozomu9655 15 часов назад

    Linux Distro?

    • @OneDayL8r
      @OneDayL8r  14 часов назад

      @@nozomu9655 Ubuntu

  • @camoroz3080
    @camoroz3080 22 часа назад

    How much time do you spend googling stuff?

    • @OneDayL8r
      @OneDayL8r  22 часа назад +1

      I spent the entire video basically following a tutorial. It depends on the subject but if you are building something from scratch you will gradually get better and have to look less and less stuff up online.

    • @camoroz3080
      @camoroz3080 22 часа назад

      @@OneDayL8r Is it acceptable for a beginner to google things while doing a project?

    • @OneDayL8r
      @OneDayL8r  21 час назад

      @@camoroz3080 of course my friend. Its acceptable for a senior to google things while doing a project.

    • @OneDayL8r
      @OneDayL8r  16 часов назад

      @@camoroz3080 yes

  • @barisxaevir
    @barisxaevir 12 часов назад

    which distro is this?

  • @moylababa8196
    @moylababa8196 День назад

    which theme and font are you using?

    • @OneDayL8r
      @OneDayL8r  23 часа назад +1

      @@moylababa8196 carbon fox and Fira code.

    • @MirzaBaig-m8b
      @MirzaBaig-m8b 17 часов назад

      @@OneDayL8r bro is DSA in c language necessary for bignners to start the programming

    • @OneDayL8r
      @OneDayL8r  16 часов назад

      @@MirzaBaig-m8b I’m offended you think I’m a beginner

    • @amazhobner
      @amazhobner 15 часов назад

      @@MirzaBaig-m8bIt isn't. You can use C to gain knowledge of how low lvl works. Then you can pick something like python and learn DSA there.

  • @_inetuser
    @_inetuser 13 часов назад

    do you need a job

    • @OneDayL8r
      @OneDayL8r  12 часов назад

      yes bro 😭😭

    • @_inetuser
      @_inetuser 12 часов назад

      @@OneDayL8r if you move i could probably get you one :D but a boring one

    • @OneDayL8r
      @OneDayL8r  11 часов назад

      @@_inetuserI’m looking for an internship over the summer. Im a junior in college. If you truly have an opportunity that would be awesome I am more than willing to relocate. You can message me on twitter if that’s easier. In my description

    • @_inetuser
      @_inetuser 4 часа назад

      @@OneDayL8r but its probably a boring one where you just code c# and some web basics, ths subsidary of my company is in sumerset ny