Comic Strips
Comic Strips is a community for those who love comic stories.
Rules
-
😇 Be Nice!
- Treat others with respect and dignity. Friendly banter is okay, as long as it is mutual; keyword: friendly.
-
🏘️ Community Standards
- Comics should be a full story, from start to finish, in one post.
- Posts should be safe and enjoyable by the majority of community members, both here on lemmy.world and other instances.
- Any comic that would qualify as raunchy, lewd, or otherwise draw unwanted attention by nosy coworkers, spouses, or family members should be tagged as NSFW.
- Moderators have final say on what and what does not qualify as appropriate. Use common sense, and if need be, err on the side of caution.
-
🧬 Keep it Real
- Comics should be made and posted by real human beans, not by automated means like bots or AI. This is not the community for that sort of thing.
-
📽️ Credit Where Credit is Due
- Comics should include the original attribution to the artist(s) involved, and be unmodified. Bonus points if you include a link back to their website. When in doubt, use a reverse image search to try to find the original version. Repeat offenders will have their posts removed, be temporarily banned from posting, or if all else fails, be permanently banned from posting.
- Attributions include, but are not limited to, watermarks, links, or other text or imagery that artists add to their comics to use for identification purposes. If you find a comic without any such markings, it would be a good idea to see if you can find an original version. If one cannot be found, say so and ask the community for help!
-
📋 Post Formatting
- Post an image, gallery, or link to a specific comic hosted on another site; e.g., the author's website.
- Meta posts about the community should be tagged with [Meta] either at the beginning or the end of the post title.
- When linking to a comic hosted on another site, ensure the link is to the comic itself and not just to the website; e.g.,
✅ Correct: https://xkcd.com/386/
❌ Incorrect: https://xkcd.com/
-
📬 Post Frequency/SPAM
- Each user (regardless of instance) may post up to five (5 🖐) comics a day. This can be any combination of personal comics you have written yourself, or other author's comics. Any comics exceeding five (5 🖐) will be removed.
-
🏴☠️ Internationalization (i18n)
- Non-English posts are welcome. Please tag the post title with the original language, and include an English translation in the body of the post; e.g.,
Sí, por favor [Spanish/Español]
- Non-English posts are welcome. Please tag the post title with the original language, and include an English translation in the body of the post; e.g.,
-
🍿 Moderation
- We are human, just like most everybody else on Lemmy. If you feel a moderation decision was made in error, you are welcome to reach out to anybody on the moderation team for clarification. Keep in mind that moderation decisions may be final.
- When reporting posts and/or comments, quote which rule is being broken, and why you feel it broke the rules.
Banned Artists
The following artists are banned from the community.
- Jago
- Stonetoss
It should be noted that when you make reports, it is your responsibility to provide rational reasoning why something should be removed. Saying it simply breaks community rules is not always good enough.
Web Accessibility
Note: This is not a rule, but a helpful suggestion.
When posting images, you should strive to add alt-text for screen readers to use to describe the image you're posting:
Another helpful thing to do is to provide a transcription of the text in your images, as well as brief descriptions of what's going on. (example)
Web of Links
- !linuxmemes@lemmy.world: "I use Arch btw"
- !memes@lemmy.world: memes (you don't say!)
view the rest of the comments
Maybe old IDEs. Like Eclipse 10-20 years ago.
Modern IDEs don’t really have these issues as frequently.
Visual Studio has these issues daily.
Ten years ago VS was awesome. In the last 2 years, all they added is AI crap and every other feature got more buggy.
Your experience is far from universal. Working with actual code files, visual studio works very good.
Mix in XAML blazor, however...
(Note that both file formats are abstractions from which C# classes are.generated...)
I have a faint memory of working with Eclipse but shelved it due to making Java even slower than my dog walking towards his shower. Is it still alive and viable?
[This comment has been deleted by an automated system]
Oh I don't know. 1,3,5 and 6 resonate strongly with me for Visual Studio 2022. The only reason 4 doesn't is because instead of looking for a setting I DDG "how do I do X in VS2022"
Have you tried modern Eclipse on Wayland? Save often!
I have not. Last time I used Eclipse (maybe 10 years ago) I got so frustrated it prompted me to learn Vim.
I’m currently mostly using IntelliJ these days.
The only issue I've ever had with Eclipse is updating it. It's only gotten better in the past 2 years or so. The rest of the time upgrading was a complete pain in the ass. Just about every time I ended up giving up and reinstalling from scratch.
Well, the one other thing that annoys me is not having decent themeing. I use a third party extension and while it does help, there are parts of the IDE that you still can't customize so if you want a dark mode you have to deal with parta that aren't ideal.
modern IDEs are dog shit. If I needed a glorified clippy telling me how to do my job I'd smash my brains out all over my keyboard.
Give me an editor with the following and I'll be good for life.
nice to have:
if an editor can do all that I can make it do whatever I need.
I had similar opinion, but I’ve changed my mind. Now I can barely do any serious work without an IDE.
The main feature I’m after is code completion. Just getting a peek of which methods are available is something I can’t be without.
Code hints like ”this expression will always evaluate to false” is great to capture difficult to spot mistakes.
Code usage it’s is a must when doing refactors. It makes it easy to analyze how a method is used before I commit to a refactor.
Debugger and profiler is also nice to have.
I'd say that's true for most devs.
personally though, all that is noise to me and is difficult to maintain focus when it's got all these popups and autofills.
I'm currently maintaining a codebase that's got something like 900 methods/functions across multiple classes, modules, and other objects. It follows a pattern and is pretty easy to maintain though.
another project I'm inheriting is doesn't have any logical flow or pattern and is a shitstorm of JS Christmas trees. I'll likely need to used something that will trace through the callbacks just to see what the fuck is going on.
my point though, is if you depend on the tools that make it easy to write sloppy code, you will write sloppy code because the key feature of the tool allows you to do it without repercussions.
building something without effort rarely ends with a result you can be proud of. this is true for development and in life, IMO.
“A shitstorm of JS Christmas trees” what poetry. Thank you.
i can see rust being a bit more challenging to support properly in an IDE and there still being various special cases not handled properly, and i'm glad that it's free to use non-commercially, but with jetbrains rustrover i frequently see it calling out errors in code that happily compiles, autocomplete being semi-random in how it wants to complete today, which seems to have gotten worse with their recent AI pushes, and even a couple times the entire IDE locking up not too long ago, though i don't remember whether the last part was in rustrover or one of their other IDEs. overall pycharm has been pretty stable for me, as long as you provide it with a pre-existing venv or let it create one for you, as the integration with the latest and greatest(tm) python package manager may not be there yet.