43 Followers
58 Following
93 Posts
CFDS is not in the sudoers file. This incident will be reported.
bandcamphttps://delayllama.bandcamp.com/
codepenhttps://codepen.io/thykka/
githubhttps://github.com/thykka
soundcloudsoundcloud.com/delay-llama
@hexmasteen Thank you! The definition for room "complexity" is... interesting! 🤔
@hexmasteen @alxd I only saw your link to a discussion of multiple account support. If you have configuration tips, I'd be interested in seeing them! :)
@hexmasteen @alxd Of course, this is what we're already used to with IRC - there are a couple of massive server networks, and people just choose to trust these server admins. It's not necessarily bad, but I'd prefer smaller servers where trust comes from things like actually *knowing* the server admin IRL..
@hexmasteen @alxd to my undestanding, self-hosted server admins are reluctant to federating, because connecting to a mega-instance can quickly swamp the server's disk, RAM and CPU. One could say Matrix is geared towards mega-instances, because a situation where *everyone* self-hosted their own federated instance could make the resource usage problem even worse. At least that's how it was explained to me.

@alxd We're evaluating Matrix and IRC atm.

Matrix has all the bells and whistles, but it's also quite resource-hungry, and tedious to maintain. Federation for smaller servers is likely not an option - making it rather unwieldy, when many clients don't support multiple homeservers.

IRCv3 has some nice features, like message history and replies, but also major friction points like poor support for uploading images via the client.

At least our data will be our own, and we can use it how WE want.

@argv_minus_one

Null never occurs by accident. It means intentionally empty (e.g., getProduct(id) returns null when no product was found).

JS lets you explicitly assign undefined to properties, creating ambiguity vs. non-existent properties that also return undefined. This is the weird part.

But, JS objects are dynamic. Properties can be added/removed at any time. Undefined is not *proof* of whether a property can or cannot exist. For that, there's the Object.prototype.hasOwnProperty method.

@SonjaS Subvert (https://subvert.fm/) is about to open very soon (tomorrow for members, next month for everyone else)
Subvert — The Collectively Owned Music Marketplace

A music platform owned by us all. Join Subvert to sell your work, support artists, and shape our shared future. Sincerely Ours.

Subvert — The Collectively Owned Music Marketplace
@tdpauw Ignoring the condescending tone of the article, how would you suggest implementing this methodology when it comes to, say, framework migrations? Can't have two versions of the framework coexisting at runtime, so how do you achieve this using only incremental changes?