• 0 Posts
  • 68 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle
  • If you want to understand how 3D projection works, it’s better to solve a few trigonometric equations by hand on a piece of paper, then copy these equations to your Python code.

    If you just want to quickly make your own 3D renderer, simply use OpenGL API and the corresponding projection matrix. It will run the same exact formulas inside the driver, just in a 4x4 matrix form, and you can simply experiment with modifying each element of your projection matrix to make your 3D scene rotate the way you want, without bothering to understand the math.

    Simply copying some formula from the net will most probably fail.














  • Busybox was quickly replaced by BSD-licensed Toybox everywhere for that exact reason.

    Copyleft licenses (like the Gnu General Public License) mandate that all derivative works remain free.

    This is false. It’s perfectly legal to take GPL-licensed work, modify it, and sell it. As long as the work itself does not reach the general public, you don’t need to release it’s source code to the public (e.g. your work for the military, you take money for your work, and provide source code to them, but not release it publicly).


  • The first one is a fancy CPU warmer. The second one will play loud noise through your headphones, and setsid will make sure you can’t stop it with Ctrl-C.

    There was a thread about console commands seen in movies or TV, when the actors need to do some ‘hacking’ on camera. And the most common one was just installing updates to your Linux distribution of choice.