I’m not disagreeing with you, but am genuinely curious how “fairness” was counted. I feel we have a thing right now where one side will present a well reasoned, data driven, argument. And the other side will hastily throw together something based on vibes that mostly doesn’t address the issue at all. But out of a sense of fairness our current media feels like it has to present both as though they’re two equally effective tradeoffs when actually one is empty noise.
So I’d be very curious if this system has a way of preserving true fairness without devolving into false equality in some way. Obviously nothing is perfect, but I’m curious.
It’s also worth mentioning that localsend has specific Linux support, so the app should run fine. I use it on my Linux laptop all the time!
I think it’s great! If we’re Mr and Mrs MyLastName we know they know me and assumed she was the same. If it’s Mr and Mrs HerLastName it means they know us through her, and assumed she must have gotten the name from me! It’s like putting the name of the company in the email you’re giving the email to, it tracks the source. At least that’s the game we play, because it mostly doesn’t matter to us.
On most modern distros (like Mint) you can do basically as much with Linux GUIs as you can do in Windows or Mac. So normal users don’t need the terminal. But if you want to do more, if you want the secret sauce, the terminal is there for you.
But fear not! Basically all of us have some level of autism or ADHD, and the best of us tend to be the most extreme. If anything the terminal was written by autistic nerds for themselves! If you’ll be okay being a bit of a n00b for a bit, I think you’ll find there’s a lot of depth here to obsess over / hyper fixate / hyper focus on.
There’s a reason people have been “fighting” for, like, 40 years over which terminal text editor is the superior one… The flames of war can run pretty deep, and there’s a lot of opinions.
I think the reason people are jumping to BDSM community terms is because BDSM people fucking love terms. They’ve got taxonomy for days, and they live to whip it out, so to speak.
You should look up IPFS! It’s trying to be kinda like that.
It’ll always be slower than a CDN, though, partly because CDNs pay big money to be that fast, but also anything p2p is always going to have some overhead while the swarm tries to find something. It’s just a more complicated problem that necessarily has more layers.
But that doesn’t mean it’s not possible for it to be “fast enough”
Knowing the folks at IA I’m sure they would love a backup. They would love a community. I’m sure they don’t want to be the only ones doing this. But dang, they’ve got like 99 Petabytes of data. I don’t know about you, but my NAS doesn’t have that laying around…
a spokesperson for the honeyseller, Vladimir Dmitriev
Listen, obviously people with names like that can be totally normal and great people. For sure. But this name, connected financially to this candidate, at this time. Guys… It’s not a good look…
I’m not the person you’re replying to, and I don’t have any videos, but I do love dumping explanation on people! So here’s some terms:
File System: This is the way data is laid out in terms of actual bytes on the drive. It’s in charge of things like where to look to find the name of this file, or how to “last modified” date is stored, or how do I find out which files are in this folder. NTFS is a filesystem, whereas ext4 is probably the file system your linux machine is using. FAT is the older Windows one that’s still used on, like, SD Cards and stuff. That having been said File System is sometimes also used to refer to the particular data on a particular partition of a disk, like “the filesystem will allow” which really means the data on your NTFS partition. Filesystem is often abbreviated “fs”, and is in fact the “FS” of “NTFS”
Mounting: In unix systems, such as Linux, file systems are “mounted” to a place in the folder hierarchy. Everything in unix lives somewhere under the “root” folder /
, so mounting is basically saying “Okay, you want to see the files in this filesystem. Where should I put them?”, and if you say /home/user/stuff
then the file “one.txt” at the root of your filesystem will now be visible at /home/user/stuff/one.txt
", and if you mounted it at /mnt/things
it would be /mnt/things/one.txt
. The term mount is used like “attach” to mean “where do you want me to hang this new directory hierarchy on your existing one”.
fstab: There are a few ways to mount things in modern linux. The classic is the mount
command which looks something like mount /dev/sda1 /home/user/stuff
which would take the device with the name /dev/sda1
and mounts it to the given path. Devices in linux usually live in /dev
, and in this case are often given names like sda1
to represent the first hard drive (a
), and the first partition of that drive (1
). But, there are other ways! You can also click on the partition in your file browser and it will mount the disk for you, often auto-creating a mount path and cleaning it up when you’re done, so you don’t even have to think about it. Another way is fstab
, which is a kind of config file that controls mounting devices. In here you can give default options for how you want drives to be mounted, and can even specify that you’d like some devices to be automatically mounted by the system on startup. This is actually an important part of how unix systems start, and how the root filesystem and other important ones get going. If you wanted your NTFS drive to always be available at a permanent location, you would edit this file to set that up. If this is something you wanted only periodically, then just clicking may be fine.
Permissions: Virtually all unix filesystems store the permissions of files and directories as a “user” and “group” that owns the files, and then a set of whether or not the owner can “read” “write” and “execute” the file, whether other members of the group can, and then whether everyone else can. If two people were on the same computer, these would allow a person to be able to see their own documents, but not see the documents by other users. Or maybe they can see them but can’t make changes. And it also prevents random users of a system from changing important system configuration, when those config files are owned by the administrative user (called root
by convention). Some config files will be read-only to normal users, and some contain secrets and so are permissioned so normal users can’t even see them. But! NFTS doesn’t follow these same conventions, so when mounting an NTFS drive on unix the driver has to produce a set of permissions that are unix-compatible, but it doesn’t have anything to work off on the disk. So the person above was saying by default it assumes the safest option is to make all files owned by the user root
, and so if the permissions are the only the owner can write the files, and the owner is root
, this will mean it’s effectively “read-only” to you. The terms uid
and gid
stand for “user ID” and “group ID”, which are the numbers that represent a user in the data. User names are basically a convenience that allows us to give a name to a uid, but it’s more efficient to store one number everywhere on disk for owner rather than a name.
So putting it all together, what they’re suggesting is that you can use the /etc/fstab
file, which has a very particular format, to specify default options when mounting your drive. These options include setting the uid
option and gid
option to your user’s uid and gid, so that when the filesystem is mounted, it will appear that all the files are owned by you, so you’ll have full permissions on them. They’ve assumed your uid
and gid
will be 1000
because that’s a common convention, but if you’re comfortable you can run the id
command on the command line to output your actual uid and gid (you can ignore all the other groups your user is in for now)
They also mentioned that when mounting you can specify if you want to mount the filesystem as “read-only” or “read-write”, etc. If you mount the whole filesystem read-only, then the write permissions stored on the individual files are ignored, basically. So if you were mounting with a command, or through fstab, you should make sure the rw
option is present to clarify that you’re looking for “read write” permissions on your mount.
That having been said, it’s possible none of that is relevant to you if you’re mounting the fs by just clicking in your file browser. One way to tell is if you right-click on some file you aren’t allowed to edit and look at the properties there should be a Permissions
tab thing. And it will list the owner of the file and what access you have. If those permissions are already set to be owned by you, then this uid
thing is already taken care of for you by the file browser. In that case it might be something more fundamental to the NTFS filesystem, like the locks other people are talking about.
So those are some words and their meanings! Probably more than you wanted to know, but that’s okay. I liked typing it
I think I may have contracted some kind of brain worm, because the other day I needed to do some photo manipulation and couldn’t get krita to do what I wanted, but I went into gimp and just knocked it out. I’ve hated gimp for years, but I guess I’ve used it enough that I’ve figured out how it works… and now I don’t hate it anymore…
I think I may need help.
Oh, but I always use it in single window mode ever since that came out. The multiple windows floating panel thing drove me nuts!
I totally agree in principle, but to give this particular article the benefit of the doubt, I feel they’re specifically trying to directly counter right wing talking points. So rather than saying “being a man is meaningless” to a bunch of people who feel strongly about male identity, they’re instead saying “there’s more than one way to man. Here’s a good male role model now!” to try and reach some middle dudes who are conflicted and getting preyed upon.
I agree that in the fullness of time we shouldn’t focus on this stuff, but I’m a bit worried about perfect being the enemy of good, and continuing to preach to our choir while 40% of dudes fall into a belief that women are the enemy and need to be controlled and shit.
I already responded somewhere else, but I have more response that doesn’t make sense in that context.
First, about deepening conversation. I don’t know about this guy, so I’ll talk about myself. I have things I’m interested in, let’s call them “interests”, and I like to talk about them. And the only thing that stops me from talking about them constantly to everyone is the social understanding that they don’t want to hear about my interests.
So all it takes to have me talk about stuff is enough questions to demonstrate you really want to know.
“What do you like about blah blah blah?” will probably get a short answer because he’s used to people not really wanting to know more, so he’s giving the smallest answer that answers the question. But then, you ask a question about his answer. “Huh, how is that different than blah blah?”
Now maybe longer answer, you listen and ask based on that, and if you can manage it you could also circle back to a previous answer to connect some dots. That’s now a discussion! Now, of course, you do have to listen. Unsure if that’s a skill of yours or not.
As for the asking out, I think you should do it. But if you don’t trust yourself to deliver the speech live, you could write it down / print it out. Just make sure it contains escape hatches for him that assure him it’s okay if he doesn’t share your feelings, and that he can just tell you if that’s the case, and probably ends by saying he doesn’t need to necessarily give you an answer now and you’re just happy you could get it off your chest. I think going for something casual is better than something heartfelt and romantic, but I don’t know the two of you. The most important thing is that he knows, and the second most important thing is that you don’t want it to wreck things if feelings aren’t mutual.
And if you don’t want to awkwardly read it, you could just hand it to him and let him read it at his own pace. This lets you watch his face while reading, if he makes facial expressions and if you can read them.
I would recommend against an email or a text, though. It feels like, from the bits of your personality I’ve picked up here, the time between when you send it to whenever he responds is going to be absolute torture for you. Whereas he might just be busy and not have even seen it yet, you’ll already be inventing bad scenarios and deciding which new city you should move to since you obviously can’t stay here, etc, etc 😉
So probably best to deliver it in person, maybe at the end of a hangout, so you can be sure he received it and read it. And I know you may be scared, but don’t tell him to read it after you’re gone, because that’s now email territory where you can’t ever know if he’s read it yet! Just have him read it, assure him it’s okay if he doesn’t agree, and let him respond. And even if he doesn’t have an answer now, you know it’s done.
Good luck!
I’m a man, my wife made the first move, and I’m very glad she did! Taking the step from friend (or even just acquaintances) to more is risky for anyone. But, and maybe I’m biased here, I think it’s currently even more risky for guys. Word can get around, and you’re more likely to not just lose the one friendship, but to be labeled “creepy” generally if you’re wrong. Of course it’s possible for that to happen to a woman, but it’s way less likely for a woman to be perceived as a creep in general, and also men don’t talk amongst themselves the way women tend to.
Anyway, I knew my wife from a social space, and I didn’t want to be the guy who poisoned the environment and made it an uncomfortable location for women by pursuing any of them. So I was friendly and tried to be as non threatening as possible, which meant no asking out. So I was very relieved when she made a move!
Don’t know if your situation is anything like that, I’m just unsure of your source that says “active woman means short term”. I mean, think of all the dudes hitting on strangers in bars which either turns into a one night stand or a short fling. The averages have got to be better than that, right?
Nah, I mean, I was around when George Bush was the guy. I didn’t like him, I didn’t feel he was a good leader, or fit for the office. I would try to convince people not to support him or the war(s) in the middle east. But he was not a threat to democracy. Except maybe through The Patriot Act…
There was a lot of things I didn’t agree with that Mitt Romney believes. I think voting him in would have been regressive and bad for gay people, etc, who I care about. I think he is wrong about things. But he’s not a threat to democracy. I belive that he believes the things he claims to believe, and that he believes in his heart that he’s doing the right thing. I just disagree with him.
John McCain seemed like an honorable man. Again, I felt that his priorities and mine didn’t line up, but he was nowhere near a threat to democracy.
The reason this dude is a threat to democracy is because he has openly and repeatedly disregarded voting and the function of government, which is kinda democracy’s whole thing. If the votes don’t count, and the results don’t follow the will of the voters, then it’s not a democratic system. If you systematically choose to make it so some segment of your citizens cannot vote, or their voices are not heard, then it’s not a democratic system.
I agree with OP. If there’s a puzzle in a game that’s clearly some kind of water puzzle, but I can make a boat to solve it in 15 seconds and bypass the obvious intent of the puzzle, maybe I feel a bit clever. But if I can solve every puzzle with effectively the same boat… what’s the point of doing the puzzles? I guess because I wanted puzzles? But on the other hand, if I know I can solve every puzzle with a 15 second boat, it feels kinda weird to pretend I don’t have an answer and struggle through anyway. Like, the victory is hollow when I know I could have solved it faster the dumb way.
The number of times in that game I thought “oh, maybe I have to jump up through the floor here to get through this door” and then I peeked through the floor and was like “oh, nope. It’s the damn final boss room again. Not supposed to be here yet, better go back through the floor and try another way to open this door” felt like I was babysitting the game so as to not entirely ruin the experience… and it kinda ruined the experience…
Well… That’s actually probably fair as stated.
BestBuy etc don’t sell Apple’s products on commission, they bought them from Apple for a wholesale price, they’ve got them in a warehouse and on shelves right now on their dime, and the only way they make that money back is by selling them.
And the only way Apple makes money from a product being sold at Best Buy is that Best Buy will likely buy more stock to replace the stuff they sold, and they’ll buy that from Apple.
So if it was banned everywhere it would be unfair to the retailers that already paid Apple for a product they now can’t recoup, and it wouldn’t impact Apple at all because they already made their money from Best Buy.
This way the retailers can get their money back, but can’t get any more, which means only Apple is impacted.
The only other way that’s semi-fair (but would be extreme) would be for Apple to be forced to do a recall or something and reimburse all the retailers the money they had already spent. Doable, and definitely more of a punishment for Apple, but a lot of extra work for everyone if the outcome of this is that Apple settles and then everyone can just go back to ordering more again.
100% you can do it with some good instructional content and a smidge of patience!
A standard lock is disturbingly easy to pick… We used to run a booth at a maker event where we taught members of the public passing by including, like, 5 year olds to pick padlocks.
Unrelated, but BTW there are some jurisdictions if I’m not mistaken where having lock picking tools found on you is considered “criminal intent” or something, but on the other hand if you’re already at the point where your bag is being searched you may already be boned…
I’ve never been a Twitter/microblog user, but here’s how I gather it worked, presented in the order in which it was developed.
Do you ever think “oh, that’s a funny/interesting thought I had”, but there’s no one around to tell? Or not enough people and you think it had more potential than that? Microblog. Unlike a forum, you just dump in out into the void as-is. It’s a broadcast. Like if every account was a personal /r/showerthoughts.
From there we make it so I can subscribe to my friends. Now when they post their funny thoughts, or even just being like “I feel like tacos tonight, anyone in SF down?” I’ll get their post. Now it’s kinda like open group texting. Except I don’t choose who sees my random thoughts, they self-select. I just broadcast things out there and whoever might be interested might be interested.
That was basically all that microblogs were, at the beginning. A stream of non-topic’d stuff I said, and you can follow me if you want to hear more like it.
But sometimes I’m surrounded by strangers, like at a conference. At these points I want to know what random people I don’t follow are all saying about FooCamp. Search already exists so I can see all tweets with the word “cat” in it, but I can’t find a way to fit FooCamp organically into every post, so hashtags get invented as a social convention to say “that was my message, but here are some other keywords for search purposes”. Later they got linkified and so people started putting them inline, but originally they were just at the end and just for extra categorization.
So now the tool does two things. I can just broadcast out any thought I have without having to care about where to put it, etc. It all goes on my feed and anyone who has chosen to care about me will see it. And I choose who I care to receive broadcasts from because they’re cool, and it doesn’t matter what they’re talking about. But also I can tag a particular message with some categories, and that will allow strangers to see my messages if they happen to be looking for messages in that category, but obviously a single message can be in multiple categories.
Then later famous people and governments showed up, and people followed them because they love go hear what famous people talk about. But if you don’t follow them, then you don’t hear from them.
That’s basically it! So it’s kinda like the opposite of a reddit/lemmy/forum/usenet model. Rather than topics that have content posted by people, it’s people who post content that sometimes has a topic. Like a large group-chat (among friends or colleagues) where you’re not really sure who is in the chat, but you don’t have to care. You can prefer one over the other (I know I do), but fundamentally they’re not trying to solve the same problem as lemmy, they’re just a totally different model for communication. More like a friend group than a discussion group.
I don’t want to sound like I’m just correcting you for the sake of it, but it’s actually important. Mastodon is the most popular right now, but Mastodon actually wasn’t around at the beginning! Before that was StatusNet, and before that was identi.ca and laconi.ca
So those services already existed, they were the ones built for federation, and so Mastodon was started as another compatible implementation of an existing network protocol. All of that is to say that Mastodon didn’t need to make the right choices at the beginning, and they have already benefitted from this kind of network dynamic! The system has already worked once!