Anafroj

joined 2 years ago
[–] Anafroj@sh.itjust.works 1 points 2 years ago

The good news is that with ircv3 being worked on, it may soon(ish) be quite dusted. :) It adds features like reply threads, history from when you weren't connected, message editing and deletion, and more!

 

This was recently published on GitHub. I didn't try it myself since none of my printers are wireless, but I figure people may be interested to know it exists. We're still far from parity, but FOSS coverage of resin printers gets closer to coverage of FDMs!

[–] Anafroj@sh.itjust.works 1 points 2 years ago

GitHub is a great platform, which has championed open-source for decades, now. I don't think anybody has anything to blame them for (except people not liking the idea that AI is trained on their code, like sibling mentioned), it's more about fears it may go bad. Because basically, it's where most of the code of the world is hosted, it's a single point of failure. People also have questioned the pertinence of having all open-source code hosted on a proprietary platform. And the acquisition by Microsoft also had a chilling effect on those of us who remember Internet Explorer 6's Microsoft more than VSCode's Microsoft.

For those reasons, it is desirable for those who love the idea of decentralization to look up for alternatives. But even there, it's perfectly fine to stay on GitHub, "decentralizing" doesn't require everybody to leave. :) Plus, even when using an other forge, it's still good to keep publishing mirrors on GitHub for visibility and discoverability, currently.

[–] Anafroj@sh.itjust.works 1 points 2 years ago

Right. Gladly, you're here to explain those masses of idiots who are having fun why they should not. You're just being pedantic. And for the record, no, it doesn't make you sound smart.

[–] Anafroj@sh.itjust.works 0 points 2 years ago (2 children)

5e is a bad table top game

No it's not. Everybody loved 5e before the OGL fiasco early this year, but the hardcore old-schoolers who found it too simplified. The recent bad sentiment is about poor business moves by WotC regarding their license, and has nothing to do with the 5e system, which has been to date the most successful edition of dnd.

[–] Anafroj@sh.itjust.works 1 points 2 years ago* (last edited 2 years ago)

"That was my favorite spear, 300 years ago!"

[–] Anafroj@sh.itjust.works 1 points 2 years ago

Actually, for once, it's a quite good implementation of the 5e ruleset. :)

In the Player Handbook (p.147) :

Improvised Weapons

Sometimes characters don’t have their weapons and have to attack with whatever is at hand. An improvised weapon includes any object you can wield in one or two hands, such as broken glass, a table leg, a frying pan, a wagon wheel, or a dead goblin.

Often, an improvised weapon is similar to an actual weapon and can be treated as such. For example, a table leg is akin to a club. At the DM’s option, a character proficient with a weapon can use a similar object as if it were that weapon and use his or her proficiency bonus.

An object that bears no resemblance to a weapon deals 1d4 damage (the DM assigns a damage type appropriate to the object). If a character uses a ranged weapon to make a melee attack, or throws a melee weapon that does not have the thrown property, it also deals 1d4 damage. An improvised thrown weapon has a normal range of 20 feet and a long range of 60 feet.

[–] Anafroj@sh.itjust.works 1 points 2 years ago* (last edited 2 years ago)

This. Also, anybody who can identify you as the owner of the host (be it through Whois or through hosting service records) can associate your name to everything posted on that instance, thus profiling you, your tastes and your opinions easily (it's insane the amount of personal information we can leak on social media, even when thinking we're not). Clearly not something to do in countries where you can be harassed or worse for your opinions, and probably best avoided everywhere, if privacy is a concern for you. There is some virtue in being immersed in the masses (that's actually a common anonymisation strategy, from merging streams comes plausible deniability).

[–] Anafroj@sh.itjust.works 1 points 2 years ago* (last edited 2 years ago)

Solving it the unix way:

ls -1 | sort -R | sxiv -f -s f -S 5 -

So it's ls -1 to list the content of current directory (presumably where your pictures are), with one file per line, so we can then pipe it to sort, with the -R option to sort randomly, then piping the result to sxiv, a lightweight image viewer available on most distro (I just checked, it's available on Debian). For its options : -f means it's fullscreen, -s f makes it scale to fit the image on screen as well as possible, -S 5 tells it to start in slideshow mode and change picture every 5 seconds, and - is to tell it to take the files list from stdin (thus from the ls and sort commands).

This won't work for videos, though, only pictures.