It’s the same as with Linux, GIMP, LibreOffice or OnlyOffice. Some people are so used to their routines that they expect everything to work the same and get easily pissed when not.

  • @[email protected]
    link
    fedilink
    652 years ago

    As someone who used Reddit when it was first released, Lemmy is 10x better than Reddit v0.1 and obviously better than current Reddit.

    • @[email protected]
      link
      fedilink
      -72 years ago

      better? there is still so much subreddit not migrating here, saying it is better is just exaggeration

      • @[email protected]
        link
        fedilink
        42 years ago

        Sorry I wasn’t clear. I was referring specifically to performance metrics. Reddit v0.1 was down and crashing constantly.

        • @[email protected]
          link
          fedilink
          12 years ago

          then say it better when lemmy trully already have everything instead of saying it now ? you dont acknowledge a toddler as master degree even if later they could take master degree, you call them as their current state which is toddler

      • @[email protected]
        link
        fedilink
        English
        182 years ago

        Seemed like this discussion was about the technical capabilities, not the user generated content. Anyway if you compare the beginning of reddit (e.g., the early days after digg’s implosion) to lemmy today, I’d bet lemmy is doing just fine on the content side too. And even leaving that aside, there’s a quality over quantity aspect in the discussions that heavily leans in lemmy’s favor.

    • @[email protected]
      link
      fedilink
      132 years ago

      I guess as a user I didn’t see the back-of-house tools for mods and admins, but so far Lemmy is at least competitive. There are risks with server security and threat of being hacked, along with the size of the team.

      • Riskable
        link
        fedilink
        English
        292 years ago

        There are risks with server security and threat of being hacked

        [Citation Needed]. I’m a security professional (my day job involves auditing code). I had a look through the Lemmy source (I’m also a Rust developer) and didn’t see anything there that would indicate any security issues. They made good architecture decisions (from a security perspective).

        NOTES ABOUT LEMMY SECURITY:

        User passwords are hashed with bcrypt which isn’t quite as good a choice as argon2 but it’s plenty good enough (waaaaay better than most server side stuff where developers who don’t know any better end up using completely inappropriate algorithms like SHA-256 or worse stuff like MD5). They hard-coded the use of DEFAULT_COST which I think is a mistake but it’s not a big deal (maybe I’ll open a ticket to get that changed to a configurable parameter after typing this).

        I have some minor nitpicks with the variable naming which can lead to confusion when auditing the code (from a security perspective). For example: form_with_encrypted_password.password_encrypted = password_hash; A hashed password is not the same thing as an “encrypted password”. An “encrypted password” can be reversed if you have the key used to encrypt it. A hashed password cannot be reversed without spending enormous amounts of computing resources (and possibly thousands of years in the case of bcrypt at DEFAULT_COST). A trivial variable name refactoring could do wonders here (maybe I should submit a PR).

        From an OWASP common vulnerabilities standpoint Lemmy is protected via the frameworks it was built upon. For example, Lemmy uses Diesel for Object Relational Mapping (ORM, aka “the database framework”) which necessitates the use of its own syntax instead of making raw SQL calls. This makes it so that Lemmy can (in theory) work with many different database back-ends (whatever Diesel supports) but it also completely negates SQL injection attacks.

        Lemmy doesn’t allow (executable) JavaScript in posts/comments (via various means not the least of which is passing everything through a Markdown compiler) so cross-site scripting vulnerabilities are taken care of as well as Cross Site Request Forgery (CSRF).

        Cookie security is handled via the jsonwebtoken crate which uses a randomly-generated secret to sign all the fields in the cookie. So if you tried to change something in the cookie Lemmy would detect that and throw it out the whole cookie (you’d have to re-login after messing with it). This takes care of the most common session/authentication management vulnerabilities and plays a role in protecting against CSRF as well.

        Lemmy’s code also validates every single API request very robustly. It not only verifies that any given incoming request is in the absolute correct format it also validates the timestamp in the user’s cookie (it’s a JWT thing).

        Finally, Lemmy is built using a programming language that was engineered from the ground up to be secure (well, free from bugs related to memory management, race conditions, and unchecked bounds): Rust. The likelihood that there’s a memory-related vulnerability in the code is exceptionally low and Lemmy has tests built into its own code that validate most functions (clone the repo and run cargo test to verify). It even has a built-in test to validate that tampered cookies/credentials will fail to authenticate (which is fantastic–good job devs!).

        REFERENCES:

        • @[email protected]
          link
          fedilink
          English
          12 years ago

          It not only verifies that any given incoming request is in the absolute correct format it also validates the timestamp in the user’s cookie (it’s a JWT thing).

          This is false.

          Lemmy’s JWTs are forever tokens that do not expire. They do not have any expiration time. Here is the line of code where they disable JWT expiration verification.

          Lemmy’s JWTs are sent via a cookie and via a URL parameter. Pop open your browser console and look at it.

          There is no way to revoke individual sessions other than changing your password.

          If you are using a JWT cookie validation does not matter, you need to have robust JWT validation. Meaning JWTs should have short expiration times (~1hr), should be refreshed regularly, and should be sent in the header.

          • Riskable
            link
            fedilink
            English
            1
            edit-2
            2 years ago

            When I said, “it validates the timestamp” I wasn’t talking about the JWT exp claim (which you’re correct in pointing out that Lemmy doesn’t use). I was talking about how JWT works: The signature is generated from the concatenation of the content of the message which includes the iat (Issued-at) timestamp. The fact that the timestamp is never updated after the user logs in is neither here nor there… You can’t modify the JWT message (including the iat timestamp) in Lemmy’s cookie without having it fail validation. So what I said is true.

            The JWTs don’t have an expiration time but the cookie does… It’s set to one year which I believe is the default for actix-web. I’m surprised that’s not configurable.

            You actually can invalidate a user’s session by forcibly setting their validator_time in the database to some date before their last password reset but that’s not really ideal. Lemmy is still new so I can’t really hold it against the devs for not adding a GUI feature to forcibly invalidate a user’s sessions (e.g. in the event their cookie was stolen).

            I also don’t like this statement of yours:

            If you are using a JWT cookie validation does not matter, you need to have robust JWT validation. Meaning JWTs should have short expiration times (~1hr), should be refreshed regularly, and should be sent in the header.

            Cookie validation does matter. It matters a lot! Real-world example: You’re using middleware (or an application firewall, load balancer, or similar) that inserts extra stuff into the cookie that has nothing at all to do with your JWT payload. Stuff like that may require that your application verify (or completely ignore) all sorts of things outside of the JWT that exist within the cookie.

            Also, using a short expiration time in an app like Lemmy doesn’t make sense; it would be super user-unfriendly. The user would be asked to re-login basically every time they tried to visit a Lemmy instance if they hadn’t used it in <some time shorter than an hour like you suggested>. Remember: This isn’t for message passing it’s for end user session tracking. It’s an entirely different use case than your typical JWT stuff where one service is talking with another.

            In this case Lemmy can definitely do better:

            • Give end users the ability to invalidate all logged in sessions without forcing a password reset.
            • Make the cookie expiration time configurable.

            When using JWT inside of a cookie (which was not what JWT was meant for if we’re being honest) there’s really no point to using the exp claim since the cookie itself has its own expiration time. So I agree with the Lemmy dev’s decision here; it’d just be pointless redundant data being sent with every single request.

            Now let me rant about a JWT pet peeve of mine: It should not require Base64 encoding! OMFG talk about pointless wastes of resources! There’s only one reason why JWT was defined to require Base64 encoding: So it could be passed through the Authorization header in an HTTP request (because JSON allows characters that HTTP headers do not). Yet JWT’s use case goes far beyond being used in HTTP headers. For example, if you’re passing JWTs over a WebSocket why the fuck would you bother with Base64 encoding? It’s just a pointless extra step (and adds unnecessary bytes)! Anyway…

  • vtez44
    link
    fedilink
    22 years ago

    I think that for Lemmy and Linux the problem is actually in the people using it. Without people using it, they won’t be many posts/good software support. Without the posts/support there won’t be many users. It’s not some UI being different, or anything else. It’s the main issue. When you see lemmy.world frontpage (All, not Local), there are 15 threads about Reddit and Lemmy, 2 about Twitter limits and the rest is about tech. Meanwhile, on r/popular you have variety of communities, still mostly memes and videos but there are also other posts.

    It’s more about reddit that reddit is. You can’t make it long-term with this type of content. On other instances it’s more bearable, but it’s still not enough to keep people here.

    • lozunn
      link
      fedilink
      3
      edit-2
      2 years ago

      Clearly you have never used Arch Linux then - Arch Wiki is truly marvelous.

      Likely the problem is more with people not willing to learn anything new, unless forced to do so, because that will break their routines and many are aversive of that.

  • masterspace
    link
    fedilink
    -22 years ago

    People like good software that behaves intuitively, news at 11.

    • metaStatic
      link
      fedilink
      32 years ago

      Bad design that is so common you think it’s intuitive is still bad design

    • MxM111
      link
      fedilink
      02 years ago

      Right after our astronomer predictions if the sol star will rise tomorrow.

    • @[email protected]
      link
      fedilink
      72 years ago

      I have seen wefwef cited a bit now, what is it? Forgive my ignorance, but I’m new to Lemmy and I’m still learning. It is not an app, is it a website? I have tried to connect to wefwef.net but with no success, so I’m a bit confused.

    • @[email protected]
      link
      fedilink
      42 years ago

      My only issues is with when returning to all posts it freezes sometimes. But that can be due to I’m on iPhone and this is PWA

      • Altair
        link
        fedilink
        32 years ago

        Memmy is great too, and also on both Android and iOS

        You do have to build it yourself for Android right now though, hope it’ll be on the playstore soon.

      • LeTak
        link
        fedilink
        22 years ago

        Same on my iPhone. Hope they fix that in the next couple of weeks.

    • @[email protected]
      link
      fedilink
      82 years ago

      Maybe im used to Boost on reddit but damn, does it feel weird to vote/reply using 3 dots on the right lol.

      • I'm Hiding 🇦🇺
        link
        fedilink
        192 years ago

        You’re upvoting wrong, my friend.

        Try sliding the comment / post from left to right. Slide further to downvote.

      • @[email protected]
        link
        fedilink
        22 years ago

        Yes, exactly! That’s my main grip with wefwef, same as not being able to swipe right to exit a thread and go back to the feed.

        But most of the current apps lack some sort of behaviour customizations we’re used to, so I’m keeping two or three of them checked in case of updates.

        • @[email protected]
          link
          fedilink
          32 years ago

          Thank goodness I’m not the only one with this problem! I’ve gotten into the habit of sliding right from the lines in between posts, but imo this should be taken care of(especially to imitate the quality greatness that was the Apollo app).

        • @[email protected]
          link
          fedilink
          22 years ago

          Im pretty sure all these apps got created just this month so they would obviously not be feature complete yet, when i joined the only apps were jerboa and mlem

  • manitcor
    link
    fedilink
    English
    162 years ago

    same as it ever was, if they are so hung up on thier particular flow then they should likely just go back and check in later, the software will evolve.

    freedom is work…shocker.

    • @[email protected]
      link
      fedilink
      English
      2
      edit-2
      2 years ago

      Exactly, the world will never have a shortage of people who want all the privileges but none of the responsibilities.

  • @[email protected]
    cake
    link
    fedilink
    802 years ago

    This is why I have 4 different apps to surf Lemmy. When one app is acting up I just switch to another. For example I was just barely scrolling in Jerboa but getting a bunch of network errors so I switched to Connect which is where I’m posting this comment. I’m totally down with being patient with Lemmy for the time being. Anything to get away from R*****

      • @[email protected]
        link
        fedilink
        32 years ago

        I’m currently rotating between liftoff and summit. Slide is what I can’t wait for. I was an avid slide for reddit user for years.

      • I keep switching between Liftoff and Connect because they both have some issues that are resolved in the other.

        Connect seems to work better with showing all federated content than Liftoff, but Liftoff allows multiple instances to be logged in at once. Connect has notifications, and Liftoff does not. Liftoff has more user-centered features like actual profile pages that show a background image, bio, and avatar; connect does not.

        Neither one have any tools for moderation, though. I am now a mod for Humor (BTW, come post! Let’s make it better than /r/funny ever was!) and I’ve only been able to do actual mod things on the website itself, which is tedious to do on mobile.

      • @[email protected]
        link
        fedilink
        12 years ago

        Unfortunately they marked that as 18+ in Google Play store so the download button is disabled, at least in my ‘normal’ UK Google account.

      • @[email protected]
        link
        fedilink
        02 years ago

        I still can’t figure out why I can upvote posts in Memmy but not in Liftoff. I’m Liftoff it keeps responding that I need to be logged into the server but Memmy just lets me upvote. It’s definitely something I am doing wrong but showcases the immense value of app choice.

        • @[email protected]
          link
          fedilink
          12 years ago

          Have you checked that you’re browsing from your instance? Liftoff has different feeds for different instances and if you go to a post through an instance you don’t have an account on, you won’t be able to vote.

          Just go to the homepage and select the feed from the drop-down at the top on an instance you have an account in. I used to face the same problem until I realised what’s going wrong.

        • @[email protected]
          link
          fedilink
          22 years ago

          Have you checked that you’re browsing from your instance? Liftoff has different feeds for different instances and if you go to a post through an instance you don’t have an account on, you won’t be able to vote.

          Just go to the homepage and select the feed from the drop-down at the top on an instance you have an account in. I used to face the same problem until I realised what’s going wrong.

      • @[email protected]
        link
        fedilink
        42 years ago

        I still can’t figure out why I can upvote posts in Memmy but not in Liftoff. I’m Liftoff it keeps responding that I need to be logged into the server but Memmy just lets me upvote. It’s definitely something I am doing wrong but showcases the immense value of app choice.

        • ElTacoEsMiPastor
          link
          fedilink
          12 years ago

          I made a post on the Liftoff community precisely because it renders it unusable if I cannot interact with (almost) anything that’s shown to me

        • Riskable
          link
          fedilink
          English
          32 years ago

          Probably due to the version of Lemmy on the server. I think it’s because Memmy works with 0.17 but Liftoff doesn’t (fully).

          The Lemmy devs made some fundamental changes in how just about everything works in 0.18. Since a lot of apps started development right around 0.18 came out they might not support “the new way” just yet.

          It’s another one of those things where you just have to “give it time”. The Lemmy server operators need to upgrade (many were holding off because of missing CAPTCHA support in 0.18) and the app developers still have a lot of kinks to work out. Liftoff has only been out for what? A week now? LOL

      • Syboxez
        link
        fedilink
        72 years ago

        I’m personally waiting for Slide for Lemmy to be released

      • dasprii
        link
        fedilink
        82 years ago

        Liftoff is what I’m using and probably what I’ll stick with until Boost or Sync for Lemmy is released. Hell, I might stick with it even after that. Development is progressing quickly and it’s the smoothest out of any of the apps I’ve tried.

    • @[email protected]
      link
      fedilink
      12 years ago

      I also currently have accounts on two different instances (one being kbin and one a lemmy instance) to better be able to switch to whatever features I most want (right now, Lemmy gets pretty much all the apps and has collapsible comments, so I’m leaning towards it) and also to switch between during downtime. The small size of individual instances means downtime is inevitible.

      (Though I sure hope we get a better way to do this in the future – even just syncing your subscriptions is currently a pain.)

    • Memento Mori
      link
      fedilink
      62 years ago

      I’m doing the same thing. I have no allegiance like I did with RiF. If one isn’t working, I’ll just move. Give them some time to work out the kinks.

    • ToNIX
      link
      fedilink
      12 years ago

      Try wefwef.app (go to this website and install it as an app/add it to your homescreen), it’s simply amazing.

      As for network errors, try switching to an instance close to your house with a low ping, it’ll make a big difference. Go to https://fediverse.observer/map and select Lemmy instances.

    • @[email protected]
      link
      fedilink
      3
      edit-2
      2 years ago

      Literally here posting from Connect because of constant issues with Jerboa lately.

      I have four apps installed just for this. Reminds me of when I first played around with a bunch of Reddit apps before I honed in on my favorite.

    • Memento Mori
      link
      fedilink
      102 years ago

      I’m doing the same thing. I have no allegiance like I did with RiF. If one isn’t working, I’ll just move. Give them some time to work out the kinks.

  • zzap
    link
    fedilink
    122 years ago

    Lemmy is absolutely easy to use. once you created an account. But a lot of people have problems with that.

      • zzap
        link
        fedilink
        English
        12 years ago

        saw many posts on reddit were people registered and could not log in, did not get confirmation mail, had too long names/PW issues… I could not register first, worked at the second or third attempt.

  • @[email protected]
    link
    fedilink
    32 years ago

    Meanwhile I’ve been messing around with Linux the past week and it got me installing decentralized apps on my android lol.

  • @[email protected]
    link
    fedilink
    302 years ago

    I’ve been here since the blackout and everything is great, apart from a few times when the site seemed a bit slow. I don’t even miss reddit anymore.

  • @[email protected]
    link
    fedilink
    512 years ago

    I am a reddit refugee and just down for fun ride on the bleeding edge. I am finding a lot of the same communities here and I am happy that Lemmy is here to fill the void.

  • Enttropy
    link
    fedilink
    52 years ago

    I don’t think that’s going to be the case.

    The fediverse instances are just lacking a few things here and there to be Twitter/Reddit clones.

    Most open source software sans few exceptions like Blender are like 15 years behind the curve in terms of features, workflows, and design.

    • sab
      link
      fedilink
      82 years ago

      Open source software is quite far from behind the curve.

      There is almost no-one in my field in academia not using R and Latex. Combining it with Linux makes my life much easier.

      Wikipedia is open source. Firefox. Chromium. WebKit. Android. Immagine your digital life without any of those.

      Whenever I’m forced to use proprietary software I feel like I’m being held back. I know it’s mostly just a question of what you’re used to, but saying that open source is behind the curve is just not accurate.

      • @[email protected]
        link
        fedilink
        3
        edit-2
        2 years ago

        Yo be fair, only the core of Android is open-source (AOSP), but there is a lot of proprietary shit build on it with the versions most manufacturers carry out most of the people could not live without (Google Play Services, Network Location Provider, Firebase etc.).

  • @[email protected]
    link
    fedilink
    162 years ago

    Yes and no, most of the free/open software has the problem of being very not-user-friendly (even if it’s only for the first time set-up) and the documentation (even the youtube tutorials) are written in a “you should know all this already” way, which is cool if you do, but if this is the first time you are doing this or if it’s the only time you are gonna use that knowledge then it’s absurd to expected someone to learn it only for one time.

    It is normal for someone to complain that the thing that steals all their data or needs a subscription is better because it’s easier to use (install, pay/register and use, done), compared with how different and difficult usually it’s to install and get to work a FOSS option (download this, install these, run command lines, configure all these, now get all these plugins, etc).

    If we want bigger numbers, then it should be at least as easy as the thing we want them to stop using, otherwise we are barking at the wrong tree.

    • Riskable
      link
      fedilink
      English
      3
      edit-2
      2 years ago

      I think you’re vastly overgeneralizing the world of software here. Before I make my point here’s two facts:

      • There’s vastly more FOSS software than there is commercial software.
      • Nearly all commercial software is made for a specific use case or customer.

      Just about everyone reading this comment is using FOSS software to do so (Firefox, Chrome/Chromium, or even Edge which is really just customized Chromium). Lemmy itself is FOSS and the majority of websites you visit every day are using FOSS on the back end. Do you feel all this software is “not-user-friendly”?

      Let me take a step back from that though and assume you’re not really talking about software in general but are actually referring to software with a GUI that runs on a desktop computer. Someone elsewhere in this thread compared to GIMP to Photoshop so let’s look at that…

      Photoshop is not an easy, just-use-it application. To get started most people recommend watching a YouTube tutorial and, having watched a few they definitely start from a place where, “you should know all this already”. For example, if you don’t understand the difference between a JPEG and a PNG file you’re going to have a bad time.

      GIMP is also not an easy, just-use-it application. To get started most people recommend watching a YouTube tutorial and, having watched a few they definitely start from a similar, “you should know all this already” place. Except there’s one great big difference: You don’t have to pay anything to obtain or use the GIMP. That’s the biggest difference!

      They’re both image editing tools but they were designed with different use cases in mind. Photoshop was made for professional photographers and digital artists working for business. This is why Adobe put great efforts into making sure that certain “workflows” go very smoothly… Because they’re the most common in business.

      If you try to use Photoshop with a different workflow than what it was designed for you’re going to have a bad time! For example, let’s say you wanted to perform a series of manipulations and add some text to tens of thousands of photos; a great big directory of .jpeg files. You might search up how to do this in Photoshop (using macros) and you’ll quickly come to realize that it was definitely not made for this task!

      However, if you searched for how to do the same thing in GIMP well, it actually was made to support that! It’s another one of those things where you’ll have to learn a new skill but it’s doable. It’s a use case the GIMP developers had in mind when they made it.

      From the perspective of batch editing Photoshop is basically useless. Anyone who tries would find it, “very not-user-friendly” because it was made for a specific purpose and that’s not it.

      The GIMP was made as a much more general-purpose graphics editing tool. So much so that it can be completely re-skinned to make it look like Photoshop or even operated entirely from the command line. You can even automate very sophisticated workflows with GIMP using Python!

      This same sort of argument can be made for nearly every open source tool that is commonly bitched about, LOL! They generalize that FOSS isn’t user friendly, completely forgetting or ignoring 7zip, Firefox, VLC, LibreOffice, Notepad++, OBS, Keepass, Greenshot, Ditto, Audacity, etc or any of the many thousands of very popular/common FOSS packages that get used on people’s desktops every day.

    • @[email protected]
      link
      fedilink
      8
      edit-2
      2 years ago

      You are missing a point. Closed sourced solutions pay developers a lot… And they focus on the ux. Think about the most famous example, all apple OSes are just like a customized collection of open source stuff, similar to a linux distro, with a user friendly, closed sourced GUI.

      Open source solutions that are not user friendly, is just because no one is paid, or there is not enough budget to pay for a high level UX design and implementation

      • @[email protected]
        link
        fedilink
        English
        4
        edit-2
        2 years ago

        I’m not missing anything, OP complained about people not easily ditching closed/centralized software and I gave an answer.
        I know devs are doing it as a hobby or with donations, that’s on them and they know who their target will be and how much effort is it worth to do it user-friendly or not or how big of a scope they aim for.

        We’re talking about the normal user and why they decide to stick to centralized or move to FOSS and why it’s so hard for them to do it.

      • @[email protected]
        link
        fedilink
        52 years ago

        That’s not contrary to what he said at all, it’s just another layer of why things are the way they are.

        If you want the average joes, you need good ux. If you don’t have it, you won’t get/keep them.

        Maybe there are good reasons why you don’t have decent ux. Maybe other people only do because they spend money. Maybe you can find a way around that, maybe you can’t.

        Doesn’t matter. Good user experience means you keep users, bad user experience means you don’t.

        • @[email protected]
          link
          fedilink
          3
          edit-2
          2 years ago

          The main reason is that ux design is difficult, complex but not always rewarding. Few people do it “as hobby”. Companies make money out of UX design. As in the example of Apple, they could find a lot of open source good quality software, but they needed the ui to seel it in macs, iPhones and ipads.

          Another example is steam deck. Its OS is just arch linux, with an incredible UI (built by valve), and it is currently more popular than windows handhelds.

          Many open source solutions are of greater quality than corresponding proprietary stuff (anyone who has ever worked in a corporate environment also knows why, corporates are elephants trying to create a swiss watch). What open source solutions are missing are companies paying to create user experience.

      • @[email protected]
        link
        fedilink
        English
        82 years ago

        UX in open source software is mostly fine for those who built it for them selves or people in the same environment.

        As soon as stuff gets built for others with other requirements empathy declines, and I don’t mean this disrespectful. Good professional UX sources are needed, indeed to fill this gap. But will they be able to convince the open source devs who often were Initiator of the projects?

  • Obsydian_Falcon
    link
    fedilink
    22 years ago

    It’s not only the break in routine but also the direction of the site. All your examples are productivity products while the fediverse is, in essence, social media. The thing with social media is that branding REALLY matters. There have been attempts to copy Instagram or Snapchat or Reddit but they have all failed to gain massive communities due to not being part of a known brand.

    “I posted my pics on the gram”

    “What’s your snap?” etc…

    Kbin, Lemmy, these are just instances of something called the Fediverse, try getting a layperson to understand that.

    Social media generally has a rule known as the 90:9:1 rule. 90% of people are lurkers just doomscrolling or passing time, 9% are interacting with content and leaving comments and/or posting, and the final 1% is making the engaging content that sites like Reddit and YouTube are known for.

    Right now, FOSS software is often populated by only 10% of that ratio, the power-users and people that interact every so often. Those lurkers, the 90%, migrating them will be hard if not impossible. Remember, they lurk, they will stay where the most engaging content is, and that is still currently Reddit.

  • ShustOne
    link
    fedilink
    45
    edit-2
    2 years ago

    I was with you until GIMP. If one more person lists it as an alternative to Photoshop I’m gonna lose it. It’s UI is terrible, you have to watch a guide just to get started. Can’t read PSDs in any viable way. I’m sure people use it just fine but to call it an alternative to Photoshop is just plain lying.

    Edit: the other thing I dislike about it being suggested as a replacement is that it assumes you work alone. Anyone on a team with people in PS will not be able to even attempt to use GIMP to get work done.

    • @[email protected]
      link
      fedilink
      42 years ago

      The problem with GIMP is not its features, it’s how they were implemented. The software isn’t intuitive like Photoshop.

    • LoudWaterHombre
      link
      fedilink
      162 years ago

      You also need a guide to get going in PS, its just a different App but fulfills the same tasks

          • ShustOne
            link
            fedilink
            12 years ago

            Something I use a ton: smart objects, smart masks, smart filters. Non destructive actions where I can still edit the original and have all previous items applied in a separate file or view in real time.

              • ShustOne
                link
                fedilink
                12 years ago

                Well these tools are in Photoshop and not GIMP. You can’t just hand wave that away as not GIMPs fault.

                • Hemingways_Shotgun
                  link
                  fedilink
                  12 years ago

                  Photoshop doesn’t have a native G’MIC plugin feature. You can’t wave that away as not Adobes fault!

                  That’s how stupid you sound.

                  Different products have different features and different ways to do things. It’s not Gimp’s sole purpose to just clone every feature from Photoshop. It’s not a Photoshop clone, it’s a piece of software in its own right.

                  Gimp makes great use of the amazing G’Mic filter tool. Adobe doesn’t. That doesn’t make Gimp better than Photoshop.

                  Different software makes different choices and people choose whichever they want to use and shut the hell up about it.

                • LoudWaterHombre
                  link
                  fedilink
                  22 years ago

                  Well its still not a image manipulation feature missing. It’s a workflow feature. You could also just copy a layer. But in the end, Photoshop has no image manipulation feature that is really missing in GIMP, you can export the same result picture.

            • Hemingways_Shotgun
              link
              fedilink
              12 years ago

              Those aren’t tasks. those are tools.

              A task would be if to give us an example of an “end result” that you can accomplish in PS that you can’t in GIMP.

              Not what tools you use to make it. But the content that comes out the other end.

              I’m not going to argue that PS has some extra tools that make stuff easier to do. It has the resources to develop them, after all.

              But there is no drawing, animation, photo edit, composition or other end product that you can ONLY do with Photoshop. The only people who say that are people who have never used any alternative.

              • ShustOne
                link
                fedilink
                12 years ago

                So my point is still valid that GIMP is not an alternative to Photoshop. It would be like saying this screwdriver is an alternative to this toolset. People coming from Photoshop aren’t looking at the singular goal of image manipulation.

    • @[email protected]
      link
      fedilink
      92 years ago

      I 100% agree, I actually hate GIMP almost as much as I hate Photoshop.

      Paint.net is a significantly better software for light to medium image manipulation, and Affinity is what I’d say is an actual replacement for Photoshop. Affinity isn’t by any means FOSS but you can’t win them all.

    • paorzz
      link
      fedilink
      122 years ago

      The better alternative to Photoshop/Illustrator/InDesign is Affinity. And yeah, while it’s not actually free, you only have to pay once and everything is yours.

      Or for quick free edits, Photopea.

    • Sparky678348
      link
      fedilink
      202 years ago

      You wretched Photoshop enthusiast. How dare you defile the sacred realm of pixelated beauty with your blasphemous tools of the Adobe empire! You, who bathe in the deceptive allure of layers and filters, know nothing of the humble struggle of a true purist.

      While you revel in your so-called “advanced” software, I, a virtuous wielder of MS Paint, have embarked on an arduous journey. Armed only with a pixelated brush and limited color palette, I navigate the treacherous seas of artistry. Each stroke, deliberate and purposeful, carries the weight of my soul, for I am a master of simplicity.

      Do you not understand the profound joy that arises from conquering the challenge of transforming mere pixels into a masterpiece? With each painstaking click, I breathe life into my creations, shaping reality with the precision of a pixel whisperer. Your Photoshop may grant you an abundance of tools, but it lacks the purity and authenticity that flows through the veins of my MS Paint.

      Gimp, you say? Ah, a mere imitation of the great MS Paint, seeking validation in the realm of Photoshop. It too shall crumble beneath the weight of its pretentious ambitions. For true artistry lies not in the abundance of options, but in the mastery of limitations.

      So, my misguided foe, before you spew your haughty words, remember the legacy of MS Paint. It has endured the test of time, witnessed the rise and fall of software giants, and remained steadfast in its simplistic grandeur. While your Photoshop may dazzle the masses with its flashy tricks, it is MS Paint that stands as the guardian of true artistic purity.

  • Sparking
    link
    fedilink
    22 years ago

    Yeah, its human nature. Things get better and people come around eventually. Kde plasma is way more continuous from windows 10 then windows 11 is anyway.

        • @[email protected]OP
          link
          fedilink
          12 years ago

          Yes, the KDE twitter account even mocked Microsoft’s for some of their latest ‘innovations’.

          • Sparking
            link
            fedilink
            12 years ago

            Well, ultimately, I’m glad that something open source is wagging the dogs tail, I assumed it was the other way around.

            • @[email protected]OP
              link
              fedilink
              02 years ago

              Yes and no, it’s mean that the creativity and innovation of people at KDE is taken without credit. But on the other hand it shows that their features are really great…

              BTW they not only copied ideas but also KDE Plasma’s slogan “Simple by default, powerful when needed.”

              • Sparking
                link
                fedilink
                22 years ago

                Yeah, I was reading about that. It’s a shame about the credit, but hey, what do we expect.