Skip to content

Instantly share code, notes, and snippets.

@kosty
Last active January 4, 2024 23:50
Show Gist options
  • Select an option

  • Save kosty/65502964511ab69bd6f542563403e852 to your computer and use it in GitHub Desktop.

Select an option

Save kosty/65502964511ab69bd6f542563403e852 to your computer and use it in GitHub Desktop.
Resume topic categorization
/**
* This function echoes back the input passed to it.
* @param summary_of_topics_in_cv Summary of experiences shared in resume
* @param topic "frugality", "creativity", "resistance to tension", "perseverance". These are the only values allowed, will throw otherwise. The expanded definition of these terms are "Frugality": In tech startups, frugality means optimizing resource use, minimizing waste, and creatively stretching a limited budget to achieve business goals and sustain operations until profitability. "Creativity": Creativity in tech startups involves innovative problem-solving, developing unique products or services, and thinking outside the box to overcome challenges and capture market opportunities. "Resistance" to Tension**: Resistance to tension in tech startups refers to the ability to remain calm, focused, and productive under high-stress situations, such as tight deadlines, uncertain funding, or rapid scaling demands. "Perseverance": Perseverance in tech startups is the relentless pursuit of goals despite obstacles, maintaining long-term vision, and continuously pushing through failures to achieve success and drive the company forward.
* @param summary_with_regard_to_topic Summary of CV with regard to topic when topic != "Other". "" when topic == "Other"
*/
export async function categorizeCV(summary_of_topics_in_cv:string,topic: string,summary_with_regard_to_topic:string) {
return summary_of_topics_in_article+topic+summary_with_regard_to_topic;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment