Tell me you're a programmer without telling me you're a programmer

what does that do? LOL

3 Likes

@JayAySeaOhBee14

Here you go!

Just some random image off the internet.

Make the text in Command Prompt green and make the Command Prompt window 50% transparent (super easy to do both).

Make the experience immersive.

Takes you up two directories to the main drive.
Note from 9pfs: MS-DOS and its descendants aren’t smart enough to put everything on a single filesystem.

I assume this lists all your files (or at least folders) in the current folder.
FP’s note: this shows a “tree” of folders in the current folder you have open. It is also recursive, so it can run for quite a while

Purely for dramatic effect. (sunglasses = drama)

End goal.

6 Likes

Lua is a joke in itself lol

5 Likes

I’d react with if :cry: I could.

4 Likes

Now you just wanna fight

2 Likes

dang, that’s some really * pro * coding.

1 Like

Why is MS-DOS the only operating system that combines cd and pwd into one command?

5 Likes

It’s MS-DOS, they (MS)'re not smart enough to make cat work

3 Likes

If you every want to get married, at least it’s simple!

new Judge().marry(this, new Person({gender: this.gender=="male"?"female":"male"}));
5 Likes
MarriageError: A programmer cannot get married unless they are a senior developer and make atleast $100k salary.

welp…

3 Likes

vscode users:

3 Likes

I need to add this error in my programming language LOL!

2 Likes

What will trigger it… :thinking:

3 Likes

Still need to figure that out XD

2 Likes
/**
 * This class exists to make marriage failures more tolerable
 * for those involved. This has not been examined by psychologists,
 * and any developer who instantiates this class may be overdue
 * for a mental exam and/or free admission to a mental hospital.
 */
class MarriageError extends Error {
    /** @type {Boolean} Defaults to true, most marriage failures are fatal */
    hasDivorced=true;
    /** @type {String} Most marriage failures involve a few bloodstains */
    reason="One or more participants died";
    constructor(reason="One or more participants died", isFatal=true) {
        this.reason=reason;
        this.hasDivorced = isFatal;
    }
    endTheDepression() {
        if (this.hasDivorced) {
            throw new Error("You cannot call `endTheDepression()` if you have permanently divorced and it is fatal.")
        }
        else {
            delete this;
        }
    }
}
2 Likes

The JS class is now accepting contributions.

3 Likes

Now I need to implement the Judge and Person classes

3 Likes

I will contribute one character a day!

2 Likes

Use that when malloc fails for some reason.

2 Likes

I still don’t understand what malloc is and why it exists and I don’t plan on learning it.

2 Likes