Internet Archive breached again through stolen access tokens
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    13h ago 100%

    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"

    8
  • Internet Archive breached again through stolen access tokens
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    15h ago 100%

    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...

    29
  • CNN tried to find the makers of Trump’s new ‘Swiss-made’ watches. We ended up at a shopping center in Wyoming
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    4d ago 100%

    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...

    39
  • I can't delete files in my old ntfs partition from when I had windows. [fedora, kde plasma] {EDIT: I messed up}
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    1w ago 100%

    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

    5
  • Inkscape 1.4 released
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    1w ago 100%

    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!

    16
  • Anon browses ancient memes
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    2w ago 97%

    I mean, I can't speak to OP in particular, but there were definitely lots of years where people made shit for free, sold nothing, and didn't consider it a job.

    Like, there was no real mechanism for stick figure martial arts animations to make any money at all. Newgrounds or Ebaum's World must have made some money from ads, but I don't think any of that was profit-shared with the creators back in those days. Some of the creators were straight up anonymous because they didn't even think to put their names on their stuff.

    Obviously celebrities and ads and stuff still existed on the earth at the time, but it didn't spread to the internet in a big way until later.

    At least that's how I remember it...

    33
  • 6 years after Kickstarter, Orphan Age dev Studio Black Flag shuts without a release
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    2w ago 100%

    I don't know about this particular title, but I feel like Kickstarter games get a bit of a bad rap for taking a long time or not making it to release. But that's because the whole point of a Kickstarter game is that we, the public, are acting as the publisher. Putting up money in advance, making an investment, hoping for a great game.

    And just like with traditional publishers, sometimes games take years and years to make, and some of your investments crumble and don't make it.

    It's just that we the public rarely hear about a traditionally published game until it's already been in development for a while. Until it seems likely to succeed. We're not used to taking pitches while a game studio figures their shit out. And even then, some traditionally published games crash and burn too!

    And that's all ignoring the fact that a bunch of crowdfunded games are typically by greener devs who maybe don't know how things are done. But what I'm saying is that even the normal game industry has long lead times and has some burn outs, it's just that normally an entire community hasn't built up around them, because they haven't even been announced yet.

    I guess is what I'm saying is that publishing is hard and risky, and crowdfunding is collective publishing, not advanced purchasing. That doesn't immediately mean that anyone who tries and fails is a scam artist. Most of them probably spent that money trying their best for as long as they could, and nothing great came out the other side. That's just what business ventures look like, unfortunately.

    5
  • Doug Ford’s Terrible Plan for Cycling in Toronto - Oh the Urbanity!
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    3w ago 100%

    As a cyclist in a city that's building bike lanes (don't know if it's yours), there's sometimes issues with cycle lanes that aren't obvious to people who don't use them. The most common is that they don't connect to each other. So a driver may feel like there's bike lanes here and there and everywhere but they don't see people using them. But actually there's a bike lane for 2 blocks over here, then nothing for 3 blocks, then that street over there has a bike lane, but it doesn't make it all the way to the intersection with this street. So it ends up being less like a network and more like a loose bag, and if I'm going to have to be up and down off the sidewalk anyway, I may as well stay up there.

    But! There's a magic tipping point! At some point there's enough lane that it actually connects to something. Then that connection becomes a path, and then soon that path becomes a route! And now suddenly you can actually get somewhere entirely in those bike lanes. I've seen the number of people biking, and using the bike lanes, shoot up after this inflection point, because now it's a real option.

    Either that or the "bike lane" is just a white line next to high speed traffic. Those don't make anyone feel safe, and most people would prefer having the curb there for their safety, so they mount the sidewalk for protection.

    6
  • Women in STEM
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    4w ago 100%

    Actually, that Hertha Ayrton quote at the end? About the cats or whatever? That was actually me. I said that.

    15
  • TIL what an Ortholinear Keyboard is
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    1mo ago 100%

    I'm not sure I understand. I have an ergodox moonlander and while it's true there is no dedicated button for Function keys, that's what the layers are for. It's kind of the point of a configurable customizable keyboard.

    So for me I have all my special symbols under my left hand while my right hand holds a special key. Takes some getting used to, but once I had practiced the special keys are actually closer than before because they're all the normal keys. Similarly I have arrow keys under the keys labeled 'hjkl' when another key is held. My Function Keys are all accessible with special key and the number keys.

    It takes some tweaking and tuning to figure out the layouts you want, but the whole point of a keyboard like this is that you can tune it to be whatever you need it to be. Now, if you don't like to tinker and just want something out of the box, I get that, but even the default config has function keys, I think. Maybe you just didn't read about how it works?

    6
  • A Different Way of Being a Man
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    1mo ago 100%

    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.

    9
  • How can I improve my communication with a friend I like?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    2mo ago 100%

    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!

    3
  • How can I improve my communication with a friend I like?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    2mo ago 100%

    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?

    7
  • Sanity check on kerb and lit tags
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    3mo ago 100%

    Yeah, I think the image for concrete plates in the app is from the wiki, and is kinda unclear because it's some rectangles of concrete. And I'm looking down and what I'm seeing is a series of rectangles made of concrete. I agree, though, with that in mind I feel like the app could benefit from some guidance there to say "concrete, perhaps with joints, such as for sidewalks" or "concrete plates, precast elsewhere and installed. Rarely used" or something. Just a bit of a nudge in the right direction.

    2
  • Sanity check on kerb and lit tags
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    3mo ago 100%

    Yeah, my original interpretation of lit matched that. I have seen bus shelters with lights in my life, and this isn't one of those.

    But the wiki makes it sound a bit more vague, even saying a footway lit by the glow of a nearby billboard is lit. But at that seems a bit... useless to me? Since basically anything within a city that isn't a forest will be lit by some kind of glow.

    So that's what made me wonder if this tag really is effectively meant to indicate full darkness, essentially?

    2
  • Hello! I've just started using StreetComplete, and I want to make sure I understand the answers before I go through and make a bunch of garbage data. In this picture, is the kerb a ramp, or flush? ![](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Flemmy.ca%2Fpictrs%2Fimage%2Fc355b527-1b0a-416c-83cf-7eb5ed163615.jpeg) The sidewalk deflects downwards, but it's not a *ramp* ramp like the example picture. How about this one? ![](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Flemmy.ca%2Fpictrs%2Fimage%2F04f47e5d-6991-49e8-803f-ea1d0d810b89.jpeg) The kerb itself dips, but the sidewalk on this one looks more flat and does simply run into the road. And then it has the texture, obviously. Is this one different from the last one? Also, just to check, I marked both of these sidewalks as "concrete". That's correct, right? I wondered about "concrete plate", because they're segmented, but the picture made concrete plate look much more substantial. My other question was based on the "lit" tag for a bus stop. This bus stop has a street light near it, but there's no light on the bus stop itself. It sounds like that means it is lit? Would a non-lit stop just be one that is fully dark at night, then, with no kind of lighting anywhere near it at all? ![](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Flemmy.ca%2Fpictrs%2Fimage%2Fd5487205-7029-4af0-8ff5-05c7b14c0db1.jpeg) This one is further from the street light, but still has line of sight. Lit? ![](https://lemm.ee/api/v3/image_proxy?url=https%3A%2F%2Flemmy.ca%2Fpictrs%2Fimage%2Fc259a3cd-725e-4f56-8166-82fcef23ba2b.jpeg) Thanks very much for any help you have!

    40
    8
    Ex-Incels, how did you dig yourself out?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    3mo ago 100%

    Yeah basically! There's a reason most romantic comedies end with them starting to date. It's because that's the zany exciting bit. After that part, the next 40 years or whatever is a roommate who lives in your home with you, and you do taxes together, and you eat dinner together, and you go to your shared friend's homes to hang out, and maybe you teach weird little gremlins how to be humans, and you talk after work about how your day went, and what you're planning to do in the future.

    And that stuff can be great! But looking like a model doesn't make that stuff much better. Even people who live with models probably "get over it" pretty quick. You can't be in awe 18 hours a day every day for 15 years. But, having a shared foundation of experiences and mutual respect does make those things easier. Liking each other's friends does too.

    You can learn to love someone, and you can learn to find an attractive person unattractive through interaction.

    6
  • Ex-Incels, how did you dig yourself out?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearPS
    psycotica0
    3mo ago 75%

    Can't tell if trolling, quipping, or honestly asking...

    I feel like some people who don't want friends are often people with low self esteem who have decided their hypothetical future friends will abandon them, or not like them, or whatever, and so they convince themselves that they "don't want that anyway" as a way of protecting themselves from future pain or embarrassment. In those cases, dating aside, the person should work on their self esteem.

    If it's not that, one could try casual hookup apps. These rely on a certain amount of work, and there's no guarantee, especially if one lives in a less populated area, but it's possible.

    And the third option for someone who doesn't want anything social and just wants sex, is sex work. This is exactly what it can be for! The only trouble is that in most places it's illegal, which pushes it underground, making it both difficult to find and potentially dangerous... but this is the niche it's meant to occupy.

    But honestly... at least consider that it may be the first case, and see if you can search your feelings to figure out "why".

    2
  • Hello folks! I have these switches in my bathroom. The rightmost is the lights, and the middle one is the bathroom fan, and I'd like to replace that middle one with something I could load tasmota on (or some other open source firmware), without replacing the other switch, the sockets, or the faceplate. I haven't seen any smart switches that have a form factor that would fit through this faceplate, though; they seem to mostly want to be the entire electrical box. If it weren't for the electrical plugs I could maybe replace this with some kind of 2-gang thing, which isn't really what I want but could be fine, but as it stands I'm not sure what my options here are. I don't need the new switch to necessarily _look_ like the old one, I just want it to fit in the same box and use the same faceplate. Do you folks have any recommendations?

    55
    22