Skip Navigation
Posts
1
Comments
4
Joined
2 yr. ago
  • I agree with the other answers that it depends on the type of programming you end up doing..the nature of the program being developed, but having a background in discrete math is great to have just in case.

    From my experience, there can be unexpected problems where you will advantage from having grasp at discrete math. I worked on a project for a telecom company where they wanted a simulation to predict the impact on network coverage if a specific cell tower (BTS) was uninstalled. I ended up relying heavily on the cross-product formula and some ray-casting algorithms to model how coverage would shift in the area.

  • Thanks! That's actually the default of Plasma's Oxygen theme, I just adjusted the color little bit. But I especially love 'metallic' feel of it though, that's why I love Enlightenment's aesthetics so much.

  • Unixporn @lemmy.ml
    inline_caching @programming.dev

    Solarized Dark - First Try Ricing KDE Plasma

    My first time trying to rice KDE Plasma. Surprisingly good, though, considering little effort was put. I just solarized-darkening everything in sight.

  • I developed half-assed a NASM wrapper (or transpiler if u will) while ago, It basically just adds some high-level feature like simple condition statements directly against registers, for example:

    if (rax == 12)

    Then generates appropriate NASM code. Simple really. Most error checkings are done my NASM lol so I dont need to worry much about the prefixes or instruction-operand correctness. I took most of the grammar for the expression from here. I privatized the repo because it is crazy how dirty it is I am ashamed of myself. If anyone wanna do it again, I'm up tho. But i dont wanna use my old code, just code again from start.