
In June 2021 Apple announced their new ObjectCapture photogrammetry SDK . This is exciting for anyone working in the 3D scanning world — photogrammetry continues to produce higher quality 3D models than depth sensor approaches.
View the full article here: https://www.spectre3d.io/newsfeed/photogrammetry-coming-to-mac-os-monterey
Spectre3D ensures the most complete surface possible by back-filling small holes in the surface.
View the full post here:
https://www.spectre3d.io/newsfeed/detecting-and-filling-holes-in-a-surface
Have you ever worked on a project that uses regular old makefiles, and wished you had a 10,000 foot overview of the structure, syntax, and execution model? In this blog post I break GNU Make into it’s atomic pieces, and show how they fit together into a cohesive and powerful tool.
See the full post here: https://barely.software/blog/hello-gnu-make
Originally published at https://world.hey.com.

The Cryptopals challenges introduce people to cryptography through a series of programming exercises that increase in complexity. The challenges start with encoding & decoding in hex/binary/base64, and they build up to a variety of topics including an implementation of Wang’s Attack, which exploits a flaw in the md4 hashing algorithm.
I plan to follow along with my own efforts to implement the challenges, and provide detailed explanations of concepts that helped me understand and implement the code.
View the first post: https://barely.software/blog/cryptopals-set-1-challenge-1