derleiti
‚The People Stuck Using Ancient Windows Computers‘
The BBC visits „the strange, stubborn world of obsolete Windows machines.“ Even if you’re a diehard Apple user, you’re probably interacting with Windows systems on a regular basis. When you’re… Weiterlesen »‚The People Stuck Using Ancient Windows Computers‘
An algorithm to square floating-point numbers with IEEE-754. Turned to be slower than normal squaring.
This is the algorithm I created: typedef union { uint32_t i; float f; } f32; # define square(x) ((x)*(x)) f32 f32_sqr(f32 u) { const uint64_t m = (u.i & 0x7FFFFF);… Weiterlesen »An algorithm to square floating-point numbers with IEEE-754. Turned to be slower than normal squaring.
Lego Monkey Palace Board Game Is Over 50% Off At Amazon Right Now
Monkey Palace Lego Strategy Board Game $19.11 (was $40) See at Amazon ($19) See at Walmart ($35) See at Target ($40) See at Lego Store ($40) Monkey Palace, an officially… Weiterlesen »Lego Monkey Palace Board Game Is Over 50% Off At Amazon Right Now
Speed Up Arduino with Clever Coding
We love Arduino here at Hackaday; they’ve probably done more to make embedded programming accessible to more people than anything else in the history of the field. One thing the… Weiterlesen »Speed Up Arduino with Clever Coding