What's everyone working on this week (36/2025)?

New week, new Rust! What are you folks up to?

1 Like

Yes, another week is upon us!

I’m working on a Linux security program, it’s currently a cli that can parse files into json and other formats, audit permissions of files and recursively audit directories. Next step is to connect it to a CVE database, and begin working on a python API.

What are you working on this week?!

I've been on vacation for two weeks. * More work than work *
This week I am working on resting.

2 Likes

I've found out that I have one too many data files lying unsorted, and built a program to parse .HAR files - at GitHub - ProgramCrafter/har-analyzer.

$ your-favourite-browser --export-har="example.har" --url="https://xkcd.com"
$ cat example.har | cargo run --release
     Running `target/release/har-parser`
The page "https://xkcd.com/" depends on the following images:
1. PNG image of 10.743164 KiB, loaded from https://xkcd.com/s/0b7742.png
2. PNG image of 27.060547 KiB, loaded from https://imgs.xkcd.com/s/temperature.png
3. PNG image of 123.33203 KiB, loaded from https://imgs.xkcd.com/comics/pull_2x.png

Also, it turned out to have one dependency (without any transitive ones), in spirit of old Unix utilities)

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.