There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

lemmy.ml

nautilus , to programmerhumor in Very clever...

nano crew where you at

penquin ,

I never get the need to use vim and nano exists.

bioemerl ,

Vim really is an IDE, not a text editor. It's usable as an editor but overkill.

Nano serves a difference purpose. It's like telling someone on a bike that a mustang is better.

kogasa ,
@kogasa@programming.dev avatar

Vim is absolutely not an IDE. It has no integrations with any language. It’s just a powerful text editor. You can add language plugins and configure it to be an IDE.

bioemerl ,

It literally has a built in scripting language.

kogasa ,
@kogasa@programming.dev avatar

So it’s an IDE for vimscript…? No.

bioemerl ,

You're not a normal text editor if you have a built in scripting language.

kogasa ,
@kogasa@programming.dev avatar

I’m not a text editor. But anyway, would you call a shell script that invokes python.exe $1 a Python IDE? Why would you? Vim isn’t designed to facilitate the use of vimscript, vimscript is just an extensibility feature of Vim.

bioemerl ,

Vim isn’t designed to facilitate the use of vimscript, vimscript is just an extensibility feature of Vim.

Vim is designed to edit code, by the people who were doing it back in the 70s and all of its features are there to enable better, faster, and more efficient editing.

It has scripts for the sake of those scripts enabling integrated developer features. Because they're part of vim they're in the environment and the program is used predominantly for development.

kogasa , (edited )
@kogasa@programming.dev avatar

Vim is designed to edit code

To edit text files. It doesn’t matter if it’s code, configuration files, or plaintext. There are no interpreters, no compilers, no debuggers, nothing designed to support any particular framework or language or workflow. All of that is possible to add through the extensibility features.

Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient.

Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor ‘Vi’, with a more complete feature set.

Vim is a highly configurable text editor built to enable efficient text editing.

vim.org

Vim is a text editor which includes almost all the commands from the Unix program “Vi” and a lot of new ones. It is very useful for editing programs and other plain text.

vimhelp.org/intro.txt.html#intro.txt

It has scripts for the sake of those scripts enabling integrated developer features.

Those features aren’t enabled nor integrated. They’re added to Vim at its extensibility points. Baseline vim doesn’t have them.

bioemerl ,

Those features aren’t enabled nor integrated. They’re added to Vim at its extensibility points.

And that has to be just about one of the pettiest to distinctions known to man.

It's still built to write code. Yes text is code, but vim is not a text editor in general,. It's made for programmers, nobody else is crazy enough to learn such obtuse syntax or want to have a developer with a scripting language built into it.

The features are in the editor. They are integrated with the editor. Yes, it's through plugins, but they're still part of the editor instead of part of some different program.

The word integrated literally just means you don't go into some other program to run your build.

It's an integrated environment for development.

It's an IDE!

It has debuggers.

It has syntax highlighting

It has compiling.

Even if you have to install them as plugins, it's designed to be doing all of those things.

kogasa ,
@kogasa@programming.dev avatar

And that has to be just about one of the pettiest to distinctions known to man.

If it’s a petty distinction, why not acknowledge what I’m saying and move on? What is the point of this conversation for you?

It’s still built to write code. Yes text is code, but vim is not a text editor in general,

It’s built to edit text, not just code. Yes, text is code, but Vim is a text editor in general.

The features are in the editor.

Once you put them there, yeah.

They are integrated with the editor.

Once you put them there, yeah.

Yes, it’s through plugins,

.

but they’re still part of the editor

insomniac ,
@insomniac@sh.itjust.works avatar

It’s not petty, you don’t know what an IDE is.

nogrub ,

i don’t care if vim is an text editor or ide but i just wanted to ask if they even had debugger back when vim was created ?

hperrin ,

That’s what most IDEs are. VS Code doesn’t have any native integrations. Everything is provided by plugins. The default plugins that ship with VS Code can be disabled, and you’ll have just a powerful text editor.

(To do this, go to Extensions tab, click the filter icon, select “Built-in”, and go down the list to disable all of them. Or just build a version with no built-in plugins.)

kogasa ,
@kogasa@programming.dev avatar

Sure, and VSCode without any plugins is a text editor, not an IDE.

bioemerl ,

In that case every IDE is "just a text editor" because basically every IDE is built around modularity in this same way. This is just nitpicking over what is preinstalled.

kogasa ,
@kogasa@programming.dev avatar

IDEs are designed to support a software development workload. A text editor is designed to edit text files.

fushuan ,

Eclipse, visual studio, pycharm, idea… Those are full blown IDEs. They come with all the extras. All the text editors that can become IDEs have extensions or plugins that enable what these other actual IDE do natively.

Nowadays using vscode to debug a running program is common, but that was something only restricted to full blown IDEs some years ago, I’d say that vscode is lightweight IDE that can be expanded, but vim is a text editor first and foremost. You can’t really debug code in vim AFAIK, the most you get is syntax highlighting, linting, automatic whitespace removal and auto formatting? Not sure about the last one.

Lime66 ,

You cannot remove java from idea. Therefore it is not just a text editor because support for the language isn’t added through an extension

DrQuint ,

Ah, so Code is the same as Vim if… I go out of my way to either disable things on one or install things on the other.

Or… Or… Code is an IDE (that you can strip down) and Vim is a text editor (that you can strip up).

We don’t stop calling a computer one just because it can still boot without most of its modules. The default presentation matters.

Bo7a ,

No offense intended here - But why is this being upvoted?

vim absolutely is an IDE if that is how you want to use it. Syntax highlighting, linter, language specific autocomplete, integrated sed/regex. And much, much more.

killeronthecorner ,
@killeronthecorner@lemmy.world avatar

The things you’re describing are still just text editor features. An IDE generally has specific functionality for building, testing, packaging, debugging etc. for one or more programming languages/environments.

(Which vim can do if configured, I don’t really have an opinion about that tbh)

kogasa ,
@kogasa@programming.dev avatar

Syntax highlighting, linting, and language specific autocomplete are features supported by plugins and scripts. Plain, simple vim is a powerful extensible text editor. The extensibility makes it easy to turn into an IDE.

Euphoma ,

There’s syntax highlighting by default in vim though.

kogasa ,
@kogasa@programming.dev avatar

Yeah, there is a generic syntax highlighting scheme. I had forgotten because it’s not very good for some languages, I’d replaced it with a LSP-based implementation years ago.

reverendsteveii ,

my car is absolutely a boat if you put a boat motor on the back of it and waterproof it

bioemerl ,

"You see here my car has positions for all the parts of a boat so it's easily made into a boat and it's already waterproof but it's just a normal car"

naught ,

I don’t know that’s a fair anology. Vim does what a IDE can do without almost any setup with LazyVim and Lunar Vim and a bunch other prebaked setups. Instead of writing your vscode config in JSON or using a GUI, you can use lua. It’s more like turning car into a track car or something where you’re already a mechanic

fushuan ,

You can’t run and debug things in vim, can you?

nautilus ,

ladies please, you’re all beautiful

xmunk ,

Yea, vim really isn’t anything near how useful emacs is.

Bo7a ,
_dev_null ,
@_dev_null@lemmy.zxcvn.xyz avatar

Emacs really is powerful, all it needs now is a decent text editor.

spauldo ,

It has one. It’s called evil-mode.

kogasa ,
@kogasa@programming.dev avatar

Not at all what I meant. It’s just, out of the box, a powerful text editor that can be configured and built on if desired. If you want it to be more than a text editor, you can easily make it so.

nickwitha_k ,

Eh. Both are good choices. I prefer vim for my workflows - I like the terminal.

ETA: Will have to give Emacs another go though at some point.

nautilus ,

emacs is solely for watching the text version of Star Wars and you know it

themue ,
@themue@mastodon.social avatar

@kogasa Hehe, shit, so long done something wrong as I use as an IDE. Okay, some own helpers, some plugins, the direct integration for via LSP and since some time also ChatGPT and Copilot. But hey, it's no IDE. 🤪

kogasa ,
@kogasa@programming.dev avatar

Like I said, Vim can be made into an IDE by adding and configuring plugins. Basic barebones vim is designed to be a powerful, extensible text editor, not an IDE.

AffineConnection ,

It’s designed to be an extended vi clone above anything else.

TheGreenGolem ,

So like Word vs Notepad?

bioemerl ,

Not really, or that doesn't feel right to my. Word and notepad basically still do the same thing except for that word lets you add style.

Like a manual vs an automatic car, maybe?

frezik ,

Word is a WYSIWYG editor. We don’t talk about it much these days because it’s just how things are done, but it took a long time for the industry to come up with a way to display text on screen with rich formatting and have it come out the same way in print. There was a lot of buzz around it in the late 80s and early 90s.

Word solves a completely different problem than an IDE. Notepad is a raw, minimal tool that could be built on for either WYSIWYG or an IDE.

520 ,

More like Visual Studio Vs Notepad

Gentoo1337 ,
@Gentoo1337@sh.itjust.works avatar

“Vim is an IDE”

www.vim.org -> Vim is a highly configurable text editor

Press X to doubt

techt ,

In case of a house fire, I’d only escape with two things: my cat and my .vimrc

Bene7rddso ,

Why do you nor have a backup of that .vimrc?

russjr08 ,
@russjr08@outpost.zeuslink.net avatar

I guess it depends on if you’re the type of person who sees VSCode as an IDE or just a text editor.

Vim is effectively the same way.

Slotos ,

Nano is for those that occasionally edit text files from a terminal.

Vim is for those who make a living out of it.

captain_aggravated ,
@captain_aggravated@sh.itjust.works avatar

There’s a guy on Youtube who does programming language tutorials/demonstrations. Like he starts out with C++ and in one hour you’re at object inheritance, crash courses I guess is the term for them.

He did one video that was as much a Vim tutorial as a tutorial for this language. “Press 3k, then enter, then i, and type “std::out(“whatever C syntax is”)” and then hit escape and…”

For teaching something like a little bit of Python or a little bit of Bash or whatever, I’d rather use Nano, because you can learn how to use it in seconds. Vim is an amazing tool but lord don’t try to cram a Vim tutorial into another already technical tutorial.

timbuck2themoon ,

If you edit files a lot vim is worth its weight in gold. Nano makes me want to kill myself as everything takes so much longer.

Nano is perfectly sufficient for a very rare edit.

bioemerl ,

Vim absolutely chews through anything you throw at it. Lots of times we need data formated or lots of SQL queries and I'm the go to guy because I understand vim macros.

Especially if you have any form of RSI.

I wonder if it would be possible to make a user accessable way to expose similar power to the common user.

Jordan_U ,

For the pedants, I hope y’all can at least agree that lunarvim is an IDE:

www.lunarvim.org

(Note, a comment saying it’s a “bad IDE” doesn’t make it not an IDE)

folkrav ,

I never get the need to use a mechanical pencil and graphite pencils exists

nautilus ,

I’ll level with you: I’m kind of a moron.

If my command line text editor has its own bespoke integrated command line, then science has gone too far and we need to stop lmao

penquin ,

😂

nickwitha_k , (edited )

It’s cool. We’ll just write a lua plugin to extend science so that we can go too far enough.

penquin ,

I’m struggling to see the connection here. I guess I don’t need to fiddle with the mechanical pencil, it breaks very quickly? I don’t want to go through changing those little sticks? Graphite pencil only needs to be sharpened? So, you’re supporting using Nano? I’m a little confused

folkrav ,

Yet many people prefer mechanical pencils. Are you against choice? What is there to get or “need”?

penquin ,

Nah, this is not relative at all. Still, I know my kid hates mechanical pencils. I hate them, too.

folkrav ,

“Relative”? 🤨

penquin ,

Relevant. RELEVANT!!! Damn it. Ok you got me 😂 English is my second language (still not an excuse)

folkrav ,

Fair enough! I’m an English second language speaker too, I understand the struggle!

But to answer about relevance: to me, text editors are just tools. I don’t really care which one you use, as long as you do the job well. I use vim (or honestly, mostly vim bindings) everywhere I can as they’re just second nature to me at this point, and I go around text much quicker when thinking in text objects than the typical Ctrl+Alt+… and home/end/pg up/pg down shortcuts. I could just as well work with Notepad++, it’s just gonna slow me down.

So in that sense, it’s just like a pencil. Some have preferences as to which pencils they like to write with. I like fountain pens and mechanical pencils. You seem to prefer graphite pencils, and guess you probably prefer ball pens ;)

uzay ,

It just makes a lot of stuff way easier once you know how to use it. Switching out a word for another: two button-presses, duplicating a line: three presses, deleting 500 consecutive lines: five presses

xilliah ,

What if I want to undo my life’s mistakes.

Illecors ,

Church of Emacs is always there ;)

nickwitha_k , (edited )

How do we work this? Do we alternate between trying to ruin people’s lives with elisp and chasing the perfect .vimrc or lua - config? Maybe grab some bytes from /dev/urandom and send them to the editor whose first letter comes up first? What about holidays?

Illecors ,

I’m gonna go with yes 😁

penquin ,

But you can do all that with nano and it is straight forward and you don’t need to memorize any key combinations. I mean, I get it and no judgement here. I just use nano because it’s easy and quick.

prismaTK ,

I think if you just need to edit a config file once in a while, nano is great, but if you’re writing substantial amounts of code, you’ll find vim a lot more capable.

As long as you’re not a filthy emacs user, we can get along

penquin ,

I write my code in an actual IDE. And I use nano for only, like you said, config files and those little things. And I have never used emacs and I don’t even know how it looks like. I’m dead serious, I don’t even know what emacs is or what it does. lmao

nickwitha_k ,

Emacs is basically a lisp interpreter packaged with a suite of “example” utilities, like a text editor. It’s one of the two historical editors used as terminal IDEs, along with vim. Emacs tends to take a more batteries, kitchen sink, web browser, games, IRC client, etc-included approach. It can seriously be closer to an OS in functionality.

r1veRRR ,

You can also copy paste by manually copying text by hand, would call that a valid alternative to Ctrl-C/V?

r1veRRR ,

I don’t understand the need for Ctrl-C/V, when manually copying the text exists. I know it’s snarky, but that’s the level of difference we’re talking about here. Or imagine, to delete a line, someone Right Arrows 50 times, then backspaces 50 times, instead of using the shortcut.

marduk ,

I like nano because it has worked any time I needed it. I don’t dislike nano because I’m not good enough at Linux to have ever run into its limitations

folkrav ,

It’s hard to hate nano, but IMHO there also isn’t anything to like in particular either. It’s basically a TUI notepad. It’s there, it lets people edit files… and that’s pretty much all there is to it.

killeronthecorner ,
@killeronthecorner@lemmy.world avatar

You can use nano without having to read anything about nano. That might be the only thing that is better about it than vim, but it’s a damn important thing.

nautilus ,

I have zero patience when trying to make small adjustments to files, which is what my command line text editor should be for. Nano just has everything at the bottom in case you forget (I do, frequently) so the workflow is ridiculously streamlined for me

killeronthecorner ,
@killeronthecorner@lemmy.world avatar

Absolutely. It also has whole-line cut/uncut which is a godsend when working with config files

indepndnt ,

Ironically, that’s like the one thing I’ve learned to do in Vim.

fushuan ,

Because it’s easy, dd to delete a line and p to paste it somewhere else.

DaPorkchop_ ,

Personally I’d be somewhat nervous using dd to edit parts of a text file, but you do you :)

fushuan ,

Well, if you dd+p you paste it back again, and then it’s in the clipboard so you can p it in other places. In any case you can u(ndo) it without issues.

bpm ,

yy to copy, dd to cut, p to paste. Need to move 5 lines at once? No problem, move to the first line and use d5d, and p to paste it. Vim gets a bad rap for being confusing, but it’s so fast to move text around once you get the hang of it.

hemko ,

nano is just… There when you need a text editor for something. Simple and purposeful

reverendsteveii ,

it’s basically a TUI notepad. It’s there, it does one job and that’s all there is to it

That’s what the people who like it like about it.

ILikeBoobies ,

That’s it’s job

What else is there for it to do?

Spider89 ,

Forget KISS, amirite.

Amends1782 ,

Yeah it literally follows the UNIX philosophy

folkrav ,

I mean, why compare it with vim at all then. Apples and oranges…

MonkderZweite ,

It has syntax highlighting and mouse support.

ensignrick ,
@ensignrick@startrek.website avatar

I personally like nano but it’s what I used first. So I learned the commands. Vim I still forget Everytime.

habanhero ,

Pico gang reporting in.

locuester ,

nano gang checking in.

However, I’ve been forced over time to remember “:wq” to get unstuck should vim randomly appear.

dukk ,

Alternatively, you can save a key and use :x(And :q! to quit without saving)

Yeah, that’s such a Vim user thing to say :P

PoolloverNathan ,

:up|cq to save a write cycle and signal an error to whatever opened Vim.

locuester ,

How do u learn this voodoo

420stalin69 ,

20 years of software engineering and you too will have a 10-20% chance of knowing how to exit vi.

locuester ,

I’ve done 35 years, but the first 25 years on the dark side M$.

XEAL ,

Here!

I hate terminal-based text editors

Nano seems quite user/idiot friendly

affiliate ,

i’ve only ever used nano in the early stages of a gentoo install, when it’s too early to install vim and import my dot files 😈

The_Walkening ,

100-com% of the time I’m using nano to edit something in the terminal, and it’s usually something really minor. I’m using GUIs for the majority of my computing anyway, so if I need some robust text editing, I’ve got a bunch of easier-to-learn, easier-to-use options available, and that’s totally ignoring things like awk, grep, sed, etc.

Ruscal ,

My god, what is this 100 image…

nullpotential ,
@nullpotential@lemmy.dbzer0.com avatar

hopefully switching to micro

Troz ,

I made that switch a few months ago just so I could cut, copy and paste without having to lookup how to do it. it’s been great.

h14h , to memes in It's so nice to see them all growing, but this is just the truth, sorry.

This kind of gatekeeping and elitism is bad for Lemmy and for FOSS.

It makes this community a less welcoming place and leaves new folks with a bad first impression. Much better to be welcoming and let people learn/see the benefits of FOSS at their own pace.

Poggervania ,
@Poggervania@kbin.social avatar

100% agree. Going “haha, aren’t I COOL for NOT using this one popular app or software!?” contributes absolutely nothing and actively makes the community uninviting. I’m all for FOSS, but if a closed-source app is better than the FOSS options, I ain’t gonna knock on anybody for using it.

Also why even use an app outside of accessibility reasons? Been using Kbin on a mobile browser and it’s been a pretty good experience.

DigitalPortkey ,

This is why I unsubscribed from the Android community. I love Android, I use nothing but Linux at home and really appreciate open source software.

But the FOSS…enthusiasm is starting to border on zealotry. It’s getting really unpleasant.

Kecessa ,

Try to tell the Linux users on here that you prefer to use Windows…

Resistentialism ,

I had to leave the Linux memes community because I swear nearly every post was shitting on Windows. Yes, I get it. Windows isn’t all that great. But, much like Ios, it just works for what I need. And I haven’t had any issues that weren’t ny fault with it.

If the game I play most, and the number one reason why i go on my pc, works on Windows, but won’t work on Linux. Which OS is better for me?

I thought all this software war crap era was over. That was shit I cared about when I was 14 or something. Just let it herself use what they want and explain the benefits of alternatives, only if they care.

sgtlighttree ,

I’m surprised they don’t shit on macOS too lol

LeFantome ,

I tell myself that I like MacOS as it was my favourite desktop for years. Honestly though, it is the worst of the three at this point.

rbits ,

I use Linux as my daily driver, yet I 100% believe Linux is overrated. It’s great if you’re willing to put in the work to get it working well, or maybe if you have someone else to do all your tech support for you, but it’s just not a good option for the majority of people.

I hate when people keep trying to push it on Windows users, especially when they go on about how “easy” it is. It’s not. And doing that will get people to try it out with high expectations and then get disappointed when they try it out and that’s not the case.

Rodeo ,

I honestly feel like people who say this stuff either haven’t tried Linux since 2008 or went straight to Arch.

I use Manjaro as my daily driver and I never need to fix the system. It really does just work, and these a bunch of disyros out there that do.

The only thing you might find terrible is trying to run windows programs on Linux, to which I say: dual boot! Even with all the progress Proton, Lutris etc. have made, it’s still way easier to just boot into windows on the occasion you want to play games or whatever.

rbits ,

I switched to Linux last year, and I used Linux Mint, which people say is the easiest, and then KDE Neon which I’m still using now, which is definitely way better than Linux Mint but it’s still not easy. I’m fine with it, and I personally prefer it to Windows, but I could never imagine my parents or my friends trying to use it without help.

dzonc ,

I’d given up on lemmy because every so I had tried was unfinished and unpolished. I tried sync and finally felt like the user experience wasn’t getting in the way of content.

I’d love to support foss, if a genuinely comparable experience existed.

I’m glad to say that sync has revived my interest in lemmy.

machinaeZER0 ,

You should check out Thunder, even if you gave it a try at some point - it’s super polished and it’s gotten even better week after week. In my opinion it has the best compact mode of all the lemmy clients, as long as you don’t mind swipe actions!

xenspidey ,

Not OP, but I’ve tried thunder. It’s OK. Sync is light years above all other clients I’ve tried. (same with reddit as well) swipe actions? Sync is the king of swipe actions.

thimantha ,

I was using Thunder last week until Sync’s open beta got approved and the User Experience and the interface of Thunder is nowhere near Sync. It’s a night and day difference, and a difference that would have made me use Lemmy less and less.

machinaeZER0 ,

Thunder is like a month old - it’s still growing and will continue to improve with the community’s help :) if you think anything could be improved, definitely shout it out on the GitHub page!

thimantha ,

I understand that it’s new, and it is definitely the best FOSS Lemmy app out of the dozens that I used. But it has a very long way to go to achieve the same level of User Experience that Sync has. It’s not even close and I don’t think anything bar a major UI/UX rehaul could fix that.

WidowsFavoriteSon ,

Dozens?? Do tell.

jerkface ,
@jerkface@lemmy.ca avatar

FOSS doesn’t need your support. You misunderstand the relationship. FOSS is looking out for you.

LeFantome ,

I see the upvotes but I cannot support this comment. FOSS could use a lot more support at every level, including users.

grrgyle ,

Username checks out. Wait I know this face from masto - I think I follow you!

Zalack ,
@Zalack@startrek.website avatar

IMO FOSS has really great offerings when it comes to libraries or other highly technical code.

But something about either the community or incentive structure results in sub-par UI/UX. Obviously not a rule, but definitely a trend I’ve noticed.

AProfessional ,

Lemmy is just new. The best desktops that exist are FOSS.

Meloku ,

Don’t forget the community’s reaction to comments like yours, why down vote him if he’s stating the obvious? FOSS projects often focus so much on technical features because everyone wants to flex their code-fu, but nobody gives enough time to UI/UX. Just look at pretty much every Lemmy web frontend, fugly webpages with early 2000s look-and-feel, usually slow and/or buggy, and with little to no user feedback.

snor10 ,

I don’t understand how promoting FOSS in favor of proprietary software is bad for FOSS?

Meloku ,

This is not promoting FOSS. This is mocking closed-source/paid Lemmy clients.

StaySquared ,

Dood the automod is wild… people getting banned for, “suspicious activity”… and then there’s no way to ask the mods why the ban.

Rooki ,
@Rooki@lemmy.world avatar

Btw, the automod is ONLY a service from us, that you are getting notified when something got removed from you. If you mean the @AutoMod

Magnetar , to cat in A+ cat

The whole “purebred” thing always seems weird to me, “purebred” royal families aren’t pretty but full of genetic defects, why should it be an better with cats or dogs.

Rolder ,

Hmm two possible reasons come to mind. First, purebred in terms of cats and dogs not necessarily meaning genetic defects. Second, having a defined breed gives the judges something to rate against.

SharkEatingBreakfast , (edited )
@SharkEatingBreakfast@sopuli.xyz avatar

I once was looking to get a cat and found the goofiest looking idiot on Craigslist. Turns out, it was a purebred Exotic Shorthair that was surrendered to a shelter because it didn’t look fucked-up enough (it could still kind of breathe through its nose). New owners wanted to recoup costs because they adopted another cat that was “more playful” and the exotic was getting eye-goop on their white carpets. A wonderful standard for purebreeds!

I changed his name from “Luigi” to “Waluigi”, and he was best best buddy for many many years.

creditCrazy ,
@creditCrazy@lemmy.world avatar

Hopefully your giving him more love than Nintendo is giving their waluigi.

SharkEatingBreakfast ,
@SharkEatingBreakfast@sopuli.xyz avatar

I did. He was my best buddy. (:

Pringles ,

Not necessarily? More like by default. Purebreds are a thing because of certain genetic traits and are bred to not only maintain them, but to enhance those traits. Because of all that inbreeding the propensity for certain diseases and cancers are vastly increased. A purebred dog or cat will with near certainty be riddled with cancer or disease by the time they start getting a bit older. I love both cats and dogs, but purebreds shouldn’t be a thing.

oatscoop ,

It’s the size of the population and the competence/goals of the breeders. Breeders chasing exaggerated traits at the expense of the animal’s health are the major problem.

There are “pure” breeds of every domestic animal that are healthy – provided it’s a line not perpetuated by selfish idiots. Domestic shorthair cats, various working breeds of dogs, horses, etc.

zalgotext ,

I like how you put “pure” in quotes because the way they keep those lines healthy is by occasionally mixing in other breeds.

oatscoop ,

No, it’s because I find the idea and the importance attached to it idiotic.

Having said that, I also believe it doesn’t automatically mean a breed is inbred and/or has health problems.

Rakonat ,

Nearly every cat I ever had was once a stray and I wouldn’t trade that for the world.

EvolvedTurtle ,

You don’t to have a pet cat

The cat chooses you as their pet

jballs ,
@jballs@sh.itjust.works avatar

This just reminded me of a good scene in the book The House in the Cerulean Sea. Minor spoiler, the character has a cat that chooses him.

creditCrazy ,
@creditCrazy@lemmy.world avatar

Honestly it’s always something magical when a cat decides ah yes you are my human. It’s like the dark souls version of getting a dog. And thusly cats in a way are the peak of loyalty because no one else can win a cats favor.

teuast ,

I was at cat lounge/rescue/adoption place in my area recently (not to adopt, just to pet the cats) and one of the cats, a maybe ~7mo female tabby with a slightly fucked up ear named Maggie, after spending most of the time I was there hiding in a corner, decided she liked me, came up to me, sat down on my lap, and refused to budge. One of the staff members came up to say “hey man you’re at your time limit, but I can see you’re in a situation here so just… whenever is chill”

EvolvedTurtle ,

I love this

masquenox ,

aren’t pretty but full of genetic defects

Nature despises purity.

imgcat ,

The concept of breed purity is completely artificial

creditCrazy ,
@creditCrazy@lemmy.world avatar

Perchance these competitions should have a points deducted by the animals quality of life. Of the poor thing has a hard time breathing -10 points idk

phorq ,

The animal would get a medal for doing its best and the human would get a cone of shame so they know what it’s like.

I_Fart_Glitter ,

Norway is doing something about it:

independent.co.uk/…/french-bulldog-pugs-breeding-…

The court ruled that the breeding of brachycephalic (flat-faced) dogs is cruel and results in man-made health problems, and is in violation of Norway’s Animal Welfare Act.

Daft_ish ,

Every one acts like every purebreed is a medical oddity when really it’s just an increased likelihood of defects for certain breeds. I can tell you right now any animal can hurt your pocket the second they decide your gold plated anal beads look like a tasty treat.

businessfish ,
@businessfish@lemmy.blahaj.zone avatar

that is quite specific, what did they run you?

Daft_ish ,

Not me, a friend.

ElectroNeutrino ,

Counterpoint: The pug.

ThunderclapSasquatch ,

Counterpoint The Russian Blue. A perfectly healthy breed of cat

ElectroNeutrino ,

Fair. My point was more that there are some breeds where it’s not just “more likely” to have poor health.

I_Fart_Glitter ,

Which “pocket” are we talking about here? Also, get health insurance for your pets people.

Daft_ish ,

That seems sort of cruel when some people can’t afford health insurance for their people.

I_Fart_Glitter ,

deleted_by_author

  • Loading...
  • Daft_ish ,

    People dont have $50 a month. What ever what ever, no one should have a pet unless they can afford it and all the animals that can’t find homes should be put down.

    I_Fart_Glitter ,

    You can get it as cheaply as $17 a month. And the person I was replying to said your pet would “hurt your pocket” when they eat something they’re not supposed to, implying that they would be paying for the expensive surgery. Most veterinary surgeries are $2K-$5k. Mid range health insurance is $50 per month or $600 per year, saving $1400- $4400 for a person who would be paying out of pocket otherwise.

    Maggoty ,

    Release a mouse, a bird, and a raccoon…

    Molten_Moron , to linuxmemes in Linux mint = best beginner distro

    I recently started using Mint after years on Debian.

    I may be weird here, but it has quickly become my favorite distro.

    It’s snappy and super user-friendly, plus it’s been de-Ubuntu-d. Out of the box Flatpak support is just nice to have, and Cinnamon is a sweet de.

    digger ,
    @digger@lemmy.ca avatar

    I’ve done my fair share of distro hopping. Mint is the distribution that I have to do the least amount of configuring starting from a clean install.

    Fungah ,

    It’s the most stable distro I’ve used so far. Manjaro just seems like it’s a ticking time bomb just waiting for borked o’clock to come. I couldn’t get Nvidia drivers working on fedorat all. Ubuntu was just slow as ass. I don’t know why. But it was just fucked from junk street. I’ve given it a go a few times. Just slow wet ass. Kali is snappy and clean but not meant to be a daily driver. Not would I use it as one.

    Mint works. It’s relatively snappy. I like the gui. It’s customizabe.

    Gakomi , to linuxmemes in Hot take

    For windows users that go to Linux I always recommend KDE as it looks like windows and it’s easy for them to understand and use it!

    rikudou ,

    Start recommending Cinnamon then, it’s the best DE when switching from Windows.

    haui_lemmy ,

    Whats better in cinnamon in your opinion?

    rikudou ,

    It’s really similar to Windows in how you use it. Switching between Windows 11 and Cinnamon is as seamless as it can be.

    There’s almost no configuration or anything necessary, you just install it and it’s great.

    Linkerbaan , to linuxmemes in Hot take
    @Linkerbaan@lemmy.world avatar

    New Linux Users don’t even know the difference.

    hellfire103 ,
    @hellfire103@sopuli.xyz avatar

    Ha! Yeah, I remember that phase. I was planning to install LXDE as my first distro, simply because I thought the wallpaper looked cool.

    citrusface ,

    Yeah hi that’s me - I just use pop_os and everything works so I just roll with it

    uranibaba ,

    PopOS is great! I have used a few other (but never strayed far from APT), and I also did some light reading when doing my final decision . PopOS was the best fit for and easy-to-use OS without Snaps. Linux is great and all with how much control you have, but I want as little maintenance as possible for my daily driver.

    Fotzenfritz , to memes in C’mon, Do Something
    praise_idleness , to memes in Communist Filth/Capitalist Filth

    A communist nation that can really provide all that is as realistic as capitalistic utopia.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    Yeah that’s called late stage Communism, which we have never achieved as humanity. Late stage Capitalism is currently pushing more and more folks into dangerous housing situations like the bottom right quadrant of this meme. Capitalism and Utopia are oxymorons while Communism and Utopia are synonymous.

    praise_idleness ,

    Communism and your concept of utopia are synonymous. Communism and utopia are not synonymous.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    Call me old fashion but no one living on the streets and having their basic needs met sounds pretty utopian to me.

    MeowZedong ,
    @MeowZedong@lemmygrad.ml avatar

    They don’t call you old fashioned for that, they call you tankie. It’s because they’re mad that you don’t buy the bullshit they push. Look at all the claims they make about the USSR here while providing no evidence or context for the situations they claim people were living in.

    They compare apples to oranges when it’s communism they are criticizing and stick their fingers in their ears while screaming when it comes to criticizing crapitalism.

    GrapesOfAss ,

    Ah yes because there was no one living on the streets, yes because a propaganda told me that it must be true.

    I guess killing literal millions of your own citizens is better than being homeless, huh?

    xerazal ,

    There were still people that lived in the streets in the USSR. Also, the housing the USSR provided wasn’t really that… great… I watch a Russian YouTuber (NFKRZ) who has talked about Soviet architecture in not just Russia, but other former USSR countries and shows that yes it’s good they were built, they weren’t very well built.

    The USSR had many problems, and bureaucracy was a big problem. I never understood why tankies love the USSR so much when the USSR didn’t truly get rid of class. Those in the government lived like kings compared to the common man, who yes lived better than they had before but still not that well due to the bloated and mismanagement of the government.

    Idk, the fact that they even had a centralized government like that seems like… the opposite of communism to me.

    cecinestpasunbot , (edited )

    I think what people don’t fully understand is that Marxism is meant to be scientific. That means that there will likely be many imperfect and failed attempts at building a socialist society before one comes along that is stable enough to outlast outside interference from capitalist states.

    As such, most people I know who like the USSR are also it’s biggest critiques. Unfortunately, there is so much misinformation about the USSR that most discussions about it online are just about delineating truth from propaganda.

    probablyaCat ,

    Yeah those soviets sure got rid of the homeless problem. Can't be homeless when you were intentionally starved to death.

    xor ,

    The USSR and communism are separate things

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    Slaps Table Thank You!!

    onion ,

    In what communist country was housing a problem?

    SloganLessons ,
    @SloganLessons@kbin.social avatar

    This is a trick question, the real answer is that there weren’t real communist countries

    Guildo ,

    That’s true.

    DeLift ,

    No true communists

    TheSanSabaSongbird ,

    It’s the final refuge for tankies. That and the old “social democracy only works by exploiting the global south” canard.

    OurToothbrush ,

    “social democracy only works by exploiting the global south” canard.

    Yeah, I could see finding this unconvincing if you haven’t read theory, history, or were just cool with benefiting from imperialism

    praise_idleness ,

    I mean even in the case of USSR they had to wait for more than a decade to actually get a livable apartment, not to mention severe lack of infrastructure…

    But of course, better than people just kicked out to the streets. But then again, less is not none. The housing situation definitely didn’t do USSR’s overall economic status any favor.

    People at least had somewhere to go

    that’s just moving the goal post, isn’t it?

    drmoose ,

    Soviet Union? It was uncommon for a family of 6 to live in a small apartment. You can even see it in old soviet movies where apartments would be separated by curtains (common comedy trope).

    probablyaCat ,

    I'm sure there were extra houses after all those people that starved to death.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    In Communist countries people starve to death because of famine, in Capitalist countries people also strave to death because of famine while still starving to death after famines are over because they cant afford groceries. https://lemmy.ml/pictrs/image/13aca946-0a00-4d6f-80d5-f014778b2cbe.jpeg

    SilentStorms ,

    Not a tankie, but the USSR had mostly solved this problem, despite all its other issues. There did exist some homelessness, but nowhere near the extent of current USA.

    pelya ,

    Sure, you could get a piece of land in Siberian tundra at any time, I would not call that housing.

    Moving to a city was way more complicated than in capitalist US. You could not simply buy an apartment. You had to be allocated an apartment by the government. And you needed connections for that. Or bribes. Ideally both. If you think your local rabid Republicans do not care for little wage slave men, you never experienced USSR, it was like that but 100x worse.

    Starglasses ,

    Seems like you have to have strong connections through networking. Sounds familiar.

    pelya ,

    Yup. And networking would inevitably involve vodka. All major decisions would eventually involve vodka in USSR.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    One of Stalin’s failures almost any tankie won’t deny.

    AngryCommieKender ,

    Vodka had been linked to the Russian economy under multiple Czars. I’m not sure that Stalin could have separated the two even if he had wanted to. Admittedly it doesn’t appear that he wanted to.

    I’m pretty sure that the USSR was screwed the moment that Lenin returned from exile in Germany, or when Wilson was elected. Take your pick.

    The Menchaviks would have been a better government.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    I just find it ironic that Stalin was everything that the party worried about Trotsky becoming.

    OurToothbrush ,

    The mechaviks literally wanted to continue ww1 and have a psuedo democracy where the bourgeoisie were literally guaranteed a majority of seats, wtf are you talking about?

    AngryCommieKender ,

    I wasn’t aware of that. I was under the impression they were less extreme than the Bolsheviks, and didn’t want to execute everyone that wasn’t a hard core Bolshevik

    OurToothbrush , (edited )

    They were more extreme than the bolseviks but less extreme than the monarchists, they were just on the side of capitalists so were painted with a nicer brush by capitalist historians

    AngryCommieKender ,

    Gotcha, that explains why the sources I have read, showed them as favorable to the Menchaviks

    juchenecromancer ,

    Bro got his history lessons from OverSimplified

    Stalins_Spoon ,
    @Stalins_Spoon@lemmygrad.ml avatar

    If you got a new job in a different city, they gave you a new flat, at least in Romania

    Mercival ,

    Well, I’m from a post-USSR country and a substantial part of this was the criminalization of homelessness. Can’t have homeless people, if you lock them up (be it in a prison or asylum).

    Then again, just about anyone, who did not conform to the party’s message got locked up. Getting your place bugged at the slightest hint you might be up to something disagreeable and all that good stuff. The secret police could disappear and or beat you up without any real justification.

    I hate late-stage capitalism as much as you, but coming from a country that’s been through this, I am extremely reluctant to give the rotten and frankly repugnant USSR regime any credit.

    Klear ,

    The real communist solution to homelessness was to put them in jails. True story.

    Grayox OP ,
    @Grayox@lemmy.ml avatar
    probablyaCat ,

    Woohoo both systems suck. You can actually believe that just because one system is bad, what is considered the opposite is also bad. Marx was not some omniscient doctor manhattan. He had some ideas. Some were good critiques on capitalist culture. Others were fantasy that do not function in the real world.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    Notice how the folks arguing in favor of Communism have sources and receipts, while the folks arguing against it have done nothing but regurgitated Capitalist propaganda. Also note folks who are opposed to Communism and Marx’s philosophy are always forced to admit that it only works on paper, because his logic is irrefutable if you address it with a modicum of intellectual honesty…

    Waluigis_Talking_Buttplug ,

    You link stuff, but ignore the actual accounts of human beings who fucking lived it.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    Bruh, almost every old person I’ve heard talk about Communism that lived under it talks about it fondly. Lmao

    Waluigis_Talking_Buttplug ,

    Doubt that very much, liar

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    Bruh there is a reason Putin is framing his imperialist ideations as a revival of the USSR. Also I’ve watched a shit ton of bald and bankrupt videos where all the old people he talks to go on and on about how times were better under the Soviet governments. Facts dont care about your feelings

    andrew_bidlaw ,
    @andrew_bidlaw@sh.itjust.works avatar

    You know, it’s a universal thing. That’s what MAGA is about, that’s what Hitler pushed. Glorifying distant past no one really remembers, reinventing it, it’s fucked up, especially if it’s promoted via selective parts of it. You can’t use political stunts as a proof of anything. They sell you dreams because they can’t show something real, they can’t show important systemic improvements. In times of fuck ups, they show you that billboard, shining so bright it’s blinding, while bread prices climb 2-3x to what they were a decade ago. And people indulge in that constructed feeling of it being better before, while government can do whatever they want.

    Stalins_Spoon ,
    @Stalins_Spoon@lemmygrad.ml avatar

    If you had free healthcare, education, housing, and a stable job in the USSR, watching it all evaporate is bound to draw up some nostalgia

    AdmiralShat ,

    Yeah if any of that actually happened, but it didn’t.

    SailorMoss ,

    Ok, how about people currently living through communism? 83% of Chinese people believe they live in a democracy, more than in the US. Chinese citizens are on average around 4 times wealthier than their parents. Millennials are the first generation in US history to be poorer than their parents. Most of the wealth in the US is held by boomers who lived through the tail end of new deal social democracy.

    Do you also disregard these accounts by people who are currently living through communism? Or will you move the goal post again?

    TheSanSabaSongbird ,

    There is a reason, it’s just not the one you think. Hint; it’s about empire, not communism.

    cecinestpasunbot ,

    Things got much worse for most citizens of the USSR after it collapsed and state industry was privatized. Life expectancy dropped pretty severely. It shouldn’t be surpassing that anyone who suffered under that economic collapse would tell you the USSR was better.

    Historical_General ,

    Why are you so aggressive man?

    Mercival ,

    I have a whole fucking family, who lived through the USSR. Not a single one of them misses it. Being spied on every step you take, my grandma has the “you never know who’s watching” mentality to this day.

    That’s not to say they don’t hate the current regime, but it’s nothing compared to the absolute atrocities of the USSR’s secret police.

    juchenecromancer ,

    A family of nazis/slaveowners is one that deserves to be spied on

    Mercival ,

    Ex-fucking-cuse me?

    probablyaCat ,
    Waluigis_Talking_Buttplug ,

    Yeah but some guy I once met had a grandpa who lived in Europe for a year, he said Russia was great

    Grayox OP , (edited )
    @Grayox@lemmy.ml avatar
    GrapesOfAss ,

    Dude this is pure what aboutism

    You’re claiming communism is so great and when presented with links you just go “WELL WHAT ABOUT ALL THIS HUH” and then completely ignore the above. It’s ridiculous. Actual text book definition of what about ism. Seriously stop and think for yourself for two seconds without restarting to this tribal shit slinging mentality.

    Yeah, capitalism is bad, we live in it, we can see that happening around us, but you’re eating literal propaganda about communism and ignoring actual verifiable evidence. This isn’t a capitalism vs communism debate, there are more than two fucking systems you smooth brain chud

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    So what’s your solution? And what verifiable evidence are you talking about?

    Omega_Haxors ,

    Love how all your sources are NATOpedia and all their sources are actual sources.

    OurToothbrush ,

    The holodomor narrative surrounding the ussr wide famine of 32-33 was literal nazi propaganda from open nazi collaborators and was used as a justification for the mass murder of jews in Eastern Europe during the holocaust.

    It was debunked in the literal 1930s in the US and now it re-emerges like a zombie during an era where fascism is on the rise. Even anticommunist academics like Applebaum, Davies, and Conquest say it wasn’t a genocide.

    probablyaCat ,

    What a crock of shit. Practically every historian says it was caused by soviet policy. The only debate that occurs if whether it was due to stupidity or intentional genocide.

    1

    2

    3

    4

    I could keep going. Gonna tell me how the Holocaust was a lie too?

    OurToothbrush , (edited )

    Literally none of your sources definitively claim it was a genocide except the university of Minnesota one which cites Davies and Applebaum who later says it wasn’t.

    Also lol, you use Wikipedia, a random university of Minnesota webpage, KellogInsight, and I dont even know where you got your last source but it literally cites Wheatcroft and Davies amongst others who do not argue it was a genocide after examining the soviet archives.

    Gonna tell me how the Holocaust was a lie too?

    No, the holocaust is a well documented historical fact, unlike the holodomor. The soviet wide famine of 1932 and 33 is a well documented historical fact, it is also not considered a genocide by mainstream anticommunist historians, who argue to what extent soviet policies and which policies worsened the famine.

    Also ironic that you ask “do you also deny the holocaust” given the holodomor myth was used as justification to kill Jewish people during the holocaust and was later used as justification for collaboration with the holocaust.

    Here is a well respected Jewish historian and activist on it:

    jewishcurrents.org/the-double-genocide-theory

    SaakoPaahtaa ,

    Wow the lengths commies go to deny actual genocide.

    We all know communism is an ideology strictly for the uneducated and violent, why try so hard to make it seem like something else? The countless sexual and ethnic minorities murdered by communism due to its inherent hateful nature is something only the nazis on the other end of the fascism-spectrum rivaled.

    OurToothbrush ,

    The lengths liberals will to go to buy into fascist atrocity propaganda that was used as justification for the mass slaughter of Jewish people by nazis and nazi collaborators

    The countless sexual and ethnic minorities murdered by communism due to its inherent hateful nature is something only the nazis on the other end of the fascism-spectrum rivaled.

    You’re literally doing fascist propaganda. Here is a liberal Jewish holocaust historian and activist writing on it:

    jewishcurrents.org/the-double-genocide-theory

    SaakoPaahtaa ,

    Fascists kill minorities, wow, who would’ve thought. It’s amazing how many commies pretend to label themselves as anti racist and pro trans rights, yet just so happen to advocate for an ideology based on murdering people on the basis of their ethnicity and sexual/gender orientation. Coincidence don’t you think?

    OurToothbrush ,

    Communist countries have historically been less violent to minorities than bourgeois democracies.

    Also read the fucking Jewish holocaust scholar’s writing and absorb it for a second.

    SaakoPaahtaa ,

    Communist countries have historically been less violent to minorities than bourgeois democracies.

    This is simply not true. Every communist regime in history has started off with a systematic slaughter of minorities.

    OurToothbrush ,

    Started off? Which minority was slaughtered in Cuba? What about Korea? How about Afghanistan? China? Vietnam? The USSR? I mean at the start. The USSR did do some legitimately bad things to minorities (particularly German, polish, and Korean) in the lead up to and during ww2) but that was later on and those paled in comparison to the crimes of their capitalist contemporaries.

    I think you’re talking out your ass.

    SaakoPaahtaa ,

    Please read upon actual history before pretending to know any of it. Every nation you mentioned slaughtered their minorities, it is intrinsic to the ideology, a core foundation. Communism without unchecked violence, aggression and ethnic cleansing isn’t communism.

    Also loving the token Whataboutism™ at the end, sign of a true tankie lmao, y-y-yes all communist nations have cleaned off their trans folk b-b-but there are some liberal nations too that did it, even though liberalism is the only ideology that has the capability to support a non-violent society lmao get fucked transphobe.

    OurToothbrush , (edited )

    Please read upon actual history before pretending to know any of it.

    Could you give me a recommendation on history books that go over the slaughter of minorities in Cuba, Vietnam, and Korea then? Since you know so much about it.

    Oh, that is what I thought. Have you considered actually talking to Cubans, either people who live there or cuban immigrants who arent aggrieved about their grandpa’s plantation?

    Communism without unchecked violence, aggression and ethnic cleansing isn’t communism.

    Fuck I gotta tell my local commune that they aren’t really communist

    Also loving the token Whataboutism™

    Fallacy fallacy. If we are judging ideologies on how many atrocities they commit, you have to judge them against other ideologies.

    even though liberalism is the only ideology that has the capability to support a non-violent society

    Lol 20 million people die a year of starvation or lack of clean water under liberal hegemony.

    The archetypal liberal state shoots thousands of black men a year, and creates conditions that mean 40 percent of homeless youth are lgbt. It has the largest prison system in history, and has killed millions of civilians in wars of aggression over the last 20 years. You’re projecting the crimes of capitalism onto communism, consider criticizing communism for what it actually did wrong.

    praise_idleness ,

    No one is going to deny that making perpetual motion device is good. How are you going to do that?

    Do you have source and receipts for real life communism solving housing problem? Not being better than capitalism. Solving. Being better than capitalism is kinda low bar you know. There are plenty of other things that real life capitalism does better than real life communism, hence communism failure. No one is going to show up with receipts and sources because obvious.

    You show us tents as a capitalist solution. That’s not a capitalist solution. That’s the problem itself. You’re misleading.

    because his logic is irrefutable if you address it with a modicum of intellectual honesty…

    Can you at least try to sound less douche about things?

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    The joke is that Capitalism DOES NOT have a solution to homelessness because there is zero profit motive to solve it. And facts dont care about your feelngs, you cant refute Marx’s philosophy while being intellectual honest. Capitalist Economists study Das Kapital because Marx was so fucking spot on.

    praise_idleness ,

    Yes, that’s why there is no pure capitalist country anywhere.

    you cant refute Marx’s philosophy while being intellectual honest.

    Why are you keep doing this? I said I don’t disagree with Marx. It’d be nice if communism can happen. Facts don’t care about your feelings either and all the shitty attemps of communism failed due to human being shitty. If you have to kill off people to keep the ideology, only to fail after about few decades, it has some reality problems.

    And again, I cannot stress this enough, can you please stop sounding like a 16 year old kid who just read few paragraphs of Marx going iamverysmart about it?

    cecinestpasunbot ,

    The existence of state run social services and regulations does not mean a country is not fully capitalist if you’re using Marx’s understanding of what capitalism is. Additionally I think there is a misconception that communism depends on altruistic behavior. It really doesn’t.

    WhiteHawk ,

    No need to refute Marx, reality has already proven time and time again that communism doesn’t work in practice.

    Btw your argument only applies to “pure” capitalism, without any government interference. Homelessness is not really an issue in many European countries.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    You mean the reality where every 1st world nation on the planet did everything in their power to keep Communism from working. Bahahaha

    WhiteHawk ,

    Didn’t take much to stop a system dreamed up by idealists and idiots from working. The very concept is flawed.

    cecinestpasunbot , (edited )

    Tell me you haven’t read Marx without telling me you haven’t read Marx.

    Seriously though, Marx is like the guy you go read if you want a ruthless critique of idealism. I’d go so far as to say it’s the reason his theories became so popular in the first place.

    WhiteHawk ,

    Who cared about Marx? He wrote a book. He didn’t lead a country. Nobody cares about theories when they don’t hold up in practice. And they never have.

    cecinestpasunbot ,

    You’re right, nobody has ever cared about Marx. No communist revolutionaries anywhere have ever called themselves Marxists. If they did, then their projects must have surely collapsed by now. That’s because Marx was very clear that his political theories were not made to be adaptable or revisable based on new information and changing conditions. No, that would be far too scientific for someone we can agree was clearly an idealist.

    yogthos ,
    @yogthos@lemmy.ml avatar

    It’s funny how upset it makes people when you point out the elephant in the room.

    Grayox OP ,
    @Grayox@lemmy.ml avatar

    Truely

    Waluigis_Talking_Buttplug ,

    As someone who has been homeless before, I’ve never been arrested for it.

    Klear ,

    So what? America is a shithole, that’s nothing new.

    bennieandthez ,
    @bennieandthez@lemmygrad.ml avatar

    Typical projection 😂

    P00ptart ,

    That’s what a lot of red states are doing now. Make homelessness illegal. Arrest the homeless. Make them do slave labor in jail. Profit.

    Taleya , (edited ) to memes in Vegan food: The west vs India

    One of these cultures has normalised vegan and vegetarianism for centuries, the other is trying to wean a meat-obsessed population.

    They are not the same thing, nor do they have the same requirements to reach their end goals

    seitanic ,
    @seitanic@lemmy.sdf.org avatar

    How prevalent is veganism in India? Whenever I look at Indian food, it’s butter this and milk that. Sure, there are some very good vegan choices, but it seems to me that Indians love their dairy.

    lobut ,

    Yeah I have a lot of vegetarian Indian friends, not as many vegan.

    TheCaconym ,

    9% of the population apparently, the highest in the world tied with Mexico.

    Taleya ,

    Veganism is actually a fairly new phenomenon in general, a lot of Jains in particular have adopted it. But vegetarianism in India dates back over a thousand years BCE , so yeah, they’ve got a bit of a head start.

    TheBat ,
    @TheBat@lemmy.world avatar

    Yeah, we’re not giving up our dairy any time soon lol.

    No one is keen on experimenting with Basundi or Rasmalai without milk.

    AngryCommieKender ,

    They have made dairy using a bacteria recently, so animal free dairy may be a thing soon.

    Morgoon ,

    Brave Robot! I tried it recently, it was good!

    FlyingSquid ,
    @FlyingSquid@lemmy.world avatar

    If they can make animal-free cheddar and animal-free yogurt that tastes exactly like the real thing, sign me up. Right now, vegan alternatives are… not good.

    Twista713 ,

    I’ve tried a few types of coconut-based yogurts that were tasty. I’m not a fan of almond milk, so didn’t like those varieties as much. On the cheeses though, completely agree! I had one that was tolerable, but definitely falls in the “not good” category.

    FlyingSquid ,
    @FlyingSquid@lemmy.world avatar

    Were the coconut-based yogurts sweet? Because I don’t want sweet yogurt. I want yogurt I can put chives in and put on my falafel (for example).

    Twista713 ,

    The vanilla flavored one was a bit sweet, but that’s how I generally prefer it. I usually am throwing berries and granola in there too so admittedly can’t give you an unbiased recommendation! I think there are plain flavored ones either almond or coconut milk based, which might be more of what you’re looking for.

    AA5B ,

    Yes, this is why I think we take the wrong approach considering things as animal free substitutes. That’s a high bar.

    Meanwhile I’m perfectly happy dipping my veggies in hummus instead of cheese dip. Not as a substitute but as a different choice that is good on its own merit

    FlyingSquid ,
    @FlyingSquid@lemmy.world avatar

    I can live without cheddar cheese. Maybe. But I need my yogurt.

    abraxas ,

    I saw a milk that claims to be just that on the shelves. Incredibly expensive and (from what I hear) nowhere near the same taste.

    The problem is that animals and plants do “what they do” with incredible efficiency. If you want to do exactly what some evolved thing does best, you probably cannot come close to matching it with technology. A century of aircraft design and planes are not in the same league as birds regarding flight efficiency.

    If animal-free milk goes the path that animal-free meat is, they may well be reaching the upper bounds of efficiency already, nowhere near close enough to replace natural animal and dairy.

    Which is a bit of a shame (as a meat-eater). I think having outside competition that could truly stand on its own would help reduce the corruption of big ag.

    Schadrach ,

    If you want to do exactly what some evolved thing does best, you probably cannot come close to matching it with technology.

    Not necessarily true - evolution (and simulating evolution) is great at finding local maxima/minima, but not as great at moving out of those in the case where the local min/max is not the global min/max. So, for example, birds might not be the optimal way to do flight efficiency, but between birds and optimal flight efficiency if there’s a region of worse flight efficiency of any real size (more than you could vault in a couple generations of lucky mutations) then evolution will never find it because the intermediate steps to get there will be selected against too heavily to jump the gap.

    abraxas ,

    I don’t think I entirely disagree with you. I was generalizing the real phenomenon that we are unable to engineer competing mechanisms to those found in the wild.

    That said, “region of worse efficiency” tends to happen all the time. The accurate argument would be a “region of untenable inefficiency”. A legless bird that evolved the ability to fly its entire life from hatching to death is an unlikely evolution. Not coincidentally, finding ways to keep something up in the air longer-term than birds do is something our engineering is capable of.

    portside ,

    Man I haven’t tried Basundi, is it available in Haryana by any chance?

    TheBat ,
    @TheBat@lemmy.world avatar

    I don’t know man, I’m from Mumbai. Check on swiggy for restaurants in your area.

    Or you can make it on you own. The recipe is simple, it just takes long time to make because you need to boil milk to make it thicker.

    RenownedBalloonThief ,
    portside ,

    Vegetarian? Yes. Vegan? No.

    I am a vegetarian. I eat dairy. I don’t eat meat and eggs.

    HawlSera ,

    Just eat eggs bro it’s just a chicken period

    Misconduct ,

    Except for the part where they’re kept in small cages or “free range” in dirty cramped pens. Luckily it’s easier to get eggs from chickens raised ethically than meats. You just gotta fork over a few extra bucks or get the hookup at a farmer’s market

    HawlSera ,

    Chickens are not people

    Misconduct ,

    I never said they were? I’m not even a vegetarian stop being so sensitive. I don’t care for making anything suffer when I can still have eggs without the suffering. It’s that simple. If you’ve based too much of your personality on macho meathead bullshit then do you boo. I’m sure that’s a great replacement for an actual personality.

    jose1324 ,

    Based response

    pascal ,

    Savage but fair.

    Rozauhtuno ,
    @Rozauhtuno@lemmy.blahaj.zone avatar

    To a vegan, that doesn’t matter because it’d be speciesism.

    HawlSera ,

    Yeah, Vitamin B12 defiencies make you act erratic

    abraxas , (edited )

    or “free range” in dirty cramped pens.

    We drive 10mph around here because the damn chickens like to “free range” in the road. Those are pretty large pens, the size of a damn town.

    The USDA needs to get their pockets out of big ag’s hands. Free Range should be Free-Fucking-Range. I get to know the chicken I eat got to run wild 16 hours every day, but many people do not.

    Misconduct ,

    Yeah the fuckery that they pull when they list things as grass fed and free range is vile. Then they make a profit on top of it because they barely change anything but charge premium prices for the fancy label.

    I’m lucky to have a beef farm in my state that ships locally and actually follows the spirit of grass fed up to grass finished in sprawling pastures. They also do individual slaughter. For eggs we’ve got a few locals that bring them to the farmers markets on Sundays. Beef is like a once a week thing for us these days and it’s usually just ground beef. Chicken and fish are our biggest sources of protein now. I don’t really do pork anymore. Can’t find any that’s remotely close to ethically sourced which is abysmal considering how intelligent pigs are. So I just stopped buying it.

    Also, and I’m fully aware this could just be some kinda subconscious bias, but I swear the meat and eggs taste SO much better than the stuff from the grocery. Eggs especially. The yolks are so vibrant and hardly break when being fried. Even the shells seem stronger and less likely to shatter into tiny annoying bits.

    abraxas , (edited )

    Here’s my reason for trying to eat a little more beef than that. If I’m giving “lives lost” any value, you can’t beat cows for calories per animal death. It beats a lot of plant-based foods. And I do have local beef, though it is not fully sustained like local chicken is… which is why I eat more chicken and seafood as well. Not to mention, even though beef around me can be ecologically sustainable, it will not remain that way if too many people eat it because it needs to be supplemented by import. So some beef = good. More beef = less good.

    We actually have some ethically sourced local pork, too. I guess it’s nice living in a farming area of my state, despite not living in a farming-state. The butcher’s pork section is always small, but he’s got some.

    Also, and I’m fully aware this could just be some kinda subconscious bias, but I swear the meat and eggs taste SO much better than the stuff from the grocery

    Not really a subconscious bias. They are fresher, and preservation techniques often have not been started on them. If you eat an egg that has never been refrigerated, of course it’s fresher. (or the opposite, lol)

    The seafood my family fishes is right off a boat, generally only a couple hours harvested. After the fishermens’ cut, the best stuff goes to a couple local restaurants and seafood markets, and the rest are frozen and shipped. Yes, you can taste the difference. I never liked scallops until I tasted “the real thing” off a boat.

    HawlSera ,

    Same, got this one road where I always need to be careful about the hens.

    AA5B ,

    Effing dinosaurs, with 6,000 years of eating cave men, deserve all the incarceration they get. /s

    More seriously, depending on your priorities, factory farmed chicken is less bad for the overall environment than pretty much any beef

    Rolive ,

    Somehow doesn’t sound as tasty.

    AnarchistsForKamala ,

    chickens don’t have periods

    hiddengoat ,

    https://en.wikipedia.org/wiki/Vegetarianism_by_country

    About 30% are vegetarian in India. Almost 10% are vegan.

    So it's very prevalent, but America likes to pretend we're the only country in the world and that problems are never solved anywhere else.

    MenacingPerson ,

    Where are the Indian vegans? I have only ever met ONE in my entire life except myself.

    hiddengoat ,

    Try India.

    NewAgeOldPerson ,

    Lol I actually laughed. Maybe it’s the beer. But thanks!

    MenacingPerson ,

    Maybe it’s a regional difference? I live in South India

    alienzx ,

    Hi 👋

    Source: me

    MenacingPerson ,

    Hi!

    I mean, I don’t mean like, online. I’ve met plenty of online Indian vegans. But still, I find it hard to believe that every 1 in 10 people are vegan. Where?!

    abraxas ,

    I would say about 30% of my Indian coworkers over the years have been vegan.

    I think the challenge is that, unlike a lot of Western vegans, they don’t go out of their way to talk about it. My second job, I knew day 1 about the white girl who was vegan. It took me 2 years to learn that 4 of my Indian coworkers were vegan since birth. And I only learned it because they learned I was getting into Indian food so they all started bringing stuff in for me to try. Entire meals. Incredible meals. I miss that job, lol.

    portside ,

    Exactly, we don’t go about our day preaching veganism.

    MenacingPerson ,

    My family loves to announce to the world that I don’t drink milk. It’s annoying. Idk they’re probably in shock or something that someone would choose not to abuse cows. (They’re vegetarians, I’m vegan)

    Where do you live? I assume outside India? Hmm

    federatingIsTooHard ,
    @federatingIsTooHard@lemmy.world avatar

    no one abuses cows anyway

    MenacingPerson ,

    Tell me you know nothing about it without telling me you know nothing about it

    federatingIsTooHard ,
    @federatingIsTooHard@lemmy.world avatar

    I know enough to tell you you’re spreading misinformation

    MenacingPerson ,

    I’m not going to bother. I’m tired.

    federatingIsTooHard ,
    @federatingIsTooHard@lemmy.world avatar

    have a nice day

    abraxas ,

    Well yeah, very outside of India. I live in the US, though I try not to make my identity about that.

    But one thing I’ve loved about working in Boston is how many cultures I’ve been exposed to in my life.

    NuPNuA ,

    It’s not vegan so much as veggie. They definitely respect those cows they get the milk from though.

    sviper ,

    Quite popular, in my city it’s quite hard to find meat in the popular restaurants. And these places are quite old and we’ll know.

    Most foods don’t have any form or trace of meat or eggs, although milk and related items are very widely consumed.

    It’s vegetarian and not vegan.

    muddi ,

    Hence this meme

    Taleya ,

    which would be fine if it were just a straight comparison but it starts bleating about chemicals and preservatives and it’s a bit too purity politicking for my tastes.

    NuPNuA ,

    This is what people don’t get, if you’ve been veggie for years then you don’t need meat substitutes, these products are for normies trying to cut back or give up while they break the cultural training.

    wren ,
    @wren@sopuli.xyz avatar

    I’ve been vegetarian for… more than a decade? I love meat substitutes and generally prefer having the substitute present in meals (either as the main thing, like a burger, or as an inclusion). I do agree that meat substitutes are a fantastic way of reducing meat consumption for meat-eaters, but that doesn’t mean you need to do away with it completely once you’re in ‘full veg’ mode

    SpookyGenderCommunist ,
    @SpookyGenderCommunist@hexbear.net avatar

    One of these cultures has normalised vegan and vegetarianism for centuries, the other is trying to wean a meat-obsessed population

    As someone who works in a grocery store, the worst fucking people are the ones who go up to the deli counter and yell at the clerks, demanding the "bloodiest* roast beef they’ve got. That or the spiciest turkey, or whatever.

    Dudes who’s entire sense of self is invested in eating meat. Easily the most annoying kind of guy I encounter in my daily life.

    Taleya ,

    That and the ‘for every animal you don’t eat i’m gonna eat THREE!’ Yay well done so macho you get threatened by what another person eats fucking yay for you sir gold star.

    abraxas ,

    Dudes who’s entire sense of self is invested in eating meat

    This might sound silly. But maybe they enjoy the taste of rare roast beef? Before this “make meat seem like it’s not dead animal” trend, the rule used to be anything over medium was overcooked for most meats. For some odd reason (actually, not odd. freaking additives) a lot of roast beef is sold medium-well. Which is tasteless enough to make someone go vegan!

    I don’t understand “yell at the clerks”. I’ve never seen that. But I agree it’s rude. Just **not **because they are buying meat.

    AA5B , (edited )

    Maybe. While I do sometime choose the plant-based meat, thinking of it as a substitute was my initial reluctance to try vegetarian food. Back then, I ridiculed the idea of a “veggie burger”, but really liked grilling a “black bean patty”. Did you realize Mac and Cheese can be vegetarian? “Greek veggie dip” is horrible, but I love hummus. I always loved various potatoes, but it was quite a revelation that you could spice them up and use them as a meal. My latest infatuation is Halloumi or Paneer - don’t ever call a nice grilling cheese a substitute for anything.

    At least for me, it is easier to choose foods for their own value, rather than suffer with a substitute, r a variation “without”. I’m not a vegetarian and have no interest in it, but I will choose what looks good to me at any given time, on its own merits

    AnarchistsForKamala ,

    veganism was invented in the 1940s in Britain

    Taleya ,

    inaccurate. Even a brief wiki would correct you on this.

    AnarchistsForKamala ,

    saying something doesn’t make it true. alluding to the existence of evidence is not the same as presenting evidence.

    Taleya ,

    what on earth are you on about.

    One of the earliest known vegans was the Arab poet al-Maʿarri, famous for his poem “I No Longer Steal From Nature”. (c. 973 – c. 1057).

    The first known vegan cookbook was Asenath Nicholson’s Kitchen Philosophy for Vegetarians, published in 1849

    These are documented historical facts. Not “saying something” which ironically appears to be the position you are claiming.

    Did the modern name come about in the 40’s? yes, that’s the etymology of it. But you’re treating that fact like the movement or ideology was formed at the same time, which is tremendously, provably wrong. It’s like claiming gay people are a relatively new invention because the term “homosexual” wasn’t coined until the 1890’s

    AnarchistsForKamala ,

    veganism is a specific philosophy, and while variations of vegetarianism predate it, veganism itself dates to the 1940s.

    emhl , to piracy in This is the way

    if you snatch a popular torrent that is fine but with dying torrents that is quite harmful

    Xirup ,
    @Xirup@lemmy.dbzer0.com avatar

    Dumb question, why?

    littlebluespark ,
    @littlebluespark@lemmy.world avatar

    Because 200% should be your minimum, not your max. 🤌🏼

    davel , (edited )
    @davel@lemmy.ml avatar
    Rustmilian , (edited )
    @Rustmilian@lemmy.world avatar

    If there’s no one left to seed, the torrent dies. Seeding back at least 200% ensures the torrent stays healthy.

    ZeroEcks ,

    Sometimes you need to seed back more than 200% because the other two people might not be able to seed it back. I would generally not set a limit

    Rustmilian , (edited )
    @Rustmilian@lemmy.world avatar

    True, but as a minimum you should be doing 200%.
    Also in a ideal scenario that 200% would be spread out to a lot more people then just 2.

    littlebluespark ,
    @littlebluespark@lemmy.world avatar

    OP is showing 200% as their maximum. That’s the whole point of this thread. 🤌🏼

    Rustmilian ,
    @Rustmilian@lemmy.world avatar

    No shit Sherlock 🫴

    littlebluespark ,
    @littlebluespark@lemmy.world avatar

    I’m not the one reiterating the salient point of a very short thread. Might do well to read that to yourself instead, friendo. 🤗

    Rustmilian ,
    @Rustmilian@lemmy.world avatar

    I have no time for children.

    jeffreyosborne ,

    yo momma🤌🏿

    NateSwift ,

    It will lead to the torrent dying if everyone stops seeding

    blindsight , (edited )

    If there are less than 5 seeds, then I keep seeding indefinitely. Above that, I’ll consider deleting it to free up space once I’m done with the media.

    Unless it’s from a private tracker, in which case I’ll just seed everything forever to get the sweet bonus points.

    Catsrules ,

    How does that work, does the downloader just cycling though seeding torrents or do they all stay active? I feel like there would be so much torrents over time it would slow everything down.

    blindsight ,

    I looked it up, and qBittorrent can easily handle hundreds of torrents, apparently. I haven’t noticed any problems running 180-ish. I’ll probably try to keep it capped to 300 or something like that.

    Catsrules ,

    Does it matter how many files are in each torrent?

    I would think a 100 file torrent would be more intensive than a 3 file torrent.

    blindsight ,

    I don’t think it has any effect at all, but I’m not an expert. It’s just sending data by request based on hashes and indices, isn’t it?

    Steve ,

    Agree. I dont delete anything unless the quality is shit

    Jenoki OP ,

    I’m considering getting a seedbox because with my current storage setup, and my unwillingness to keep the vpn up all the time 2.0 is the best I can do.

    Osa-Eris-Xero512 ,

    This was annoying me too, and I solved it by spinning out a VM that exists just to run qbittorrent and the vpn connection.

    Fisch ,
    @Fisch@lemmy.ml avatar

    I use Gluetun for that. It’s a docker container that sets up the VPN and qBittorrent in two containers and routes all traffic from qBittorrent through the VPN.

    pigup , to science_memes in Double-slit

    Fyi, there’s a lot of woo woo (edit: apparently racist term) crap out there that tries to make you believe that somehow the photons can feel that a human is watching them and they choose to behave differently as a result. This is not true. It just means that when you use a detector or some sort of probe that physically interacts with the photons they change their behavior. It’s not magic.

    HawlSera ,

    I agree but please don’t say woo woo, the term is considered offensive against Asians, plus James Randi, the guy who came up with it, was literally a climate denying pedophile who was the primary science advisor on the thoroughly debunked false memory Foundation.

    The term, like this man’s legacy, needs to die.

    It is a shame really, I used to be so convinced that magic had to be real, that men of science just didn’t want to hear it because it conflicted with their worldview. God I would give anything for that to be true.

    DrRatso ,

    What koolaid are you sipping? Woo-woo, even in the dictionaries is supposed to refer to sci-fi / ghost sounds. Give me one decent quote to say woo-woo is racist.

    HawlSera ,

    It’s a play on “Wu” actually

    DrRatso ,

    Source or gtfo

    HawlSera ,
    DrRatso ,

    So did you even read or just copy articles where the title agrees with you? The first one is “according to google”. The only article i saw crop up on google use the term derogatory(as per the article) to describe woo-woo was on medium, talking about how it makes people who believe in the supersticious and paranormal feel bad (much like the second article you linked). If you actually read them, you would see there is only one negative implication in the first article, and it is not in the origins of the word but in the “message” of “western superiority”, because god forbid we actually ask people to back up their claims.

    Where is the racist connection then? Maybe just look up the origins of the word on the dictionary and admit you are spouting bullshit?

    lightnegative , to linuxmemes in Sell it cheap, we appreciate.

    “send to landfill”.

    No. Just because it can’t run newer Windows versions doesn’t automatically mean it gets catapulted to the landfill

    Omega_Jimes ,

    When I was a residential garbage collector, I saved close to a dozen computers from the landfill that just needed a quick cleaning. A lot of people will get rid of their year old Alienware once it fills with cat hair.

    pewpew , to linuxmemes in Sell it cheap, we appreciate.
    @pewpew@feddit.it avatar

    Okay, but it’s still bad for the environment if nobody picks them up

    fuckwit_mcbumcrumble ,

    Thats assuming that people are actually going to throw their computers in the trash when the OS reaches end of life.

    Most people running these old machines probably won’t know or care.

    Inconcinnity ,

    They’ll definitely know. Microsoft’s last update for Windows 10 will make sure to add as many notices, popups and scary alerts as possible.

    And as a result plenty will care, particularly those who aren’t tech savvy. If you’ve got relatives for whom you are their go-to IT person, be prepared.

    fuckwit_mcbumcrumble ,

    That’s assuming they even read the message and don’t just close out of it instantly.

    mdd ,

    Them: “I keep getting an error message.” Me: “What’s it say.” Them: “I don’t remember.”

    OpenHammer6677 , to newcommunities in Musicians - Lemmy - a new community for people making music

    Joined! Thanks for starting the community!

    SorteKanin , to newcommunities in Musicians - Lemmy - a new community for people making music
    @SorteKanin@feddit.dk avatar

    Actual link for other instances: !musicians

    ff0000 OP ,
    @ff0000@lemmy.ml avatar

    Thank you, I updated the url in the post.

    SorteKanin ,
    @SorteKanin@feddit.dk avatar

    I’m afraid that URL will still not work 😅. It still will just lead to lemmy.ml, I think. Unless your client does some magic to fix it.

    !community is the way to link to other communities. Doesn’t work in the URL field of posts though, it’s custom Lemmy markdown behaviour.

    ff0000 OP ,
    @ff0000@lemmy.ml avatar

    Updated the link in the body of the post, hopefully this will work now for everybody. 🫣

  • All
  • Subscribed
  • Moderated
  • Favorites
  • lifeLocal
  • random
  • goranko
  • All magazines