Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(commands): add a command for a list of "good to know" items for job applications, particularly juniors #394

Merged
merged 3 commits into from
Aug 7, 2024
Merged
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
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"license": "MIT",
"dependencies": {
"date-fns": "3.6.0",
"dedent": "1.5.3",
"discord.js": "14.15.3",
"dotenv": "16.4.5",
"gists": "2.0.0",
Expand Down
27 changes: 27 additions & 0 deletions src/features/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
getReactDocsContent,
getReactDocsSearchKey,
} from "../helpers/react-docs";
import dedent from "dedent";

export const EMBED_COLOR = 7506394;

Expand Down Expand Up @@ -1114,6 +1115,32 @@ _ _
});
},
},
{
words: ["!apply"],
help: "a quick list of 'good to know' items for job applications",
category: "Web",
handleMessage: (msg) => {
msg.channel.send({
embeds: [
{
title: "A quick list of 'good to know' items for job applications",
type: EmbedType.Rich,
description: dedent`
- Your resume and interview performance are more important than your projects.
- If you struggle to get interviews, polish your resume. You may submit your resume in #resume-review for review.
- If you get invited to interviews reliably but constantly get rejected/ghosted afterward, practice interviewing.
- Job descriptions are like a wishlist. It is common for a candidate to not tick every checkbox but still get the job. Just apply for the position regardless.
- Junior remote jobs are very rare. For more, see \`!remote\`.
- Depending on where you are, it is not uncommon for a junior to apply for 30+ jobs a week. See \`!junior\` for more details.
- Working in large companies and smaller companies/start-ups has its advantages and disadvantages.
- Freelancing and starting a start-up is very challenging compared to being an employee. It requires more than just your technical skills. e.g. acquiring customers, marketing, etc.
`,
color: EMBED_COLOR,
},
],
});
},
},
];

const createCommandsMessage = () => {
Expand Down
Loading