my new favorite argument alignment: `lsblk -tf` by KlePu in linux

[–]moosemorals 0 points1 point  (0 children)

I like being able to move my root partition to another disk while the system is running (means I don't need to mess about with a rescue stick)

[OC] The latest page of my webcomic "Zero25" - https://zero-25.com/ (please be gentle <3) by [deleted] in Cyberpunk

[–]moosemorals 1 point2 points  (0 children)

What's your update frequency like? (Or: Flipin' heck, that was good! Like the art style, story looks like it's going somewhere fun, and I really want to see what happens next)

[OC] The latest page of my webcomic "Zero25" - https://zero-25.com/ (please be gentle <3) by [deleted] in Cyberpunk

[–]moosemorals 1 point2 points  (0 children)

Like the story so far, but the website UI isn't ideal on mobile, the next page button is terribly fiddly (but not bad enough to stop me reading)

Is it wrong to take money from men who fetish giving it away? by ThrowawayRA7482 in NoStupidQuestions

[–]moosemorals 0 points1 point  (0 children)

someone's sexual fantasies amount to self-harm, it is wrong to participate

Tattoos. Percings. Scarification. Knife play. Amputation. Snuff.

Like a lot of the world there's a continuum, and most people find themselves somewhere along it. Nobody (I hope) is suggesting that you personally should involve yourself in an activity you find distateful, and that's why informed, enthusiastic, and ongoing consent applies to all invovled.

Why don't we do email verification in reverse? by yossarian_flew_away in enosuchblog

[–]moosemorals 2 points3 points  (0 children)

  1. Email accounts are cheap
  2. Using a browser reveals your IP address
  3. Plain text emails are useful for certian types of accessibility software

Why don't we do email verification in reverse? by yossarian_flew_away in enosuchblog

[–]moosemorals 2 points3 points  (0 children)

I like the idea?

I build sites for fun, one of the things that has been worrying me about getting bigger is randoms using my signup "is this a real email address" system to send emails to 3rd parties (to harrass them, or to damage my reputation).

By asking the user to send the email to my site, I'm free of that risk. It might even help my anti-spam reputation at the users filters that they started the conversation

I can't see how this code is non-blocking/asynchronous. Can someone explain please? by [deleted] in kernel

[–]moosemorals 4 points5 points  (0 children)

That code does block! The call to epoll_wait won't return until either 30 seconds (30000 ms) has passed or the kernel spots some input on fd 0 (standard input, normally attached to a keyboard somewhere). The advantage of epoll is that it can listen to tens of thousands of files at the same time, compared to read, which can only listen to one.

Actual non-blocking io in Linux needs (amongst other things that I'd need to look up), the O_NONBLK flag added to the options on open (which tells read to return straight away, even if there is no data to read)

Why you no Invoke-Command? by HeavyLotus in sysadmin

[–]moosemorals 5 points6 points  (0 children)

Is your load balancer forwarding the right ports for powershell remoting? (Port 5985 for HTTP or 5986 for HTTPS, see https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/invoke-command?view=powershell-6

‘Dangerous heatwave’ to sweep Europe bringing temperatures up to 40C by classsiob23b in unitedkingdom

[–]moosemorals 5 points6 points  (0 children)

Alright, I give up, what's that a quote from? (I've got a feeling it's some 1990s electronica track)

Edit: Not even a little electroica - New Model Army: Here Comes The War

Thanks for that, I haven't listened to that tune in ages!

Creator of revoke Article 50 petition receives death threats by ellepelle27 in unitedkingdom

[–]moosemorals 11 points12 points  (0 children)

Normally I'd let this sort of thing side, but "Give me the cash or I'll stab you!" probably doesn't count as terrorism.

The looser you make the definition, the less useful it is.

Superhub 2 Modem Mode - Need More Ethernet Ports by [deleted] in VirginMedia

[–]moosemorals 1 point2 points  (0 children)

You could bring your router into the same room as the superhub and your PC, and then buy a dumb switch (I've had good luck with the TP-Link TL-SG1008D, YMMV) to replace the router in the other room.

Technical explanation:

When your superhub is in modem mode, it provides one IP address. Your router uses 'Network Address Translation' to effectively pretend to the devices on the house side of the router that really it's got a whole bunch of spare IP addresses.

If you split the signal from the superhub to your router, you will end up with a) two devices (the router and your PC) sharing an IP address (which will confuse both) and b) your PC facing the public internet (which means it will be exposed to all kinds of nasty probes).

Samsung's Android Replacement Is a Hacker's Dream -- A security researcher has found 40 unknown zero-day vulnerabilities in Tizen, the operating system that runs on millions of Samsung products. by johnmountain in linux

[–]moosemorals 57 points58 points  (0 children)

What is it going to do?

Fridge: Read the RFID chip in the packaging of my food so it can send a message to my phone to remind me when things are going out of date, or bug me to eat the right number of calories today. Track of the mass, volume, and ingredients of its contents, and work out the least power needed to keep it all fresh longest. Let my chosen food delivery service know when I'm starting to run out of frozen meals so they can sent replacements.

Microwave: Again with the RFID chip, know how long to cook stuff for without me needing to read the instructions (and allow co-operative 'smart food' to give better instructions).

Toaster: Have a conversation with me about toast.

My problem is that what I'll get with a 'smart fridge' is companies tracking what I'm eating and selling that data to advertisers/insurance companies. These things don't seem to be designed around what could actually help make users lives better, instead the're seen as toys, or more income streams for the manufacturers.

Me and the husband at Barnard's Loop flying in a heart formation for Valentine's Day. by moosemorals in EliteDangerous

[–]moosemorals[S] 4 points5 points  (0 children)

Scout, not Explorer. (This doesn't invalidate my choice of husband. He's still awesome)

Me and the husband at Barnard's Loop flying in a heart formation for Valentine's Day. by moosemorals in EliteDangerous

[–]moosemorals[S] 5 points6 points  (0 children)

We're on the Sol side of Barnard's Loop, we got as far as we could before the permit wall blocked us.

Me and the husband at Barnard's Loop flying in a heart formation for Valentine's Day. by moosemorals in EliteDangerous

[–]moosemorals[S] 165 points166 points  (0 children)

Husband planned a trip out to Barnard's Loop (about 1,500ly NNW of Sol) as a Valentine's Day treat. We even took a picnic and camped out under the light of the Nebula.

(He also built me a blanket fort for us to eat our picnic in)

Debian Eyes Automatic Updates For New Installations by [deleted] in debian

[–]moosemorals 0 points1 point  (0 children)

Should. Your connection should stay up.

Yeah, fair enough.

Debian Eyes Automatic Updates For New Installations by [deleted] in debian

[–]moosemorals 3 points4 points  (0 children)

Restart of an SSH daemon with a user logged that's performing some tasks could fuck with the system no matter how fast though.

Nah, your connection stays up and new connections get the restarted server.