this post was submitted on 28 Jan 2024
323 points (94.7% liked)

Comic Strips

23908 readers
1649 users here now

Comic Strips is a community for those who love comic stories.

Rules
  1. πŸ˜‡ Be Nice!

    • Treat others with respect and dignity. Friendly banter is okay, as long as it is mutual; keyword: friendly.
  2. 🏘️ 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.
  3. 🧬 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.
  4. πŸ“½οΈ 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!
  5. πŸ“‹ 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/
  6. πŸ“¬ 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.
  7. πŸ΄β€β˜ οΈ 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]
  8. 🍿 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.

  1. Jago
  2. 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

founded 2 years ago
MODERATORS
 

you are viewing a single comment's thread
view the rest of the comments
[–] noerdman@feddit.de 4 points 2 years ago (2 children)
[–] brsrklf@jlai.lu 13 points 2 years ago* (last edited 2 years ago) (2 children)

It's been a while since I was told this, so not sure how true it still is, but there a was a niche but lucrative market for people who could maintain stuff in Fortran, COBOL and the like.

Because there were some critical antediluvian pieces of software in banking, big businesses, etc that some companies were terrified of having to replace one day.

I'd expect that by now most would have migrated to more common languages, but I don't really know.

[–] yggdar@lemmy.world 5 points 2 years ago (1 children)

I'm in IT in the financial industry. There is indeed still a ton of COBOL around.

[–] brsrklf@jlai.lu 4 points 2 years ago

I guess some things never change, quite literally.

I've only worked for a bank for a few months, and it was on a new service project, so no idea what made the old finance workflows tick. For all I know it was the same there.

[–] noerdman@feddit.de 3 points 2 years ago (1 children)

I heard that story, too... When I started studying. That was almost 20 years ago. I'd have assumed they had moved on until now if that hadn't been an urban myth in the first place.

[–] f314@lemmy.world 3 points 2 years ago

I work at an insurance company, and our core business system is written in RPG. We are starting the process of splitting it up and modernizing it, but I suspect there will still be some RPG code running in production in ten years.

[–] CapeWearingAeroplane@sopuli.xyz 1 points 2 years ago* (last edited 2 years ago) (1 children)

A lot of codebases in skuff like fluid mechanics, meterological models, quantum mechanics etc. are still in Fortran. Largely because there is very little to gain from rewriting the code base in some other language.

I would choose Fortran for a new project 0/10 times, but to be fair, it's a completely viable language for developing complex and computationally intensive models, and it's better to have the 1-2 new guys learn Fortran every year than to rewrite a 200k line code base in some other language that offers few or no real advantages outside of personal preference.

[–] ZoopZeZoop@lemmy.world 1 points 2 years ago (1 children)

Could the advantage be not having to train a small number of folks on some system no one wants to use and has very little utility outside of a few small things?

I'm legitimately asking. I don't code at all. So, for all I know the answer could be "no."

[–] CapeWearingAeroplane@sopuli.xyz 2 points 2 years ago (1 children)

That's not a bad question! If it were the case that Fortran was a language that had very little utility outside of a few small things that no one wants to use, the cost of training people would eventually surpass the one-time cost of a rewrite.

As it stands however, Fortran is still a perfectly viable language if you know how to use it, and (one of) the de-facto standard in quite a few environments. So even if you re-wrote the code base, your new guys would still probably have to learn it in order to use some common libraries and tools.

Also, it's hard to overestimate the complexity in this kind of re-write. We're talking about a lot of code that is written for performance rather than readability, and where the documentation for the algorithms typically is "that article".

[–] ZoopZeZoop@lemmy.world 1 points 2 years ago

Thanks! Makes sense to me.