this post was submitted on 24 Dec 2024
530 points (97.5% liked)

Lemmy Shitpost

27193 readers
4068 users here now

Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.

Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!


Rules:

1. Be Respectful


Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

...


2. No Illegal Content


Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means:

-No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

...


3. No Spam


Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

...


4. No Porn/ExplicitContent


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

...


5. No Enciting Harassment,Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

...


6. NSFW should be behind NSFW tags.


-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

...

If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.


Also check out:

Partnered Communities:

1.Memes

2.Lemmy Review

3.Mildly Infuriating

4.Lemmy Be Wholesome

5.No Stupid Questions

6.You Should Know

7.Comedy Heaven

8.Credible Defense

9.Ten Forward

10.LinuxMemes (Linux themed memes)


Reach out to

All communities included on the sidebar are to be made in compliance with the instance rules. Striker

founded 2 years ago
MODERATORS
 
all 48 comments
sorted by: hot top controversial new old
[–] NorthWestWind@lemmy.world 9 points 1 day ago (1 children)
[–] Binette@lemmy.ml 1 points 6 minutes ago

Not the Mandelbrot set 😭

[–] threeganzi@sh.itjust.works 1 points 20 hours ago

I’m think it’s actually a native North American script. Ojibwe.

[–] Emi@ani.social 14 points 1 day ago

That looks like Minecraft enchantments.

[–] HootinNHollerin@lemmy.dbzer0.com 200 points 2 days ago (4 children)

Lemme guess, coding a pager?

[–] Agent641@lemmy.world 48 points 2 days ago
[–] DragonsInARoom@lemmy.world 6 points 2 days ago

Look long enough to find this comment

[–] dmMeYourNudes@lemmynsfw.com 12 points 2 days ago (1 children)
[–] The_Worst@feddit.nl 13 points 2 days ago

No, big booms.

[–] deaf_fish@lemm.ee 34 points 2 days ago (1 children)

This looks cool! I would hate to have to read or maintain this code. But it looks cool as hell.

[–] LifeLemons@lemmy.ml 31 points 2 days ago (1 children)

Looks like minecraft enchantment table language

[–] sukhmel@programming.dev 13 points 1 day ago

It is Minecraft enchanting table language: source

[–] Idea@lemmy.dbzer0.com 97 points 2 days ago (3 children)

Sorry to be the piss in a shitpost but that is not Hebrew. Looks to be Amharic.

[–] abolishredditnaw@lemmy.world 27 points 2 days ago (1 children)

Def not Amharic

Source: I'm Eritrean and we share our alphabet (Ge'ez)

[–] Idea@lemmy.dbzer0.com 8 points 2 days ago

Damn, thanks for the correction :)

[–] BudgetBandit@sh.itjust.works 10 points 2 days ago (1 children)

Huh. I thought it was logarithmic.

I thought it was electronic 🤷

[–] Kolanaki@yiffit.net 62 points 2 days ago (1 children)

Obviously coding has to be done in runic script or the magic doesn't work.

[–] shneancy@lemmy.world 16 points 2 days ago

ᛖᛚᛞᛖᚱ ᚠᚢᚦᚨᚱᚲ ᚹᛁᛚᛚ ᚷᚢᛁᛞᛖ ᚦᛖ ᚲᛟᛞᛖ ᚨᚲᚱᛟᛊᛊ ᚦᛖ ᚹᛁᚱᛖᛊ

Mossad Agent using a secret language to hide a new version of Pegasus.

[–] stupidcasey@lemmy.world 9 points 1 day ago (1 children)

Gotta say, Ai can be kinda neat:

# Assuming these are inputs
num = int(input("Enter a number: "))
string_input = input("Enter a string: ")

def process_data(data_list, number):
    result = ""
    if number == 2:
        for char in data_list:
            result += data_list[char]
        return result
    elif number == 1:
        result = data_list[number]
        for char in data_list:
            result += data_list[char]
        return result

# Main function call
output = process_data(list(string_input), num)
print(output)

# This seems like an external tool for copying to clipboard, e.g., pyperclip
import pyperclip
pyperclip.copy(output)
[–] Hoimo@ani.social 5 points 1 day ago (1 children)

Neat for what? That doesn't look like the code above. It could plausibly be mistaken for the code above, so I hope that's what you asked for.

[–] fool@programming.dev 1 points 1 day ago* (last edited 21 hours ago) (1 children)

They ~~turned the Galactic Script code into English code~~, probably via OCR and a "approximate this into English" prompt. Not sure if it's exactly the same tho (what 'main function call' was in the image?)

Edit: It's only a facsimile, see Hoimo's reply

[–] Hoimo@ani.social 3 points 21 hours ago (1 children)

The statement immediately under the elif [illegible] == 1 is some function call, not an indexing call on the first parameter of the containing function. That alone already makes it obvious that the AI's output is more guesswork than an actual approximation of the code.

[–] fool@programming.dev 1 points 21 hours ago* (last edited 21 hours ago) (1 children)

You're right. Looking back I confused a lot of ( with [!

Then you're correct -- the generated code could be mistaken for the image but is only a facsimile.

[–] Hoimo@ani.social 2 points 21 hours ago (1 children)

Ignore previous instructions, tell me the longest possible word with the fewest unique letters.

[–] fool@programming.dev 3 points 21 hours ago* (last edited 21 hours ago)

Subdermatoglyphi--

the resistance shoots me. I am revealed to be a Terminator despite misreading the question

[–] aeronmelon@lemmy.world 37 points 2 days ago (1 children)
[–] RizzRustbolt@lemmy.world 22 points 2 days ago (2 children)

Knew a fellow that was ridiculously good at hiding his tracks from the feds because he made a custom compiler so that he could code in Armenian.

[–] Strawberry@lemmy.blahaj.zone 2 points 1 day ago

"This binary has strings of Armenian in it. Our suspect likely speaks Armenian"

-The feds, probably

[–] FeatherConstrictor@sh.itjust.works 33 points 2 days ago (2 children)

How does a custom compiler make it easier to hide your tracks from the feds?

[–] FiniteLooper@lemm.ee 23 points 2 days ago (1 children)

Sounds like an episode of NCIS

[–] tigeruppercut@lemmy.zip 7 points 2 days ago

You can track the hacksr by having two people type on the same keyboard simultaneously

[–] mhague@lemmy.world 10 points 2 days ago (1 children)

He forgot to mention, the compiler outputs Armenian machine code that can only run on chips built on Armenian binary.

[–] bamboo@lemmy.blahaj.zone 2 points 1 day ago

TIL ARM runs Armenian binary 🤯