HackMyResume
HackMyResume copied to clipboard
Feature: Dynamic data
It would be cool if you could include dynamic data (say your github projects) in your resume. This could maybe be done by either:
- Dynamically detecting when you entered a GitHub(for example) URL in your
networks
section or - Having a field especially for that purpose
Obviously this would only make sense to include in the HTML version, but you could always exclude it from the PDF version by marking it as a private field or having it in a separate JSON file and not including it in anything except the HTML build. You would also maybe have to write a custom, modular connector/adapter type thing for this to support multiple things like twitter, bitbucket etc...
Github provides a feed that can be acceszed by sending a specific request accept header:
curl -H "Accept: application/atom+xml" https://github.com/earboxer
Conveniently, this already uses the same url your user-feed uses. Also conveniently, it's supported by gitlab (so it's a standard used on thousands of sites)