this post was submitted on 22 Jun 2026
506 points (97.2% liked)

Comic Strips

24223 readers
3331 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
  3. GPrime85

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 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] samus12345@sh.itjust.works 25 points 6 hours ago (1 children)

Yup, I remember working through it the first time I saw this comic and there's no paradox here.

[–] thebestaquaman@lemmy.world 14 points 5 hours ago* (last edited 54 minutes ago) (1 children)

You could argue that there is though, since the genie will grant three wishes. In that case, it operates like

granted_wishes = 0
while granted_wishes < 3:
    wish = receive_wish()
    granted = grant_wish(wish)  # True if wish is granted, false otherwise (invalid wish etc)
    if granted:
        granted_wishes += 1

So we get

  1. Do opposite of next -> granted_wishes = 1
  2. Complete 3 -> granted_wishes = 2
  3. Ignore 1 -> Enter time loop (recurse)

-inner loop-

  1. Do opposite of next (ignored due to outer loop) -> granted_wishes = 0
  2. Ignore 3 -> granted_wishes = 1
  3. Ignore 1 -> enter time loop (recurse)

-inner loop 2-

  1. Do opposite of next (ignored due to outer loop) -> granted_wishes = 0
  2. Ignore 3 -> granted_wishes = 1
  3. Ignore 1 -> enter time loop (recurse)

.... etc.

We get an infinite time-loop recursion, because we never reach the third guess in the inner loops.

[–] surewhynotlem@lemmy.world 5 points 3 hours ago (1 children)

Silly human. Genies exist outside of time. So the counter doesn't reset.

[–] thebestaquaman@lemmy.world 2 points 46 minutes ago* (last edited 45 minutes ago) (1 children)

Well if the counter doesn't reset (because the genie exists outside of time and therefore grants all the wishes "simultaneously" from its own perspective) we definitely get a problem, because granting 3 makes it impossible for 3 to be granted, and we get the paradox implied by the comic

  1. Do the opposite of next
  2. Do not grant 3
  3. Ignore 1

If you grant 1 and 2, then you cannot grant 3 (since 3 implies not granting 1). If you grant 3, then 2 cannot be granted (since it implies not granting 3). This is the simple form of the paradox.

[–] surewhynotlem@lemmy.world 2 points 35 minutes ago (1 children)

Correct. The genie grants 1, 2, and 2 in the second loop.

[–] thebestaquaman@lemmy.world 2 points 20 minutes ago

But you said the counter didn't reset? If it grants 2 in the "second loop", that implies 1 was granted (since we didn't invert 2), but you can't grant 2 (uninverted) and also grant 1.

If you're operating with a time-loop recursion, you run into the problem of my initial comment. If you try to grant all three wishes simultaneously, you run into the obvious contradiction. The only way you get out is if you allow a time-loop recursion, but for some reason count the ignored guess as a granted guess in the inner loop(s).