5 votes

What programming/technical projects have you been working on?

This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?

2 comments

  1. skybrian
    Link
    I did a release of repeat-test, my property-testing library, with some performance improvements. Also wrote Part 3 of the tutorial, covering ways of generating mutiple inputs. I’d like to figure...

    I did a release of repeat-test, my property-testing library, with some performance improvements. Also wrote Part 3 of the tutorial, covering ways of generating mutiple inputs.

    I’d like to figure out a better way to make links between the API docs and the markdown docs. It would be nice to have relative links that go to the same version, but I don’t think it’s going to work, because the API docs are on jsr.io, the markdown docs are on GitHub, and README.md is in both places.

    I might have to resort to a template system or something to get the links right. Maybe a search-and-replace would do. Alternatively, I could write a test reminding me to update all the version numbers in the links, and do the search-and-replace in my editor.

    2 votes
  2. DeaconBlue
    Link
    I have been making it a point to learn Rust. I don't have a lot of practical applications for it, but it seems worthwhile to learn a new language now and then to keep sharp. To try to solve...

    I have been making it a point to learn Rust. I don't have a lot of practical applications for it, but it seems worthwhile to learn a new language now and then to keep sharp.

    To try to solve interesting problems, I tried solving this image manipulation problem and I am going through the Advent of Code.

    It is a very interesting language. I don't know if I will find a lot of uses for it, but I do like it enforcing "good" code.

    1 vote