• 0 Posts
  • 77 Comments
Joined 1 year ago
cake
Cake day: August 4th, 2023

help-circle














  • Codex@lemmy.worldtoADHD memes@lemmy.dbzer0.comInterviews
    link
    fedilink
    English
    arrow-up
    41
    ·
    2 months ago

    Don’t worry, once you get the job you’ll discover that they lied about what the work is anyway. You thought the job was sitting quietly at a desk and solving little dev tasks. Actually that’s 25% of the job, the rest is: 25% meetings where they make doing the little tasks harder, confusing, and miserable, 25% other tasks you aren’t good at and that aren’t part of your job, and the last 25% is more meetings about those other things. The ratios will adjust over time until only about 10% of your job is doing your job, and the other 90% is email and meetings.




  • I’m just poking fun that the fundamental type in JS (Object) is an associative-array/hashmap. Technically it has some fancy under-the-hood handling for pure arrays and primitive types. This is also exactly true of Lua, and a little true of Ruby and Python.

    Really, most programmers would do great to start with a hash map or array list and only specialize out further when the problem calls for it.