this post was submitted on 09 May 2025
442 points (99.1% liked)

Programmer Humor

23172 readers
1219 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] some_random_nick@lemmy.world 1 points 1 day ago (1 children)
[โ€“] Flipper@feddit.org 5 points 1 day ago (1 children)

I got something better for you.

namespace ๐Ÿ”ต = std;
using ๐Ÿ”ข = int;
using ๐Ÿ’€ = void;
using ๐Ÿ•– = time_t;
using ๐Ÿ‘Œ = bool;
#define ๐Ÿ‘‚ auto
#define ๐ŸŽŒ enum
#define ๐Ÿ‘Ž false
#define ๐Ÿ‘ true
#define ๐Ÿ‘น "evil"
#define ๐Ÿ’ช ๐Ÿ”ต::make_shared
#define ๐Ÿธ virtual
#define ๐Ÿ–ฅ๏ธ ๐Ÿ”ต::cout
#define ๐Ÿ”ซ ๐Ÿ”ต::endl
template<class ๐Ÿ”ฎ>
using ๐Ÿ“š = ๐Ÿ”ต::vector<๐Ÿ”ฎ>;
template<class ๐Ÿ”ฎ>
using ๐Ÿ‘‡ = ๐Ÿ”ต::shared_ptr<๐Ÿ”ฎ>;

๐ŸŽŒ ๐Ÿ’ { ๐Ÿต, ๐Ÿ™ˆ, ๐Ÿ™‰, ๐Ÿ™Š };
๐Ÿ”ข ๐ŸŽฒ() { return ๐Ÿ”ต::rand(); }
๐Ÿ‘Œ ๐Ÿ˜Ž() { return ๐Ÿ‘Ž; }

struct ๐Ÿด { ๐Ÿธ ๐Ÿ’€ ๐Ÿ‘€() = 0; };
struct ๐ŸŠ : ๐Ÿด { ๐Ÿธ ๐Ÿ’€ ๐Ÿ‘€() { ๐Ÿ–ฅ๏ธ << "๐ŸŠ" << ๐Ÿ”ซ; }; };
struct ๐Ÿ‰ : ๐Ÿด { ๐Ÿธ ๐Ÿ’€ ๐Ÿ‘€() { ๐Ÿ–ฅ๏ธ << "๐Ÿ‰" << ๐Ÿ”ซ; }; };
struct ๐Ÿ’ : ๐Ÿด { ๐Ÿธ ๐Ÿ’€ ๐Ÿ‘€() { ๐Ÿ–ฅ๏ธ << "๐Ÿ‰" << ๐Ÿ”ซ; }; };
struct ๐Ÿ“ : ๐Ÿด { ๐Ÿธ ๐Ÿ’€ ๐Ÿ‘€() { ๐Ÿ–ฅ๏ธ << "๐Ÿ“" << ๐Ÿ”ซ; }; };
struct ๐Ÿ : ๐Ÿด { ๐Ÿธ ๐Ÿ’€ ๐Ÿ‘€() { ๐Ÿ–ฅ๏ธ << "๐Ÿ" << ๐Ÿ”ซ; }; };
struct ๐Ÿ… : ๐Ÿด { ๐Ÿธ ๐Ÿ’€ ๐Ÿ‘€() { ๐Ÿ–ฅ๏ธ << "๐Ÿ…" << ๐Ÿ”ซ; }; };

๐Ÿ”ข main()
{
    if(๐Ÿ˜Ž() == ๐Ÿ‘Ž)
        ๐Ÿ–ฅ๏ธ << "๐Ÿ’ฉ" << ๐Ÿ”ซ;

    ๐Ÿ“š<๐Ÿ‘‡<๐Ÿด>> ๐Ÿ› = { ๐Ÿ’ช<๐ŸŠ>(), ๐Ÿ’ช<๐Ÿ‰>(), ๐Ÿ’ช<๐Ÿ’>(), ๐Ÿ’ช<๐Ÿ>(), ๐Ÿ’ช<๐Ÿ…>() };
 
    for (๐Ÿ‘‚ ๐Ÿ : ๐Ÿ›)
        ๐Ÿ->๐Ÿ‘€();

    return ๐ŸŽฒ();
}