HackMyResume | Generate polished résumés and CVs in HTML, Markdown, LaTeX, MS Word, PDF, plain text, JSON, XML, YAM | Learning library
kandi X-RAY | HackMyResume Summary
kandi X-RAY | HackMyResume Summary
[Latest release][img-release]][latest-release] [Build status (MASTER)][img-master]][travis-url-master] [Build status (DEV)][img-dev]][travis-url-dev] [Join the chat at
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- guard method .
- Protects given value if given
HackMyResume Key Features
HackMyResume Examples and Code Snippets
Community Discussions
Trending Discussions on HackMyResume
QUESTION
I have simple github repo where I host the content of my CV. I use hackmyresume to generate the index.html. I'm using Github Actions to run the npm build and it should publish the generated content to the gh-pages branch.
My workflow file has
...ANSWER
Answered 2019-Nov-11 at 17:26This is happening because of your use of the GITHUB_TOKEN
variable. There's an open issue with GitHub due to the fact that the built in token doesn't trigger the GitHub Pages deploy job. This means you'll see the files get committed correctly, but they won't be visible.
To get around this you can use a GitHub access token. You can learn how to generate one here. It needs to be correctly scoped so it has permission to push to a public repository. You'd store this token in your repository's Settings > Secrets
menu (Call it something like ACCESS_TOKEN
), and then reference it in your configuration like so:
QUESTION
I'm trying to create a resume based on the details of a person that I have in my database. I have access to his basic details, education, work experience,... with me.
There is a GitHub repo called [hackmyresume] (https://github.com/hacksalot/HackMyResume) that creates polished résumés and CVs in multiple formats from your command line or shell. It takes input in JSON format(Fresh Schema) and converts that to Word, HTML, PDF, LaTeX, plain text, and other arbitrary formats.
hackmyresume build resume.json TO out/resume.all -t
Everything works as expected if I follow the instructions in the readme page of the repo. But I would like to replicate this functionality in node API. Please guide me.
...ANSWER
Answered 2019-Jul-16 at 07:52This code should work. First you must install hackmyresume:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install HackMyResume
To use HackMyResume you’ll need to create a valid resume in either [FRESH][fresca] or [JSON Resume][6] format. Then you can start using the command line tool. There are five basic commands you should be aware of:.
build generates resumes in HTML, Word, Markdown, PDF, and other formats. Use it when you need to submit, upload, print, or email resumes in specific formats. ```bash # hackmyresume build <INPUTS...> TO <OUTPUTS...> [-t THEME] hackmyresume build resume.json TO out/resume.all hackmyresume build r1.json r2.json TO out/rez.html out/rez.md foo/rez.all ```
new creates a new resume in FRESH or JSON Resume format. ```bash # hackmyresume new <OUTPUTS...> [-f <FORMAT>] hackmyresume new resume.json hackmyresume new resume.json -f fresh hackmyresume new r1.json r2.json -f jrs ```
analyze inspects your resume for keywords, duration, and other metrics. ```bash # hackmyresume analyze <INPUTS...> hackmyresume analyze resume.json hackmyresume analyze r1.json r2.json ```
convert converts your source resume between FRESH and JSON Resume formats. Use it to convert between the two formats to take advantage of tools and services. ```bash # hackmyresume convert <INPUTS...> TO <OUTPUTS...> hackmyresume convert resume.json TO resume-jrs.json hackmyresume convert 1.json 2.json 3.json TO out/1.json out/2.json out/3.json ```
validate validates the specified resume against either the FRESH or JSON Resume schema. Use it to make sure your resume data is sufficient and complete. ```bash # hackmyresume validate <INPUTS...> hackmyresume validate resume.json hackmyresume validate r1.json r2.json r3.json ```
peek echoes your resume or any field, property, or object path on your resume to standard output. ```bash # hackmyresume peek <INPUTS...> [OBJECT-PATH] hackmyresume peek rez.json # Echo the whole resume hackmyresume peek rez.json info.brief # Echo the "info.brief" field hackmyresume peek rez.json employment.history[1] # Echo the 1st job hackmyresume peek rez.json rez2.json info.brief # Compare value ```
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page