What are you doing this week?

11 points by caius


What are you doing this week? Feel free to share!

Keep in mind it’s OK to do nothing at all, too.

thirdtruck

Job hunting. We're open to leaving tech, perhaps for a trade or therapy or the like, but that's still where we're most employable. Referrals welcome. Suggestions on which certifications or training to get or tech to learn (that isn't AI) is greatly appreciated.

Yogthos

I went down a rabbit hole trying to see if I can make an app that paints in human style using Gaussian splats. I wanted to make an app to test drive my Jolt Clojure dialect, and this allowed me to to test drive the language by making a non-trivial GTK app and OpenGL.

I was playing around with edge detection and wavelets in two completely separate projects earlier, and had the idea to combine these techniques.

Edge detection allows identifying contour of the objects in the scene and gives you the direction for the brush, but wavelets identify what parts of the scene have the most detail, and where fine brushwork needs to happen. So together they let you figure out what the subject is and how to paint it.

And one other trick I used was to seed Perlin noise along the edges to vary the brush a bit, so each stroke ends up being unique.

Overall, was a pretty fun project to do, and quite happy with the end result. Some example images on the project page. https://github.com/yogthos/splat-painter

vinipsmaker

This week I'm thinking hard about an example that I could use to explain mutually recursive macro expansion within macro bodies. I don't think there's a use for them (aside from topics for lunch breaks), but I implemented them, and it'd be nice to have an example that helps to illustrate.