Raydelto Hernandez (@raydelto) 's Twitter Profile
Raydelto Hernandez

@raydelto

Computer Scientist, Engineer, ex-Google

ID: 311304391

linkhttp://www.raydelto.org calendar_today05-06-2011 06:50:21

2,2K Tweet

1,1K Takipçi

2,2K Takip Edilen

Raydelto Hernandez (@raydelto) 's Twitter Profile Photo

If you're a C++ programmer, you must read the latest paper by Bjarne Stroustrup: "21st Century C++". In it, he highlights how to use the language in a type-safe and resource-safe manner while embracing modern best practices. After reading it, here are my key takeaways: 1️⃣ Type

Raydelto Hernandez (@raydelto) 's Twitter Profile Photo

Simplicity is #raylib's hallmark. This cardioid generator, written by Safar Issayev in C++ with raylib, has fewer than 90 lines of code. Here is the code: github.com/SafarSoFar/car…

Raydelto Hernandez (@raydelto) 's Twitter Profile Photo

I just got my copy of Gayle McDowell's latest book, Beyond Cracking the Coding Interview. I am a big fan of Gayle's work. Her books helped me enormously during my coding interview preparation, ultimately leading me to my dream job at Google. I enjoyed reading and learning from

I just got my copy of Gayle McDowell's latest book, Beyond Cracking the Coding Interview.

I am a big fan of Gayle's work. Her books helped me enormously during my coding interview preparation, ultimately leading me to my dream job at Google.

I enjoyed reading and learning from
Raydelto Hernandez (@raydelto) 's Twitter Profile Photo

Float vs. Double Precision Floating-Point Numbers: While rendering data captured by a multibeam sonar, I initially obtained the low-resolution image on the left. The low-res was caused by a significant loss of precision due to storing vertex coordinate components as float

Float vs. Double Precision Floating-Point Numbers:

While rendering data captured by a multibeam sonar, I initially obtained the low-resolution image on the left. 

The low-res was caused by a significant loss of precision due to storing vertex coordinate components as float
Raydelto Hernandez (@raydelto) 's Twitter Profile Photo

I have ported #DOOM to the newly released #SDL3 library, using #SDL3_mixer (still unreleased). The code is available here: github.com/raydelto/sdl3_…

Raspberry Pi (@raspberry_pi) 's Twitter Profile Photo

Now you can enjoy retro games and shows on a CRT TV with Raspberry Pi 5! Our newest model now supports interlaced video and can send full-resolution RGB to a CRT television. Read about how we added this by hacking the DPI driver — and using PIO. raspberrypi.com/news/how-we-ad…

Now you can enjoy retro games and shows on a CRT TV with Raspberry Pi 5! Our newest model now supports interlaced video and can send full-resolution RGB to a CRT television. Read about how we added this by hacking the DPI driver — and using PIO.

raspberrypi.com/news/how-we-ad…
Raydelto Hernandez (@raydelto) 's Twitter Profile Photo

To all C++ developers interested in high-performance software, I highly recommend reading the paper recently published by Meta Research titled "Automated Hot Text and Huge Pages: An Easy-to-adopt Solution Towards High Performing Services." Key takeaways: A. Many of the

Ray (@raysan5) 's Twitter Profile Photo

But can I make commercial games with #raylib??? Yes, you can! 😄 Some games #madewithraylib on Steam! Do you know any other games??? Please, let me know, I try to keep a list, it's difficult to track all them! 🚀

But can I make commercial games with #raylib???

Yes, you can! 😄

Some games #madewithraylib on Steam! Do you know any other games??? Please, let me know, I try to keep a list, it's difficult to track all them! 🚀
FFmpeg (@ffmpeg) 's Twitter Profile Photo

FFmpeg makes extensive use of hand-written assembly code for huge (10-50x) speed increases and so we are providing assembly lessons to teach a new generation of assembly language programmers. Learn more here: github.com/FFmpeg/asm-les…

Ray (@raysan5) 's Twitter Profile Photo

Today I had the honor of being interviewed by Panos Karabelas, creator of Spartan Engine, for his new podcast! 🚀 We share many ideas and perspectives! Thanks for inviting me Panos! 😄

bolt.new (@boltdotnew) 's Twitter Profile Photo

It's time to set a Guinness World Record. Registration is now LIVE at hackathon.dev: → $1M+ in prizes → Global IRL events → Legendary founders & investors judging If you've got ideas for apps or startups, this is your moment— *especially* if you don't code👇

It's time to set a Guinness World Record.

Registration is now LIVE at hackathon.dev:
→ $1M+ in prizes
→ Global IRL events
→ Legendary founders & investors judging

If you've got ideas for apps or startups, this is your moment— *especially* if you don't code👇
Panos Karabelas (@panoskarabelas1) 's Twitter Profile Photo

Episode #2 is here! I had the pleasure of chatting with Sergey Kosarevsky straight from Silicon Valley! He leads Vulkan dev at Meta (ex Facebook), authored multiple books (latest: Vulkan 3D Graphics Rendering Cookbook), created Linderdaum Engine, was rendering lead at Ubisoft

inigo quilez (@iquilezles) 's Twitter Profile Photo

I talked to Łukasz | Wookash Podcast about some low level programing, C++, graphics, 3D, shadertoy, VR and many other (sometimes rabdom) things: youtu.be/F1ax1iJTHFs?fe…

inigo quilez (@iquilezles) 's Twitter Profile Photo

A library I'm considering uses Boost for a few basic containers (small_vector, bimap, etc). Because of Boost's non-modular design (every header includes most other headers), build times are ridiculous. I removed the Boost dependency and implemented equivalents to all required