How to Get Ahead of 99% of Developers

Поділитися
Вставка
  • Опубліковано 7 лют 2025
  • These are the exact strategies senior engineers use to prioritise impact, eliminate distractions, and ship high-value code quickly.
    Support me on Patreon: / jackhodkinson

КОМЕНТАРІ • 15

  • @dev.j255
    @dev.j255 7 днів тому +9

    We've been stealing code since 1985

  • @anton_seitz
    @anton_seitz 4 дні тому +4

    Thank you for the non-BS advice, I will try to implement this

  • @randall.chamberlain
    @randall.chamberlain 4 дні тому +1

    Brilliant

  • @ssojyeti2
    @ssojyeti2 4 дні тому +1

    Fire

  • @vitalyl1327
    @vitalyl1327 4 дні тому

    Half of the advice is utter bullcrap. Third party dependencies are more often liability rather than help. Yes, you can quickly crap things together from a pile of open source third party components, but when this contraption fails to do exactly what you need, you'll curse the day you decided to use some third party trash instead of writing from scratch.

    • @jack.hodkinson
      @jack.hodkinson  4 дні тому +1

      Thank you for stopping by

    • @willard2397
      @willard2397 4 дні тому

      The nice part of open source is that you can just edit it if it's close enough to what you need. Having a starting point saves you from having to waste time solving all the problems that the library's author already took the time to solve. It's basically the same advice as "steal code", but instead it's "steal large amounts of code at once".
      I mostly program for fun, so I love reinventing the wheel and avoid libraries just for the sake of avoiding libraries. But I'll still occasionally copy/paste a function from a library if it's doing hard math or something. And obviously I use 3rd party libraries and software for things like SSL encryption and image decompression and whatnot.

    • @vitalyl1327
      @vitalyl1327 3 дні тому

      @willard2397 it works for only small, self-contained, very well designed software packages that do not drag tons of other dependencies with them. This is very rare. Look at the dumpster fire that, say, the Python ecosystem is. Pip install the tiny little package you need, get half a gb of extra dependencies (none of which you're going to audit, realistically). Pull an open souce C++ library, and it drags in the awful Boost that you should avoild at all costs.
      This is just wrong. Software is not that hard. Everything, outside of some really core functionality (OS, unless you do bare metal real-time, DBMS, compilers) are better built ffom the ground up.

    • @GreenGrapesSalad
      @GreenGrapesSalad 3 дні тому +1

      I bet you use Arch too

    • @vitalyl1327
      @vitalyl1327 3 дні тому

      @GreenGrapesMilk no. But I write a lot of bare-metal code.

  • @Verrisin
    @Verrisin 6 днів тому

    yep, sounds about right for so much stuff sucks. - Quality is a curse word to businesses and people who make most stuff.
    (the build documentation dev tools is decent, but most people both under- and over-do it instead)
    - remove problems before solving them is genuine advice, tho