Henry Paulino

@henrypl.com

Just building stuff for fun. https://henrypl.com

I’ve been working on bringing Apple’s MLX (mlx-swift) to React Native, and of course, used Nitro Modules 🔥. It’s in a very rough state but I’ll get it there.

Vite 6 adoption should accelerate now that Vitest 3 is out. Although we expect to still see some usage of Vite 4, Vite 5 was released more than a year ago, and most frameworks and tools supported it from day one. Are you still using Vite 4? Is there something preventing you from upgrading?

NPM weekly downloads for vite

Total: 18,901,310 last week

By major version:
6.x 3.2M
5.x 12.3M
4.x 2.9M
3.x 0.4M
2.x 0.2M

There are many ways to customize SF Symbols in #SwiftUI. I have a detailed post covering how to adjust their size, color, rendering modes, variable values, and design variants that can serve as a great reference when working with symbol images in iOS apps: nilcoalescing.com/blog/Customi...

Customizing the appearance of symbol images in SwiftUI

Learn how to adjust size, color, rendering modes, variable values, and design variants of SF Symbols in SwiftUI apps.

nilcoalescing.com

Just realized my first React Native project was 8 years ago. Used RN for the first time in April 13, 2016. Version 0.23.1 Have been developing with it since that day. Wow.

Legend List 0.1 is ready to test! This is an early experiment to see how well it works in real apps so please post issues and/or PRs 🙏. It’s only ~600 lines so it should be easy to understand and tweak. ✨ 100% JS ✨ Fast ✨ Dynamic sizing ✨ Works in both new and old arch

Tired of wrestling with cURL? Simplify your HTTP testing with HTTPie! HTTPie is a user-friendly command-line tool with intuitive syntax. I use this tool on a day-to-day basis for everything I do HTTP-wise. → httpie.io

# Send a GET request
http https://example.com

# Send a POST request
http https://example.com hello=World

# Send a PUT request with a given JSON body:
http PUT https://example.com hello=world

# Send a DELETE request with a given request header:
http DELETE https://example.com/post/1337 API-Key:foo

# Show the HTTP header response
http -h https://example.com

# Show the whole HTTP exchange:
http -v https://example.com

# Download a file:
http --download https://example.com