]> git.r.bdr.sh - rbdr/txt/blobdiff - learning.md
UIpdate learning log
[rbdr/txt] / learning.md
index 1f8b97b9a02cca89a7a74e516884fc6014581d96..83043345366a3f744e7d729f395c70d8f18f6887 100644 (file)
@@ -1,3 +1,22 @@
+2024-02-26: There's no regex in the rust stdlib, but you can get pretty far in parsing a templating language by searching for simple tokens.
+2024-02-25: Rust's .expect() is a great way to add user-friendly error messages. I think when building a library I would try to focus more on formal error specifications, but for an application I think it works great.
+2024-02-24: Eternal terminal offers an alternative to MOSH for secure shell. I'm not too sure about security implications yet, but after trying SSH in the train, I do want to try a solution
+2024-02-22: You can install asdf globall and set ASDF_DATA_DIR. This is pretty effective for multi-user environments where I still want each process to run as an unprivileged user, but have versionable tooling.
+2024-02-21: S3 Handles multipart checksums by creating a checksum of each chunk, checksumming that, and then appending the count. This can help measure integrity for large uploads.
+2024-02-19: Access to AWS glue requires access to a generated bucket. To give someone access to glue, you'd need glue:*, iam:ListRoles, iam:GetRole, iam:PassRole and s3:PutObject, s3:PutObjectAcl permissions.
+2024-02-18: Emacs has very comprehensive built-in documentation that you can summon by using C-h k, followed by the key combination.
+2024-02-17: Haproxy can load balance telnet connections, so you can potentially serve a different app per hostname or ensure only a single hostname accepts telnet.
+2024-02-16: scroll-behavior: smooth; gives JS-free smooth scrolling when navigating anchors.
+2024-02-11: You can't append some characters to iskeyword in vim, so you can't make boxes navigable like words.
+2024-02-10: Long lived connections don't seem to fare well in a dialup PPP with the RS232 modem. For more usable internet on the SE/30 a PDA ethernet card is required.
+2024-02-10: Even though the old net router is sold as v4, if it has the SD slot you should flash it as v6, otherwise it doesn't work.
+2024-02-09: Some disk images will be wrecked even if you restore their attributes (apparently DiskCopy 6.3 images).
+2024-02-01: The TCF API is good to deal with individual vendors, but a big pain to use it for more blanket categories. Check __tcfapi('addEventListener', 2, function (tcdata, success) { debugger; }); to explore the object.
+2024-01-29: You can't have CNAME and TXT records on the same subdomain!
+2024-01-27: If you accidentally rewind a whole 35mm film, you can get it back by wetting the end of a new film and putting it inside the cartridge. It's a pain to do but it's better than losing a whole cartridge.
+2024-01-24: When AppleTalk is enabled you can't use the printer port for a modem in a Macintosh SE/30. You need to disable it in Chooser first.
+2024-01-23: AWS Glue has some very inefficient ways of composing queries, so it's sometimes easier to embed the query itself. In postgres it doesn't let you but you can add sources for each table and then run the query. This seems to work a lot faster.
+2024-01-22: ssl_early_data on; can mess up your responses in safari if you set it in more than one place. What's worse, because of the caching it uses it can be annoying to revert.
 2024-01-21: You can inject HTML and CSS to gitweb without modifying the default files by using $home_text and pointing it to a variable, and push @stylesheets.
 2024-01-20: App groups can let you share application data, but they will create a new container, so unless you have a remote data source it will erase your data. It's better to start new mac or ios projects with a group
 2024-01-19: You can rename the classes in xcdatamodel in order to avoid collisions, in case you named an entity something too generic.