solrize
@solrize@lemmy.ml
- Comment on [Question] Public-facing Wiki 2 minutes ago:
Shorter version: instead of wiki software, use a static site generated from a git repo. It’s a valid approach. Note that Gitit uses git for version management, so among other things you can copy your whole wiki with git clone. But it also has a built in web editor instead of just relying on git push.
- Comment on [Question] Public-facing Wiki 3 hours ago:
You might try Fossil then. It uses something like 2MB of server ram instead of gigabytes. It makes me wonder where we all went wrong.
- Comment on [Question] Public-facing Wiki 3 hours ago:
Is it public facing in the sense that randos will edit it? If not, the simplest thing is probably fossil-scm.org which is very light weight, but it’s actually a version control system with a built in wiki, so its editing interface is a bit weird compared with Wikipedia. It is pretty fast though I’ve only played with it, not run anything public facing from it.
Setting up Mediawiki is more complicated but it does have a familiar interface. I don’t know how much tuning and configuration you have to do to allow it to handle a lot of traffic, but obviously with enough caching and stuff, it scales all the way up to Wikipedia level.
I’ve also used Gitit and I think MoinMoin but not with any significant amount of traffic.
- Comment on Why scientists asked 1,000 people to bury their underwear 5 days ago:
If my underwear got buried, it would dig its way out of the ground and say “send more cops”.
- Comment on Evidence of Fraud in an Influential Study About Procrastination 1 week ago:
Ariely has been in a heap of scandals about this sort of thing. Becoming a celebrity addicted to attention will do that to you.
- Comment on Adolescents report low regret and high satisfaction following gender-affirming c 1 week ago:
Paywalled but seems to be about FTM getting existing boobs removed, rather than MTF getting new ones installed.
- Comment on Is there any tape media backup system that works through USB? 3 weeks ago:
I think that isn’t really a thing. Usually you would have a tape drive in a backup server for a network, and the backup server would have its own HDD, so you’d back up over the network to the HDD and then dump HDD to tape locally at close to the transfer speed of the disk. Higher capacity tapes have fast transfer and if your data source can’t kee up, the tape has to start and stop all the time, which slows everything down and wears everything out.
“Some TB’s” = single digits? Probably just back up to remote storage if you have enough network speed.
- Comment on Dying of prosperity, 14TB HDD left unused 3 weeks ago:
Keep it spinning and put stuff on it, or sell it, probably for more than you paid for it. Drives on the shelf tend to fail.
10K POH is a little more than a year, so it may still be under warranty.
- Comment on How can i teach myself to contribute to these projects? 4 weeks ago:
Which projects?
Can you look at the source code in the repos and make any sense of it?
Are there open issues connected to the repo, that you think you could make some headway with?
If you have 0 experience writing code, I think contributing to an existing project isn’t a good way to start. Better to text a textbook and work through some exercises, and do a few small projects of your own, before trying to join an existing team where as a total newbie, you’ll be a burden. Note that “small project of your own” can involve forking something that exists and making your own changes or additions. That doesn’t require much attention from other people.
Then, contribute once you feel you are ready to contribute.
- Comment on Sometimes, when I am all alpne i like to fantasize... 4 weeks ago:
What do you want to do with the HDD’s? I have a bunch of crap saved on mine, but nowhere near 12TB. Also I rent some drive space (Hetzner Storage Box) for server backups. That adds up over time but you don’t have to spend a big chunk all at once, and HDD prices might eventually drop again.
Feel lucky that you want HDD rather than SSD. SSD prices have tripled or quadrupled while HDD has not even doubled, per the graph someone posted.
- Comment on Replacing a landline phone 1 month ago:
-
I’ve had trouble getting Jami to work at all, I think because of incompatibilities between versions and whatever. You might have better luck with something like Linphone.
-
I haven’t tried a VOIP hardphone but I use Linphone on Android sometimes. I would say call quality is worse than normal cellular voice calls even those are certainly VOIP at some level too.
-
VOIP is more crap to fool around with and periodically troubleshoot, but you can get it to work if you have to. I don’t find landlines to be worth it any more (I just use mobile voice) but they’re probably still the most reliable of the approaches, and I guess it depends somewhat on your family’s discomfort level with technology.
VOIP hardphones sound nicer to use than mobiles, but I guess unlike traditional landlines, they don’t work in power outages. All the ones I’ve seen rely on a power cube.
-
- Comment on What's Your Ebook Automation Pipeline 1 month ago:
Epub is html with some crap wrapping it. Converting it to text follows the html formatting, like using the lynx browser.
- Comment on What's Your Ebook Automation Pipeline 1 month ago:
Mostly pandoc (for epub to text) and a few stupid python scripts. I’m a luddite and prefer reading text files. I don’t use any particular collection management beyond filenames and grep.
- Comment on [Support] HDD diing or something else? 1 month ago:
Try smartctl -a on the drive (install smartmontools if needed), to see the error counts. Yeah, back up your stuff, which you should do anyway.
- Comment on Researchers Reveal the Power of ‘Quantum Proofs’ | Quanta Magazine 2 months ago:
It’s known that BQP (the stuff that a quantum computer can compute in probabilistic polynomial time) is a subset (maybe not a proper one) of PSPACE. I’m pretty sure the same thing applies to QR (the stuff computable on a quantum turing machine) vs R (same for a classical Turing machine). So anything that a quantum computer can do, a classical computer can also do, though the classical computer might take exponentially longer.
Usually though, this type of “proof” is supposed to be “concise” (its size is bounded by a polynomial over the size of the problem instance). The classical complexity classs is called NP, non-deterministic polynomial time, with P=?NP being the best known open problem in complexity.
For quantum computers, the analog of NP is called QMA (Quantum Merlin Arthur). QMA is at least as large as BQP, and it’s unknown whether BQP is contained in NP, so the answer to your question is “nobody knows for sure”, in the sense of having a mathematical proof. I think it’s generally believed though that BQP is larger than P (that’s why there’s so much hype about quantum computers), that NP is larger than P, and so on.
- Comment on Help choosing a good HDD for my home server? 2 months ago:
IDK really. I’m repeating what I saw someplace years ago. I would say do a real RAID if you manage it. Maybe RAID 5 on 3 drives.
- Comment on Help choosing a good HDD for my home server? 2 months ago:
While I don’t exactly intend to run RAID, I ended up choosing nas drives for the 24/7 intended usage,
The purpose of a NAS drive is to be LESS reliable than a regular drive, not more reliable. Explanation: if a regular drive gets a read error on a block, it will retry for quite a while before giving up. The host, meanwhile, has to wait for the data to be retrieved if the retries work. That’s all it can really do, wait and hope. Meanwhile, the waiting slows the application down.
A NAS drive instead will fail once or twice, then give up immediately, since it knows that it’s in a RAID system and that the data is also present on other disks. The RAID then puts the data together from the other drives and gets it to the host, logging the error. It will also hopefully mark the bad block on the drive with the read failure, and rewrite the recovered data to a spare sector. So this is faster than all the retries even though the drive that had the bad block gives up on it rather than attempting recovery by repeated reads.
So if you buy NAS drives, put them in a RAID.
Drives are currently around 2x as expensive as a year or so ago but they are available if you can afford them. I guess that’s better than shortages where they’re hard to find even if you can pay. We’ve had that before too.
I like to think the current situation will settle out. Who knows though. Drive space is still way less expensive than in 2010 or anything like that.
- Comment on The prices differences of different providers for the same domain is crazy. 2 months ago:
I think ID for new customers is widespread now because of the growth of scams. I enrolled at Porkbun from the US a number of years ago without ID (before they started asking for it) and they haven’t asked me for it retroactively, so I don’t think it’s required, it’s just something they do as an anti-scam measure. I’ve never tried for a UK or other national domain from them.
- Comment on The prices differences of different providers for the same domain is crazy. 2 months ago:
Try tld-list.com for comparisons.
- Comment on Continuwuity 3 months ago:
Well thanks for at least explaining what it is, but isn’t Matrix already self hostable? Anyway what’s wrong with IRC?
- Comment on ISO Project Ideas For Wyse 3040 & 5010 Thin Clients 9 months ago:
That leaves you with 17 more of them though.
- Comment on ISO Project Ideas For Wyse 3040 & 5010 Thin Clients 9 months ago:
These are mini PCs right? So you want something with a room full of humans or some type of local online service. Anyway, not a purely computer project.
Library terminals and game room come to mind, but neither are for installing at home.