Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions config/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ const commands = {
const description = whoisRoot;
term.printArt("rootvc-square");
term.stylePrint(description);
} else if (name == "new_associate") {
term.printArt("new_associate");
term.stylePrint("\r\nHenry Head, Associate (maybe)");
term.stylePrint("https://www.linkedin.com/in/jebhenryhead/\r\n");
term.stylePrint(
"Henry was previously on the Model Policy team at OpenAI, working on AI safety systems. He is a builder, angel investor through Queen City Angels, and has a BA in Government from Claremont McKenna College."
);
} else if (Object.keys(team).includes(name)) {
const person = team[name];
term.printArt(name);
Expand Down Expand Up @@ -159,6 +166,24 @@ const commands = {
term.stylePrint(`(Robot voice): ${message}`);
},

cowsay: function (args) {
const message = args.join(" ") || "moo";
const msgLen = message.length;
const top = " " + "_".repeat(msgLen + 2);
const bottom = " " + "-".repeat(msgLen + 2);
const cow = [
`< ${message} >`,
bottom,
" \\ ^__^",
" \\ (oo)\\_______",
" (__)\\ )\\/\\",
" ||----w |",
" || ||",
];
term.writeln(top);
cow.forEach((line) => term.writeln(line));
},

pwd: function () {
term.stylePrint("/" + term.cwd.replaceAll("~", `home/${term.user}`));
},
Expand Down
Binary file added images/new_associate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions js/ascii-art.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ function preloadASCIIArt() {
for (p of people) {
_loadArt(p, 1.0, term.cols >= 60 ? 0.5 : 1.0, 'png', true);
}
// Easter egg
_loadArt("new_associate", 1.0, term.cols >= 60 ? 0.5 : 1.0, 'png', true);
}

// TODO: Here is where we should insert alternatives to ASCII as text
Expand Down