Mimalloc Cigarette: Losing one week of my life catching a memory leak
Crypto elite increasingly worried about their personal safety
Cryptocurrency executives and other investors with significant wealth from crypto holdings are getting more serious about personal security, according to stories this weekend in both the Wall Street Journal and… Weiterlesen »Crypto elite increasingly worried about their personal safety
🚀 Just launched my personal portfolio!
Hey Dev.to community! 👋 I’m excited to finally share my personal developer portfolio – something I’ve been designing and building from scratch over the past weeks. 🔗 etienne-dev.de What’s inside:… Weiterlesen »🚀 Just launched my personal portfolio!
Set It and Forget It: Automate Daily EC2 Lifecycle with Python Like a Pro
A Cloud Engineer’s Midnight Regret It’s 00:12 AM. You’re brushing your teeth, mentally preparing for tomorrow’s stand-up, when it hits you like a thunderbolt: “Wait… did I forget to shut… Weiterlesen »Set It and Forget It: Automate Daily EC2 Lifecycle with Python Like a Pro
Migrando koa-graphql para grahpql-http
Recentemente eu desenvolvi o desafio da Woovi com Koa.js e GraphQL (link do projeto). Uma das especificações opcionais era o uso do graphql-http, substituto do koa-graphql, que está presente no… Weiterlesen »Migrando koa-graphql para grahpql-http
‚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.