https://twitter.com/gereleth/status/1730495736070938786?s=09
Code here: https://github.com/gereleth/aoc_python/blob/main/src/year2023/day01vis.py
https://github.com/immannino/advent-of-go/blob/master/cmd/2023.go#L30-L40
nineight
@prologic I didn't have to do much backtracking. I parsed into an AST-ish table and then just needed some lookups.
The part 2 was pretty easy to work into the AST after.
https://git.sour.is/xuu/advent-of-code-2023/commit/c894853cbd08d5e5733dfa14f22b249d0fb7b06c



Makes me wonder if maybe there is need for a sort of verifiable web of trust is needed where influencers can be proven as authentic by others. This will only get worse as AI generative content gets pushed into our feeds.
The competed project is poe https://quorablog.quora.com/Introducing-creator-monetization-for-Poe which is basically the same idea. Make a AI bot tailored to a specific domain of knowledge. And monitize it.
The timing fits very well as openAI announced it just a few weeks ago.
But whatever it was that hit a few days ago was horrible. Like whatever switch in my head that goes to sleep mode was shut off. I would lay down and even though I *felt* sleepy, I couldn't actually go to sleep. The anxiety hit soon after and I was just awake with no relief. And it persisted that way for three nights. I got some meds from the clinic that seemed to finally get me to sleep.
Now the morning after I realized for all that time a part of me was missing. I would close my eyes and it would just go dark. No imagination, no pictures, nothing. Normally I can visualize things as I read or think about stuff.. But for the last few days it was just nothing. The waking up to it was quite shocking.
Though its just the first night.. I guess I'll have to see if it persists. 🤞
I went to bed at 8 and woke up full on anxiety attack at 12 and could not calm my head until around 7 am. Today has sucked a lot.

https://discord.com/blog/how-discord-stores-trillions-of-messages
https://eli.thegreenplace.net/2023/better-http-server-routing-in-go-122/
For android I have revanced.. The only place I get ads is on TV. I haven't found a replacement there.
And for SMTP I have smart hosts on the VMs that will store anf forward to my mailbox if the connection goes down.
I have had more success using point-to-point connections where there are only two ends to each interface. It means you have a ton of interfaces and udp ports. but you can share the host IP across the interfaces. Add to that a simple router proto ala OSPF or RIP and you can navigate around not having a full meshnet.
I have dozens of localnet wireguard connections and many more connections to others that use bgp for route propagation.
@nick@server
to webfinger lookups.
cc: @prologic


https://youtu.be/AKvvEqm9Nv4
http://github.com/brandur/tmux-extra
Works great with powerline.
Is
to Because

type ErrPermissionNotAllowed []Permission
func (perms ErrPermissionNotAllowed) Is(permission Permission) bool {
 for _, p := range perms {
 if p == permission { return true }
 }
 return false
}
var err error = errPermissionNotAllowed{"is-noob"}

if errors.Is(err, ErrPermissionNotAllowed{}) { ... } // user is not allowed

var e ErrPermissionNotAllowed
if errors.As(err, e) && e.Is("a-noob") { ... } // user is not allowed because they are a noob. 

As is perfect for your array type because it asserts the matching type out the wrap stack and populates the type for evaluating its contents.

This document summarizes the possibilities for legal access to data from nine instant messaging services: iMessage, Line, Signal, Telegram, Threema, Viber, WeChat, WhatsApp and Wickr. For each software, different judicial methods are explored, such as subpoena, search warrant, active collection of communications metadata ("Pen Register") or connection data retention law ("18 USC§2703"). Here, in essence, is the information the FBI says it can retrieve:
* **Apple iMessage**: basic subscriber data; in the case of an iPhone user, investigators may be able to get their hands on message content if the user uses iCloud to synchronize iMessage messages or to back up data on their phone.
* **Line**: account data (image, username, e-mail address, phone number, Line ID, creation date, usage data, etc.); if the user has not activated end-to-end encryption, investigators can retrieve the texts of exchanges over a seven-day period, but not other data (audio, video, images, location).
* **Signal**: date and time of account creation and date of last connection.
* **Telegram**: IP address and phone number for investigations into confirmed terrorists, otherwise nothing.
* **Threema**: cryptographic fingerprint of phone number and e-mail address, push service tokens if used, public key, account creation date, last connection date.
* **Viber**: account data and IP address used to create the account; investigators can also access message history (date, time, source, destination).
* **WeChat**: basic data such as name, phone number, e-mail and IP address, but only for non-Chinese users.
* **WhatsApp**: the targeted person's basic data, address book and contacts who have the targeted person in their address book; it is possible to collect message metadata in real time ("Pen Register"); message content can be retrieved via iCloud backups.
* **Wickr**: Date and time of account creation, types of terminal on which the application is installed, date of last connection, number of messages exchanged, external identifiers associated with the account (e-mail addresses, telephone numbers), avatar image, data linked to adding or deleting.
**TL;DR Signal is the messaging system that provides the least information to investigators.**
There is one called orca that seems promising that will be released as OSS soon. Its running at comparable numbers to OpenAI 3.5.
https://youtube.com/watch?v=Dt_UNg7Mchg&feature=share9


but still .. if they are providing them then whats the point of trusting they don't have copies.
In the time scale viewed from the planets perspective, the climate has changed many many times.. The issue is whether that change that will inevitability come is hospitable to us meat bags. Or if we are doomed to take part in the next mass extinction event.
ECC ram would make it perfect.