# My plan for now, roughly
-- Package blog and page for fedora, arch, and debian.
+- Recheck aerc configuration
+- Learn more about flow management in iOS
+- Read some more research on either problem solving or team dynamics
- I started by checking how to build for multiple architectures. I'll start building only for linux arm64 and x64 because building for darwin is a hassle (plus we have homebrew already).
-
- For now I'll drop arch as a target, but I was able to set up rpm and deb packages. I also included a man page, which I had never written before. The syntax is pretty terrible.
-
- Based on this experience I want to package lyricli like this. Being written in swift, I'm not sure how much of a hassle it is. Might re-write in rust.
-
-- Add gopher functionality (geomyidae) to page.
-
-[2024-03-10]
+[2024-09-07]
+2024-04-03: DDP doesn't work through Wi-Fi because of issues on how packets are transformed between Ethernet and Wi-fi, which messes up the Datagram :'(. Not all routers do, DD-WRT might!
+2024-03-31: You can run a security audit of your systemd units, and limit a lot how they're able to operate. This is very handy so even if I write some code that could be exploited, if I prevent the process from being able to do certain things, it reduces the exposure.
+2024-03-30: There's a VNC client for 68k macs called miniVNC.
+2024-03-26: AWS DMS migrates the data but not indexes, sequences and relations.
+2024-03-25: Pulumi doesn't deal well with renaming target groups, as the listener rules they use are still there so it can't edit them.
+2024-03-24: Lynis is a tool that lets you audit hardening status in linux systems. It has good recommendations to improve security.
+2024-03-22: There are account settings in AWS you can only enable for a role, but you need to use the root account to do this. This is helpful to control ENI trunking in only some instances.
+2024-03-15: Most popular Linux media players implement “MPRIS”, a dbus based protocol that lets you control or get information from players.
2024-03-13: Man pages are stored gzipped. I should probably update my packaging to make sure the manpages are gzipped first.
2024-03-11: You can iterate over several architectures in make by setting a variable to space separated values, then using the variable name as the target (eg. $(architectures):). Then you can access the value with $@
2024-03-09: I misunderstood how expect() works in rust. In a Result it won't return Err, it'll panic. .map_err() and ok_or_else() are a closer way to offer the same result.