How it feels to increase the TX power (with unlocked channels) on your WiFi router running homebrewed firmware image
This is actually slander, IPv6 beats IPv4 anyday. Wanna write a link-local application? ff02::1%interface Wanna be actually reachable on the Internet? Get yourself a /48 NAT: Never heard of her (except for 64) image
Doing research on some mesh technology right now.... IPv6 based, dome Ethernet-level stuff soon too.
Wait, y'all use firewalls? I had some Meta Cuck AI (tm) bot scraping my self-hosted Gitea instance and hitting all of the endpoints like /commit. I wish Mikrotik's RouterOS would let me send custom ASCII responses to all such source IPs so I can at least send obsceneties back to ZuckCuck Incorporated. The /commit endpoint is expensive, so this hammered my Gitea instance so much it crashed. Solution: Drop all packets from the IP somewhere in Virginia. image
Busy working on a presentation for cryptographically-secure mesh networks.
This week's blog series was on implementing a cache map. This is a data structure that implements the same interface as a map but it has some extra behavior that a normal map does not normally entail. The first is that if a value is not present then it doesn't result in the returning of a value like `null` or the throwing of an exception indicating the failure. Rather, a specific function (of the user's choosing) is called with the key and it will return this value. It does, however, store this value into the map's internal data structures such that successive accesses will return it without invoking this "getter" function. Now, the reason it is called a c a c h e map is because this value has a lifetime associated with it and, one it expires, will cause the entry's removal from the map. Meaning that a successive keying-into the map will invoke the "getter" function when called after the lifetime has elapsed. This lifetime is also a configurable parameter that the user can choose. This was quite a fun one to implement it as I actually needed it in some other project of mine hence it felt good to implement something with a good reason. ⚡️ Post: https://deavmi.assigned.network/blog/niknaks_cachemap/ #dlang #algos