Replies: 5 comments 19 replies
-
I guess the easiest way would be to create multiples jobs like in this workflow using A more experimental and boldy way would be to start off from a markdown template, fill it up with text and template it with data gathered by metrics and rendered plugins images. With Ctrl + P on a browser you could get a PDF file from generated markdown. |
Beta Was this translation helpful? Give feedback.
-
So I digged a bit about an eventual LinkedIn plugin, but it seems impossible to implement unfortunately 😕 (at least atm) Basically there are no personal tokens so it's required to pass through an OAuth 2.0 token which is a pain to setup when you just want a token for yourself (+ it seems to be valid only for 2 months max so double pain). Even if you pass through an app, maximum permissions you can get as lambda user is It's clearly not designed for individual usage plus documentation seems a bit evasive and there's some broken links a bit everywhere on the developer portal 😞 I understand that they're not giving access easily to whole userbase but kind of bummer that you can't even get back your own data... A solution based on puppeteer seems impossible too because of the authwall, and if using some kind of hack to log yourself you could just get banned so it's a no-go 😅 Best that can be done is to setup an app which has to be approved to get I sent a support ticket to LinkedIn to see if there's any way to do it but I'm pretty sure it'll be a negative answer (if I get any) TLDR; no fully automated resume on GitHub readme profile with LinkedIn for now 🙂 |
Beta Was this translation helpful? Give feedback.
-
I got this mostly working and it's pretty beautiful (GitHub PDF preview kinda messes it up but it looks fine on download). With a little HTML in the markdown, we can force page breaks, which is how this is blocked out (otherwise it just runs out into the next page): <div style="break-after: always; page-break-after: always;"></div>
<div style="padding-top: 3vh;"></div> One issue I think I found: I can't override But it looks great honestly. The final thought I'm having is, can we get these to render as actual anchor links? The markdown links seem to work out of the box (which is amazing) but the GitHub metadata (like "repositories", links in activities sections) do not. Also, finally, is there a way for me to see these |
Beta Was this translation helpful? Give feedback.
-
The upcoming |
Beta Was this translation helpful? Give feedback.
-
StackOverflow used to have an "Import from Linkedin", but it was removed because of Linkedin TOS. c.f. https://meta.stackoverflow.com/questions/312851/feature-request-import-cv-from-linkedin While not as "good" as Linkedin, StackOverflow has a "developer story" feature which could be used as a data source. I couldnt see if this has an API (it doesnt appear in https://api.stackexchange.com/docs) , but the HTML source is quite basic to parse (see source of https://stackoverflow.com/cv/jayvdb for example). Ah, they have hresume support .. ? c.f. https://meta.stackexchange.com/questions/28375/should-careers-stackoverflow-com-support-hresume/32216 |
Beta Was this translation helpful? Give feedback.
-
Enough hard work has been put into making this tool that, looking at the output, I would be willing to add it as a supplicant to my resume or even submit in lieu of an actual resume.
Has anyone else considered this? What might this implementation look like, and what small details might be helpful to add to support this use case?
Beta Was this translation helpful? Give feedback.
All reactions